Browse Source

REPORT-42577 日文更新升级屏蔽回退

persist/10.0
bryant 4 years ago
parent
commit
64771ff47e
  1. 12
      designer-base/src/main/java/com/fr/design/locale/impl/SupportLocaleImpl.java
  2. 14
      designer-base/src/main/java/com/fr/design/mainframe/toolbar/ToolBarMenuDock.java

12
designer-base/src/main/java/com/fr/design/locale/impl/SupportLocaleImpl.java

@ -138,8 +138,9 @@ public enum SupportLocaleImpl implements SupportLocale {
@Override
public Set<Locale> support() {
Set<Locale> set = new HashSet<Locale>();
set.add(Locale.CHINA);
set.add(Locale.TAIWAN);
set.add(Locale.US);
set.add(Locale.KOREA);
set.add(Locale.JAPAN);
return set;
}
},
@ -151,12 +152,9 @@ public enum SupportLocaleImpl implements SupportLocale {
@Override
public Set<Locale> support() {
Set<Locale> set = new HashSet<Locale>();
set.add(Locale.US);
set.add(Locale.KOREA);
set.add(Locale.JAPAN);
set.add(Locale.CHINA);
set.add(Locale.TAIWAN);
return set;
}
}
}

14
designer-base/src/main/java/com/fr/design/mainframe/toolbar/ToolBarMenuDock.java

@ -592,7 +592,12 @@ public abstract class ToolBarMenuDock {
shortCuts.add(SeparatorDef.DEFAULT);
shortCuts.add(new VideoAction());
shortCuts.add(new TutorialAction());
LocaleCenter.buildAction(new LocaleAction() {
@Override
public void execute() {
shortCuts.add(new TutorialAction());
}
}, SupportLocaleImpl.TUTORIAL_COMMUNITY);
shortCuts.add(new QuestionAction());
shortCuts.add(new TechSolutionAction());
@ -626,13 +631,6 @@ public abstract class ToolBarMenuDock {
}
}, SupportLocaleImpl.TECH_SUPPORT_COMMUNITY);
LocaleCenter.buildAction(new LocaleAction() {
@Override
public void execute() {
shortCuts.add(new TutorialAction());
}
}, SupportLocaleImpl.TUTORIAL_COMMUNITY);
shortCuts.add(SeparatorDef.DEFAULT);
shortCuts.add(new CenterAction());

Loading…
Cancel
Save