Add space before/after footnote marker
This commit is contained in:
parent
fac58f8adf
commit
6f2ee27eec
@ -76,7 +76,7 @@ error.fileExists.desc = File '{filename}' exists. Do you want to overwrite it?
|
|||||||
|
|
||||||
error.writing.title = Error writing file
|
error.writing.title = Error writing file
|
||||||
error.writing.desc = An error occurred while writing to the file:
|
error.writing.desc = An error occurred while writing to the file:
|
||||||
Configuration.lbl.override = Parameter can be overridden in each flight configuration.
|
Configuration.lbl.override = This parameter can be overridden in each flight configuration.
|
||||||
|
|
||||||
|
|
||||||
! Labels used in buttons of dialog windows
|
! Labels used in buttons of dialog windows
|
||||||
|
@ -4,5 +4,5 @@ import net.sf.openrocket.startup.Application;
|
|||||||
|
|
||||||
public class CommonStrings {
|
public class CommonStrings {
|
||||||
public final static String dagger = "\u2020";
|
public final static String dagger = "\u2020";
|
||||||
public final static String override_description = dagger + Application.getTranslator().get("Configuration.lbl.override");
|
public final static String override_description = dagger + " " + Application.getTranslator().get("Configuration.lbl.override");
|
||||||
}
|
}
|
||||||
|
@ -134,7 +134,7 @@ public class MotorConfig extends JPanel {
|
|||||||
|
|
||||||
// Select ignition event
|
// Select ignition event
|
||||||
//// Ignition at:
|
//// Ignition at:
|
||||||
panel.add(new JLabel(trans.get("MotorCfg.lbl.Ignitionat") + CommonStrings.dagger), "");
|
panel.add(new JLabel(trans.get("MotorCfg.lbl.Ignitionat") + " " + CommonStrings.dagger), "");
|
||||||
|
|
||||||
IgnitionConfiguration ignitionConfig = mount.getIgnitionConfiguration().getDefault();
|
IgnitionConfiguration ignitionConfig = mount.getIgnitionConfiguration().getDefault();
|
||||||
combo = new JComboBox(new EnumModel<IgnitionConfiguration.IgnitionEvent>(ignitionConfig, "IgnitionEvent"));
|
combo = new JComboBox(new EnumModel<IgnitionConfiguration.IgnitionEvent>(ignitionConfig, "IgnitionEvent"));
|
||||||
|
@ -190,7 +190,7 @@ public class ParachuteConfig extends RecoveryDeviceConfig {
|
|||||||
|
|
||||||
//// Deployment
|
//// Deployment
|
||||||
//// Deploys at:
|
//// Deploys at:
|
||||||
panel.add(new JLabel(trans.get("ParachuteCfg.lbl.Deploysat") + CommonStrings.dagger), "");
|
panel.add(new JLabel(trans.get("ParachuteCfg.lbl.Deploysat") + " " + CommonStrings.dagger), "");
|
||||||
|
|
||||||
DeploymentConfiguration deploymentConfig = parachute.getDeploymentConfiguration().getDefault();
|
DeploymentConfiguration deploymentConfig = parachute.getDeploymentConfiguration().getDefault();
|
||||||
combo = new JComboBox(new EnumModel<DeploymentConfiguration.DeployEvent>(deploymentConfig, "DeployEvent"));
|
combo = new JComboBox(new EnumModel<DeploymentConfiguration.DeployEvent>(deploymentConfig, "DeployEvent"));
|
||||||
|
@ -38,7 +38,7 @@ public class StageConfig extends RocketComponentConfig {
|
|||||||
JPanel panel = new JPanel(new MigLayout("fill"));
|
JPanel panel = new JPanel(new MigLayout("fill"));
|
||||||
|
|
||||||
// Select separation event
|
// Select separation event
|
||||||
panel.add(new StyledLabel(trans.get("separation.lbl.title") + CommonStrings.dagger, Style.BOLD), "spanx, wrap rel");
|
panel.add(new StyledLabel(trans.get("separation.lbl.title") + " " + CommonStrings.dagger, Style.BOLD), "spanx, wrap rel");
|
||||||
|
|
||||||
StageSeparationConfiguration config = stage.getStageSeparationConfiguration().getDefault();
|
StageSeparationConfiguration config = stage.getStageSeparationConfiguration().getDefault();
|
||||||
JComboBox combo = new JComboBox(new EnumModel<StageSeparationConfiguration.SeparationEvent>(config, "SeparationEvent"));
|
JComboBox combo = new JComboBox(new EnumModel<StageSeparationConfiguration.SeparationEvent>(config, "SeparationEvent"));
|
||||||
|
@ -192,7 +192,7 @@ public class StreamerConfig extends RecoveryDeviceConfig {
|
|||||||
|
|
||||||
//// Deployment
|
//// Deployment
|
||||||
//// Deploys at:
|
//// Deploys at:
|
||||||
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Deploysat") + CommonStrings.dagger), "");
|
panel.add(new JLabel(trans.get("StreamerCfg.lbl.Deploysat") + " " + CommonStrings.dagger), "");
|
||||||
|
|
||||||
DeploymentConfiguration deploymentConfig = streamer.getDeploymentConfiguration().getDefault();
|
DeploymentConfiguration deploymentConfig = streamer.getDeploymentConfiguration().getDefault();
|
||||||
combo = new JComboBox(new EnumModel<DeploymentConfiguration.DeployEvent>(deploymentConfig, "DeployEvent"));
|
combo = new JComboBox(new EnumModel<DeploymentConfiguration.DeployEvent>(deploymentConfig, "DeployEvent"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user