mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 08:00:46 +00:00
Spelling fixes
This commit is contained in:
+2
-2
@@ -112,10 +112,10 @@
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jBtnNextActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JLabel" name="jLblOccurences">
|
||||
<Component class="javax.swing.JLabel" name="jLblOccurrences">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
|
||||
<ResourceString bundle="jsyntaxpane/Bundle.properties" key="QuickFindDialog.Occurences.Zero" replaceFormat="java.util.ResourceBundle.getBundle("{bundleNameSlashes}").getString("{key}")"/>
|
||||
<ResourceString bundle="jsyntaxpane/Bundle.properties" key="QuickFindDialog.Occurrences.Zero" replaceFormat="java.util.ResourceBundle.getBundle("{bundleNameSlashes}").getString("{key}")"/>
|
||||
</Property>
|
||||
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
|
||||
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
|
||||
|
||||
+15
-15
@@ -160,7 +160,7 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
jSeparator3 = new javax.swing.JToolBar.Separator();
|
||||
jBtnPrev = new javax.swing.JButton();
|
||||
jBtnNext = new javax.swing.JButton();
|
||||
jLblOccurences = new javax.swing.JLabel();
|
||||
jLblOccurrences = new javax.swing.JLabel();
|
||||
jChkIgnoreCase = new javax.swing.JCheckBox();
|
||||
jChkRegExp = new javax.swing.JCheckBox();
|
||||
jChkWrap = new javax.swing.JCheckBox();
|
||||
@@ -213,10 +213,10 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
});
|
||||
jToolBar1.add(jBtnNext);
|
||||
|
||||
jLblOccurences.setText(bundle.getString("QuickFindDialog.Occurences.Zero")); // NOI18N
|
||||
jLblOccurences.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 5, 0, 5));
|
||||
jToolBar1.add(jLblOccurences);
|
||||
|
||||
jLblOccurrences.setText(bundle.getString("QuickFindDialog.Occurrences.Zero")); // NOI18N
|
||||
jLblOccurrences.setBorder(javax.swing.BorderFactory.createEmptyBorder(0, 5, 0, 5));
|
||||
jToolBar1.add(jLblOccurrences);
|
||||
|
||||
jChkIgnoreCase.setMnemonic('C');
|
||||
jChkIgnoreCase.setText(bundle.getString("QuickFindDialog.jChkIgnoreCase.text")); // NOI18N
|
||||
jChkIgnoreCase.setFocusable(false);
|
||||
@@ -264,7 +264,7 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
} else {
|
||||
jLblStatus.setText(java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("QuickFindDialog.NotFound"));
|
||||
}
|
||||
updateOccurences();
|
||||
updateOccurrences();
|
||||
}//GEN-LAST:event_jBtnNextActionPerformed
|
||||
|
||||
private void jBtnPrevActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBtnPrevActionPerformed
|
||||
@@ -273,20 +273,20 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
} else {
|
||||
jLblStatus.setText(java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("QuickFindDialog.NotFound"));
|
||||
}
|
||||
updateOccurences();
|
||||
updateOccurrences();
|
||||
}//GEN-LAST:event_jBtnPrevActionPerformed
|
||||
|
||||
//JPEXS
|
||||
private void updateOccurences() {
|
||||
private void updateOccurrences() {
|
||||
if (dsd.get().getOccurrencesCount(target.get()) == 0)
|
||||
{
|
||||
jLblOccurences.setText(
|
||||
java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("QuickFindDialog.Occurences.Zero")
|
||||
jLblOccurrences.setText(
|
||||
java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("QuickFindDialog.Occurrences.Zero")
|
||||
);
|
||||
return;
|
||||
}
|
||||
jLblOccurences.setText(
|
||||
java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("QuickFindDialog.Occurences")
|
||||
jLblOccurrences.setText(
|
||||
java.util.ResourceBundle.getBundle("jsyntaxpane/Bundle").getString("QuickFindDialog.Occurrences")
|
||||
.replace("%current%", "" + dsd.get().getCurrentOccurrence(target.get()))
|
||||
.replace("%total%", "" + dsd.get().getOccurrencesCount(target.get()))
|
||||
);
|
||||
@@ -299,7 +299,7 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
private javax.swing.JCheckBox jChkRegExp;
|
||||
private javax.swing.JCheckBox jChkWrap;
|
||||
private javax.swing.JLabel jLabel1;
|
||||
private javax.swing.JLabel jLblOccurences;
|
||||
private javax.swing.JLabel jLblOccurrences;
|
||||
private javax.swing.JLabel jLblStatus;
|
||||
private javax.swing.JToolBar.Separator jSeparator1;
|
||||
private javax.swing.JToolBar.Separator jSeparator2;
|
||||
@@ -330,7 +330,7 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
String toFind = jTxtFind.getText();
|
||||
if (toFind == null || toFind.isEmpty()) {
|
||||
jLblStatus.setText(null);
|
||||
jLblOccurences.setText(null);
|
||||
jLblOccurrences.setText(null);
|
||||
return;
|
||||
}
|
||||
try {
|
||||
@@ -347,7 +347,7 @@ public class QuickFindDialog extends javax.swing.JDialog
|
||||
} else {
|
||||
jLblStatus.setText(null);
|
||||
}
|
||||
updateOccurences(); //JPEXS
|
||||
updateOccurrences(); //JPEXS
|
||||
setSize(getPreferredSize());
|
||||
pack();
|
||||
} catch (PatternSyntaxException e) {
|
||||
|
||||
@@ -37,5 +37,5 @@ ScriptRunnerAction.ScriptError = Script Error
|
||||
ScriptRunnerAction.ScriptEngineNotFound = Script Engine for [{0}] not found. Disable this Action?
|
||||
ShowAbbsAction.NoAbbsForType = No Abbreviations exist for this content type
|
||||
|
||||
QuickFindDialog.Occurences = (%current%/%total%)
|
||||
QuickFindDialog.Occurences.Zero = (0)
|
||||
QuickFindDialog.Occurrences = (%current%/%total%)
|
||||
QuickFindDialog.Occurrences.Zero = (0)
|
||||
@@ -37,5 +37,5 @@ ScriptRunnerAction.ScriptError = Chyba skriptu
|
||||
ScriptRunnerAction.ScriptEngineNotFound = Engine skriptu [{0}] nenalezen. Zak\u00e1zat tuto akci?
|
||||
ShowAbbsAction.NoAbbsForType = Pro tento typ obsahu neexistuj\u00ed zkratky
|
||||
|
||||
QuickFindDialog.Occurences = (%current%/%total%)
|
||||
QuickFindDialog.Occurences.Zero = (0)
|
||||
QuickFindDialog.Occurrences = (%current%/%total%)
|
||||
QuickFindDialog.Occurrences.Zero = (0)
|
||||
@@ -40,5 +40,5 @@ ScriptRunnerAction.ErrorExecutingScript = Komut dosyas\u0131 \u00e7al\u0131\u015
|
||||
ScriptRunnerAction.ScriptError = Komut Dosyas\u0131 Hatas\u0131
|
||||
ScriptRunnerAction.ScriptEngineNotFound = [{0}] i\u00e7in komut dosyas\u0131 bulunamad\u0131. Bu eylem devre d\u0131\u015f\u0131 b\u0131rak\u0131ls\u0131n m\u0131?
|
||||
ShowAbbsAction.NoAbbsForType = Bu i\u00e7erik t\u00fcr\u00fc i\u00e7in k\u0131saltmalar yok
|
||||
QuickFindDialog.Occurences = (%current%/%total%)
|
||||
QuickFindDialog.Occurences.Zero = (0)
|
||||
QuickFindDialog.Occurrences = (%current%/%total%)
|
||||
QuickFindDialog.Occurrences.Zero = (0)
|
||||
|
||||
Reference in New Issue
Block a user