You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
471 B
21 lines
471 B
package com.fr.design.i18n.impl; |
|
|
|
import com.fr.design.i18n.ActionType; |
|
import com.fr.general.CloudCenter; |
|
|
|
public class JapanLocaleAction extends AbstractDefaultLocaleAction { |
|
|
|
@Override |
|
protected void init() { |
|
super.init(); |
|
urls.put(ActionType.ACTIVATION_CODE, CloudCenter.getInstance().acquireUrlByKind("frlogin.jp")); |
|
} |
|
|
|
|
|
@Override |
|
public String getSplashPath() { |
|
return "/com/fr/design/images/splash_10_jp.gif"; |
|
} |
|
|
|
|
|
}
|
|
|