forked from fanruan/design
Hades
5 years ago
9 changed files with 176 additions and 48 deletions
@ -0,0 +1,31 @@ |
|||||||
|
package com.fr.design.locale.impl; |
||||||
|
|
||||||
|
import com.fr.general.GeneralContext; |
||||||
|
import com.fr.general.locale.LocaleMark; |
||||||
|
|
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.Locale; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Hades |
||||||
|
* @date 2019/6/24 |
||||||
|
*/ |
||||||
|
public class ProductImproveMark implements LocaleMark<Boolean> { |
||||||
|
|
||||||
|
private Map<Locale, Boolean> map = new HashMap<>(); |
||||||
|
|
||||||
|
public ProductImproveMark() { |
||||||
|
map.put(Locale.CHINA, true); |
||||||
|
map.put(Locale.TAIWAN, false); |
||||||
|
map.put(Locale.US, false); |
||||||
|
map.put(Locale.KOREA, false); |
||||||
|
map.put(Locale.JAPAN, false); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Boolean getValue() { |
||||||
|
Boolean result = map.get(GeneralContext.getLocale()); |
||||||
|
return result == null ? false : result; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
package com.fr.design.locale.impl; |
||||||
|
|
||||||
|
import com.fr.design.DesignerEnvManager; |
||||||
|
import com.fr.general.GeneralContext; |
||||||
|
import com.fr.general.locale.LocaleMark; |
||||||
|
|
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.Locale; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Hades |
||||||
|
* @date 2019/6/24 |
||||||
|
*/ |
||||||
|
public class SplashMark implements LocaleMark<String> { |
||||||
|
|
||||||
|
private Map<Locale, String> map = new HashMap<Locale, String>(); |
||||||
|
private static final String SPLASH_PATH = "/com/fr/design/images/splash_10.gif"; |
||||||
|
private static final String SPLASH_EN_PATH = "/com/fr/design/images/splash_10_en.gif"; |
||||||
|
private static final String SPLASH_JP_PATH = "/com/fr/design/images/splash_10_jp.gif"; |
||||||
|
|
||||||
|
public SplashMark() { |
||||||
|
map.put(Locale.CHINA, SPLASH_PATH); |
||||||
|
map.put(Locale.KOREA, SPLASH_EN_PATH); |
||||||
|
map.put(Locale.JAPAN, SPLASH_JP_PATH); |
||||||
|
map.put(Locale.US, SPLASH_EN_PATH); |
||||||
|
map.put(Locale.TAIWAN, SPLASH_EN_PATH); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getValue() { |
||||||
|
String result = map.get(DesignerEnvManager.getEnvManager().getLanguage()); |
||||||
|
return result == null ? SPLASH_EN_PATH : result; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,36 @@ |
|||||||
|
package com.fr.design.locale.impl; |
||||||
|
|
||||||
|
import com.fr.general.CloudCenter; |
||||||
|
import com.fr.general.GeneralContext; |
||||||
|
import com.fr.general.locale.LocaleMark; |
||||||
|
|
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.Locale; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Hades |
||||||
|
* @date 2019/6/24 |
||||||
|
*/ |
||||||
|
public class UserInfoMark implements LocaleMark<String> { |
||||||
|
|
||||||
|
private Map<Locale, String> map = new HashMap<>(); |
||||||
|
private static final String CN_LOGIN_HTML = CloudCenter.getInstance().acquireUrlByKind("frlogin.cn"); |
||||||
|
private static final String EN_LOGIN_HTML = CloudCenter.getInstance().acquireUrlByKind("frlogin.en"); |
||||||
|
private static final String TW_LOGIN_HTML = CloudCenter.getInstance().acquireUrlByKind("frlogin.tw"); |
||||||
|
private static final String JP_LOGIN_HTML = CloudCenter.getInstance().acquireUrlByKind("frlogin.jp"); |
||||||
|
|
||||||
|
public UserInfoMark() { |
||||||
|
map.put(Locale.CHINA, CN_LOGIN_HTML); |
||||||
|
map.put(Locale.KOREA, EN_LOGIN_HTML); |
||||||
|
map.put(Locale.JAPAN, JP_LOGIN_HTML); |
||||||
|
map.put(Locale.US, EN_LOGIN_HTML); |
||||||
|
map.put(Locale.TAIWAN, TW_LOGIN_HTML); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getValue() { |
||||||
|
String result = map.get(GeneralContext.getLocale()); |
||||||
|
return result == null ? EN_LOGIN_HTML : result; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
package com.fr.design.locale.impl; |
||||||
|
|
||||||
|
import com.fr.general.CloudCenter; |
||||||
|
import com.fr.general.GeneralContext; |
||||||
|
import com.fr.general.locale.LocaleMark; |
||||||
|
|
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.Locale; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Hades |
||||||
|
* @date 2019/6/24 |
||||||
|
*/ |
||||||
|
public class VideoMark implements LocaleMark<String> { |
||||||
|
|
||||||
|
private Map<Locale, String> map = new HashMap<>(); |
||||||
|
private static final String VIDEO_EN = CloudCenter.getInstance().acquireUrlByKind("bbs.video.en"); |
||||||
|
private static final String VIDEO_CN = CloudCenter.getInstance().acquireUrlByKind("bbs.video"); |
||||||
|
private static final String VIDEO_TW = CloudCenter.getInstance().acquireUrlByKind("bbs.video.tw"); |
||||||
|
|
||||||
|
public VideoMark() { |
||||||
|
map.put(Locale.CHINA, VIDEO_CN); |
||||||
|
map.put(Locale.KOREA, VIDEO_EN); |
||||||
|
map.put(Locale.JAPAN, VIDEO_EN); |
||||||
|
map.put(Locale.US, VIDEO_EN); |
||||||
|
map.put(Locale.TAIWAN, VIDEO_TW); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getValue() { |
||||||
|
String result = map.get(GeneralContext.getLocale()); |
||||||
|
return result == null ? VIDEO_EN : result; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue