Skip to content

v3.0.0 - Missing words #289

Closed
Closed
@Richard-Tang

Description

@Richard-Tang

Describe the bug
2.7.3 ---> normal
3.0.0 ---> missing words

To Reproduce

import com.github.weisj.darklaf.LafManager;

import javax.swing.*;

public class Main {

    public static void main(String[] args) {
        LafManager.install();
        
        JFrame jFrame = new JFrame();
        jFrame.setSize(600, 600);
        jFrame.setVisible(true);

        JButton jButton = new JButton("123");
        JPanel  jPanel  = new JPanel();
        jFrame.add(jPanel);
        jPanel.add(jButton);

        jButton.addActionListener(e -> {
            JFileChooser jFileChooser = new JFileChooser();
            jFileChooser.showOpenDialog(null);
        });
    }
}

Screenshots
image

image

Additional Information:

  • OS: MacOS Big Sur
  • OS Version: 11.6
  • Darklaf Version: 2.7.3 And 3.0.0
  • JDK Version
openjdk version "11.0.12" 2021-07-20
OpenJDK Runtime Environment JBR-11.0.12.7-1729.1-jcef (build 11.0.12+7-b1729.1)
OpenJDK 64-Bit Server VM JBR-11.0.12.7-1729.1-jcef (build 11.0.12+7-b1729.1, mixed mode)

Additional context

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>untitled</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.github.weisj</groupId>
            <artifactId>darklaf-core</artifactId>
            <version>2.7.3</version>
        </dependency>
    </dependencies>

</project>

In addition, I would like to add another question, can the English letters "Open" "Cancel" here be changed into other languages?

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions