|
|
|
@ -5,6 +5,7 @@ import java.awt.event.ActionEvent;
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
import java.net.URI; |
|
|
|
|
import java.net.URISyntaxException; |
|
|
|
|
import java.util.Locale; |
|
|
|
|
|
|
|
|
|
import javax.swing.JOptionPane; |
|
|
|
|
import javax.swing.KeyStroke; |
|
|
|
@ -32,7 +33,12 @@ public class VideoAction extends UpdateAction
|
|
|
|
|
@Override |
|
|
|
|
public void actionPerformed(ActionEvent arg0) |
|
|
|
|
{ |
|
|
|
|
String url = SiteCenter.getInstance().acquireUrlByKind("bbs.video"); |
|
|
|
|
String url; |
|
|
|
|
if (FRContext.getLocale().equals(Locale.US)) { |
|
|
|
|
url = SiteCenter.getInstance().acquireUrlByKind("bbs.video.en"); |
|
|
|
|
} else { |
|
|
|
|
url = SiteCenter.getInstance().acquireUrlByKind("bbs.video"); |
|
|
|
|
} |
|
|
|
|
if (StringUtils.isEmpty(url)) { |
|
|
|
|
FRContext.getLogger().info("The URL is empty!"); |
|
|
|
|
return; |
|
|
|
|