diff --git a/lib/jsyntaxpane-0.9.5.jar b/lib/jsyntaxpane-0.9.5.jar index c2a25981b..b90a15e6f 100644 Binary files a/lib/jsyntaxpane-0.9.5.jar and b/lib/jsyntaxpane-0.9.5.jar differ diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java index d88c67c51..ff1218d14 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/timeline/Timeline.java @@ -227,7 +227,7 @@ public class Timeline { static { DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.US); - svgPathDecimalFormat = new DecimalFormat("0.##", symbols); // max 3 desetinná místa, žádné zbytečné nuly + svgPathDecimalFormat = new DecimalFormat("0.##", symbols); // max 3 decimal places, no additional zeros } private static String formatDoubleSvg(double value) { diff --git a/libsrc/ffdec_lib/src/com/jpexs/helpers/CancellableWorker.java b/libsrc/ffdec_lib/src/com/jpexs/helpers/CancellableWorker.java index c93492de4..057b372be 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/helpers/CancellableWorker.java +++ b/libsrc/ffdec_lib/src/com/jpexs/helpers/CancellableWorker.java @@ -4,7 +4,7 @@ * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your o3ption) any later version. + * version 3.0 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.form b/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.form index c029c6c01..be3abee20 100644 --- a/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.form +++ b/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.form @@ -112,10 +112,10 @@ - + - + diff --git a/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.java b/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.java index 7eb42dc58..dbe270530 100644 --- a/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.java +++ b/libsrc/jsyntaxpane/jsyntaxpane/src/main/java/jsyntaxpane/actions/gui/QuickFindDialog.java @@ -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) { diff --git a/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle.properties b/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle.properties index 366c398d5..5eb0aaa7b 100644 --- a/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle.properties +++ b/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle.properties @@ -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) \ No newline at end of file +QuickFindDialog.Occurrences = (%current%/%total%) +QuickFindDialog.Occurrences.Zero = (0) \ No newline at end of file diff --git a/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_cs.properties b/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_cs.properties index d301e295b..a9b2d75a8 100644 --- a/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_cs.properties +++ b/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_cs.properties @@ -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) \ No newline at end of file +QuickFindDialog.Occurrences = (%current%/%total%) +QuickFindDialog.Occurrences.Zero = (0) \ No newline at end of file diff --git a/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_tr.properties b/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_tr.properties index b48581b86..9d5c8d404 100644 --- a/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_tr.properties +++ b/libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_tr.properties @@ -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) diff --git a/resources/com.jpexs.decompiler.flash.metainfo.xml b/resources/com.jpexs.decompiler.flash.metainfo.xml index 4220ca054..06ff6c921 100644 --- a/resources/com.jpexs.decompiler.flash.metainfo.xml +++ b/resources/com.jpexs.decompiler.flash.metainfo.xml @@ -83,7 +83,7 @@
  • Configuration is now stored in easily readable/editable textual format (TOML) (saved also to older binary format, but loading is preferred from the new TOML file, when exists)
  • `-configFile` and `-storeConfigFile` commandline parameters for loading/storing configuration file
  • Option to .bat and .sh file to enable J2D_D3D_NO_HWCHECK
  • -
  • #2404 Quick find in text/script editors - show number of occurences
  • +
  • #2404 Quick find in text/script editors - show number of occurrences
  • #1418 Option to make main window Always on top
  • #289 Support for Aero Snap on Windows
  • #2412 Show coordinates on stage mouse move for up to 2 decimal places
  • diff --git a/src/com/jpexs/decompiler/flash/gui/editor/HighlightsPanel.java b/src/com/jpexs/decompiler/flash/gui/editor/HighlightsPanel.java index 9fea880c8..a95373ff1 100644 --- a/src/com/jpexs/decompiler/flash/gui/editor/HighlightsPanel.java +++ b/src/com/jpexs/decompiler/flash/gui/editor/HighlightsPanel.java @@ -135,7 +135,7 @@ public class HighlightsPanel extends JPanel { return; } if (line != currentLine && painter instanceof OccurrencesMarker) { - setToolTipText(AppStrings.translate("highlighter.occurences")); + setToolTipText(AppStrings.translate("highlighter.occurrences")); return; } diff --git a/src/com/jpexs/decompiler/flash/gui/editor/VariableMarker.java b/src/com/jpexs/decompiler/flash/gui/editor/VariableMarker.java index d459a4847..ef3ffe7e9 100644 --- a/src/com/jpexs/decompiler/flash/gui/editor/VariableMarker.java +++ b/src/com/jpexs/decompiler/flash/gui/editor/VariableMarker.java @@ -146,20 +146,20 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC private KeyEventPostProcessor kevEventPostProcessor; - private Set occurencesPositions = new HashSet<>(); + private Set occurrencesPositions = new HashSet<>(); private Color basicUnderlineColor = new Color(0, 0, 255); private Color otherScriptUnderlineColor = new Color(0, 255, 0); private Color otherFileUnderlineColor = new Color(255, 0, 255); private UnderlinePainter underLinePainter = new UnderlinePainter(basicUnderlineColor, null); - private UnderlinePainter underLineMarkOccurencesPainter = new UnderlinePainter(basicUnderlineColor, DEFAULT_COLOR); + private UnderlinePainter underLineMarkOccurrencesPainter = new UnderlinePainter(basicUnderlineColor, DEFAULT_COLOR); private UnderlinePainter underLineOtherScriptPainter = new UnderlinePainter(otherScriptUnderlineColor, null); - private UnderlinePainter underLineOtherScriptMarkOccurencesPainter = new UnderlinePainter(otherScriptUnderlineColor, DEFAULT_COLOR); + private UnderlinePainter underLineOtherScriptMarkOccurrencesPainter = new UnderlinePainter(otherScriptUnderlineColor, DEFAULT_COLOR); private UnderlinePainter underLineOtherFilePainter = new UnderlinePainter(otherFileUnderlineColor, null); - private UnderlinePainter underLineOtherFileMarkOccurencesPainter = new UnderlinePainter(otherFileUnderlineColor, DEFAULT_COLOR); + private UnderlinePainter underLineOtherFileMarkOccurrencesPainter = new UnderlinePainter(otherFileUnderlineColor, DEFAULT_COLOR); private Token lastUnderlined; private LinkType lastUnderlinedLinkType = LinkType.NO_LINK; @@ -278,12 +278,12 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC public void removeMarkers() { Markers.removeMarkers(pane, marker); Markers.removeMarkers(pane, underLinePainter); - Markers.removeMarkers(pane, underLineMarkOccurencesPainter); + Markers.removeMarkers(pane, underLineMarkOccurrencesPainter); Markers.removeMarkers(pane, underLineOtherScriptPainter); - Markers.removeMarkers(pane, underLineOtherScriptMarkOccurencesPainter); + Markers.removeMarkers(pane, underLineOtherScriptMarkOccurrencesPainter); Markers.removeMarkers(pane, underLineOtherFilePainter); - Markers.removeMarkers(pane, underLineOtherFileMarkOccurencesPainter); - occurencesPositions.clear(); + Markers.removeMarkers(pane, underLineOtherFileMarkOccurrencesPainter); + occurrencesPositions.clear(); } public void removeErrorMarkers() { @@ -387,15 +387,15 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC Markers.SimpleMarker markerKind = marker; if (lastUnderlined == referenceToken) { if (lastUnderlinedLinkType == LinkType.LINK_OTHER_SCRIPT) { - markerKind = underLineOtherScriptMarkOccurencesPainter; + markerKind = underLineOtherScriptMarkOccurrencesPainter; } else if (lastUnderlinedLinkType == LinkType.LINK_OTHER_FILE) { - markerKind = underLineOtherFileMarkOccurencesPainter; + markerKind = underLineOtherFileMarkOccurrencesPainter; } else { - markerKind = underLineMarkOccurencesPainter; + markerKind = underLineMarkOccurrencesPainter; } } Markers.markToken(pane, referenceToken, markerKind); - occurencesPositions.add(referenceToken.start); + occurrencesPositions.add(referenceToken.start); } } sDoc.readUnlock(); @@ -412,15 +412,15 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC Markers.SimpleMarker markerKind = marker; if (lastUnderlined == referenceToken) { if (lastUnderlinedLinkType == LinkType.LINK_OTHER_SCRIPT) { - markerKind = underLineOtherScriptMarkOccurencesPainter; + markerKind = underLineOtherScriptMarkOccurrencesPainter; } else if (lastUnderlinedLinkType == LinkType.LINK_OTHER_FILE) { - markerKind = underLineOtherFileMarkOccurencesPainter; + markerKind = underLineOtherFileMarkOccurrencesPainter; } else { - markerKind = underLineMarkOccurencesPainter; + markerKind = underLineMarkOccurrencesPainter; } } Markers.markToken(pane, referenceToken, markerKind); - occurencesPositions.add(referenceToken.start); + occurrencesPositions.add(referenceToken.start); } } } @@ -433,17 +433,17 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC Markers.SimpleMarker markerKind = marker; if (lastUnderlined == definitionToken) { if (lastUnderlinedLinkType == LinkType.LINK_OTHER_SCRIPT) { - markerKind = underLineOtherScriptMarkOccurencesPainter; + markerKind = underLineOtherScriptMarkOccurrencesPainter; } else if (lastUnderlinedLinkType == LinkType.LINK_OTHER_FILE) { - markerKind = underLineOtherFileMarkOccurencesPainter; + markerKind = underLineOtherFileMarkOccurrencesPainter; } else { - markerKind = underLineMarkOccurencesPainter; + markerKind = underLineMarkOccurrencesPainter; } } if (tokenTypes.contains(definitionToken.type)) { Markers.markToken(pane, definitionToken, markerKind); } - occurencesPositions.add(definitionToken.start); + occurrencesPositions.add(definitionToken.start); for (int i : definitionPosToReferences.get(definitionPos)) { if (separatorPosToType.containsKey(i)) { continue; @@ -453,15 +453,15 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC markerKind = marker; if (lastUnderlined == referenceToken) { if (lastUnderlinedLinkType == LinkType.LINK_OTHER_SCRIPT) { - markerKind = underLineOtherScriptMarkOccurencesPainter; + markerKind = underLineOtherScriptMarkOccurrencesPainter; } else if (lastUnderlinedLinkType == LinkType.LINK_OTHER_FILE) { - markerKind = underLineOtherFileMarkOccurencesPainter; + markerKind = underLineOtherFileMarkOccurrencesPainter; } else { - markerKind = underLineMarkOccurencesPainter; + markerKind = underLineMarkOccurrencesPainter; } } Markers.markToken(pane, referenceToken, markerKind); - occurencesPositions.add(referenceToken.start); + occurrencesPositions.add(referenceToken.start); } } } @@ -820,11 +820,11 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC if (t != lastUnderlined) { if (t == null || lastUnderlined == null || !t.equals(lastUnderlined)) { MyMarkers.removeMarkers(pane, underLinePainter); - MyMarkers.removeMarkers(pane, underLineMarkOccurencesPainter); + MyMarkers.removeMarkers(pane, underLineMarkOccurrencesPainter); MyMarkers.removeMarkers(pane, underLineOtherScriptPainter); - MyMarkers.removeMarkers(pane, underLineOtherScriptMarkOccurencesPainter); + MyMarkers.removeMarkers(pane, underLineOtherScriptMarkOccurrencesPainter); MyMarkers.removeMarkers(pane, underLineOtherFilePainter); - MyMarkers.removeMarkers(pane, underLineOtherFileMarkOccurencesPainter); + MyMarkers.removeMarkers(pane, underLineOtherFileMarkOccurrencesPainter); lastUnderlinedLinkType = t == null ? LinkType.NO_LINK : getLinkType(t); if (t != null && lastUnderlinedLinkType != LinkType.NO_LINK) { @@ -844,13 +844,13 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC if (lastUnderlined != null) { Highlighter.HighlightPainter painter = underLinePainter; - if (occurencesPositions.contains(lastUnderlined.start)) { + if (occurrencesPositions.contains(lastUnderlined.start)) { if (lastUnderlinedLinkType == LinkType.LINK_OTHER_SCRIPT) { - painter = underLineOtherScriptMarkOccurencesPainter; + painter = underLineOtherScriptMarkOccurrencesPainter; } else if (lastUnderlinedLinkType == LinkType.LINK_OTHER_FILE) { - painter = underLineOtherFileMarkOccurencesPainter; + painter = underLineOtherFileMarkOccurrencesPainter; } else { - painter = underLineMarkOccurencesPainter; + painter = underLineMarkOccurrencesPainter; } removeMarkers(); markTokenAt(pane.getCaretPosition()); @@ -870,11 +870,11 @@ public class VariableMarker implements SyntaxComponent, CaretListener, PropertyC if (lastUnderlined != null) { lastUnderlined = null; MyMarkers.removeMarkers(pane, underLinePainter); - MyMarkers.removeMarkers(pane, underLineMarkOccurencesPainter); + MyMarkers.removeMarkers(pane, underLineMarkOccurrencesPainter); MyMarkers.removeMarkers(pane, underLineOtherScriptPainter); - MyMarkers.removeMarkers(pane, underLineOtherScriptMarkOccurencesPainter); + MyMarkers.removeMarkers(pane, underLineOtherScriptMarkOccurrencesPainter); MyMarkers.removeMarkers(pane, underLineOtherFilePainter); - MyMarkers.removeMarkers(pane, underLineOtherFileMarkOccurencesPainter); + MyMarkers.removeMarkers(pane, underLineOtherFileMarkOccurrencesPainter); removeMarkers(); markTokenAt(pane.getCaretPosition()); diff --git a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties index 429fdb30a..5861cd88c 100644 --- a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties +++ b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties @@ -1059,7 +1059,7 @@ menu.file.view.alwaysOnTop = Always on top contextmenu.showDetail = Show detail -highlighter.occurences = Mark occurences +highlighter.occurrences = Mark occurrences highlighter.currentLine = Current line highlighter.error = Error: %error% diff --git a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties index 8cca939ab..25e8db058 100644 --- a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties +++ b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties @@ -1058,7 +1058,7 @@ menu.file.view.alwaysOnTop = V\u017edy navrchu contextmenu.showDetail = Zobrazit detail -highlighter.occurences = Ozna\u010dit v\u00fdskyty +highlighter.occurrences = Ozna\u010dit v\u00fdskyty highlighter.currentLine = Aktu\u00e1ln\u00ed \u0159\u00e1dek highlighter.error = Chyba: %error% diff --git a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_tr.properties b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_tr.properties index 7b9e4438e..a302cae3c 100644 --- a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_tr.properties +++ b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_tr.properties @@ -1039,7 +1039,7 @@ contextmenu.showInEasy = Basit d\u00fczenleyicide g\u00f6ster work.debugging.start = Flash i\u00e7erik hata ay\u0131klay\u0131c\u0131s\u0131n\u0131 ba\u015flatma menu.file.view.alwaysOnTop = Her zaman \u00fcstte contextmenu.showDetail = Ayr\u0131nt\u0131lar\u0131 g\u00f6ster -highlighter.occurences = Olu\u015fumlar\u0131 i\u015faretle +highlighter.occurrences = Olu\u015fumlar\u0131 i\u015faretle highlighter.currentLine = Ge\u00e7erli sat\u0131r highlighter.error = Hata: %error% message.link.clicked = Ba\u015fka bir SWF dosyas\u0131na giden bir ba\u011flant\u0131ya t\u0131klad\u0131n\u0131z.