From 30f2b9dfa324245d900b9b4d0e84c5f2f974c914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Sat, 15 Feb 2014 12:41:06 +0100 Subject: [PATCH] Edit color hint and dialog title. --- .../src/com/jpexs/decompiler/flash/gui/ImagePanel.java | 10 +++++----- .../src/com/jpexs/decompiler/flash/gui/MainPanel.java | 10 +++++----- .../flash/gui/generictageditors/ColorEditor.java | 3 +++ .../decompiler/flash/gui/locales/MainFrame.properties | 9 ++++++--- .../flash/gui/locales/MainFrame_cs.properties | 10 +++++++--- .../flash/gui/locales/MainFrame_de.properties | 4 ++-- .../flash/gui/locales/MainFrame_es.properties | 4 ++-- .../flash/gui/locales/MainFrame_fr.properties | 4 ++-- .../flash/gui/locales/MainFrame_hu.properties | 4 ++-- .../flash/gui/locales/MainFrame_nl.properties | 4 ++-- .../flash/gui/locales/MainFrame_pt.properties | 4 ++-- .../flash/gui/locales/MainFrame_ru.properties | 4 ++-- .../flash/gui/locales/MainFrame_sv.properties | 4 ++-- .../flash/gui/locales/MainFrame_uk.properties | 4 ++-- .../flash/gui/locales/MainFrame_zh.properties | 4 ++-- 15 files changed, 46 insertions(+), 36 deletions(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/ImagePanel.java b/trunk/src/com/jpexs/decompiler/flash/gui/ImagePanel.java index 150afd98d..0b01dc934 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/ImagePanel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/ImagePanel.java @@ -40,7 +40,7 @@ import javax.swing.JPanel; public final class ImagePanel extends JPanel implements ActionListener, FlashDisplay { - static final String ACTION_SELECT_COLOR = "SELECTCOLOR"; + static final String ACTION_SELECT_BKCOLOR = "SELECTCOLOR"; public JLabel label = new JLabel(); public DrawableTag drawable; @@ -72,8 +72,8 @@ public final class ImagePanel extends JPanel implements ActionListener, FlashDis JPanel buttonsPanel = new JPanel(new FlowLayout()); JButton selectColorButton = new JButton(View.getIcon("color16")); selectColorButton.addActionListener(this); - selectColorButton.setActionCommand(ACTION_SELECT_COLOR); - selectColorButton.setToolTipText(AppStrings.translate("button.selectcolor.hint")); + selectColorButton.setActionCommand(ACTION_SELECT_BKCOLOR); + selectColorButton.setToolTipText(AppStrings.translate("button.selectbkcolor.hint")); buttonsPanel.add(selectColorButton); bottomPanel.add(buttonsPanel, BorderLayout.EAST); add(bottomPanel, BorderLayout.SOUTH); @@ -81,11 +81,11 @@ public final class ImagePanel extends JPanel implements ActionListener, FlashDis @Override public void actionPerformed(ActionEvent e) { - if (e.getActionCommand() == ACTION_SELECT_COLOR) { + if (e.getActionCommand() == ACTION_SELECT_BKCOLOR) { View.execInEventDispatch(new Runnable() { @Override public void run() { - Color newColor = JColorChooser.showDialog(null, AppStrings.translate("dialog.selectcolor.title"), View.swfBackgroundColor); + Color newColor = JColorChooser.showDialog(null, AppStrings.translate("dialog.selectbkcolor.title"), View.swfBackgroundColor); if (newColor != null) { View.swfBackgroundColor = newColor; setBackground(newColor); diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/MainPanel.java b/trunk/src/com/jpexs/decompiler/flash/gui/MainPanel.java index 0940e0f2c..8dd6f586e 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/MainPanel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/MainPanel.java @@ -263,7 +263,7 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec public TreeItem oldTag; private File tempFile; - private static final String ACTION_SELECT_COLOR = "SELECTCOLOR"; + private static final String ACTION_SELECT_BKCOLOR = "SELECTCOLOR"; private static final String ACTION_REPLACE_IMAGE = "REPLACEIMAGE"; private static final String ACTION_REPLACE_BINARY = "REPLACEBINARY"; private static final String ACTION_EDIT_GENERIC_TAG = "EDITGENERICTAG"; @@ -752,8 +752,8 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec JPanel buttonsPanel = new JPanel(new FlowLayout()); JButton selectColorButton = new JButton(View.getIcon("color16")); selectColorButton.addActionListener(this); - selectColorButton.setActionCommand(ACTION_SELECT_COLOR); - selectColorButton.setToolTipText(AppStrings.translate("button.selectcolor.hint")); + selectColorButton.setActionCommand(ACTION_SELECT_BKCOLOR); + selectColorButton.setToolTipText(AppStrings.translate("button.selectbkcolor.hint")); buttonsPanel.add(selectColorButton); bottomPanel.add(buttonsPanel, BorderLayout.EAST); pan.add(bottomPanel, BorderLayout.SOUTH); @@ -2052,8 +2052,8 @@ public final class MainPanel extends JPanel implements ActionListener, TreeSelec @Override public void actionPerformed(ActionEvent e) { switch (e.getActionCommand()) { - case ACTION_SELECT_COLOR: - Color newColor = JColorChooser.showDialog(null, AppStrings.translate("dialog.selectcolor.title"), View.swfBackgroundColor); + case ACTION_SELECT_BKCOLOR: + Color newColor = JColorChooser.showDialog(null, AppStrings.translate("dialog.selectbkcolor.title"), View.swfBackgroundColor); if (newColor != null) { View.swfBackgroundColor = newColor; reload(true); diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/generictageditors/ColorEditor.java b/trunk/src/com/jpexs/decompiler/flash/gui/generictageditors/ColorEditor.java index e6bd18804..50c93558b 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/generictageditors/ColorEditor.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/generictageditors/ColorEditor.java @@ -21,6 +21,7 @@ import com.jpexs.decompiler.flash.types.ARGB; import com.jpexs.decompiler.flash.types.RGB; import com.jpexs.decompiler.flash.types.RGBA; import java.awt.Color; +import java.awt.Cursor; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Graphics; @@ -97,6 +98,8 @@ public class ColorEditor extends JPanel implements GenericTagEditor, ActionListe } }; + buttonChange.setToolTipText(AppStrings.translate("button.selectcolor.hint")); + buttonChange.setCursor(new Cursor(Cursor.HAND_CURSOR)); buttonChange.addActionListener(this); buttonChange.setBackground(color); buttonChange.setBorderPainted(true); diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties index e7267523f..b94690741 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties @@ -339,8 +339,8 @@ menu.tools.searchmemory = Search SWFs in memory menu.file.reload = Reload message.confirm.reload = This action cancels all unsaved changes and reloads the SWF file again.\nDo you want to continue? -dialog.selectcolor.title = Select background color for SWF display -button.selectcolor.hint = Select background color +dialog.selectbkcolor.title = Select background color for SWF display +button.selectbkcolor.hint = Select background color ColorChooser.okText = OK ColorChooser.cancelText = Cancel @@ -439,4 +439,7 @@ node.others = others menu.tools.search = Text Search #after version 1.8.1u1 -menu.tools.timeline = Timeline \ No newline at end of file +menu.tools.timeline = Timeline + +dialog.selectcolor.title = Select color +button.selectcolor.hint = Click to select color \ No newline at end of file diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties index cad84749a..88a87069c 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_cs.properties @@ -339,8 +339,9 @@ menu.tools.searchmemory = Hledat SWF v pam\u011bti menu.file.reload = Znovu na\u010d\u00edst message.confirm.reload = Tato akce zru\u0161\u00ed v\u0161echny neulo\u017een\u00e9 zm\u011bny a znovu na\u010dte SWF soubor.\nChcete pokra\u010dovat? -dialog.selectcolor.title = Vyberte barvu pozad\u00ed pro zobrazen\u00ed SWF -button.selectcolor.hint = Vybrat barvu pozad\u00ed + +dialog.selectbkcolor.title = Vyberte barvu pozad\u00ed pro zobrazen\u00ed SWF +button.selectbkcolor.hint = Vybrat barvu pozad\u00ed ColorChooser.okText = OK ColorChooser.cancelText = Storno @@ -440,4 +441,7 @@ node.others = ostatn\u00ed menu.tools.search = Hled\u00e1n\u00ed Textu #after version 1.8.1u1 -menu.tools.timeline = \u010casov\u00e1 osa \ No newline at end of file +menu.tools.timeline = \u010casov\u00e1 osa + +dialog.selectcolor.title = Vyberte barvu +button.selectcolor.hint = Kliknut\u00edm vyberete barvu diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_de.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_de.properties index 0c5fe76fc..0efe0d53d 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_de.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_de.properties @@ -340,8 +340,8 @@ menu.tools.searchmemory = SWFs Dateien im Speicher suchen menu.file.reload = Erneut laden message.confirm.reload = Diese Aktion bricht alle nicht gespeicherten \u00c4nderungen ab und l\u00e4dt die Datei erneut.\nWollen Sie fortfahren? -dialog.selectcolor.title = W\u00e4hlen sie eine Hintergrundfarbe f\u00fcr die Ansicht von SWF Dateien -button.selectcolor.hint = Hintergrundfarbe ausw\u00e4hlen +dialog.selectbkcolor.title = W\u00e4hlen sie eine Hintergrundfarbe f\u00fcr die Ansicht von SWF Dateien +button.selectbkcolor.hint = Hintergrundfarbe ausw\u00e4hlen ColorChooser.okText = OK ColorChooser.cancelText = Abbrechen diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_es.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_es.properties index 2f638b4af..ba629caec 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_es.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_es.properties @@ -338,8 +338,8 @@ menu.tools.searchmemory = Buscar SWFs en memoria menu.file.reload = Recargar message.confirm.reload = Esta acci\u00f3n eliminar\u00e1 todos lo cambios no guardados y recargar\u00e1 el archivo SWF otra vez.\nDesea continuar? -dialog.selectcolor.title = Seleccionar color de fondo para la visualizaci\u00f3n del SWF -button.selectcolor.hint = Seleccionar color de fondo +dialog.selectbkcolor.title = Seleccionar color de fondo para la visualizaci\u00f3n del SWF +button.selectbkcolor.hint = Seleccionar color de fondo ColorChooser.okText = OK ColorChooser.cancelText = Cancelar diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_fr.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_fr.properties index 1c5104eb1..1af666aba 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_fr.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_fr.properties @@ -339,8 +339,8 @@ menu.tools.searchmemory = Recherche de fichiers SWF en m\u00e9moire menu.file.reload = Recharger message.confirm.reload = Cette action annule tous les changements et recharge \u00e0 nouveau le fichier SWF.\nVoulez-vous continuer ? -dialog.selectcolor.title = S\u00e9lectionnez la couleur d'arri\u00e8re plan pour afficher le SWF -button.selectcolor.hint = S\u00e9lectionnez la couleur d'arri\u00e8re plan +dialog.selectbkcolor.title = S\u00e9lectionnez la couleur d'arri\u00e8re plan pour afficher le SWF +button.selectbkcolor.hint = S\u00e9lectionnez la couleur d'arri\u00e8re plan ColorChooser.okText = OK ColorChooser.cancelText = Annuler diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_hu.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_hu.properties index efed6704b..d9d26ac37 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_hu.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_hu.properties @@ -339,8 +339,8 @@ menu.tools.searchmemory = SWF-ek keres\u00e9se a mem\u00f3ri\u00e1ban menu.file.reload = \u00dajrat\u00f6lt\u00e9s message.confirm.reload = Ez a m\u0171velet visszavonja az \u00f6sszes nem mentett v\u00e1ltoz\u00e1st, \u00e9s \u00fajrat\u00f6lti az SWF f\u00e1jlt.\nSzeretn\u00e9 folytatni? -dialog.selectcolor.title = V\u00e1lassza ki a h\u00e1tt\u00e9rsz\u00ednt az SWF megjelen\u00edt\u00e9s\u00e9hez -button.selectcolor.hint = H\u00e1tt\u00e9rsz\u00edn kiv\u00e1laszt\u00e1sa +dialog.selectbkcolor.title = V\u00e1lassza ki a h\u00e1tt\u00e9rsz\u00ednt az SWF megjelen\u00edt\u00e9s\u00e9hez +button.selectbkcolor.hint = H\u00e1tt\u00e9rsz\u00edn kiv\u00e1laszt\u00e1sa ColorChooser.okText = OK ColorChooser.cancelText = M\u00e9gsem diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_nl.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_nl.properties index 21d9839ec..08a589cf4 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_nl.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_nl.properties @@ -338,8 +338,8 @@ menu.tools.searchmemory = Naar SWFs in het geheugen zoeken menu.file.reload = Herladen message.confirm.reload = Hiermee annuleert U alle niet-opgeslagen veranderingen en laadt het SWF-bestand opnieuw.\nWilt U doorgaan? -dialog.selectcolor.title = Achtergrondkleur voor SWF vertoon kiezen -button.selectcolor.hint = Achtergrondkleur kiezen +dialog.selectbkcolor.title = Achtergrondkleur voor SWF vertoon kiezen +button.selectbkcolor.hint = Achtergrondkleur kiezen ColorChooser.okText = OK ColorChooser.cancelText = Annuleren diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_pt.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_pt.properties index 3f64db8df..5ac5cd550 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_pt.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_pt.properties @@ -339,8 +339,8 @@ menu.tools.searchmemory = Procurar SWFs em mem\u00f3ria menu.file.reload = Carregar de novo message.confirm.reload = Esta acc\u00e7\u00e3o cancela todas as altera\u00e7\u00f5es N\u00c3O salvas e carrega de novo o ficheiro swf.\nDeseja continuar? -dialog.selectcolor.title = Selecione a cor de fundo da janela do SWF -button.selectcolor.hint = Selecione a cor de fundo +dialog.selectbkcolor.title = Selecione a cor de fundo da janela do SWF +button.selectbkcolor.hint = Selecione a cor de fundo ColorChooser.okText = OK ColorChooser.cancelText = Cancelar diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_ru.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_ru.properties index aaf853f33..4c5b5a8aa 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_ru.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_ru.properties @@ -340,8 +340,8 @@ menu.tools.searchmemory = \u0418\u0441\u043a\u0430\u0442\u044c SWF \u0432 \u043f menu.file.reload = \u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c message.confirm.reload = \u042d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044f\u0435\u0442 \u0432\u0441\u0435 \u043d\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d\u043d\u044b\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0438 \u0437\u0430\u043d\u043e\u0432\u043e \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0442\u0435\u043a\u0443\u0449\u0438\u0439 SWF \u0444\u0430\u0439\u043b.\n \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c? -dialog.selectcolor.title = \u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0444\u043e\u043d\u0430 \u0434\u043b\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 SWF -button.selectcolor.hint = \u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0444\u043e\u043d\u0430 +dialog.selectbkcolor.title = \u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0444\u043e\u043d\u0430 \u0434\u043b\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 SWF +button.selectbkcolor.hint = \u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0446\u0432\u0435\u0442\u0430 \u0444\u043e\u043d\u0430 ColorChooser.okText = \u041e\u041a ColorChooser.cancelText = \u041e\u0442\u043c\u0435\u043d\u0430 diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_sv.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_sv.properties index c338d7806..a73d82628 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_sv.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_sv.properties @@ -339,8 +339,8 @@ menu.tools.searchmemory = S\u00f6k efter SWFs i minnet menu.file.reload = Ladda om message.confirm.reload = Denna \u00e5tg\u00e4rd avbryter alla \u00e4ndringar som inte sparats och laddar om SWF filen igen.\nVill du forts\u00e4tta? -dialog.selectcolor.title = V\u00e4lj bakgrundsf\u00e4rg f\u00f6r SWF display -button.selectcolor.hint = V\u00e4lj bakgrundsf\u00e4rg +dialog.selectbkcolor.title = V\u00e4lj bakgrundsf\u00e4rg f\u00f6r SWF display +button.selectbkcolor.hint = V\u00e4lj bakgrundsf\u00e4rg ColorChooser.okText = Acceptera ColorChooser.cancelText = Avbryt diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_uk.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_uk.properties index a75acc074..78b86a916 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_uk.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_uk.properties @@ -339,8 +339,8 @@ menu.tools.searchmemory = \u041f\u043e\u0448\u0443\u043a SWF \u0432 \u043f\u0430 menu.file.reload = \u041f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 message.confirm.reload = \u0426\u044f \u0434\u0456\u044f \u0441\u043a\u0430\u0441\u043e\u0432\u0443\u0454 \u0432\u0441\u0456 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438 \u0456 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0443\u0454 \u0444\u0430\u0439\u043b SWF \u0437\u043d\u043e\u0432\u0443. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u0432\u0436\u0438\u0442\u0438? -dialog.selectcolor.title = \u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u043a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443 \u0434\u043b\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0443 SWF -button.selectcolor.hint = \u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u043a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443 +dialog.selectbkcolor.title = \u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u043a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443 \u0434\u043b\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434\u0443 SWF +button.selectbkcolor.hint = \u0412\u0438\u0431\u0440\u0430\u0442\u0438 \u043a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443 ColorChooser.okText = \u0413\u0430\u0440\u0430\u0437\u0434 ColorChooser.cancelText = \u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_zh.properties b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_zh.properties index 8bd3186b2..fa0669d92 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_zh.properties +++ b/trunk/src/com/jpexs/decompiler/flash/gui/locales/MainFrame_zh.properties @@ -342,8 +342,8 @@ menu.tools.searchmemory = \u641c\u7d22\u5185\u5b58\u4e2d\u7684SWF menu.file.reload = \u91cd\u8f7d message.confirm.reload = \u8be5\u52a8\u4f5c\u5c06\u4f1a\u4e22\u5931\u6240\u6709\u672a\u4fdd\u5b58\u7684\u6539\u52a8\uff0c\u5e76\u91cd\u65b0\u52a0\u8f7d\u5f53\u524dSWF\u6587\u4ef6\u3002\n\u662f\u5426\u7ee7\u7eed\uff1f -dialog.selectcolor.title = \u8bf7\u9009\u62e9SWF\u663e\u793a\u7684\u80cc\u666f\u8272 -button.selectcolor.hint = \u9009\u62e9\u80cc\u666f\u8272 +dialog.selectbkcolor.title = \u8bf7\u9009\u62e9SWF\u663e\u793a\u7684\u80cc\u666f\u8272 +button.selectbkcolor.hint = \u9009\u62e9\u80cc\u666f\u8272 ColorChooser.okText = \u786e\u5b9a ColorChooser.cancelText = \u53d6\u6d88