SkillAgentSearch skills...

Qfluentwidgets.github.io

The online documentation of PyQt-Fluent-Widgets

Install / Use

/learn @qfluentwidgets/Qfluentwidgets.github.io
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

QFluentWidgets-Docs

The online documentation of PyQt-Fluent-Widgets.

Quick Start

  1. Install dependencies

    cd dev
    npm install
    
  2. Launch local server

    npm run dev
    
  3. Check the docs on http://127.0.0.1:8080

How to Contribute

  1. Fork this repo

  2. Translate markdown docs

    1. Create a new directory in dev named the abbreviation for the translated language, i.e jp
    2. Copy files in dev/docs folder to dev/jp and translate *.md files
  3. Translate config files

    1. Create a new directory, i.e. dev/.vuepress/config/jp

    2. Copy files in config/en to config/jp and translate *.js files

    3. Import the translated config to config/index.js:

      import * as zhConfig from './zh'
      import * as enConfig from './en'
      import * as jpConfig from './jp' // ADDED
      
      
      export const themeConfig = {
          locales: {
              '/': {
                  selectLanguageText: 'Languages',
                  selectLanguageName: 'English',
                  ...enConfig,
              },
              '/zh/': {
                  selectLanguageText: '选择语言',
                  selectLanguageName: '简体中文',
                  ...zhConfig,
              },
      
              /* ADDED */
              '/jp/': {
                  selectLanguageText: '言語',
                  selectLanguageName: '日本語',
                  ...jpConfig,
              },
          },
      
          // Don't modify other config items
      }
      
    4. Add language to dev/.vuepress/config.ts

       export default defineUserConfig({
          locales: {
            '/': {
              lang: 'English',
              title: 'QFluentWidgets',
              description: "QFluentWidgets - Fluent Design Components Library",
            },
            '/zh/': {
              lang: '简体中文',
              title: "QFluentWidgets",
              description: "QFluentWidgets - Fluent Design 风格组件库",
            },
      
            /* ADDED */
            '/jp/': {
              lang: '日本語',
              title: 'QFluentWidgets',
              description: "QFluentWidgets - Fluent Designスタイルコンポーネントライブラリ",
            },
          },
      
          // Don't modify other config items
        });
      
  4. Create a pull request.

View on GitHub
GitHub Stars10
CategoryDevelopment
Updated1mo ago
Forks5

Languages

Vue

Security Score

90/100

Audited on Feb 4, 2026

No findings