Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder doxygen-solaris10-sparc Build #3786

Results:

Failed shell shell_1 shell_2

SourceStamp:

Projectdoxygen
Repositoryhttps://github.com/doxygen/doxygen.git
Branchmaster
Revision0922576a0faa59f2bc211157db9262012b53c632
Got Revision0922576a0faa59f2bc211157db9262012b53c632
Changes43 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-doxygen-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 24 secs )
    1. stdio
  2. MakeDirectory Created ( 0 secs )
    1. - no logs -
  3. shell 'cmake -G ...' failed ( 14 secs )
    1. stdio
    2. CMakeOutput.log
    3. CMakeError.log
  4. shell_1 'gmake' failed ( 0 secs )
    1. stdio
  5. shell_2 'gmake tests' failed ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/doxygen-solaris10-sparc slave
buildername doxygen-solaris10-sparc Builder
buildnumber 3786 Build
codebase Build
got_revision 0922576a0faa59f2bc211157db9262012b53c632 Git
project doxygen Build
repository https://github.com/doxygen/doxygen.git Build
revision 0922576a0faa59f2bc211157db9262012b53c632 Build
scheduler schedule-doxygen-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/doxygen-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Dimitri van Heesch
  2. StackAndPointer

Timing:

StartTue Apr 28 14:03:44 2026
EndTue Apr 28 14:04:23 2026
Elapsed39 secs

All Changes:

:

  1. Change #265694

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 04 Apr 2026 05:50:40
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 69ea0542dbc9535f584ec5e1f30398edc0042bac

    Comments

    feat: Add multi-language support for doxywizard
    - Add TranslationManager singleton for managing translations
    - Add OptionTranslations class for config option translations
    - Add 8 language translation files (zh_CN, zh_TW, de, fr, ja, ko, es, ru)
    - Add Language menu in UI for manual language switching
    - Support system language auto-detection on startup
    - English fallback for unsupported languages
    - All 456 UI text elements now support i18n
    - Update CMakeLists.txt for translation file processing

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/inputbool.cpp
    • addon/doxywizard/inputint.cpp
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/inputstrlist.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
    • addon/doxywizard/settings.h
    • addon/doxywizard/translationmanager.cpp
    • addon/doxywizard/translationmanager.h
  2. Change #265696

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 04 Apr 2026 10:56:19
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 77e13b97c190c0513631c5df184cdda954b55b8f

    Comments

    fix: Qt5/6 compatibility and language menu issues
    - Add QT_VERSION check for QLibraryInfo::path() vs location()
      - Qt 6.0+ uses QLibraryInfo::path()
      - Qt 5 uses QLibraryInfo::location()
    - Fix language menu checkbox display
      - Clear old actions from action group before recreating menu
      - Prevents duplicate actions and ensures correct checkmark display

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/translationmanager.cpp
  3. Change #265697

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 04 Apr 2026 12:45:29
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 8479ab9fa6ebfd1a23fdc92e56a4c52fb24bb7bb

    Comments

    feat(doxywizard): Add dynamic language switching support
    - Add retranslate() virtual method to Input base class and all derived classes
    - Implement retranslateUi() for MainWindow, Wizard, Expert, Step1-4
    - Fix HTML help text refresh in Expert by tracking current help input
    - Add member variables for radio buttons in Step2, Step3, Step4 to support dynamic refresh
    - Add OptionTranslations::retranslate() to refresh config option translations
    - Add translations.qrc for embedding .qm files in executable
    - Add I18N_GUIDE.md documentation for internationalization development
    - Update CMakeLists.txt for translation resource compilation

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/I18N_GUIDE.md
    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/expert.h
    • addon/doxywizard/input.h
    • addon/doxywizard/inputbool.cpp
    • addon/doxywizard/inputbool.h
    • addon/doxywizard/inputint.cpp
    • addon/doxywizard/inputint.h
    • addon/doxywizard/inputobsolete.h
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/inputstring.h
    • addon/doxywizard/inputstrlist.cpp
    • addon/doxywizard/inputstrlist.h
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
    • addon/doxywizard/translationmanager.cpp
    • addon/doxywizard/translations.qrc
    • addon/doxywizard/wizard.cpp
    • addon/doxywizard/wizard.h
  4. Change #265698

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 04 Apr 2026 13:32:27
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 30d9dedd52d48d7404efc7508428187346a9450c

    Comments

    docs: Add I18N guide to Doxygen documentation
    - Add i18n_guide.md to doc directory with Doxygen-compatible format
    - Update Doxyfile to include i18n_guide.md in INPUT
    - Remove I18N_GUIDE.md from addon/doxywizard (moved to doc)

    Changed files

    • addon/doxywizard/I18N_GUIDE.md
    • doc/Doxyfile
    • doc/i18n_guide.md
  5. Change #265699

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 04 Apr 2026 15:20:32
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision d71659cd2ec7e98664e0e911b2cc4d76db4c1874

    Comments

    fix(doxywizard): Improve dynamic language switching
    - Add dynamic refresh for Run page labels (working dir, output, options)
    - Add dynamic refresh for Step3/Step4 header labels
    - Add translation for About dialog text
    - Fix config option help text not being refreshed (keep original English)
    - Remove m_currentHelpInput tracking in Expert (help window refresh not needed)
    - Update doc/CMakeLists.txt and doxygen_manual.tex for i18n_guide.md

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/expert.h
    • addon/doxywizard/inputbool.cpp
    • addon/doxywizard/inputint.cpp
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/inputstrlist.cpp
    • addon/doxywizard/wizard.cpp
    • addon/doxywizard/wizard.h
    • doc/CMakeLists.txt
    • doc/doxygen_manual.tex
  6. Change #265700

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 04 Apr 2026 16:20:09
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision c195c071b97f663f349467a46c3d92b8b8303626

    Comments

    fix(doxywizard): Fix Qt5 compatibility in about() method
    - Use QString::fromLatin1() to convert const char* to QString
    - Fixes 'QString::QString' private member access error in Qt5

    Changed files

    • addon/doxywizard/doxywizard.cpp
  7. Change #265701

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 02:24:57
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision ca1845efb8a9cc633dd6cc0fd00a356f7603c8cc

    Comments

    feat(doxywizard): Add translations for About dialog
    - Wrap all About dialog text with tr() for i18n support
    - Add translations for: (Created with Qt version %1), running with %1, Written by
    - Add translations to all 8 language files (zh_CN, zh_TW, de, fr, ja, ko, es, ru)

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
  8. Change #265702

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 02:42:00
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 690cd66373afb690cb76a40e1813ab20577d35c7

    Comments

    Remove '+' indicator from window title in doxywizard

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • doc/CMakeLists.txt
    • doc/Doxyfile
    • doc/doxygen_manual.tex
    • doc/i18n_guide.md
    • doc/language.tpl
  9. Change #265703

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 12:01:59
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 4c95b0bcb2946fbdc8966d3c0ed469d41cfb6d1f

    Comments

    Add i18n support for MERMAID options and Topics header in Wizard

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/wizard.cpp
  10. Change #265704

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 12:57:00
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 65bd9eee9e235d8ef85a5f90e0c8ac8f6ac40e13

    Comments

    Add i18n support for Expert topics and fix Qt5 compatibility

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/wizard.cpp
  11. Change #265705

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 13:42:44
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 0ac229cf9649bb34eda3c5a8b1f01202e816b3b9

    Comments

    Fix Expert topics translation lookup after language switch

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/expert.cpp
  12. Change #265706

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 14:21:43
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 8a66ab67b4da5629be55b8c426d78c53f7891149

    Comments

    Fix encoding for non-ASCII language names in translationmanager

    Changed files

    • addon/doxywizard/translationmanager.cpp
  13. Change #265707

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 16:48:09
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision f5e11241fa6512a72bd499726e294cf17edce5c2

    Comments

    Fix '+' indicator appearing incorrectly after language switch

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/inputint.cpp
    • addon/doxywizard/inputstring.cpp
  14. Change #265708

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sun 05 Apr 2026 17:57:08
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 490fb7900dbf820d37f5f508ad2cd1b24a221b16

    Comments

    Fix '+' indicator to show only for actual config changes, not language switch

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/inputint.cpp
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/inputstrlist.cpp
  15. Change #265709

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Mon 06 Apr 2026 17:10:11
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 61a15f71cd7cc4058b8855b182454f4949cec3b1

    Comments

    Fix string concatenation in translation strings for proper i18n
    - Use %1, %2 placeholders with .arg() instead of string concatenation
    
    - Fixed error messages in doxywizard.cpp, inputstring.cpp, and wizard.cpp
    
    - Updated all 8 translation files (de, es, fr, ja, ko, ru, zh_CN, zh_TW)
    
    - Added Wizard context translations for icon file error messages

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/wizard.cpp
  16. Change #265710

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Tue 07 Apr 2026 16:35:39
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision fc6afbfea7252a7dd223b2e12ebd095d50500225

    Comments

    Improve German translations and normalize English contractions
    - Improved German translations for file not found and preview messages
    
    - Changed Can't to Cannot and it's to it is for consistency

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard_de.ts
  17. Change #265711

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 10 Apr 2026 11:20:47
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 75611268c7f261f9e29542687039453ba7692853

    Comments

    Refactor translation messages into shared functions
    - Add DoxygenWizard::msgFileNotFound() and msgNoPreviewAvailable()
    
    - Use QCoreApplication::translate with Messages context
    
    - Remove duplicate translation entries from InputString, Step1, Wizard contexts
    
    - Fix translation grammar for all languages (fr, ja, ko, es, ru, zh_CN, zh_TW)

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/wizard.cpp
  18. Change #265712

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 10 Apr 2026 15:24:30
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 2333af1905083b4c413bba6043c5b0de8e72f06e

    Comments

    Refactor translation system: centralize shared messages
    - Add 12 shared message functions in DoxygenWizard class
    - Use QCoreApplication::translate with Messages context for shared strings
    - Remove duplicate translation entries from InputStrList, InputString, MainWindow, Step1, Step3, Wizard contexts
    - Add unified Messages context to all translation files
    - Update expert.cpp, inputstring.cpp, inputstrlist.cpp, wizard.cpp to use shared functions
    - Improves translation consistency and maintainability

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/inputstrlist.cpp
    • addon/doxywizard/wizard.cpp
  19. Change #265713

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 10 Apr 2026 17:01:25
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 757455f80e09eb5d97c6520d9330536bcc410133

    Comments

    Complete translation system refactoring: eliminate all duplicate entries
    - Add 14 new shared message functions for Expert tree view labels
    - Add translateExpertTopic() mapping function for dynamic translation
    - Modify expert.cpp to use shared message functions instead of tr()
    - Modify optiontranslations.cpp to use shared functions for INPUT and SOURCE_BROWSER
    - Remove all duplicate entries from Expert, Wizard, Step3, OptionTranslations contexts
    - Add all shared messages to Messages context in all translation files
    - All 8 translation files now have no duplicate entries

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/optiontranslations.cpp
  20. Change #265714

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 10 Apr 2026 18:59:59
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 65b7c9a9c35462c77104cdf77f75a9cc2c221cff

    Comments

    Build: output .qm files to build directory and clean up after build
    - Set OUTPUT_LOCATION for translation files to CMAKE_CURRENT_BINARY_DIR
    - Generate translations.qrc dynamically in build directory
    - Remove .qm files after build since they are embedded in executable
    - Remove copying .qm files to source directory

    Changed files

    • addon/doxywizard/CMakeLists.txt
  21. Change #265715

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 10 Apr 2026 19:34:45
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 659d598aecb095d9ac3e916bf3f304eb06a4a1bd

    Comments

    Build: remove post-build cleanup of .qm files
    - Keep .qm files in build directory after build
    - Files are still embedded in executable via resource system

    Changed files

    • addon/doxywizard/CMakeLists.txt
  22. Change #265716

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 11 Apr 2026 09:04:24
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 9d6be99cd8cecd1d3cd0c46570ccf571c5bad4fc

    Comments

    Add comprehensive config option documentation translations
    - Add detailed documentation translations for all config options in 8 languages
      (German, Spanish, French, Japanese, Korean, Russian, Simplified Chinese, Traditional Chinese)
    - Implement documentation translation system in OptionTranslations class
    - Add sync_option_translations.py tool for managing translations
    - Add config_docs.txt with English documentation for all options
    - Fix duplicate translation entries in Chinese translation files
    - Update expert.cpp to use translated documentation

    Changed files

    • addon/doxywizard/config_docs.txt
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
    • addon/doxywizard/sync_option_translations.py
  23. Change #265717

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 11 Apr 2026 09:56:42
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 2f43cd3f510fcac853a36af6a6773a33133cc558

    Comments

    Remove config_docs.txt from repository
    - Remove config_docs.txt as it is generated from config.xml
    - Keep the file as local reference only

    Changed files

    • addon/doxywizard/config_docs.txt
  24. Change #265718

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 11 Apr 2026 15:09:20
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision e6263c5ce27a7ed3b219ea91a7655fd26853c06e

    Comments

    feat: Refactor translation system with dynamic default/requires clauses
    - Move translation files to translations directory
    - Separate OptionDocs translations into dedicated files
    - Modify expert.cpp to use placeholders instead of static translations
    - Update optiontranslations.cpp to support dynamic translation
    - Update CMakeLists.txt for new translation file structure
    - Add complete Simplified Chinese translation files

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/doxywizard_de.ts
    • addon/doxywizard/doxywizard_es.ts
    • addon/doxywizard/doxywizard_fr.ts
    • addon/doxywizard/doxywizard_ja.ts
    • addon/doxywizard/doxywizard_ko.ts
    • addon/doxywizard/doxywizard_ru.ts
    • addon/doxywizard/doxywizard_zh_CN.ts
    • addon/doxywizard/doxywizard_zh_TW.ts
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/translationmanager.cpp
    • addon/doxywizard/translationmanager.h
    • addon/doxywizard/translations/doxywizard_de.ts
    • addon/doxywizard/translations/doxywizard_es.ts
    • addon/doxywizard/translations/doxywizard_fr.ts
    • addon/doxywizard/translations/doxywizard_ja.ts
    • addon/doxywizard/translations/doxywizard_ko.ts
    • addon/doxywizard/translations/doxywizard_options_de.ts
    • addon/doxywizard/translations/doxywizard_options_es.ts
    • addon/doxywizard/translations/doxywizard_options_fr.ts
    • addon/doxywizard/translations/doxywizard_options_ja.ts
    • addon/doxywizard/translations/doxywizard_options_ko.ts
    • addon/doxywizard/translations/doxywizard_options_ru.ts
    • addon/doxywizard/translations/doxywizard_options_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_options_zh_TW.ts
    • addon/doxywizard/translations/doxywizard_ru.ts
    • addon/doxywizard/translations/doxywizard_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_zh_TW.ts
  25. Change #265719

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 11 Apr 2026 18:39:41
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 242aa4c4b08cf67eabb1ebba7e154a8afe8ac050

    Comments

    Fix about dialog translation issues and complete German/Spanish/French translations
    - Fix double closing parenthesis in about dialog by consolidating
      Qt version translation strings into single complete messages
    - Add new translation string '(Created with Qt version %1, running with %2)'
      for all languages to handle different Qt versions properly
    - Remove old split translation string ', running with %1'
    - Complete missing translations for German, Spanish, and French
    - Add missing translations: INLINE_GROUPED_CLASSES, INLINE_SIMPLE_STRUCTS,
      INCLUDE_FILE_PATTERNS, INCLUDED_BY_GRAPH, MERMAID_PATH,
      MERMAID_CONFIG_FILE, MERMAID_JS_URL, MSCGEN_TOOL, SHOW_HEADERFILE,
      SITEMAP_URL, SHOW_ENUM_VALUES, and others
    - Fix incomplete translations: EXCLUDE, DOT_UML_DETAILS, GENERATE_TREEVIEW,
      SEARCHENGINE, LATEX_CMD_NAME, GENERATE_RTF, RTF_STYLESHEET_FILE,
      IMPLICIT_DIR_DOCS, INCLUDE_PATH, INPUT, INPUT_ENCODING, INPUT_FILE_ENCODING,
      INPUT_FILTER, INTERACTIVE_SVG

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/translations/doxywizard_de.ts
    • addon/doxywizard/translations/doxywizard_es.ts
    • addon/doxywizard/translations/doxywizard_fr.ts
    • addon/doxywizard/translations/doxywizard_ja.ts
    • addon/doxywizard/translations/doxywizard_ko.ts
    • addon/doxywizard/translations/doxywizard_options_de.ts
    • addon/doxywizard/translations/doxywizard_options_es.ts
    • addon/doxywizard/translations/doxywizard_options_fr.ts
    • addon/doxywizard/translations/doxywizard_ru.ts
    • addon/doxywizard/translations/doxywizard_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_zh_TW.ts
  26. Change #265720

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Mon 13 Apr 2026 16:14:44
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 0ec6489b6ff479d530f5c38ee578b51632318bd0

    Comments

    Fix Russian translation issues and unify formatting
    - Remove duplicate translation entry 'That default image has to be specified with full path.'
    - Fix Spanish translation 'establecido en' to Russian 'был установлен в' for 'is set to'
    - Fix 'The default image is:' translation in Russian
    - Fix 'This tag requires that the tag' translation in Russian
    - Unify formatting: remove extra blank line before default value in enum type
    - Now all languages have consistent 482 translation entries

    Changed files

    • addon/doxywizard/expert.cpp
    • addon/doxywizard/translations/doxywizard_ru.ts
  27. Change #265721

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Mon 13 Apr 2026 16:55:57
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 260a10a025fd854a47e493c70cc39d9166852f31

    Comments

    Fix formatting and improve translation handling
    - Add blank line between detailed description and possible values/default values
    - Add blank line between possible values and default values for enum types
    - Fix \c command handling in convertDoxyCmdToHtml to properly close </code> tags
    - Update sync_option_translations.py for current project structure
      - Support both main UI and options translation files
      - Add --options-only flag to process only doxywizard_options_*.ts files
      - Add --apply flag to automatically add missing entries to .ts files
      - Improve documentation and usage examples
    - Update French, Japanese, Korean translations with new strings

    Changed files

    • addon/doxywizard/expert.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/sync_option_translations.py
  28. Change #265722

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Tue 14 Apr 2026 18:15:25
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision ce34ae7472b9317c5f69f7c7ecb8206ba18f0996

    Comments

    Add OptionValue context translations and fix translation issues
    - Add OptionValue context translations for all languages (de, es, fr, ja, ko, ru, zh_TW)
    - Remove duplicate Expert context translations from main translation files
    - Fix list type translation handling in expert.cpp to wrap desc with OptionValue context
    - Remove duplicate convertDoxyCmdToHtml call in showHelp function
    - Complete simplified Russian translations for HTML_STYLESHEET, HTML_EXTRA_STYLESHEET,
      HTML_EXTRA_FILES, HTML_COLORSTYLE_HUE, HTML_COLORSTYLE_GAMMA, HTML_DYNAMIC_MENUS,
      HTML_COPY_CLIPBOARD, HTML_PROJECT_COOKIE, HTML_INDEX_NUM_ENTRIES, GENERATE_DOCSET,
      DOCSET_FEEDURL, DOCSET_BUNDLE_ID, DOCSET_PUBLISHER_ID, GENERATE_HTMLHELP,
      CHM_FILE, HHC_LOCATION, BINARY_TOC, SITEMAP_URL

    Changed files

    • addon/doxywizard/expert.cpp
    • addon/doxywizard/expert.h
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/translations/doxywizard_de.ts
    • addon/doxywizard/translations/doxywizard_es.ts
    • addon/doxywizard/translations/doxywizard_fr.ts
    • addon/doxywizard/translations/doxywizard_ja.ts
    • addon/doxywizard/translations/doxywizard_ko.ts
    • addon/doxywizard/translations/doxywizard_options_de.ts
    • addon/doxywizard/translations/doxywizard_options_es.ts
    • addon/doxywizard/translations/doxywizard_options_fr.ts
    • addon/doxywizard/translations/doxywizard_options_ja.ts
    • addon/doxywizard/translations/doxywizard_options_ko.ts
    • addon/doxywizard/translations/doxywizard_options_ru.ts
    • addon/doxywizard/translations/doxywizard_options_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_options_zh_TW.ts
    • addon/doxywizard/translations/doxywizard_ru.ts
    • addon/doxywizard/translations/doxywizard_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_zh_TW.ts
  29. Change #265723

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Wed 15 Apr 2026 18:34:09
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 40bba1031102a932d67eac63dc95b53b0842d260

    Comments

    Fix dynamic translation of Minimum value and other dynamic content in option docs
    - Added setDocs() virtual method to Input class and all subclasses
    
    - Store XML elements for each option in Expert class
    
    - Regenerate option documentation in retranslateUi() when language changes
    
    - Use Expert::tr() for translating dynamic content like Minimum value, maximum value, default value
    
    - Values from XML (minval, maxval, defval) are not translated

    Changed files

    • addon/doxywizard/expert.cpp
    • addon/doxywizard/expert.h
    • addon/doxywizard/input.h
    • addon/doxywizard/inputbool.h
    • addon/doxywizard/inputint.h
    • addon/doxywizard/inputobsolete.h
    • addon/doxywizard/inputstring.h
    • addon/doxywizard/inputstrlist.h
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
  30. Change #265724

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 17 Apr 2026 13:21:44
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 8f8109cb76a1a39f4fa7fa517de40b8a0be5649f

    Comments

    Improve translation handling for dynamic content in option docs
    - Use %1 placeholders for values in translation strings
    
    - Include <code> tags directly in translation strings (escaped in .ts files)
    
    - Fix spacing with <br/> tags between description and dynamic content
    
    - Update all translation files with new string format
    
    - Fix incomplete Russian translations for MATHJAX and SEARCH options

    Changed files

    • addon/doxywizard/expert.cpp
    • addon/doxywizard/translations/doxywizard_options_de.ts
    • addon/doxywizard/translations/doxywizard_options_es.ts
    • addon/doxywizard/translations/doxywizard_options_fr.ts
    • addon/doxywizard/translations/doxywizard_options_ja.ts
    • addon/doxywizard/translations/doxywizard_options_ko.ts
    • addon/doxywizard/translations/doxywizard_options_ru.ts
    • addon/doxywizard/translations/doxywizard_options_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_options_zh_TW.ts
  31. Change #265725

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 17 Apr 2026 13:49:28
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 6be6db55b9b172529b2634f7bb94459175b8271b

    Comments

    Update i18n_guide.md with message sharing system and config option translation scheme

    Changed files

    • doc/i18n_guide.md
  32. Change #265726

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Fri 24 Apr 2026 14:34:24
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 40f3da0383ea79a4cfc904df7d282473de9f367a

    Comments

    Refactor i18n system: use localized config.xml files instead of options translation files
    - Add localized config_xx.xml files for all languages (zh_CN, zh_TW, de, fr, ja, ko, es, ru)
    - Add -sync command to configgen.py for syncing localized config files
    - Update expert.cpp to load language-specific config.xml files
    - Add Expert context translations to main translation files for dynamic content
    - Remove doxywizard_options_xx.ts files and sync_option_translations.py
    - Refactor doxywizard.cpp to use map and lambda for message translations
    - Refactor translationmanager.cpp to use table-driven language data
    - Fix wizard.cpp to properly handle language switching
    - Update i18n_guide.md documentation

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.qrc
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/expert.h
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
    • addon/doxywizard/sync_option_translations.py
    • addon/doxywizard/translationmanager.cpp
    • addon/doxywizard/translations/doxywizard_de.ts
    • addon/doxywizard/translations/doxywizard_es.ts
    • addon/doxywizard/translations/doxywizard_fr.ts
    • addon/doxywizard/translations/doxywizard_ja.ts
    • addon/doxywizard/translations/doxywizard_ko.ts
    • addon/doxywizard/translations/doxywizard_options_de.ts
    • addon/doxywizard/translations/doxywizard_options_es.ts
    • addon/doxywizard/translations/doxywizard_options_fr.ts
    • addon/doxywizard/translations/doxywizard_options_ja.ts
    • addon/doxywizard/translations/doxywizard_options_ko.ts
    • addon/doxywizard/translations/doxywizard_options_ru.ts
    • addon/doxywizard/translations/doxywizard_options_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_options_zh_TW.ts
    • addon/doxywizard/translations/doxywizard_ru.ts
    • addon/doxywizard/translations/doxywizard_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_zh_TW.ts
    • addon/doxywizard/wizard.cpp
    • doc/i18n_guide.md
    • src/config_de.xml
    • src/config_es.xml
    • src/config_fr.xml
    • src/config_ja.xml
    • src/config_ko.xml
    • src/config_ru.xml
    • src/config_zh_CN.xml
    • src/config_zh_TW.xml
    • src/configgen.py
  33. Change #265727

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 25 Apr 2026 14:45:23
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 09cc0b1940ca64de06f35c8b1924455401018a9f

    Comments

    fix: Remove references to deleted doxywizard_options translation files from CMakeLists.txt

    Changed files

    • addon/doxywizard/CMakeLists.txt
  34. Change #265728

    Category doxygen
    Changed by StackAndPointer <1733594238ohnoyoudont@qq.com>
    Changed at Sat 25 Apr 2026 16:08:50
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 3060b45a0ef5eefc8a0f51706381c5e9f6439477

    Comments

    fix: Avoid line-continuation character in comment (MSVC C4010)

    Changed files

    • addon/doxywizard/expert.cpp
  35. Change #265729

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Mon 27 Apr 2026 15:20:44
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 82ecf34b48044edfa3154ea4235b5f2e9655da18

    Comments

    Merge branch 'master' of github.com:StackAndPointer/doxygen into StackAndPointer-master
    Also made TranslatorManager non-singleton for better lifetime control

    Changed files

    • no files
  36. Change #265730

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Mon 27 Apr 2026 19:41:10
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision b3c2a7d855907ac97deb61d1efadd9665f959419

    Comments

    Reduce duplication of string literals

    Changed files

    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/doxywizard.h
  37. Change #265731

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Mon 27 Apr 2026 21:09:59
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 4a5d27f2cbc600d0c091f115bb45e6a6aae5aace

    Comments

    Move translated config files to src/translations
    And strip unneeded content and don't hardcode the list of languages

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/doxywizard.qrc
    • src/config_de.xml
    • src/config_es.xml
    • src/config_fr.xml
    • src/config_ja.xml
    • src/config_ko.xml
    • src/config_ru.xml
    • src/config_zh_CN.xml
    • src/config_zh_TW.xml
    • src/configgen.py
    • src/translations/config_de.xml
    • src/translations/config_es.xml
    • src/translations/config_fr.xml
    • src/translations/config_ja.xml
    • src/translations/config_ko.xml
    • src/translations/config_ru.xml
    • src/translations/config_zh_CN.xml
    • src/translations/config_zh_TW.xml
  38. Change #265732

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Tue 28 Apr 2026 10:10:31
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 48e08d07aa374182530da1b9c5c6aa7aca15c519

    Comments

    Fix logic and cleanup dead code

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/README
    • addon/doxywizard/doxywizard.qrc
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/expert.h
    • addon/doxywizard/input.h
    • addon/doxywizard/inputbool.h
    • addon/doxywizard/inputobsolete.h
    • addon/doxywizard/inputstring.h
    • addon/doxywizard/inputstrlist.h
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
  39. Change #265733

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Tue 28 Apr 2026 11:17:21
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision c1d89fe37b3469f11501fbcc80f76ea773f36b33

    Comments

    Remove non-functional remainders of OptionTranslator code

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/doxywizard.cpp
    • addon/doxywizard/expert.cpp
    • addon/doxywizard/inputbool.cpp
    • addon/doxywizard/inputint.cpp
    • addon/doxywizard/inputstring.cpp
    • addon/doxywizard/inputstrlist.cpp
    • addon/doxywizard/optiontranslations.cpp
    • addon/doxywizard/optiontranslations.h
    • addon/doxywizard/translations/doxywizard_de.ts
    • addon/doxywizard/translations/doxywizard_es.ts
    • addon/doxywizard/translations/doxywizard_fr.ts
    • addon/doxywizard/translations/doxywizard_ja.ts
    • addon/doxywizard/translations/doxywizard_ko.ts
    • addon/doxywizard/translations/doxywizard_ru.ts
    • addon/doxywizard/translations/doxywizard_zh_CN.ts
    • addon/doxywizard/translations/doxywizard_zh_TW.ts
  40. Change #265734

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Tue 28 Apr 2026 11:22:25
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision a2e188b05b7fb99f6ba44e12e07bad8ecdf8b9c5

    Comments

    Remove unused 'generator' sections from config_*.xml

    Changed files

    • src/translations/config_de.xml
    • src/translations/config_es.xml
    • src/translations/config_fr.xml
    • src/translations/config_ja.xml
    • src/translations/config_ko.xml
    • src/translations/config_ru.xml
    • src/translations/config_zh_CN.xml
    • src/translations/config_zh_TW.xml
  41. Change #265735

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Tue 28 Apr 2026 13:09:37
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 1be630e518bce6e9b97d8624671dd5a286feb862

    Comments

    Update documentation

    Changed files

    • doc/i18n_guide.md
  42. Change #265736

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Tue 28 Apr 2026 13:53:41
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 041d94ed86290eddc4da828805011c45d53a5297

    Comments

    Remove hardcoded _ts.h file from makefile, fix link in docs

    Changed files

    • addon/doxywizard/CMakeLists.txt
    • addon/doxywizard/expert.cpp
    • doc/language.tpl
  43. Change #265737

    Category doxygen
    Changed by Dimitri van Heesch <doxygenohnoyoudont@gmail.com>
    Changed at Tue 28 Apr 2026 13:56:30
    Repository https://github.com/doxygen/doxygen.git
    Project doxygen
    Branch master
    Revision 0922576a0faa59f2bc211157db9262012b53c632

    Comments

    Merge branch 'StackAndPointer-master'

    Changed files

    • no files