diff -Nru freemind-0.9.0RC6/accessories/plugins/ChangeNodeLevelAction.java freemind-0.9.0RC7/accessories/plugins/ChangeNodeLevelAction.java --- freemind-0.9.0RC6/accessories/plugins/ChangeNodeLevelAction.java 2007-04-21 16:11:20.000000000 +0100 +++ freemind-0.9.0RC7/accessories/plugins/ChangeNodeLevelAction.java 2010-02-22 21:18:53.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: ChangeNodeLevelAction.java,v 1.1.2.2.2.2 2007/04/21 15:11:20 dpolivaev Exp $ */ +/* $Id: ChangeNodeLevelAction.java,v 1.1.2.2.2.3 2010/02/22 21:18:53 christianfoltin Exp $ */ /* * Created on 19.02.2006 @@ -96,11 +96,16 @@ // collect node ids: String selectedNodeId = selectedNode.getObjectId(getController()); + // WORKAROUND: Make target of local hyperlinks for the case, that ids are not stored persistently. + getMap().getLinkRegistry().registerLocalHyperlinkId(selectedNodeId); Vector selectedNodesId = new Vector(); for (Iterator iter = selectedNodes.iterator(); iter.hasNext();) { MindMapNode node = (MindMapNode) iter.next(); - selectedNodesId.add(node.getObjectId(getController())); + String nodeId = node.getObjectId(getController()); + // WORKAROUND: Make target of local hyperlinks for the case, that ids are not stored persistently. + getMap().getLinkRegistry().registerLocalHyperlinkId(nodeId); + selectedNodesId.add(nodeId); } if (upwards) { diff -Nru freemind-0.9.0RC6/accessories/plugins/ExportToImage.java freemind-0.9.0RC7/accessories/plugins/ExportToImage.java --- freemind-0.9.0RC6/accessories/plugins/ExportToImage.java 2006-11-26 10:21:14.000000000 +0000 +++ freemind-0.9.0RC7/accessories/plugins/ExportToImage.java 2010-02-27 09:27:50.000000000 +0000 @@ -87,7 +87,7 @@ // encoder.encode(image); out.close(); } catch (IOException e1) { -freemind.main.Resources.getInstance().logException( e1); + freemind.main.Resources.getInstance().logException(e1); } getController().getFrame().setWaitingCursor(false); return true; diff -Nru freemind-0.9.0RC6/accessories/plugins/NodeNote.java freemind-0.9.0RC7/accessories/plugins/NodeNote.java --- freemind-0.9.0RC6/accessories/plugins/NodeNote.java 2008-04-10 21:49:20.000000000 +0100 +++ freemind-0.9.0RC7/accessories/plugins/NodeNote.java 2010-01-25 20:17:59.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: NodeNote.java,v 1.1.4.7.2.44 2008/04/10 20:49:20 dpolivaev Exp $ */ +/* $Id: NodeNote.java,v 1.1.4.7.2.45 2010/01/25 20:17:59 christianfoltin Exp $ */ package accessories.plugins; import java.awt.EventQueue; @@ -40,6 +40,7 @@ public final static String EMPTY_EDITOR_STRING = "\n \n\n \n \n

\n \n

\n \n\n"; public final static String EMPTY_EDITOR_STRING_ALTERNATIVE = "\n \n \n \n \n

\n \n

\n \n\n"; + public final static String EMPTY_EDITOR_STRING_ALTERNATIVE2 = "\n \n \n \n \n \n

\n \n

\n \n\n"; public void startupMapHook() { super.startupMapHook(); diff -Nru freemind-0.9.0RC6/accessories/plugins/NodeNoteRegistration.java freemind-0.9.0RC7/accessories/plugins/NodeNoteRegistration.java --- freemind-0.9.0RC6/accessories/plugins/NodeNoteRegistration.java 2009-07-04 21:38:27.000000000 +0100 +++ freemind-0.9.0RC7/accessories/plugins/NodeNoteRegistration.java 2010-02-25 21:41:48.000000000 +0000 @@ -19,48 +19,42 @@ * * Created on 11.09.2007 */ -/*$Id: NodeNoteRegistration.java,v 1.1.2.18 2009/07/04 20:38:27 christianfoltin Exp $*/ +/*$Id: NodeNoteRegistration.java,v 1.1.2.21 2010/02/25 21:41:48 christianfoltin Exp $*/ package accessories.plugins; import java.awt.BorderLayout; -import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; -import java.net.MalformedURLException; import java.net.URL; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.BorderFactory; import javax.swing.ImageIcon; -import javax.swing.InputMap; import javax.swing.JComponent; import javax.swing.JEditorPane; import javax.swing.JMenuItem; import javax.swing.JPanel; import javax.swing.JSplitPane; import javax.swing.KeyStroke; -import javax.swing.UIManager; import javax.swing.event.DocumentEvent; import javax.swing.event.DocumentListener; -import javax.swing.text.Style; import javax.swing.text.html.HTMLDocument; -import javax.swing.text.html.StyleSheet; import com.lightdev.app.shtm.SHTMLPanel; import com.lightdev.app.shtm.TextResources; -import freemind.controller.MenuItemEnabledListener; import freemind.controller.MenuItemSelectedListener; import freemind.controller.actions.generated.instance.EditNoteToNodeAction; import freemind.controller.actions.generated.instance.XmlAction; import freemind.extensions.HookRegistration; import freemind.main.FreeMind; import freemind.main.FreeMindMain; +import freemind.main.HtmlTools; import freemind.main.Resources; import freemind.main.Tools; import freemind.modes.MindMap; @@ -107,14 +101,28 @@ private final class NoteDocumentListener implements DocumentListener { - public void changedUpdate(DocumentEvent arg0) { + private MindMapNode mNode; + + public void changedUpdate(DocumentEvent arg0) { docEvent(); } private void docEvent() { - // make map dirty in order to enable automatic save on note - // change. - getMindMapController().getMap().setSaved(false); + // test if not already marked as dirty: + if(getMindMapController().getMap().isSaved()) { + // now test, if different: + String documentText = normalizeString(getDocumentText()); + String noteText = normalizeString(mNode.getNoteText()); + logger.info("Old doc =\n'" + noteText + + "', Current document: \n'" + documentText + + "'. Comparison: '" + Tools.compareText(noteText, documentText)+"'."); + if(!Tools.safeEquals(noteText, documentText)) { + logger.finest("Making map dirty."); + // make map dirty in order to enable automatic save on note + // change. + getMindMapController().getMap().setSaved(false); + } + } } public void insertUpdate(DocumentEvent arg0) { @@ -124,6 +132,10 @@ public void removeUpdate(DocumentEvent arg0) { docEvent(); } + + public void setNode(MindMapNode pNode) { + mNode = pNode; + } } // private NodeTextListener listener; @@ -137,8 +149,7 @@ } public void onDeselectHook(NodeView node) { - // logger.info("onLooseFocuse for node " + node.toString() + " - // and noteViewerComponent=" + noteViewerComponent); +// logger.info("onDeselectHook for node " + node + " and noteViewerComponent=" + noteViewerComponent); noteViewerComponent.getDocument().removeDocumentListener( mNoteDocumentListener); // store its content: @@ -148,8 +159,9 @@ } public void onSelectHook(NodeView nodeView) { +// logger.info("onSelectHook for node " + node + " and noteViewerComponent=" + noteViewerComponent); this.node = nodeView.getModel(); - HTMLDocument document = noteViewerComponent.getDocument(); + final HTMLDocument document = noteViewerComponent.getDocument(); // remove listener to avoid unnecessary dirty events. document.removeDocumentListener( mNoteDocumentListener); @@ -172,8 +184,8 @@ noteViewerComponent.setCurrentDocumentContent(""); mLastContentEmpty = true; } - document.addDocumentListener( - mNoteDocumentListener); + mNoteDocumentListener.setNode(node); + document.addDocumentListener(mNoteDocumentListener); } public void onUpdateNodeHook(MindMapNode node) { @@ -193,12 +205,12 @@ int caretPosition = editorPane.getCaretPosition(); int selectionStart = editorPane.getSelectionStart(); int selectionEnd = editorPane.getSelectionEnd(); - String documentText = noteViewerComponent.getDocumentText(); - // (?s) makes . matching newline as well. - documentText = documentText.replaceFirst("(?s)", ""); + String documentText = getDocumentText(); editorContentEmpty = documentText.equals(NodeNote.EMPTY_EDITOR_STRING) - || documentText.equals(NodeNote.EMPTY_EDITOR_STRING_ALTERNATIVE); - logger.fine("Current document: '" + documentText.replaceAll("\n", "\\\\n") + "', empty="+editorContentEmpty); + || documentText.equals(NodeNote.EMPTY_EDITOR_STRING_ALTERNATIVE) + || documentText.equals(NodeNote.EMPTY_EDITOR_STRING_ALTERNATIVE2); + String noteText = node.getNoteText(); +// logger.info("Old doc =\n'" + ((noteText==null)?noteText:noteText.replaceAll("\n", "\\\\n")) + "', Current document: \n'" + documentText.replaceAll("\n", "\\\\n") + "', empty="+editorContentEmpty); controller.deregisterNodeSelectionListener(this); if (noteViewerComponent.needsSaving()) { if (editorContentEmpty) { @@ -278,7 +290,6 @@ }; public void register() { logger.fine("Registration of note handler."); - FreeMindMain frame = controller.getFrame(); controller.getActionFactory().registerActor(this, getDoActionClass()); // moved to registration: @@ -443,4 +454,18 @@ public boolean isSelected(JMenuItem pCheckItem, Action pAction) { return getSplitPane() != null; } + + private String getDocumentText() { + String documentText = noteViewerComponent.getDocumentText(); + // (?s) makes . matching newline as well. + documentText = documentText.replaceFirst("(?s)", ""); + return documentText; + } + + private String normalizeString(String input) { + if(input == null) + input = NodeNote.EMPTY_EDITOR_STRING; + //return null; + return input.replaceAll("\\s+", " ").replaceAll(" +", " ").trim(); + } } \ No newline at end of file diff -Nru freemind-0.9.0RC6/build.xml freemind-0.9.0RC7/build.xml --- freemind-0.9.0RC6/build.xml 2009-10-22 18:56:28.000000000 +0100 +++ freemind-0.9.0RC7/build.xml 2009-11-28 21:58:19.000000000 +0000 @@ -320,7 +320,7 @@ - + @@ -638,9 +638,9 @@ - + diff -Nru freemind-0.9.0RC6/debian/changelog freemind-0.9.0RC7/debian/changelog --- freemind-0.9.0RC6/debian/changelog 2010-03-15 22:36:13.000000000 +0000 +++ freemind-0.9.0RC7/debian/changelog 2010-03-15 22:36:14.000000000 +0000 @@ -1,3 +1,9 @@ +freemind (0.9.0RC7-0ubuntu1) karmic; urgency=low + + * Upgraded to RC7 + + -- Igor Gomes Mon, 15 Mar 2010 18:57:12 -0300 + freemind (0.9.0RC6-0ubuntu1) karmic; urgency=low * Updated release (LP: #182927) diff -Nru freemind-0.9.0RC6/debian/watch freemind-0.9.0RC7/debian/watch --- freemind-0.9.0RC6/debian/watch 2010-03-15 22:36:13.000000000 +0000 +++ freemind-0.9.0RC7/debian/watch 2010-03-15 22:36:14.000000000 +0000 @@ -2,6 +2,9 @@ # Rename this file to "watch" and then you can run the "uscan" command # to check for upstream updates and more. +# Link +# http://sourceforge.net/projects/freemind/files/freemind-unstable/0.9.0_RC6/freemind-src-0.9.0_RC_6.tar.gz/download + version=3 -http://sf.net/freemind/freemind-src-(0.9.*)\.tar\.gz +http://sf.net/freemind/freemind-src-(0.9.0_RC_.*)\.tar\.gz debian uupdate Binary files /tmp/F8m7I7kFba/freemind-0.9.0RC6/doc/FM_Key_Mappings_Quick_Guide_ru.odt and /tmp/WcB0LjR4Yp/freemind-0.9.0RC7/doc/FM_Key_Mappings_Quick_Guide_ru.odt differ Binary files /tmp/F8m7I7kFba/freemind-0.9.0RC6/doc/FM_Key_Mappings_Quick_Guide_ru.pdf and /tmp/WcB0LjR4Yp/freemind-0.9.0RC7/doc/FM_Key_Mappings_Quick_Guide_ru.pdf differ diff -Nru freemind-0.9.0RC6/doc/freemind.mm freemind-0.9.0RC7/doc/freemind.mm --- freemind-0.9.0RC6/doc/freemind.mm 2009-10-21 20:16:51.000000000 +0100 +++ freemind-0.9.0RC7/doc/freemind.mm 2010-01-25 20:17:59.000000000 +0000 @@ -27,7 +27,7 @@ - + @@ -911,7 +911,7 @@ - + diff -Nru freemind-0.9.0RC6/freemind/common/BooleanProperty.java freemind-0.9.0RC7/freemind/common/BooleanProperty.java --- freemind-0.9.0RC6/freemind/common/BooleanProperty.java 2007-08-05 21:33:12.000000000 +0100 +++ freemind-0.9.0RC7/freemind/common/BooleanProperty.java 2009-12-05 23:21:32.000000000 +0000 @@ -20,7 +20,7 @@ * * Created on 25.02.2006 */ -/* $Id: BooleanProperty.java,v 1.1.2.3.2.2 2007/08/05 20:33:12 christianfoltin Exp $ */ +/* $Id: BooleanProperty.java,v 1.1.2.3.2.3 2009/12/05 23:21:32 christianfoltin Exp $ */ package freemind.common; import java.awt.event.ItemEvent; @@ -80,8 +80,8 @@ || !(value.toLowerCase().equals(mTrueValue) || value.toLowerCase() .equals(mFalseValue))) { - throw new IllegalArgumentException("Cannot set a boolean to " - + value); + throw new IllegalArgumentException("Cannot set a boolean to '" + + value + "', allowed are " + mTrueValue + " and " + mFalseValue + "."); } mCheckBox.setSelected(value.toLowerCase().equals(mTrueValue)); } diff -Nru freemind-0.9.0RC6/freemind/common/OptionalDontShowMeAgainDialog.java freemind-0.9.0RC7/freemind/common/OptionalDontShowMeAgainDialog.java --- freemind-0.9.0RC6/freemind/common/OptionalDontShowMeAgainDialog.java 2008-03-30 21:34:45.000000000 +0100 +++ freemind-0.9.0RC7/freemind/common/OptionalDontShowMeAgainDialog.java 2009-12-09 21:57:39.000000000 +0000 @@ -19,7 +19,7 @@ * * Created on 31.07.2007 */ -/*$Id: OptionalDontShowMeAgainDialog.java,v 1.1.2.5 2008/03/30 20:34:45 christianfoltin Exp $*/ +/*$Id: OptionalDontShowMeAgainDialog.java,v 1.1.2.6 2009/12/09 21:57:39 christianfoltin Exp $*/ package freemind.common; @@ -150,9 +150,9 @@ }); mDialog.getContentPane().setLayout(new GridBagLayout()); mDialog.getContentPane().add(new JLabel(mTextTranslator.getText(mMessageId)), - new GridBagConstraints(1, 0, 1, 1, 1.0, 1.0, + new GridBagConstraints(1, 0, 1, 1, 10.0, 4.0, GridBagConstraints.WEST, GridBagConstraints.BOTH, - new Insets(5, 5, 0, 0), 0, 0)); + new Insets(5, 5, 0, 0), 0, 10)); //TODO: Replace by usual java question mark. ImageIcon questionMark = new ImageIcon(Resources.getInstance().getResource("images/icons/help.png")); mDialog.getContentPane().add(new JLabel(questionMark), new GridBagConstraints(0, 0, 1, 2, 1.0, diff -Nru freemind-0.9.0RC6/freemind/controller/Controller.java freemind-0.9.0RC7/freemind/controller/Controller.java --- freemind-0.9.0RC6/freemind/controller/Controller.java 2009-07-14 20:42:55.000000000 +0100 +++ freemind-0.9.0RC7/freemind/controller/Controller.java 2010-02-22 21:18:53.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*$Id: Controller.java,v 1.40.14.21.2.63 2009/07/14 19:42:55 christianfoltin Exp $*/ +/*$Id: Controller.java,v 1.40.14.21.2.64 2010/02/22 21:18:53 christianfoltin Exp $*/ package freemind.controller; @@ -541,10 +541,13 @@ lastOpened.mapOpened(newMapModule); ((MainToolBar) getToolbar()).setZoomComboBox(newMapModule.getView() .getZoom()); - obtainFocusForSelected(); + // old +// obtainFocusForSelected(); newModeController = newMapModule.getModeController(); newModeController.startupController(); newModeController.setVisible(true); + // old +// obtainFocusForSelected(); } else { newModeController = newMode.getDefaultModeController(); getFrame().setView(null); @@ -574,6 +577,8 @@ menuBar.updateMenus(newModeController); menuBar.revalidate(); menuBar.repaint(); + // new + obtainFocusForSelected(); } public void numberOfOpenMapInformation(int number) { @@ -746,12 +751,13 @@ public void obtainFocusForSelected() { // logger.finest("obtainFocusForSelected"); if (getView() != null) { // is null if the last map was closed. -// logger.info("Requesting Focus for " + getView().getSelected()); + logger.info("Requesting Focus for " + getView().getSelected()); getView().getSelected().requestFocus(); } else { // fc, 6.1.2004: bug fix, that open and quit are not working if no map is present. // to avoid this, the menu bar gets the focus, and everything seems to be all right!! // but I cannot avoid thinking of this change to be a bad hack .... + logger.info("No view present. No focus!"); getFrame().getFreeMindMenuBar().requestFocus(); } } diff -Nru freemind-0.9.0RC6/freemind/extensions/ExportHook.java freemind-0.9.0RC7/freemind/extensions/ExportHook.java --- freemind-0.9.0RC6/freemind/extensions/ExportHook.java 2009-03-01 20:16:28.000000000 +0000 +++ freemind-0.9.0RC7/freemind/extensions/ExportHook.java 2010-02-27 09:27:50.000000000 +0000 @@ -19,7 +19,7 @@ * * Created on 16.10.2004 */ -/*$Id: ExportHook.java,v 1.1.4.7.2.11 2009/03/01 20:16:28 christianfoltin Exp $*/ +/*$Id: ExportHook.java,v 1.1.4.7.2.12 2010/02/27 09:27:50 christianfoltin Exp $*/ package freemind.extensions; @@ -149,6 +149,7 @@ g.clipRect(innerBounds.x, innerBounds.y, innerBounds.width, innerBounds.height); view.print(g); myImage = myImage.getSubimage(innerBounds.x, innerBounds.y, innerBounds.width, innerBounds.height); + view.endPrinting(); return myImage; // NodeAdapter root = (NodeAdapter) getController().getMap().getRoot(); // Rectangle rect = view.getInnerBounds(root.getViewer()); diff -Nru freemind-0.9.0RC6/freemind/main/FreeMind.java freemind-0.9.0RC7/freemind/main/FreeMind.java --- freemind-0.9.0RC6/freemind/main/FreeMind.java 2009-09-23 20:21:48.000000000 +0100 +++ freemind-0.9.0RC7/freemind/main/FreeMind.java 2010-02-27 21:44:29.000000000 +0000 @@ -16,23 +16,26 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*$Id: FreeMind.java,v 1.32.14.28.2.133 2009/09/23 19:21:48 christianfoltin Exp $*/ +/*$Id: FreeMind.java,v 1.32.14.28.2.137 2010/02/27 21:44:29 christianfoltin Exp $*/ package freemind.main; import java.awt.BorderLayout; +import java.awt.Component; import java.awt.Container; import java.awt.Cursor; import java.awt.Dimension; import java.awt.Insets; import java.awt.Toolkit; import java.awt.event.ActionEvent; +import java.awt.event.FocusEvent; +import java.awt.event.FocusListener; import java.awt.event.InputEvent; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; +import java.awt.event.WindowFocusListener; import java.io.File; -import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; @@ -73,11 +76,13 @@ import freemind.controller.MenuBar; import freemind.controller.MapModuleManager.MapModuleChangeObserver; import freemind.modes.MindMap; +import freemind.modes.MindMapNode; import freemind.modes.Mode; import freemind.modes.ModeController; import freemind.preferences.FreemindPropertyListener; import freemind.view.MapModule; import freemind.view.mindmapview.MapView; +import freemind.view.mindmapview.NodeView; public class FreeMind extends JFrame implements FreeMindMain { @@ -123,7 +128,7 @@ private Logger logger = null; - protected static final VersionInformation VERSION = new VersionInformation("0.9.0 RC 6"); + protected static final VersionInformation VERSION = new VersionInformation("0.9.0 RC 7"); public static final String XML_VERSION = "0.9.0"; @@ -194,7 +199,9 @@ public FreeMind(Properties pDefaultPreferences, Properties pUserPreferences, File pAutoPropertiesFile) { super("FreeMind"); - // Focus fix + // Focus searcher +// FocusSearch search = new FocusSearch(); +// search.start(); System.setSecurityManager(new FreeMindSecurityManager()); defProps = pDefaultPreferences; props = pUserPreferences; @@ -730,7 +737,7 @@ frame.init(feedBack); feedBack.increase("FreeMind.progress.startCreateController"); - ModeController ctrl = frame.createModeController(args); + final ModeController ctrl = frame.createModeController(args); feedBack.increase("FreeMind.progress.loadMaps"); // This could be improved. @@ -738,6 +745,24 @@ Tools.waitForEventQueue(); feedBack.increase("FreeMind.progress.endStartup"); + // focus fix after startup. + frame.addWindowFocusListener(new WindowFocusListener() { + + public void windowLostFocus(WindowEvent e) { + } + + public void windowGainedFocus(WindowEvent e) { + NodeView selectedView = ctrl.getSelectedView(); + if (selectedView!=null) { + selectedView.requestFocus(); + MindMapNode selected = ctrl.getSelected(); + if (selected!=null) { + ctrl.centerNode(selected); + } + } + frame.removeWindowFocusListener(this); + } + }); frame.setVisible(true); if (splash != null) { splash.setVisible(false); @@ -1128,4 +1153,50 @@ getRootPane().revalidate(); } } + + class FocusSearch extends Thread { + Component lastFocussedC = null; + FocusListener listener = new FocusListener() { + + public void focusGained(FocusEvent pE) { + Tools.printStackTrace(); + } + + public void focusLost(FocusEvent pE) { + // TODO Auto-generated method stub + + } + + }; + + public void run() { + super.run(); + while (true) { + searchFocus(FreeMind.this); + try { + sleep(100); + } catch (InterruptedException e) { + // TODO Auto-generated catch block + freemind.main.Resources.getInstance().logException(e); + } + } + } + + private void searchFocus(Component pComponent) { +// pComponent.removeFocusListener(listener); +// pComponent.addFocusListener(listener); + if(pComponent.hasFocus() && pComponent != lastFocussedC) { + logger.info("Fokus has " + pComponent); + lastFocussedC = pComponent; + } + if (pComponent instanceof Container) { + Container container = (Container) pComponent; + for (int i = 0; i < container.getComponents().length; i++) { + Component child = container.getComponents()[i]; + searchFocus(child); + } + } + } + } + } diff -Nru freemind-0.9.0RC6/freemind/main/HtmlTools.java freemind-0.9.0RC7/freemind/main/HtmlTools.java --- freemind-0.9.0RC6/freemind/main/HtmlTools.java 2009-06-29 18:22:30.000000000 +0100 +++ freemind-0.9.0RC7/freemind/main/HtmlTools.java 2010-02-27 09:27:50.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/*$Id: HtmlTools.java,v 1.1.2.21 2009/06/29 17:22:30 christianfoltin Exp $*/ +/*$Id: HtmlTools.java,v 1.1.2.22 2010/02/27 09:27:50 christianfoltin Exp $*/ package freemind.main; @@ -196,66 +196,45 @@ // IndexPair pair = (IndexPair) iter.next(); // System.out.println(text.substring(pair.originalStart, pair.originalEnd) + ", " + pair); // } - - Matcher matcher = pattern.matcher(stringWithoutTags); - StringBuffer sbResult = new StringBuffer(); - if(matcher.find()) { - /* now, take all from 0 to m.start() from original. - * append the replaced text, append all removed tags from the original - * that stays in between and append the rest. - */ - int mStart = matcher.start(); - int mEnd = matcher.end(); - int state = 0; - for (Iterator iter = splittedStringList.iterator(); iter.hasNext();) { + + /** For each pair which is not a tag we find concurrences and replace + * them, if pair is a tag then we just append + */ + StringBuffer sbResult = new StringBuffer(); + for (Iterator iter = splittedStringList.iterator(); iter.hasNext();) { IndexPair pair = (IndexPair) iter.next(); - switch(state){ - case 0: - // before replacement start: - if(!pair.mIsTag && pair.replacedStart <= mStart && pair.replacedEnd > mStart) { - state = 1; - // only up to start: - sbResult.append(text.substring(pair.originalStart, pair.originalStart + mStart - pair.replacedStart)); - // the replacement: + + if (pair.mIsTag) + sbResult.append(text, pair.originalStart, pair.originalEnd); + else { + + Matcher matcher = pattern.matcher(text.substring(pair.originalStart, pair.originalEnd)); + int mStart = 0; + int mEnd = 0; + int mEndOld = 0; + int mStartOld = 0; + + while (matcher.find()) { + mStart = matcher.start(); + mEnd = matcher.end(); + + sbResult.append(text, pair.originalStart + mEndOld, pair.originalStart + mStart); + /** If it's a first iteration then we append text between start and first + * concurrence, and when it's not first iteration (mEndOld != 0) we append + * text between two concurrences + */ + + // sbResult.append(text, pair.originalStart + mStart, pair.originalStart + mEnd); + // original text sbResult.append(replacement); - // no break as the next case eventually applies inmediately. - } else { - sbResult.append(text.substring(pair.originalStart, pair.originalEnd)); - break; + mEndOld = mEnd; + mStartOld = mStart; } - case 1: - // during replacement: - if(!pair.mIsTag && pair.replacedStart <= mEnd && pair.replacedEnd > mEnd) { - state = 2; - // only after the end: - sbResult.append(text.substring(pair.originalStart + mEnd - pair.replacedStart, pair.originalEnd)); - } else { - // only tags: - if(pair.mIsTag) - sbResult.append(text.substring(pair.originalStart, pair.originalEnd)); - } - break; - case 2: - // the rest: - sbResult.append(text.substring(pair.originalStart, pair.originalEnd)); - break; + sbResult.append(text, pair.originalStart + mEndOld, pair.originalEnd); + // append tail } - } -// //take all from 0 to m.start() from original. -// append(sbResult, input, splittedStringList, 0, mStart); -// //append the replaced text -// sbResult.append(sbReplacement.toString()); -// //append all removed tags from the original that stays in between -// StringBuffer sbTemp = new StringBuffer(); -// append(sbTemp, input, splittedStringList, mStart, mEnd); -// sbResult.append(sbTemp.toString().replaceAll(".*?(<[^>]+>)", "$1")); -// //append the rest. -// append(sbResult, input, splittedStringList, mEnd, stringWithoutTags.length()); - } else { - // no change: - sbResult.append(text); - } -// System.out.println("Result:'"+sbResult.toString()+"'"); + } +// System.out.println("Result:'"+sbResult.toString()+"'"); return sbResult.toString(); } diff -Nru freemind-0.9.0RC6/freemind/main/Tools.java freemind-0.9.0RC7/freemind/main/Tools.java --- freemind-0.9.0RC6/freemind/main/Tools.java 2009-06-29 18:22:30.000000000 +0100 +++ freemind-0.9.0RC7/freemind/main/Tools.java 2010-02-22 21:18:53.000000000 +0000 @@ -17,7 +17,7 @@ * this program; if not, write to the Free Software Foundation, Inc., 59 Temple * Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: Tools.java,v 1.17.18.9.2.50 2009/06/29 17:22:30 christianfoltin Exp $ */ +/* $Id: Tools.java,v 1.17.18.9.2.51 2010/02/22 21:18:53 christianfoltin Exp $ */ package freemind.main; @@ -423,6 +423,11 @@ + /** + * @param string1 input (or null) + * @param string2 input (or null) + * @return true, if equal (that means: same text or both null) + */ public static boolean safeEquals(String string1, String string2) { return (string1 != null && string2 != null && string1.equals(string2)) || (string1 == null && string2 == null); diff -Nru freemind-0.9.0RC6/freemind/modes/ControllerAdapter.java freemind-0.9.0RC7/freemind/modes/ControllerAdapter.java --- freemind-0.9.0RC6/freemind/modes/ControllerAdapter.java 2009-09-23 20:21:49.000000000 +0100 +++ freemind-0.9.0RC7/freemind/modes/ControllerAdapter.java 2010-01-25 20:17:59.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: ControllerAdapter.java,v 1.41.14.37.2.57 2009/09/23 19:21:49 christianfoltin Exp $ */ +/* $Id: ControllerAdapter.java,v 1.41.14.37.2.58 2010/01/25 20:17:59 christianfoltin Exp $ */ package freemind.modes; @@ -345,10 +345,10 @@ final MapAdapter model = newModel(newModeController); model.load(file); newMap(model); - EventQueue.invokeLater(new Runnable(){ - public void run() { +// EventQueue.invokeLater(new Runnable(){ +// public void run() { model.setSaved(true); - }}); +// }}); return newModeController; } @@ -362,10 +362,10 @@ model.load(file); logger.info("Start loading " + file); newMap(model); - EventQueue.invokeLater(new Runnable(){ - public void run() { +// EventQueue.invokeLater(new Runnable(){ +// public void run() { model.setSaved(true); - }}); +// }}); logger.info("Finished loading " + file); return newModeController; } diff -Nru freemind-0.9.0RC6/freemind/modes/MapAdapter.java freemind-0.9.0RC7/freemind/modes/MapAdapter.java --- freemind-0.9.0RC6/freemind/modes/MapAdapter.java 2008-08-29 04:10:01.000000000 +0100 +++ freemind-0.9.0RC7/freemind/modes/MapAdapter.java 2010-01-25 20:17:59.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: MapAdapter.java,v 1.24.14.10.2.28 2008/08/29 03:10:01 christianfoltin Exp $ */ +/* $Id: MapAdapter.java,v 1.24.14.10.2.29 2010/01/25 20:17:59 christianfoltin Exp $ */ package freemind.modes; @@ -161,7 +161,7 @@ * @param saved true if the file was saved recently. False otherwise. */ public void setSaved(boolean saved) { - boolean setTitle = false; + boolean setTitle = false; if(saved) { changesPerformedSinceLastSave = 0; setTitle = true; diff -Nru freemind-0.9.0RC6/freemind/modes/mindmapmode/actions/EditAction.java freemind-0.9.0RC7/freemind/modes/mindmapmode/actions/EditAction.java --- freemind-0.9.0RC6/freemind/modes/mindmapmode/actions/EditAction.java 2009-05-16 23:11:08.000000000 +0100 +++ freemind-0.9.0RC7/freemind/modes/mindmapmode/actions/EditAction.java 2009-11-28 21:34:18.000000000 +0000 @@ -298,7 +298,7 @@ } public void stopEditing() { if(mCurrentEditDialog != null) { - // there was presvious editing. + // there was previous editing. mCurrentEditDialog.closeEdit(); mCurrentEditDialog = null; } diff -Nru freemind-0.9.0RC6/freemind/modes/mindmapmode/actions/ImportFolderStructureAction.java freemind-0.9.0RC7/freemind/modes/mindmapmode/actions/ImportFolderStructureAction.java --- freemind-0.9.0RC6/freemind/modes/mindmapmode/actions/ImportFolderStructureAction.java 2008-07-09 21:01:17.000000000 +0100 +++ freemind-0.9.0RC7/freemind/modes/mindmapmode/actions/ImportFolderStructureAction.java 2009-10-29 19:40:27.000000000 +0000 @@ -26,6 +26,7 @@ import javax.swing.AbstractAction; import javax.swing.JFileChooser; +import freemind.main.FreeMindMain; import freemind.main.Tools; import freemind.modes.MindMapNode; import freemind.modes.mindmapmode.MindMapController; @@ -47,48 +48,58 @@ chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); chooser.setDialogTitle(controller .getText("select_folder_for_importing")); - int returnVal = chooser.showOpenDialog(controller.getFrame() + FreeMindMain frame = getFrame(); + int returnVal = chooser.showOpenDialog(frame .getContentPane()); if (returnVal == JFileChooser.APPROVE_OPTION) { File folder = chooser.getSelectedFile(); - controller.getFrame().out("Importing folder structure ..."); + frame.out("Importing folder structure ..."); //getFrame().repaint(); // Refresh the frame, namely hide dialog // and show status //getView().updateUI(); // Problem: the frame should be refreshed here, but I don't know how // to do it try { + frame.setWaitingCursor(true); importFolderStructure(folder, controller.getSelected(),/* redisplay= */ true); } catch (Exception ex) { freemind.main.Resources.getInstance().logException(ex); } - controller.getFrame().out("Folder structure imported."); + frame.setWaitingCursor(false); + frame.out("Folder structure imported."); } } + private FreeMindMain getFrame() { + return controller.getFrame(); + } + public void importFolderStructure(File folder, MindMapNode target, boolean redisplay) throws MalformedURLException { logger.warning("Entering folder: "+folder); if (folder.isDirectory()) { + getFrame().out(folder.getName()); File[] list = folder.listFiles(); - // Go recursively to subfolders - for (int i = 0; i < list.length; i++) { - if (list[i].isDirectory()) { - // Insert a new node - - MindMapNode node = addNode(target, list[i].getName(), Tools.fileToUrl(list[i]).toString()); - importFolderStructure(list[i], node, false); - } - } - - // For each file: add it - for (int i = 0; i < list.length; i++) { - if (!list[i].isDirectory()) { - addNode(target, list[i].getName(), Tools.fileToUrl(list[i]).toString()); - } - } + if (list != null) { + // Go recursively to subfolders + for (int i = 0; i < list.length; i++) { + if (list[i].isDirectory()) { + // Insert a new node + MindMapNode node = addNode(target, list[i].getName(), + Tools.fileToUrl(list[i]).toString()); + importFolderStructure(list[i], node, false); + } + } + // For each file: add it + for (int i = 0; i < list.length; i++) { + if (!list[i].isDirectory()) { + addNode(target, list[i].getName(), Tools.fileToUrl( + list[i]).toString()); + } + } + } } controller.setFolded(target, true); diff -Nru freemind-0.9.0RC6/freemind/modes/mindmapmode/actions/xml/ActionFactory.java freemind-0.9.0RC7/freemind/modes/mindmapmode/actions/xml/ActionFactory.java --- freemind-0.9.0RC6/freemind/modes/mindmapmode/actions/xml/ActionFactory.java 2009-02-04 19:31:21.000000000 +0000 +++ freemind-0.9.0RC7/freemind/modes/mindmapmode/actions/xml/ActionFactory.java 2009-11-28 21:34:18.000000000 +0000 @@ -19,7 +19,7 @@ * * Created on 24.04.2004 */ -/* $Id: ActionFactory.java,v 1.1.2.2.2.8 2009/02/04 19:31:21 christianfoltin Exp $ */ +/* $Id: ActionFactory.java,v 1.1.2.2.2.10 2009/11/28 21:34:18 christianfoltin Exp $ */ package freemind.modes.mindmapmode.actions.xml; diff -Nru freemind-0.9.0RC6/freemind/modes/mindmapmode/MindMapController.java freemind-0.9.0RC7/freemind/modes/mindmapmode/MindMapController.java --- freemind-0.9.0RC6/freemind/modes/mindmapmode/MindMapController.java 2009-06-29 18:22:30.000000000 +0100 +++ freemind-0.9.0RC7/freemind/modes/mindmapmode/MindMapController.java 2010-01-25 20:17:59.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: MindMapController.java,v 1.35.14.21.2.76 2009/06/29 17:22:30 christianfoltin Exp $ */ +/* $Id: MindMapController.java,v 1.35.14.21.2.78 2010/01/25 20:17:59 christianfoltin Exp $ */ package freemind.modes.mindmapmode; @@ -430,7 +430,8 @@ // the executor must be the first here, because it is executed last then. getActionFactory().registerHandler(new ModeControllerActionHandler(getActionFactory())); getActionFactory().registerUndoHandler(new UndoActionHandler(this, undo, redo)); - //debug: getActionFactory().registerHandler(new freemind.modes.mindmapmode.actions.xml.PrintActionHandler(this)); + //debug: + getActionFactory().registerHandler(new freemind.modes.mindmapmode.actions.xml.PrintActionHandler(this)); cut = new CutAction(this); paste = new PasteAction(this); @@ -2130,12 +2131,12 @@ public void setNoteText(MindMapNode node, String text) { String oldNoteText = node.getNoteText(); -// logger.info("Old Note Text:'" + oldNoteText + ", new:'" + text + "'."); -// logger.info(Tools.compareText(oldNoteText, text)); if(Tools.safeEquals(text, oldNoteText)) { // they are equal. return; } + logger.info("Old Note Text:'" + oldNoteText + ", new:'" + text + "'."); + logger.info(Tools.compareText(oldNoteText, text)); EditNoteToNodeAction doAction = createEditNoteToNodeAction(node, text); EditNoteToNodeAction undoAction = createEditNoteToNodeAction(node, diff -Nru freemind-0.9.0RC6/freemind/modes/mindmapmode/MindMapMapModel.java freemind-0.9.0RC7/freemind/modes/mindmapmode/MindMapMapModel.java --- freemind-0.9.0RC6/freemind/modes/mindmapmode/MindMapMapModel.java 2009-05-29 21:48:46.000000000 +0100 +++ freemind-0.9.0RC7/freemind/modes/mindmapmode/MindMapMapModel.java 2009-12-09 21:57:39.000000000 +0000 @@ -17,7 +17,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: MindMapMapModel.java,v 1.36.14.16.2.34 2009/05/29 20:48:46 christianfoltin Exp $ */ +/* $Id: MindMapMapModel.java,v 1.36.14.16.2.35 2009/12/09 21:57:39 christianfoltin Exp $ */ package freemind.modes.mindmapmode; @@ -382,14 +382,15 @@ if (reader == null) { int showResult = new OptionalDontShowMeAgainDialog(mModeController .getFrame().getJFrame(), mModeController.getSelectedView(), - "really_convert_to_current_version", "confirmation", mModeController, + "really_convert_to_current_version2", "confirmation", mModeController, new OptionalDontShowMeAgainDialog.StandardPropertyHandler( mModeController.getController(), FreeMind.RESOURCES_CONVERT_TO_CURRENT_VERSION), OptionalDontShowMeAgainDialog.ONLY_OK_SELECTION_IS_STORED) .show().getResult(); if(showResult != JOptionPane.OK_OPTION) { - reader = Tools.getActualReader(file); +// reader = Tools.getActualReader(file); + throw new IllegalArgumentException("We should not open the file " + file); } else { reader = Tools.getUpdateReader(file, FREEMIND_VERSION_UPDATER_XSLT, getFrame()); } diff -Nru freemind-0.9.0RC6/freemind/preferences/layout/OptionPanel.java freemind-0.9.0RC7/freemind/preferences/layout/OptionPanel.java --- freemind-0.9.0RC6/freemind/preferences/layout/OptionPanel.java 2009-05-21 18:42:43.000000000 +0100 +++ freemind-0.9.0RC7/freemind/preferences/layout/OptionPanel.java 2010-02-27 21:27:14.000000000 +0000 @@ -19,7 +19,7 @@ * * Created on 06.05.2005 */ -/* $Id: OptionPanel.java,v 1.1.2.25.2.55 2009/05/21 17:42:43 christianfoltin Exp $ */ +/* $Id: OptionPanel.java,v 1.1.2.25.2.57 2010/02/27 21:27:14 christianfoltin Exp $ */ package freemind.preferences.layout; import java.awt.BorderLayout; @@ -444,8 +444,8 @@ * http://www.loc.gov/standards/iso639-2/php/English_list.php */ "language.tooltip", FreeMindCommon.RESOURCE_LANGUAGE, new String[] { - "automatic", "ar", "cs", "de", "dk", "en", "el", "es", "et", - "fr", "gl", "hr", "hu", "id", "it", "ja", "kr", "lt", "nl", + "automatic", "ar", "cs", "de", "dk", "en", "el", "es", "et", "eu", + "fr", "gl", "hr", "hu", "id", "it", "ja", "ko", "lt", "nl", "nn", "nb", "pl", "pt_BR", "pt_PT", "ro", "ru", "sk", "se", "sl", "tr", "uk_UA", "vi", "zh_TW", "zh_CN" }, new TextTranslator() { diff -Nru freemind-0.9.0RC6/freemind/view/mindmapview/EditNodeTextField.java freemind-0.9.0RC7/freemind/view/mindmapview/EditNodeTextField.java --- freemind-0.9.0RC6/freemind/view/mindmapview/EditNodeTextField.java 2008-04-10 21:49:21.000000000 +0100 +++ freemind-0.9.0RC7/freemind/view/mindmapview/EditNodeTextField.java 2010-02-22 21:18:53.000000000 +0000 @@ -19,7 +19,7 @@ * * Created on 02.05.2004 */ -/*$Id: EditNodeTextField.java,v 1.1.4.3.10.24 2008/04/10 20:49:21 dpolivaev Exp $*/ +/*$Id: EditNodeTextField.java,v 1.1.4.3.10.25 2010/02/22 21:18:53 christianfoltin Exp $*/ package freemind.view.mindmapview; @@ -154,13 +154,13 @@ if(! textfield.isVisible() || eventSource.getValue() == CANCEL) return; if (e == null) { // can be when called explicitly + hideMe(); getEditControl().ok(textfield.getText()); - hideMe(); eventSource.setValue(CANCEL); // disallow real focus lost } else { // always confirm the text if not yet + hideMe(); getEditControl().ok(textfield.getText()); - hideMe(); } } @@ -180,15 +180,13 @@ e.consume(); eventSource.setValue(CANCEL); + hideMe(); // do not process loose of focus if (commit) { getEditControl().ok(textfield.getText()); } else { getEditControl().cancel(); } - hideMe(); - // hack: to keep the focus - nodeView.requestFocus(); break; case KeyEvent.VK_SPACE : diff -Nru freemind-0.9.0RC6/freemind/view/mindmapview/EditNodeWYSIWYG.java freemind-0.9.0RC7/freemind/view/mindmapview/EditNodeWYSIWYG.java --- freemind-0.9.0RC6/freemind/view/mindmapview/EditNodeWYSIWYG.java 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/freemind/view/mindmapview/EditNodeWYSIWYG.java 2010-02-22 21:18:53.000000000 +0000 @@ -17,7 +17,7 @@ *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ -/*$Id: EditNodeWYSIWYG.java,v 1.1.4.42 2009/06/24 20:40:19 christianfoltin Exp $*/ +/*$Id: EditNodeWYSIWYG.java,v 1.1.4.43 2010/02/22 21:18:53 christianfoltin Exp $*/ package freemind.view.mindmapview; @@ -25,27 +25,16 @@ import java.awt.Color; import java.awt.Component; import java.awt.Dimension; -import java.awt.EventQueue; import java.awt.Font; -import java.awt.KeyboardFocusManager; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; -import java.awt.event.ComponentAdapter; -import java.awt.event.ComponentEvent; -import java.awt.event.ComponentListener; -import java.awt.event.FocusAdapter; -import java.awt.event.FocusEvent; import java.awt.event.KeyEvent; import java.net.MalformedURLException; +import java.net.URL; -import javax.swing.ActionMap; -import javax.swing.InputMap; import javax.swing.JButton; -import javax.swing.JComponent; -import javax.swing.JDialog; import javax.swing.JEditorPane; import javax.swing.JPanel; -import javax.swing.KeyStroke; import javax.swing.text.JTextComponent; import javax.swing.text.html.HTMLDocument; @@ -55,7 +44,6 @@ import freemind.main.HtmlTools; import freemind.main.Tools; import freemind.modes.ModeController; -import freemind.view.mindmapview.EditNodeBase.EditDialog.CancelAction; /** * @author Daniel Polansky @@ -107,6 +95,15 @@ buttonPane.add(splitButton); buttonPane.setMaximumSize(new Dimension(1000, 20)); getContentPane().add(buttonPane, BorderLayout.SOUTH); + htmlEditorPanel.setOpenHyperlinkHandler(new ActionListener(){ + + public void actionPerformed(ActionEvent pE) { + try { + getBase().getController().getFrame().openDocument(new URL(pE.getActionCommand())); + } catch (Exception e) { + freemind.main.Resources.getInstance().logException(e); + } + }}); } private SHTMLPanel createEditorPanel() throws Exception { diff -Nru freemind-0.9.0RC6/freemind/view/mindmapview/MapView.java freemind-0.9.0RC7/freemind/view/mindmapview/MapView.java --- freemind-0.9.0RC6/freemind/view/mindmapview/MapView.java 2009-05-18 20:47:57.000000000 +0100 +++ freemind-0.9.0RC7/freemind/view/mindmapview/MapView.java 2009-12-05 23:21:32.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: MapView.java,v 1.30.16.16.2.61 2009/05/18 19:47:57 christianfoltin Exp $ */ +/* $Id: MapView.java,v 1.30.16.16.2.62 2009/12/05 23:21:32 christianfoltin Exp $ */ package freemind.view.mindmapview; import java.awt.BasicStroke; @@ -92,7 +92,7 @@ } public void componentResized(ComponentEvent pE) { - logger.info("Component resized " +pE + " old size " + mSize + " new size " + getSize()); + logger.fine("Component resized " +pE + " old size " + mSize + " new size " + getSize()); int deltaWidth = mSize.width - getWidth(); int deltaHeight = mSize.height - getHeight(); JViewport mapViewport = (JViewport)getParent(); @@ -410,7 +410,7 @@ Rectangle rect = new Rectangle(content.getWidth()/2 - d.width/2, content.getHeight()/2 - d.height/2, d.width, d.height); - logger.info("Scroll to " + rect + ", pref size="+viewPort.getPreferredSize() + ", " + this.getPreferredSize()); + logger.fine("Scroll to " + rect + ", pref size="+viewPort.getPreferredSize() + ", " + this.getPreferredSize()); // One call of scrollRectToVisible suffices // after patching the FreeMind.java @@ -939,10 +939,10 @@ for(Iterator it = pointNodePairs.iterator();it.hasNext();) { selectedNodes.add( ((Pair)it.next()).getSecond() ); } -// logger.info("Cutting #" + selectedNodes.size()); +// logger.fine("Cutting #" + selectedNodes.size()); // for (Iterator it = selectedNodes.iterator(); it.hasNext();) { // MindMapNode node = (MindMapNode) it.next(); -// logger.info("Cutting " + node); +// logger.fine("Cutting " + node); // } return selectedNodes; } @@ -1063,7 +1063,7 @@ long localTime = System.currentTimeMillis()-startMilli; mPaintingAmount++; mPaintingTime += localTime; - logger.info("End paint in "+localTime+ ". Mean time:" + (mPaintingTime/mPaintingAmount)); + logger.fine("End paint in "+localTime+ ". Mean time:" + (mPaintingTime/mPaintingAmount)); } public void paintChildren(Graphics graphics) { @@ -1138,7 +1138,7 @@ if(LinkAlreadyVisited == null) LinkAlreadyVisited = new HashSet(); // references first -// logger.info("Searching for links of " + source.getModel().toString()); +// logger.fine("Searching for links of " + source.getModel().toString()); // paint own labels: Vector vec = getModel().getLinkRegistry().getAllLinks(source.getModel()); for(int i = 0; i< vec.size(); ++i) { diff -Nru freemind-0.9.0RC6/freemind/view/mindmapview/NodeView.java freemind-0.9.0RC7/freemind/view/mindmapview/NodeView.java --- freemind-0.9.0RC6/freemind/view/mindmapview/NodeView.java 2009-07-04 21:38:27.000000000 +0100 +++ freemind-0.9.0RC7/freemind/view/mindmapview/NodeView.java 2010-02-22 21:18:53.000000000 +0000 @@ -16,7 +16,7 @@ *along with this program; if not, write to the Free Software *Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: NodeView.java,v 1.27.14.22.2.69 2009/07/04 20:38:27 christianfoltin Exp $ */ +/* $Id: NodeView.java,v 1.27.14.22.2.70 2010/02/22 21:18:53 christianfoltin Exp $ */ package freemind.view.mindmapview; @@ -72,6 +72,10 @@ * TreeCellRenderer). */ public class NodeView extends JComponent implements TreeModelListener{ + public void setFocusCycleRoot(boolean pFocusCycleRoot) { + // FIXME: On purpose removed. test this! + // super.setFocusCycleRoot(pFocusCycleRoot); + } static private int FOLDING_SYMBOL_WIDTH = -1; protected MindMapNode model; @@ -271,8 +275,11 @@ public void requestFocus(){ - /*boolean requestResult = */mainView. requestFocusInWindow(); -// logger.info("Request Focus for ("+requestResult+") for " + mainView); + boolean requestResult = mainView. requestFocusInWindow(); + if(!requestResult) { + logger.finest("Using 'requestFocus' to request Focus for " + mainView); + mainView.requestFocus(); + } } public boolean focused(){ return mainView.hasFocus(); diff -Nru freemind-0.9.0RC6/freemind.properties freemind-0.9.0RC7/freemind.properties --- freemind-0.9.0RC6/freemind.properties 2009-05-20 20:19:11.000000000 +0100 +++ freemind-0.9.0RC7/freemind.properties 2009-12-09 21:57:39.000000000 +0000 @@ -1,4 +1,4 @@ -#/*$Id: freemind.properties,v 1.36.14.16.2.68 2009/05/20 19:19:11 christianfoltin Exp $*/ -*- mode:sh -*- #This is the language that should be used in the program. "automatic" tries to load the current user's language. language = automatic antialias = antialias_edges html_export_folding = html_export_fold_currently_folded #should node be unfolded if child node is pasted ? #fc, 10.4.2008: set to false as default like in version 0.8.1 unfold_on_paste=false # Experimental features, "true" / "false" experimental_file_locking_on = false #If dnd is enabled. "true" or "false" draganddrop = true #The Modes which Freemind will load on startup, full Class names, comma, identifier, separated by a comma. #modes = freemind.modes.browsemode.BrowseMode,Browse,freemind.modes.mindmapmode.MindMapMode,MindMap,freemind.modes.filemode.FileMode,File modes_since_0_8_0 = freemind.modes.browsemode.BrowseMode,Browse,freemind.modes.mindmapmode.MindMapMode,MindMap,freemind.modes.filemode.FileMode,File +#/*$Id: freemind.properties,v 1.36.14.16.2.69 2009/12/09 21:57:39 christianfoltin Exp $*/ -*- mode:sh -*- #This is the language that should be used in the program. "automatic" tries to load the current user's language. language = automatic antialias = antialias_edges html_export_folding = html_export_fold_currently_folded #should node be unfolded if child node is pasted ? #fc, 10.4.2008: set to false as default like in version 0.8.1 unfold_on_paste=false # Experimental features, "true" / "false" experimental_file_locking_on = false #If dnd is enabled. "true" or "false" draganddrop = true #The Modes which Freemind will load on startup, full Class names, comma, identifier, separated by a comma. #modes = freemind.modes.browsemode.BrowseMode,Browse,freemind.modes.mindmapmode.MindMapMode,MindMap,freemind.modes.filemode.FileMode,File modes_since_0_8_0 = freemind.modes.browsemode.BrowseMode,Browse,freemind.modes.mindmapmode.MindMapMode,MindMap,freemind.modes.filemode.FileMode,File #The initial mode that is loaded on startup initial_mode = MindMap #This is the place where the users properties file is located. It is ignored by the applet (set Parameters in the html #file instead). You can write "~" to indicate the users home directory. #Of course this works only in the default "freemind.properties", which is included in the jar file, not for the users #freemind.props out of the jar file. properties_folder = .freemind userproperties = user.properties autoproperties = auto.properties patternsfile = patterns.xml @@ -49,5 +49,5 @@ # time management plugin: keystroke_plugins/TimeManagement.xml_key=control T keystroke_plugins/TimeList.xml_key=control shift F # simplyhtml simplyhtml.menubar=edit format table help # toolbar definition # # each word (delimited by blanks) is a key for # an action in the tool bar (- = separator) simplyhtml.toolBar=undo redo - cut copy paste - findReplace # format toolbar definition # # each word (delimited by blanks) is a key for # an action in the tool bar (- = separator) simplyhtml.formatToolBar=fontFamily fontSize - fontBold fontItalic fontUnderline fontColor clearFormat # para toolbar definition # # each word (delimited by blanks) is a key for # an action in the tool bar (- = separator) simplyhtml.paraToolBar=paraAlignLeft paraAlignCenter paraAlignRight - toggleBullets toggleNumbers # edit menu definition simplyhtml.edit=undo redo - cut copy paste - findReplace - selectAll simplyhtml.popup=undo redo - cut copy paste # edit menu items simplyhtml.undoImage=resources/undo.gif simplyhtml.redoImage=resources/redo.gif simplyhtml.cutImage=resources/cut.gif simplyhtml.copyImage=resources/copy.gif simplyhtml.pasteImage=resources/paste.gif simplyhtml.findReplaceImage=resources/fr.gif #insert menu items simplyhtml.insertTableImage=resources/table.gif simplyhtml.insertImageImage=resources/image.gif # format menu definition simplyhtml.format=font - formatPara fontBold fontItalic fontUnderline fontColor clearFormat - paraAlignLeft paraAlignCenter paraAlignRight - formatList toggleBullets toggleNumbers # format menu items simplyhtml.fontImage=resources/font.gif simplyhtml.clearFormatImage=resources/clearFormat.gif simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif simplyhtml.fontColorSelectedIcon=resources/fontColor.gif simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif simplyhtml.fontUnderlineSelectedIcon=resources/uline_on.gif simplyhtml.formatTableImage=resources/fmtTab.gif simplyhtml.toggleBulletsImage=resources/ul.gif simplyhtml.toggleNumbersImage=resources/ol.gif simplyhtml.formatParaImage=resources/fmtPara.gif simplyhtml.paraAlignLeftImage=resources/algnLft.gif simplyhtml.paraAlignLeftSelectedIcon=resources/algnLft_on.gif simplyhtml.paraAlignCenterImage=resources/algnCtr.gif simplyhtml.paraAlignCenterSelectedIcon=resources/algnCtr_on.gif simplyhtml.paraAlignRightImage=resources/algnRt.gif simplyhtml.paraAlignRightSelectedIcon=resources/algnRt_on.gif # table menu definition simplyhtml.table=insertTable - nextTableCell prevTableCell - appendTableRow appendTableCol - insertTableRow insertTableCol - deleteTableRow deleteTableCol # table menu items simplyhtml.deleteTableColImage=resources/delCol.gif simplyhtml.insertTableRowImage=resources/insRow.gif simplyhtml.insertTableColImage=resources/insCol.gif simplyhtml.deleteTableRowImage=resources/delRow.gif # help menu definition simplyhtml.help = about # About frame simplyhtml.appImage=resources/appImage.jpg simplyhtml.appIcon=resources/icon_trans.gif # Splah screen simplyhtml.splashImage=resources/splashImage.jpg # Miscellaneous text simplyhtml.okBtnName=OK simplyhtml.standardStyleName=standard # not use shtml standard style for new documents simplyhtml.use_std_styles=false # fc, 2.3.07, mouse wheel speed wheel_velocity=80 # fc, 12.5.07: keystrokes for history: keystroke_accessories/plugins/NodeHistoryForward.keystroke.alt_FORWARD=alt RIGHT keystroke_accessories/plugins/NodeHistoryBack.keystroke.alt_BACK=alt LEFT #fc, 25.5.07: tabbed pane or not: use_tabbed_pane=true # fc, 31.7.07 delete_nodes_without_question= # Dimitry, 30.08.07 remind_use_rich_text_in_new_long_nodes= # fc, 3.9.07: resources_execute_scripts_without_asking= #fc, 11.9.07: use_split_pane=true #dimitry, 25.10.07 use_common_out_point_for_root_node=false -#fc, 25.5.07: tabbed pane or not: use_tabbed_pane=true #fc, 19.10.2007: standard is true as this is correct for almost every user... resources_convert_to_current_version=true +#fc, 25.5.07: tabbed pane or not: use_tabbed_pane=true #fc, 19.10.2007: standard is asking the user (changed, 6.12.2009) resources_convert_to_current_version= #fc, 12.11.07: keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=F11 #fc, 8.1.2008: resources_cut_nodes_without_question= #fc, 18.2.2008: save_only_intrisically_needed_ids=false #fc, 7.3.2008: resources_execute_scripts_without_file_restriction=false resources_execute_scripts_without_network_restriction=false resources_execute_scripts_without_exec_restriction=false #fc, 10.4.2008: resources_don_t_show_note_icons=false resources_remove_notes_without_question= resources_save_folding_state=true # fc, 18.4.2008: Empty means, that the freemind default key is used. resources_script_user_key_name_for_signing= resources_signed_script_are_trusted=true # fc, 28.4.2008: used and displayed icons as a list with divider ';': icons.list=idea;help;yes;messagebox_warning;stop-sign;closed;info;button_ok;button_cancel;full-1;full-2;full-3;full-4;full-5;full-6;full-7;full-8;full-9;full-0;stop;prepare;go;back;forward;up;down;attach;ksmiletris;smiley-neutral;smiley-oh;smiley-angry;smily_bad;clanbomber;desktop_new;gohome;folder;korn;Mail;kmail;list;edit;kaddressbook;knotify;password;pencil;wizard;xmag;bell;bookmark;penguin;licq;freemind_butterfly;broken-line;calendar;clock;hourglass;launch;flag-black;flag-blue;flag-green;flag-orange;flag-pink;flag;flag-yellow;family;female1;female2;male1;male2;fema;group # not added: encrypted;decrypted;redo; # fc, 23.3.2009: Here, the default node font is taken as the default note's font, too. # possible values: true or false (or anything else, that is interpreted as "false", too). # This property waits for being integrated into the OptionPanel after the 0.9.0 release. resources_use_default_font_for_notes_too=true # fc, 23.3.2009: Here, a margin-top:0; is added to the style of each note causing # a line spacing of zero above each paragraph. # possible values: true or false (or anything else, that is interpreted as "false", too). # This property waits for being integrated into the OptionPanel after the 0.9.0 release. resources_use_margin_top_zero_for_notes=true # when no other source is present, FreeMind opens with a blank map. This can be switched off # here, and is in fact switched off for mac in MacChanges. load_new_map_when_no_other_is_specified=true # freemind tries to place dialogs on the screen. if you have multiple screens, you probalby want to switch off this feature: place_dialogs_on_first_screen=true \ No newline at end of file diff -Nru freemind-0.9.0RC6/history.txt freemind-0.9.0RC7/history.txt --- freemind-0.9.0RC6/history.txt 2009-10-22 18:56:29.000000000 +0100 +++ freemind-0.9.0RC7/history.txt 2010-02-27 21:44:28.000000000 +0000 @@ -1,4 +1,20 @@ =============================== +Changes made in FreeMind 0.9.0 RC 7 +=============================== +* Fixed: Some little bugs in Import Folder Action (null pointer and waiting cursor). +* Fixed: .mm files association does not work on Windows * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2847660&group_id=7118 +* Feature: Question before converting maps of older versions. +* Fixed: Maps becomes dirty on map change (if notes window is open) +* Updated HTML Editor Simply Html +* Fixed: Selection wrong on move nodes left/right +* Fixed: Initial focus when notes window open +* Fixed: Focus when leave node editing with escape +* Added: Open hyperlinks in nodes editor +* New: Search&Replace replaces now all occurences. Thanks to OlegKandaurov (f0y) for the patch. +* Fixed: Node selection after png/jpg export. +* New language basque. Thanks to the author. + +=============================== Changes made in FreeMind 0.9.0 RC 6 =============================== * Fixed: Plain text Long node gets corrupted (loses newlines) on drag * http://sourceforge.net/tracker/?func=detail&aid=2844139&group_id=7118&atid=107118 Binary files /tmp/F8m7I7kFba/freemind-0.9.0RC6/lib/bindings.jar and /tmp/WcB0LjR4Yp/freemind-0.9.0RC7/lib/bindings.jar differ Binary files /tmp/F8m7I7kFba/freemind-0.9.0RC6/lib/SimplyHTML/SimplyHTML.jar and /tmp/WcB0LjR4Yp/freemind-0.9.0RC7/lib/SimplyHTML/SimplyHTML.jar differ diff -Nru freemind-0.9.0RC6/release_notes_0.9.0_RC5.txt freemind-0.9.0RC7/release_notes_0.9.0_RC5.txt --- freemind-0.9.0RC6/release_notes_0.9.0_RC5.txt 2009-10-22 18:57:00.000000000 +0100 +++ freemind-0.9.0RC7/release_notes_0.9.0_RC5.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,37 +0,0 @@ -Notes: - - -Dear FreeMind users, - -with this release, we continue the series of release candidates for -the final version 0.9.0. It fixes some important bugs. - -For translators may still update the translations to the current - set of strings, which hasn't changed since RC3. - -For testers: we need *everybody* to do tests. From the simplest to the -hardest (e.g. memory and performance tests using profilers). -If you have time - join us and tell your results -(in the open discussion forum or in the bugs section). - -Best regards, - -Chris - - -Changes: - -=============================== -Changes made in FreeMind 0.9.0 RC 5 -=============================== -* Fixed caret position during automatic save in notes window. (see https://sourceforge.net/forum/message.php?msg_id=7413407). -* Disabled splash screen of SimplyHtml as this looks unusual. Nevertheless, many thanks to the authors of this important component. -* Fixed: Map does not load with RC4 * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2797009&group_id=7118 -* Updated korean translation, now with correct ISO code. Thanks to the author. -* Fixed license problem with xsd2jibx.jar. Replaced with own library compileXsd.jar with GPLv2+. -* Long node editor uses zoomed fonts (the rich type editor are still unzoomed). -* Fixed problems with in node text. -* Fixed some "Center node" problems -* Fixed: Node marker disappears after exporting * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2813905&group_id=7118 -* Fixed some focus problems. -* Integrated (thanks to the author): Typos in help Mind Map * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2805776&group_id=7118 diff -Nru freemind-0.9.0RC6/release_notes_0.9.0_RC6.txt freemind-0.9.0RC7/release_notes_0.9.0_RC6.txt --- freemind-0.9.0RC6/release_notes_0.9.0_RC6.txt 2009-10-22 18:57:00.000000000 +0100 +++ freemind-0.9.0RC7/release_notes_0.9.0_RC6.txt 1970-01-01 01:00:00.000000000 +0100 @@ -1,50 +0,0 @@ -Notes: - - -Dear FreeMind users, - -with this release, we continue the series of release candidates for -the final version 0.9.0. It fixes some important bugs. - -For translators may still update the translations to the current - set of strings, which hasn't changed since RC3. - -For testers: we need *everybody* to do tests. From the simplest to the -hardest (e.g. memory and performance tests using profilers). -If you have time - join us and tell your results -(in the open discussion forum or in the bugs section). - -Best regards, - -Chris - - -Changes: - -=============================== -Changes made in FreeMind 0.9.0 RC 6 -=============================== -* Fixed: Plain text Long node gets corrupted (loses newlines) on drag * http://sourceforge.net/tracker/?func=detail&aid=2844139&group_id=7118&atid=107118 -* Fixed: Question before delete issued from the menu added -* Fixed: Message on status bar is cleared before save. -* Improved: Graphical layout of password dialog for encryption -* Improved: If a file exists in "File->Save as" the file dialog is repeated. -* We now create two different versions for Mac: for OSX 10.5 Rosetta, there is a different one. - These versions differ only in the way, the JavaApplicationStub is handled (the Rosetta version - takes a copy from my laptop, the other version uses a symbolic link to - /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub) - -=============================== -Changes made in FreeMind 0.9.0 RC 5 -=============================== -* Fixed caret position during automatic save in notes window. (see https://sourceforge.net/forum/message.php?msg_id=7413407). -* Disabled splash screen of SimplyHtml as this looks unusual. Nevertheless, many thanks to the authors of this important component. -* Fixed: Map does not load with RC4 * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2797009&group_id=7118 -* Updated korean translation, now with correct ISO code. Thanks to the author. -* Fixed license problem with xsd2jibx.jar. Replaced with own library compileXsd.jar with GPLv2+. -* Long node editor uses zoomed fonts (the rich type editor are still unzoomed). -* Fixed problems with in node text. -* Fixed some "Center node" problems -* Fixed: Node marker disappears after exporting * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2813905&group_id=7118 -* Fixed some focus problems. -* Integrated (thanks to the author): Typos in help Mind Map * https://sourceforge.net/tracker/?func=detail&atid=107118&aid=2805776&group_id=7118 diff -Nru freemind-0.9.0RC6/Resources_ar.properties freemind-0.9.0RC7/Resources_ar.properties --- freemind-0.9.0RC6/Resources_ar.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_ar.properties 2010-02-27 21:47:59.000000000 +0000 @@ -5,7 +5,7 @@ \ufeffabout = about =\u062d\u0648\u0644 -about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2008 Joerg Mueller and others.\nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave fun!\nVersion: +about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller and others.\nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave fun!\nVersion: accessories/plugins/AutomaticLayout.properties_documentation= #fc, 15.11.2004: accessories/plugins/AutomaticLayout.properties_documentation = Fixes the layout of the map.
The first level is black, the second blue, etc. @@ -348,7 +348,7 @@ less_than_two_selected_nodes =\u064a\u062c\u0628 \u062a\u062d\u062f\u064a\u062f \u0639\u0646\u0635\u0631\u064a\u0646 \u0639\u0644\u0649 \u0627\u0644\u0627\u0642\u0644 \u0644\u064a\u062a\u0645 \u0627\u0644\u0631\u0628\u0637 license =\u062a\u0631\u062e\u064a\u0635 license_text= -license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear =\u062e\u0637\u064a link_not_available_any_more= link_not_available_any_more =\u0627\u0644\u0631\u0627\u0628\u0637 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d. \u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0639\u0646\u0635\u0631 @@ -809,3 +809,4 @@ zoom_out =\u062a\u0635\u063a\u064a\u0631 +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_ca.properties freemind-0.9.0RC7/Resources_ca.properties --- freemind-0.9.0RC6/Resources_ca.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_ca.properties 2010-02-27 21:47:59.000000000 +0000 @@ -1,7 +1,7 @@ # by Albert Alcaine - albertalcaine about = Quant a -about_text = El FreeMind d'en Joerg Mueller\nApropant el concepte dels mapes mentals al disseny hum\u00e0 per mitj\u00e0 dels ordinadors.\nCopyright (C) 2000-2008 Joerg Mueller \nTradu\u00eft al catal\u00e0 per Albert Alcaine Peralta \nAquest programari \u00e9s lliure(GPL)\nP\u00e0gina web: http://freemind.sourceforge.net/\nDivertiu-vos!\nVersi\u00f3: +about_text = El FreeMind d'en Joerg Mueller\nApropant el concepte dels mapes mentals al disseny hum\u00e0 per mitj\u00e0 dels ordinadors.\nCopyright (C) 2000-2010 Joerg Mueller \nTradu\u00eft al catal\u00e0 per Albert Alcaine Peralta \nAquest programari \u00e9s lliure(GPL)\nP\u00e0gina web: http://freemind.sourceforge.net/\nDivertiu-vos!\nVersi\u00f3: antialias_all = Anti\u00e0lies a Tots antialias_edges = Anti\u00e0lies als Cantells antialias_none = Sense anti\u00e0lies @@ -92,7 +92,7 @@ italicise_branch = Posa-ho en it\u00e0liques join_nodes = Uneix els nodes license = Llic\u00e8ncia -license_text = FreeMind - Un programa per a crear i veure mapes mentals.\nCopyright (C) 2000-2008 Joerg Mueller \nMireu COPYING pels Detalls\n\nAquest programa \u00e9s programari lliure; podeu redistribuir-lo i/o\nmodificar-lo d'acord amb els termes de la GNU Llic\u00e8ncia P\u00fablica General\ntal i com es publica per la Free Software Foundation; ja sigui per la versi\u00f3 2\nde la Llic\u00e8ncia, o b\u00e9 (al teu criteri) per qualsevol versi\u00f3 posterior.\n\nAquest programari es distribueix amb l'esperan\u00e7a que us ser\u00e0 d'utilitat,\nper\u00f2 SENSE CAP GARANTIA; fins i tot sense la garantia impl\u00edcita de\nMERCABILITAT PER A \u00daS PARTICULAR. Vegeu la\nGNU Llic\u00e8ncia General P\u00fablica per a m\u00e9s detalls.\n\nHaur\u00edeu d'haver rebut una c\u00f2pia de la GNU Llic\u00e8ncia General P\u00fablica\njuntament amb aquest programa; si no \u00e9s aix\u00ed, escriviu a Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Un programa per a crear i veure mapes mentals.\nCopyright (C) 2000-2010 Joerg Mueller \nMireu COPYING pels Detalls\n\nAquest programa \u00e9s programari lliure; podeu redistribuir-lo i/o\nmodificar-lo d'acord amb els termes de la GNU Llic\u00e8ncia P\u00fablica General\ntal i com es publica per la Free Software Foundation; ja sigui per la versi\u00f3 2\nde la Llic\u00e8ncia, o b\u00e9 (al teu criteri) per qualsevol versi\u00f3 posterior.\n\nAquest programari es distribueix amb l'esperan\u00e7a que us ser\u00e0 d'utilitat,\nper\u00f2 SENSE CAP GARANTIA; fins i tot sense la garantia impl\u00edcita de\nMERCABILITAT PER A \u00daS PARTICULAR. Vegeu la\nGNU Llic\u00e8ncia General P\u00fablica per a m\u00e9s detalls.\n\nHaur\u00edeu d'haver rebut una c\u00f2pia de la GNU Llic\u00e8ncia General P\u00fablica\njuntament amb aquest programa; si no \u00e9s aix\u00ed, escriviu a Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linial locking_failed_by_open = No ha estat possible blocar el mapa $1. Obrint-lo com a nom\u00e9s lectura. locking_failed_by_save_as = No ha estat possible blocar el mapa $1. No s'ha pogut Desar com. @@ -666,3 +666,4 @@ accessories/plugins/ChangeNodeLevelAction_left.properties_name=Node esquerra accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=On the right of root the node(s) is/are shifted downwards. It/they become children of its above sibling. On the left of root the node(s) are shifted upwards. Directly at root, the node(s) change sides. accessories/plugins/ChangeNodeLevelAction_right.properties_name=Node dret +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_cs.properties freemind-0.9.0RC7/Resources_cs.properties --- freemind-0.9.0RC6/Resources_cs.properties 2009-10-21 20:16:51.000000000 +0100 +++ freemind-0.9.0RC7/Resources_cs.properties 2010-02-27 21:47:59.000000000 +0000 @@ -4,15 +4,15 @@ # by Radek Svarz ( allitaice ) - 2007-03-29 21:00 # by Oldrich Jedlicka (oldium) - 2009-10-19 23:59 about = O programu -#about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2008 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: -about_text = FreeMind Joerg Muellera\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2005 Joerg Mueller \nTento program je svobodn\u00fd software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVerze: +#about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: +about_text = FreeMind Joerg Muellera\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller \nTento program je svobodn\u00fd software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVerze: accessories/plugins/ApplyFormatPlugin.dialog.title=Zm\u011bna form\u00e1tu uzl\u016f accessories/plugins/ApplyFormatPlugin.properties_documentation=Dialog, kde atributy uzl\u016f a hran mohou b\u00fdt m\u011bn\u011bn\u00e9 najednou. accessories/plugins/ApplyFormatPlugin.properties_name=Zm\u011bna form\u00e1tu ... #fc, 15.11.2004: accessories/plugins/AutomaticLayout.properties_documentation = Oprav\u00ed rozlo\u017een\u00ed mapy.
Prvn\u00ed \u00farove\u0148 je \u010dern\u00e1, druh\u00e1 modr\u00e1, atd. accessories/plugins/AutomaticLayout.properties_name = Automatick\u00e9 rozlo\u017een\u00ed -accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Zm\u011bnit vzor +accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Zm\u011bnit styl accessories/plugins/BlinkingNodeHook.properties_documentation = Zapne blik\u00e1n\u00ed uzlu. Pou\u017eijte opatrn\u011b. Neaplikujte to na mnoho uzl\u016f a spole\u010dn\u011b s jin\u00fdm automatick\u00fdm form\u00e1tov\u00e1n\u00edm na stejn\u00e9m uzlu accessories/plugins/BlinkingNodeHook.properties_name = Blikaj\u00edc\u00ed uzel # fc, 21.2.06 @@ -88,10 +88,10 @@ # fc, 3.7.2005: accessories/plugins/ImportMindmanagerFiles.properties_name=MindManager X5 Mapa... # fc, 1.3.06: -accessories/plugins/ManagePatterns.dialog.title=Mana\u017eer vzor\u016f... -accessories/plugins/ManagePatterns.not_found=Soubor vzor\u016f nem\u016f\u017ee b\u00fdt nahr\u00e1n. -accessories/plugins/ManagePatterns.properties_documentation=Zm\u011bn\u00ed vzory definovan\u00e9 v patterns.xml v editoru. V\u00fdsledek se automaticky ukl\u00e1d\u00e1. -accessories/plugins/ManagePatterns.properties_name=Mana\u017eer vzor\u016f... +accessories/plugins/ManagePatterns.dialog.title=Mana\u017eer styl\u016f... +accessories/plugins/ManagePatterns.not_found=Soubor styl\u016f nem\u016f\u017ee b\u00fdt nahr\u00e1n. +accessories/plugins/ManagePatterns.properties_documentation=Zm\u011bny styl\u016f definovan\u00e9 v patterns.xml editorem. V\u00fdsledek se ulo\u017e\u00ed automaticky. +accessories/plugins/ManagePatterns.properties_name=Mana\u017eer styl\u016f... accessories/plugins/NewEncryptedMap.properties_documentation = Vytvo\u0159\u00ed novou zak\u00f3dovanou mapu accessories/plugins/NewEncryptedMap.properties_name = Vytvo\u0159it zak\u00f3dovanou mapu ... accessories/plugins/NewParentNode.properties_documentation = V\u0161echny vybran\u00e9 uzly budou p\u0159i\u0159azen\u00e9 nov\u00e9mu nad\u0159azen\u00e9mu uzlu. @@ -418,7 +418,7 @@ KeyDoc=Zkratkov\u00e9 kl\u00e1vesy (PDF) less_than_two_selected_nodes = Mus\u00edte vybrat alespo\u0148 dva uzly, aby se mohly vytvo\u0159it odkazy. license = Licence -license_text = FreeMind - Program pro vytv\u00e1\u0159en\u00ed a prohl\u00ed\u017een\u00ed my\u0161lenkov\u00fdch map (Mindmaps)\nCopyright \u00a9 2000-2009 Joerg Mueller and others.\nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Program pro vytv\u00e1\u0159en\u00ed a prohl\u00ed\u017een\u00ed my\u0161lenkov\u00fdch map (Mindmaps)\nCopyright \u00a9 2000-2010 Joerg Mueller and others.\nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Line\u00e1rn\u00ed link_not_available_any_more = Odkaz ji\u017e nen\u00ed platn\u00fd. Uzel byl pravd\u011bpodobn\u011b smaz\u00e1n. # fc, 1.2.06 @@ -431,14 +431,14 @@ long_node_changed_submit = Zm\u011bnil(a) jste uzel. Chcete ulo\u017eit zm\u011bny? lots_of_links_warning = K tomuto uzlu se te\u010f vytvo\u0159\u00ed spousta odkaz\u016f. Opravdu to chcete? ManagePatternsPopupDialog.Actions=&Akce -ManagePatternsPopupDialog.add=P\u0159idat nov\u00fd vzor +ManagePatternsPopupDialog.add=P\u0159idat nov\u00fd styl ManagePatternsPopupDialog.apply=Pou\u017e\u00edt # fc, 13.4.06: -ManagePatternsPopupDialog.duplicate=Duplikovat vzor +ManagePatternsPopupDialog.duplicate=Duplikovat styl ManagePatternsPopupDialog.DuplicateNameMessage=Vybral jste jm\u00e9no dvakr\u00e1t. Zm\u011b\u0148te ho, ne\u017e opust\u00edte tento dialog. -ManagePatternsPopupDialog.from_nodes=Vytvo\u0159it vzor z vybran\u00fdch uzl\u016f +ManagePatternsPopupDialog.from_nodes=Vytvo\u0159it styl z vybran\u00fdch uzl\u016f # fc, 19.3.06: -ManagePatternsPopupDialog.remove=Odstranit vzor +ManagePatternsPopupDialog.remove=Odstranit styl ManagePatternsPopupDialog.Save=Ulo\u017eit a n\u00e1vrat map_already_exists = Soubor mapy u\u017e existuje. Chcete ho p\u0159epsat? map_corrupted = Mapa je poni\u010den\u00e1. Chcete zobrazit detaily? @@ -502,7 +502,7 @@ OptionalDontShowMeAgainDialog.ok=&Ano OptionalDontShowMeAgainDialog.rememberMyDescision=&Pamatuj si m\u00e9 rozhodnut\u00ed. OptionPanel.absolute=Absolutn\u00ed -OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automatick\u00e9 rozvr\u017een\u00ed vzor\u016f +OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Styly automatick\u00e9ho rozlo\u017een\u00ed OptionPanel.antialias=Vyhlazov\u00e1n\u00ed # fc, 2.6.2005: OptionPanel.antialias.tooltip=Stanovuje kvalitu mapy. V\u00edce vyhlazov\u00e1n\u00ed pot\u0159ebuje v\u00edce \u010dasu. @@ -604,11 +604,11 @@ OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Kop\u00edrovat form\u00e1t OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Vlo\u017eit form\u00e1t OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Vlo\u017eit ikonu -OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog= +OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Spravovat styly OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Odsadit uzly OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Uk\u00e1zat/schovat okno s pozn\u00e1mkou OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=P\u0159epnout editor pozn\u00e1mky -OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key= +OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=Odstranit pozn\u00e1mku OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Rozd\u011blit uzel OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Rozbalit v\u0161e OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Sbalit v\u0161e @@ -621,24 +621,24 @@ OptionPanel.keystroke_add_child_mac=P\u0159idat potomka (na MAC OS) OptionPanel.keystroke_add_local_link_action=P\u0159idat lok\u00e1ln\u00ed odkaz OptionPanel.keystroke_add_sibling_before=P\u0159idat uzel na stejn\u00e9 \u00farovni p\u0159ed -OptionPanel.keystroke_apply_pattern_1=Aplikovat vzor 1 -OptionPanel.keystroke_apply_pattern_10=Aplikovat vzor 10 -OptionPanel.keystroke_apply_pattern_11=Aplikovat vzor 11 -OptionPanel.keystroke_apply_pattern_12=Aplikovat vzor 12 -OptionPanel.keystroke_apply_pattern_13=Aplikovat vzor 13 -OptionPanel.keystroke_apply_pattern_14=Aplikovat vzor 14 -OptionPanel.keystroke_apply_pattern_15=Aplikovat vzor 15 -OptionPanel.keystroke_apply_pattern_16=Aplikovat vzor 16 -OptionPanel.keystroke_apply_pattern_17=Aplikovat vzor 17 -OptionPanel.keystroke_apply_pattern_18=Aplikovat vzor 18 -OptionPanel.keystroke_apply_pattern_2=Aplikovat vzor 2 -OptionPanel.keystroke_apply_pattern_3=Aplikovat vzor 3 -OptionPanel.keystroke_apply_pattern_4=Aplikovat vzor 4 -OptionPanel.keystroke_apply_pattern_5=Aplikovat vzor 5 -OptionPanel.keystroke_apply_pattern_6=Aplikovat vzor 6 -OptionPanel.keystroke_apply_pattern_7=Aplikovat vzor 7 -OptionPanel.keystroke_apply_pattern_8=Aplikovat vzor 8 -OptionPanel.keystroke_apply_pattern_9=Aplikovat vzor 9 +OptionPanel.keystroke_apply_pattern_1=Aplikovat styl 1 +OptionPanel.keystroke_apply_pattern_10=Aplikovat styl 10 +OptionPanel.keystroke_apply_pattern_11=Aplikovat styl 11 +OptionPanel.keystroke_apply_pattern_12=Aplikovat styl 12 +OptionPanel.keystroke_apply_pattern_13=Aplikovat styl 13 +OptionPanel.keystroke_apply_pattern_14=Aplikovat styl 14 +OptionPanel.keystroke_apply_pattern_15=Aplikovat styl 15 +OptionPanel.keystroke_apply_pattern_16=Aplikovat styl 16 +OptionPanel.keystroke_apply_pattern_17=Aplikovat styl 17 +OptionPanel.keystroke_apply_pattern_18=Aplikovat styl 18 +OptionPanel.keystroke_apply_pattern_2=Aplikovat styl 2 +OptionPanel.keystroke_apply_pattern_3=Aplikovat styl 3 +OptionPanel.keystroke_apply_pattern_4=Aplikovat styl 4 +OptionPanel.keystroke_apply_pattern_5=Aplikovat styl 5 +OptionPanel.keystroke_apply_pattern_6=Aplikovat styl 6 +OptionPanel.keystroke_apply_pattern_7=Aplikovat styl 7 +OptionPanel.keystroke_apply_pattern_8=Aplikovat styl 8 +OptionPanel.keystroke_apply_pattern_9=Aplikovat styl 9 OptionPanel.keystroke_assign_attributes=P\u0159id\u011blit atributy ... OptionPanel.keystroke_close=Zav\u0159\u00edt OptionPanel.keystroke_copy=Kop\u00edrovat @@ -747,7 +747,7 @@ OptionPanel.OK=Ulo\u017eit OptionPanel.path_to_automatic_saves=Cesta pro automatick\u00e9 ukl\u00e1d\u00e1n\u00ed OptionPanel.path_to_automatic_saves.tooltip= Vlo\u017ete cestu pro automatick\u00e9 ukl\u00e1d\u00e1n\u00ed: dal\u0161\u00ed mo\u017enosti: * freemind_home je cesta, kde je soubor auto.properties. * default ukazuje na java.io.tmpdir -OptionPanel.patternsfile=Soubor se vzory +OptionPanel.patternsfile=Soubor se styly OptionPanel.pl=Pl OptionPanel.placenewbranches=Um\u00edstit nov\u00e9 v\u011btve OptionPanel.placenewbranches.tooltip=Kde um\u00edstit nov\u00e9 v\u011btve. Platn\u00e9 hodnoty jsou 'first' a 'last'. @@ -788,7 +788,7 @@ OptionPanel.selection_method_by_click=Na kliknut\u00ed OptionPanel.selection_method_delayed=Za chv\u00edli OptionPanel.selection_method_direct=P\u0159\u00edmo -OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Vzory +OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Styly OptionPanel.separator.anti_alias=Antialiasing OptionPanel.separator.attributes=Atributy OptionPanel.separator.automatic_save=Automatick\u00e9 ukl\u00e1d\u00e1n\u00ed @@ -814,7 +814,7 @@ OptionPanel.separator.node_navigation_commands=P\u0159\u00edkazy pro navigaci OptionPanel.separator.other_defaults=Ostatn\u00ed z\u00e1kladn\u00ed nastaven\u00ed OptionPanel.separator.others=Jin\u00e1 nav\u00e1z\u00e1n\u00ed kl\u00e1ves -OptionPanel.separator.patterns=Vzory +OptionPanel.separator.patterns=Styly OptionPanel.separator.plugins/scripting/separatorPropertyName=Opr\u00e1vn\u011bn\u00ed OptionPanel.separator.resources_notifications=Potvrzov\u00e1n\u00ed OptionPanel.separator.root_node_appearance=Zobrazen\u00ed ko\u0159enov\u00e9ho uzlu @@ -878,12 +878,12 @@ PatternDialog.as_parent=Jako rodi\u010d PatternDialog.bezier=bezier PatternDialog.bubble=bublina -PatternDialog.childpattern=Vzor potomka -PatternDialog.childpattern.tooltip=Vybran\u00fd vzor je aplikov\u00e1n na v\u0161echny potomky. +PatternDialog.childpattern=Styl potomka +PatternDialog.childpattern.tooltip=Vybran\u00fd styl je aplikov\u00e1n na v\u0161echny potomky. PatternDialog.clear_all_setters=P\u0159epnout v\u0161e PatternDialog.clear_all_setters.tooltip=Zapne, nebo vypne ve\u0161ker\u00e9 indikace zm\u011bn. # fc, 27.2.06: -PatternDialog.ColorProperty.ResetColor=Zresetovat barvu +PatternDialog.ColorProperty.ResetColor=ResetColor PatternDialog.combined=kombinovan\u00e9 PatternDialog.edgecolor=Barva hrany PatternDialog.edgecolor.tooltip=Vlastnost hrany na rodi\u010dovsk\u00fd uzel (je tak\u00e9 aplikovan\u00e9 na v\u0161echny potomky) @@ -913,12 +913,12 @@ PatternDialog.nodefontname.tooltip= PatternDialog.nodefontsize=Velikost p\u00edsma uzlu PatternDialog.nodefontsize.tooltip= -PatternDialog.nodestyle=Style uzlu -PatternDialog.nodestyle.tooltip=Style uzlu +PatternDialog.nodestyle=Styl uzlu +PatternDialog.nodestyle.tooltip=Styl uzlu PatternDialog.nodetext=Text uzlu PatternDialog.nodetext.tooltip=Text uzlu PatternDialog.patternname=N\u00e1zev -PatternDialog.patternname.tooltip=Unik\u00e1tn\u00ed jm\u00e9no vzoru +PatternDialog.patternname.tooltip=Jedine\u010dn\u00e9 jm\u00e9no stylu PatternDialog.script=Skript PatternDialog.script.tooltip=Skript v jazyce Groovy PatternDialog.separator.EdgeControls=Hrany @@ -935,7 +935,7 @@ PatternDialog.sharp_bezier=ostr\u00fd bezier PatternDialog.sharp_linear=ostr\u00fd line\u00e1rn\u00ed PatternDialog.undefined_font=Nedefinovan\u00e9 p\u00edsmo -PatternNewNameProperty=Nov\u00fd vzor +PatternNewNameProperty=Nov\u00fd styl PatternToString.backgroundColor=Barva pozad\u00ed PatternToString.Child=Styl pod\u0159azen\u00fdch uzl\u016f PatternToString.color=Barva @@ -1320,3 +1320,5 @@ yes = Ano zoom_in = P\u0159ibl\u00ed\u017eit zoom_out = Odd\u00e1lit +really_convert_to_current_version2=Mapa, kterou pr\u00e1v\u011b otev\u00edr\u00e1te, byla vytvo\u0159ena star\u0161\u00ed verz\u00ed programu FreeMind a ulo\u017eena ve star\u00e9m form\u00e1tu.
FreeMind ji nyn\u00ed p\u0159evede do nov\u00e9ho form\u00e1tu.
Po tom, co bude p\u0159evedena a ulo\u017eena touto verz\u00ed programu FreeMind, ji nebude mo\u017en\u00e9 otev\u0159\u00edt ve star\u0161\u00edch verz\u00edch programu.
M\u00e1 b\u00fdt soubor p\u0159eveden a otev\u0159en? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_da.properties freemind-0.9.0RC7/Resources_da.properties --- freemind-0.9.0RC6/Resources_da.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_da.properties 2010-02-27 21:47:59.000000000 +0000 @@ -237,6 +237,7 @@ really_execute_script=\u00d8nsker du virkelig at eksekvere scriptene inkluderet i denne map? De kan muligvis skade din komputer. really_cut_node=\u00d8nsker du virkelig at klippe noden(rene)? really_convert_to_current_version=Denne map er oprettet med en \u00e6ldre version af FreeMind.
Skal den konverteres (anbefalet)?
(Ellers bliver den taget som den er, uden garanti.) +really_convert_to_current_version2=Den mind map du prøver at åbne er oprettet i en ældre version af Freemind, og gemt i et ældre format.
Freemind skal til at konvertere denne mind map til det nuværende format.
Efter at mind mappen er konverteret og gemt med denne version af Freemind, kan den ikke åbnes af ældre versioner af Freemind mere.
Skal Freemind konverter g åbne denne mond map? read_only = Kun l\u00e6sning quit = Luk ptionPanel.number_of_different_files_for_automatic_save.tooltip= @@ -831,7 +832,7 @@ link_not_found =Link $1 ikke fundet link_not_available_any_more = Linket er ikke gyldigt mere. Noden er blevet slettet. linear = Line\u00e6r -license_text = FreeMind - Et Program til at skabe og se Mindmaps\nCopyright (C) 2000-2008 Joerg Mueller \nSe COPYING for Detaljer\n\nDette program er fri software; du kan redistribuere det og/eller\nmodifisere det under termerne af GNU General Public Licensen\nsom publiseret af Free Software Foundation; enten version 2\naf denne Licens, eller (efter dit valg) enhver efterf\u00f8lgende version.\n\nDette program er distribueret i det h\u00e5b at det vil v\u00e6re brugbart,\nmen UNDEN NOGEN GARANTI; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Et Program til at skabe og se Mindmaps\nCopyright (C) 2000-2010 Joerg Mueller \nSe COPYING for Detaljer\n\nDette program er fri software; du kan redistribuere det og/eller\nmodifisere det under termerne af GNU General Public Licensen\nsom publiseret af Free Software Foundation; enten version 2\naf denne Licens, eller (efter dit valg) enhver efterf\u00f8lgende version.\n\nDette program er distribueret i det h\u00e5b at det vil v\u00e6re brugbart,\nmen UNDEN NOGEN GARANTI; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. license = Licens less_than_two_selected_nodes = Du skal v\u00e6lge mindst to Noder fo at f\u00e5 links. KeyDoc=N\u00f8gledokumentation PDF @@ -1224,8 +1225,9 @@ accessories/plugins/ApplyFormatPlugin.properties_name=\u00c6ndr format... accessories/plugins/ApplyFormatPlugin.properties_documentation=Pr\u00e6senterer en dialogboks i hvilken node og kant attributter kan \u00e6ndres med det samme. accessories/plugins/ApplyFormatPlugin.dialog.title=\u00c6ndr nodernes format -about_text = Joerg Mueller's FreeMind\nTager konceptet-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2008 Joerg Mueller \nDette program er fri software (GPL)\nHjemmeside: http://freemind.sourceforge.net/\nOversat til dansk af: Jan Kr\u00fcmmel\nHave Fun!\nVersion: +about_text = Joerg Mueller's FreeMind\nTager konceptet-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller \nDette program er fri software (GPL)\nHjemmeside: http://freemind.sourceforge.net/\nOversat til dansk af: Jan Kr\u00fcmmel\nHave Fun!\nVersion: about =Om simplyhtml.fontColorTip=Tekst farve simplyhtml.fontColorLabel=Tekst farve simplyhtml.fontColorImage=resources/fontColor.gif +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_de.properties freemind-0.9.0RC7/Resources_de.properties --- freemind-0.9.0RC6/Resources_de.properties 2009-10-03 10:22:50.000000000 +0100 +++ freemind-0.9.0RC7/Resources_de.properties 2010-02-27 21:44:28.000000000 +0000 @@ -1,5 +1,5 @@ about = Info -about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright \u00a9 2000-2009 Joerg Mueller and others.\nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave fun!\nVersion: +about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright \u00a9 2000-2010 Joerg Mueller and others.\nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave fun!\nVersion: add=&Hinzuf\u00fcgen antialias_all = Antialias Alles @@ -93,7 +93,7 @@ italicise_branch = Zweig kursiv join_nodes = Knoten verbinden license = FreeMinds Lizenz -license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright \u00a9 2000-2009 Joerg Mueller and others.\nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright \u00a9 2000-2010 Joerg Mueller and others.\nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linear load = &Laden locking_failed_by_open = Die Mindmap $1 ist in Benutzung. Daher wird sie schreibgesch\u00fctzt ge\u00f6ffnet. @@ -1411,3 +1411,7 @@ # new, fc, 20.12.2008 OptionPanel.ro=Ro + +#new, fc, 6.12.2009: +really_convert_to_current_version2=Die MindMap, die Sie \u00f6ffnen wollen, ist mit einer \u00e4lteren Version von FreeMind erzeugt worden.
FreeMind wird diese Map in das aktuelle Format konvertieren. Nach der Konvertierung und nach der n\u00e4chsten Speicherung kann diese Map nicht mehr mit der alten Version von FreeMind ge\u00f6ffnet werden.
Soll FreeMind die Map konvertieren und \u00f6ffnen? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_el.properties freemind-0.9.0RC7/Resources_el.properties --- freemind-0.9.0RC6/Resources_el.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_el.properties 2010-02-27 21:47:59.000000000 +0000 @@ -1,1216 +1,1219 @@ -#! -#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) -#! encoding:ISO-8859-1 -# by sarikoudis - sarikoudis & Yannis Kaskamanidis -about=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC -about =\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC -# created/edited by Popeye version 0.54 (popeye.sourceforge.net) encoding\:ISO-8859-1 -about_text=\u03A4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 FreeMind \u03C4\u03BF\u03C5 Joerg Mueller \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u0395\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03AE\u03C2 \u03A7\u03B1\u03C1\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7\u03C2. Copyright (C) 2000-2004 Joerg Mueller \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03BF\u03B9. \u0391\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u039B\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC (GPL). \u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2\: http\://freemind.sourceforge.net/ Have fun\! Version\: -about_text =\u03A4\u03BF FreeMind - \u03B5\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CE\u03BD \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD\nCopyright \u00A9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03BF\u03B9.\n\u0391\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u039B\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC \u03BA\u03B1\u03B9 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03B5\u03AF \u03C5\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03CC\u03C1\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2 \u0393\u03B5\u03BD\u03B9\u03BA\u03AE\u03C2 \u0394\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1\u03C2 \u0386\u03B4\u03B5\u03B9\u03B1\u03C2 GNU.\n\n\u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2: http://freemind.sourceforge.net/\nVersion: -accessories/plugins/ApplyFormatPlugin.dialog.title=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD -accessories/plugins/ApplyFormatPlugin.properties_documentation=\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1n \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C4\u03B1\u03C5\u03C4\u03CC\u03C7\u03C1\u03BF\u03BD\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 . -accessories/plugins/ApplyFormatPlugin.properties_name=&\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2... -accessories/plugins/AutomaticLayout.properties_documentation = \u0394\u03B9\u03BF\u03C1\u03B8\u03CE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7.
\u03A4\u03BF \u03C0\u03C1\u03CE\u03C4\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B1\u03CD\u03C1\u03BF, \u03C4\u03BF \u03B4\u03B5\u03CD\u03C4\u03B5\u03C1\u03BF \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03C0\u03BB\u03AD, \u03BA\u03BB\u03C0. -accessories/plugins/AutomaticLayout.properties_name =&\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u0394\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 -accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 -accessories/plugins/BlinkingNodeHook.properties_documentation=\u039A\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF \u03BD\u03B1 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9. \u0391\u03BB\u03BB\u03AC \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE! \u039C\u03B7 \u03C4\u03BF \u03C3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C0\u03BF\u03BB\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2, \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF -accessories/plugins/BlinkingNodeHook.properties_documentation =\u039A\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF \u03BD\u03B1 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9. \u0391\u03BB\u03BB\u03AC \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE! \u039C\u03B7 \u03C4\u03BF \u03C3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C0\u03BF\u03BB\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2, \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF -accessories/plugins/BlinkingNodeHook.properties_name=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9 -accessories/plugins/BlinkingNodeHook.properties_name =\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9 -accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=\u03A3\u03C4' \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9/\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9. \u0398\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9(-\u03BD\u03BF\u03C5\u03BD) \u03C0\u03B1\u03B9\u03B4\u03AF(-\u03B9\u03AC) \u03C4\u03BF\u03C5 \u03B1\u03BC\u03C6\u03B9\u03B8\u03B1\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u03A3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03B9\u03C3\u03C4\u03B5\u03AF(-\u03BF\u03CD\u03BD) \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9. \u0391\u03C0\u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF\u03BD \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9(-\u03BE\u03BF\u03C5\u03BD) \u03C0\u03BB\u03B5\u03C5\u03C1\u03AD\u03C2. -accessories/plugins/ChangeNodeLevelAction_left.properties_name=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC -accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=\u03A3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9/\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9. \u0398\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9(-\u03BD\u03BF\u03C5\u03BD) \u03C0\u03B1\u03B9\u03B4\u03AF(-\u03B9\u03AC) \u03C4\u03BF\u03C5 \u03B1\u03BC\u03C6\u03B9\u03B8\u03B1\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u03A3\u03C4' \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03B9\u03C3\u03C4\u03B5\u03AF(-\u03BF\u03CD\u03BD) \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9. \u0391\u03C0\u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF\u03BD \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9(-\u03BE\u03BF\u03C5\u03BD) \u03C0\u03BB\u03B5\u03C5\u03C1\u03AD\u03C2. -accessories/plugins/ChangeNodeLevelAction_right.properties_name=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC -accessories/plugins/CreationModificationPlugin.properties_documentation=\u0397 \u03C3\u03C5\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03AE, \u03C0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03C5\u03B8\u03B5\u03AF \u03BA\u03B1\u03B9 \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD. -accessories/plugins/CreationModificationPlugin.properties_name =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 &\u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C9\u03C1\u03CE\u03BD. -accessories/plugins/EncryptNode.properties_0 =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF. -accessories/plugins/EncryptNode.properties_1 =\u039F\u03B9 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03AF \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03CC\u03BC\u03BF\u03B9\u03BF\u03B9 \u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03C3\u03CD\u03BD\u03C4\u03BF\u03BC\u03BF\u03B9. -accessories/plugins/EncryptNode.properties_2 =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2: -accessories/plugins/EncryptNode.properties_3 =\u0395\u03C0\u03B1\u03BD\u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2: -accessories/plugins/EncryptNode.properties_4 =\u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2. -accessories/plugins/EncryptNode.properties_5 = \u039D\u03B1 \u03B8\u03C5\u03BC\u03AC\u03C3\u03C4\u03B5, \u03B7 \u03B1\u03C3\u03C6\u03AC\u03BB\u03B5\u03B9\u03B1 \u03C4\u03B7\u03C2 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7\u03C2
\u03B5\u03BE\u03B1\u03C1\u03C4\u03AC\u03C4\u03B1\u03B9 \u03C3\u03C7\u03B5\u03B4\u03CC\u03BD \u03B1\u03C0\u03BF\u03BA\u03BB\u03B5\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03B1\u03C0\u03BF \u03C4\u03B7\u03BD \u03C0\u03BF\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C4\u03BF\u03C5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD. -accessories/plugins/EncryptNode.properties_6 =\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 -accessories/plugins/EncryptNode.properties_7 =\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 -accessories/plugins/EncryptNode.properties_documentation =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03BD\u03CC\u03C2 \u03BD\u03AD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2. -accessories/plugins/EncryptNode.properties_insert_encrypted_node_first =\u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BC\u03CC\u03BD\u03BF \u03BD\u03B1 \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03C4\u03B5 \u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03AD\u03BD\u03B1\u03BD \u03C4\u03AD\u03C4\u03BF\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD. -accessories/plugins/EncryptNode.properties_name =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE &\u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 ... -accessories/plugins/EncryptNode.properties_select_me =\u0394\u03B9\u03AC\u03BB\u03B5\u03BE\u03AD \u03BC\u03B5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B5\u03C7\u03AF\u03C3\u03BF\u03C5\u03BC\u03B5! -accessories/plugins/EncryptNode.properties_wrong_password =\u039F \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03C9\u03C3\u03C4\u03CC\u03C2. -accessories/plugins/EnterPassword.properties_documentation= -accessories/plugins/EnterPassword.properties_name =&\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 -accessories/plugins/ExportToImage_JPEG.properties_documentation =\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B4\u03BF\u03BC\u03AE \u03B1\u03BD\u03B1\u03B4\u03B9\u03C0\u03BB\u03CE\u03C3\u03B5\u03C9\u03BD, \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 JPEG. -accessories/plugins/ExportToImage_JPEG.properties_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE JPEG... -accessories/plugins/ExportToImage_PNG.properties_documentation =\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B4\u03BF\u03BC\u03AE \u03B1\u03BD\u03B1\u03B4\u03B9\u03C0\u03BB\u03CE\u03C3\u03B5\u03C9\u03BD, \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 PNG. -accessories/plugins/ExportToImage_PNG.properties_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE PNG... -accessories/plugins/ExportToOoWriter.properties_documentation=\u039F\u03B9 \u03BE\u03B5\u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03C3\u03C7\u03B7\u03BC\u03B1\u03C4\u03AF\u03B6\u03BF\u03C5\u03BD \u03C4\u03B7 \u03B4\u03BF\u03BC\u03AE, \u03B5\u03BD\u03CE \u03BF\u03B9 \u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03BF\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5. -accessories/plugins/ExportToOoWriter.properties_name=\u03A9\u03C2 \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03C4\u03BF\u03C5 Open Office Writer ... -accessories/plugins/ExportWithTWiki.properties=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF TWiki (*.twi) -accessories/plugins/ExportWithTWiki.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 TWiki. -accessories/plugins/ExportWithTWiki.properties_name=\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE TWiki... -accessories/plugins/ExportWithXSLT.properties_documentation =\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03BD\u03B9\u03B1\u03AF\u03B1 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u03BC\u03B5 \u03C4\u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 XSLT \u03C3\u03B5\u03BD\u03B1\u03C1\u03AF\u03C9\u03BD \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD. -accessories/plugins/ExportWithXSLT.properties_name =\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 XSLT... -accessories/plugins/ExportWithXSLT_Applet.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C9\u03C2 \u03BC\u03B9\u03BA\u03C1\u03BF\u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE Java. -accessories/plugins/ExportWithXSLT_Applet.properties_name=\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03BC\u03B9\u03BA\u03C1\u03BF\u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE\u03C2 Java... -accessories/plugins/ExportWithXSLT_Applet.properties_tji=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 \u03C3\u03C5\u03BC\u03C0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7\u03C2 Task Juggler -accessories/plugins/ExportWithXSLT_Applet.properties_webpage=\u0399\u03C3\u03C4\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 -accessories/plugins/ExportWithXSLT_Flash.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C9\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE flash. -accessories/plugins/ExportWithXSLT_Flash.properties_name=\u03A3\u03B5 Flash... -accessories/plugins/ExportWithXSLT_HTML.properties_documentation= -accessories/plugins/ExportWithXSLT_HTML.properties_name =\u03A3\u03B5 XHTML (\u03B5\u03BA\u03B4\u03BF\u03C7\u03AE JavaScript )... -accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= -accessories/plugins/ExportWithXSLT_HTML3.properties_name =\u03A3\u03B5 XHTML (Clickable map image version)... -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =\u03A9\u03C2 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 MindManager -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C0\u03CC\u03C1\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF RESOURCES \u03C3\u03C4\u03BF Taskjuggler. -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=\u03A0\u03CC\u03C1\u03BF\u03B9 \u03B1\u03C0\u03BF \u03C4\u03BF\u03BD RESOURCES \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF TaskJuggler... -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF TASKS \u03C3\u03B5 Taskjuggler. -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=\u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B1\u03C0\u03BF TASKS \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF TaskJuggler ... -accessories/plugins/FitToPage.properties_documentation =\u03A1\u03C5\u03B8\u03BC\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03AD\u03C4\u03C3\u03B9 \u03CE\u03C3\u03C4\u03B5 \u03BF\u03BB\u03CC\u03BA\u03BB\u03B7\u03C1\u03BF\u03C2 \u03BF \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03BD\u03B1 \u03C7\u03C9\u03C1\u03AC\u03B5\u03B9 \u03C3\u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03C9\u03BD \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF. -accessories/plugins/FitToPage.properties_name =\u0395\u03C3\u03C4\u03AF\u03B1\u03C3\u03B7 \u03B3\u03B9\u03B1 &\u03C4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03C3\u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 -accessories/plugins/FoldAll.properties_documentation = \u0394\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2. -accessories/plugins/FoldAll.properties_name =\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD -accessories/plugins/FoldOneLevel.properties_documentation = \u0394\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF. -accessories/plugins/FoldOneLevel.properties_name =\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF -accessories/plugins/FormatCopy.properties_documentation = \u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. -accessories/plugins/FormatCopy.properties_name =\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 -accessories/plugins/FormatPaste.properties_documentation = \u0395\u03C0\u03B9\u03BA\u03BF\u03BB\u03BB\u03AC \u03C4\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. -accessories/plugins/FormatPaste.properties_name =\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 -accessories/plugins/FormularEditor.properties_documentation = \u03A3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03C4\u03C5\u03C0\u03B9\u03BA\u03CC \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7. -accessories/plugins/FormularEditor.properties_name =\u03A4\u03C5\u03C0\u03B9\u03BA\u03CC\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 -accessories/plugins/HierarchicalIcons.properties_documentation=\u0395\u03AC\u03BD \u03AD\u03BD\u03B1\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 (\u03B5\u03B3\u03B3\u03CC\u03BD\u03B9) \u03AD\u03C7\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF, \u03B8\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BC\u03B9\u03BA\u03C1\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1, \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2. -accessories/plugins/HierarchicalIcons.properties_name=\u0399\u03B5\u03C1\u03B1\u03C1\u03C7\u03B9\u03BA\u03AE \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 &\u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD -accessories/plugins/IconSelectionPlugin.properties_documentation = \u0395\u03B4\u03CE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03C4\u03B5 \u03BC\u03B9\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03BC\u03B5 \u03C5\u03C0\u03BF\u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF. -accessories/plugins/IconSelectionPlugin.properties_name =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5... -accessories/plugins/ImportMindmanagerFiles.properties_name=\u0395\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 MindManager X5 ... -accessories/plugins/ManagePatterns.dialog.title=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03C9\u03BD... -accessories/plugins/ManagePatterns.not_found=\u0391\u03B4\u03C5\u03BD\u03B1\u03BC\u03AF\u03B1 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 -accessories/plugins/ManagePatterns.properties_documentation=\u0391\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03C4\u03B1 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 \u03C0\u03BF\u03C5 \u03BF\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF patterns.xml \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5. \u03A4\u03BF \u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1. -accessories/plugins/ManagePatterns.properties_name=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03C9\u03BD... -accessories/plugins/NewEncryptedMap.properties_documentation =\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BD\u03AD\u03BF\u03C5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 -accessories/plugins/NewEncryptedMap.properties_name =\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 ... -accessories/plugins/NewParentNode.properties_documentation = \u038C\u03BB\u03BF\u03B9 \u03BF\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BD\u03AD\u03BF \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF. -accessories/plugins/NewParentNode.properties_name =\u039D\u03AD\u03BF\u03C2 \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 -accessories/plugins/NodeHistoryBack.properties_documentation=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03AF\u03C3\u03C9 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1 -accessories/plugins/NodeHistoryBack.properties_name=\u03A0\u03AF\u03C3\u03C9 -accessories/plugins/NodeHistoryForward.properties_documentation=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B5\u03BC\u03C0\u03C1\u03CC\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1 -accessories/plugins/NodeHistoryForward.properties_name=\u03A0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03BC\u03C0\u03C1\u03CC\u03C2 -accessories/plugins/NodeNote.properties_documentation = \u03A3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03C4\u03C5\u03C0\u03B9\u03BA\u03CC \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7. -accessories/plugins/NodeNote.properties_name =\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 -accessories/plugins/NodeNote_hide_show.properties_documentation=\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C4\u03B7\u03C2 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 \u03BD\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03AE \u03BD\u03B1 \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C0\u03C4\u03B5\u03C4\u03B1\u03B9 -accessories/plugins/NodeNote_hide_show.properties_name=\u03A0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 -accessories/plugins/NodeNote_jumpto.properties_documentation=\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03B1\u03C0\u03CC\u03BA\u03C1\u03B9\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD -accessories/plugins/NodeNote_jumpto.properties_name=\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 -accessories/plugins/PMCalculation.properties_documentation = \u03A5\u03C0\u03BF\u03BB\u03BF\u03B3\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03C0\u03AC\u03B8\u03B5\u03B9\u03B5\u03C2 \u03B3\u03B9\u03B1 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2. -accessories/plugins/PMCalculation.properties_name = PMCalculation -accessories/plugins/RemoveNote.properties_documentation = \u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 \u03B1\u03C0\u03CC, \u03B5\u03BD\u03B4\u03B5\u03C7\u03BF\u03BC\u03AD\u03BD\u03C9\u03C2, \u03B1\u03C1\u03BA\u03B5\u03C4\u03AD\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2. -accessories/plugins/RemoveNote.properties_name =\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD -accessories/plugins/RevisionPlugin.properties_documentation = \u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF \u03C6\u03CC\u03BD\u03C4\u03BF \u03BA\u03AC\u03B8\u03B5 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. -accessories/plugins/RevisionPlugin.properties_name =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 &\u0391\u03BD\u03B1\u03B8\u03B5\u03C9\u03C1\u03AE\u03C3\u03B5\u03C9\u03BD \u03BC\u03B5 \u03BA\u03AF\u03C4\u03C1\u03B9\u03BD\u03BF -accessories/plugins/SaveAll.properties_documentation=\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03AC \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1. -accessories/plugins/SaveAll.properties_name=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD -accessories/plugins/SaveAll.properties_save_all_cancelled=\u0397 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u03B4\u03B5\u03BD \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5 \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1. -accessories/plugins/SortNodes.properties_documentation=\u03A4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03B5\u03AF \u03B1\u03BB\u03C6\u03B1\u03B2\u03B7\u03C4\u03B9\u03BA\u03AC \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. -accessories/plugins/SortNodes.properties_name=\u03A4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03C9\u03BD -accessories/plugins/SplitNode.properties_documentation = \u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2 -accessories/plugins/SplitNode.properties_name =&\u0394\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -accessories/plugins/UnfoldAll.properties_documentation = \u039E\u03B5\u03B4\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2. -accessories/plugins/UnfoldAll.properties_name =\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD -accessories/plugins/UnfoldOneLevel.properties_documentation = \u039E\u03B5\u03B4\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF. -accessories/plugins/UnfoldOneLevel.properties_name =\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF -add=&\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 -add_link =\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 -add_local_link =\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE\u03C2 \u03C5\u03C0\u03B5\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 -antialias_all =\u0395\u03BE\u03BF\u03BC\u03AC\u03BB\u03C5\u03BD\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD -antialias_edges =\u0395\u03BE\u03BF\u03BC\u03AC\u03BB\u03C5\u03BD\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD -antialias_none =\u039a\u03b1\u03bc\u03af\u03b1 \u03b5\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 -apply=&\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE -arrow_link_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2... -as_parent =\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 -atributes_no_import_candidates_found= -attribute_delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C4\u03B9\u03BC\u03CE\u03BD -attribute_delete_value=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03C4\u03B9\u03BC\u03AE\u03C2 -attribute_font_size_tooltip=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -attribute_list_box_label_text=\u03A5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03C3\u03B5\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2 -attribute_replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BC\u03B5 -attribute_top=\u038c\u03bb\u03b1 \u03c4\u03b1 \u03b3\u03bd\u03c9\u03c3\u03c4\u03ac \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03bf\u03b9\u03ba\u03c4\u03bf\u03cd\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b5\u03c2. -attributes_adding_empty_attribute_error=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03BA\u03B5\u03BD\u03AE\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD. -attributes_all=\u038C\u03BB\u03B1 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC -attributes_assign_dialog=&\u03a0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd... -attributes_attribute=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC -attributes_close=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF -attributes_deselect_all=\u03A4\u03AF\u03C0\u03BF\u03C4\u03B5 -attributes_dialog=&\u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD... -attributes_dialog_title=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd -attributes_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 -attributes_edit_in_place=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -attributes_edit_tooltip=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 -attributes_for_selected=\u0395\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 -attributes_for_visible=\u038C\u03BB\u03BF\u03B9 \u03BF\u03B9 \u03BF\u03C1\u03B1\u03C4\u03BF\u03AF \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 -attributes_hide_all =\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -attributes_import=&\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE -attributes_import_tooltip=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03B1\u03C0\u03CC \u03AC\u03BB\u03BB\u03BF\u03C5\u03C2 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03BF\u03CD\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2. -attributes_no_import_candidates_found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03bd\u03ad\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac -attributes_popup_delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE -attributes_popup_down=\u039A\u03AC\u03C4\u03C9 -attributes_popup_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 -attributes_popup_hide=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 -attributes_popup_new=\u039d\u03ad\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc -attributes_popup_optimal_width=\u0392\u03AD\u03BB\u03C4\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 -attributes_popup_up=\u03A0\u03AC\u03BD\u03C9 -attributes_refresh=\u0391\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B7 -attributes_restricted_attributes_tooltip=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -attributes_restricted_values_tooltip=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03C4\u03B9\u03BC\u03CE\u03BD \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC -attributes_restriction=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF -attributes_select_all=\u038C\u03BB\u03B1 -attributes_select_all_tooltip=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE/\u0391\u03C0\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD -attributes_show=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 -attributes_show_all =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -attributes_show_selected =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -attributes_skip_root=\u03A0\u03B1\u03C1\u03AC\u03B2\u03BB\u03B5\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -attributes_visible=\u039F\u03C1\u03B1\u03C4\u03CC \u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF -attributes_visible_tooltip=\u039F\u03C1\u03B1\u03C4\u03CC \u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF -automatically_save_message=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C4\u03B7\u03BA\u03B5 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 (\u03BC\u03B5 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 {0}) ... -background =\u03A6\u03CC\u03BD\u03C4\u03BF -bezier =\u039A\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 Bezier -blend_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BC\u03AF\u03BE\u03B7\u03C2 -bold =\u0388\u03BD\u03C4\u03BF\u03BD\u03B1 -boldify_branch =\u039A\u03AC\u03BD\u03B5 \u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 -branch =\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 -browsemode_initial_map = ./doc/freemind.mm -bubble =&\u03A6\u03BF\u03CD\u03C3\u03BA\u03B1 -cancel =&\u0386\u03BA\u03C5\u03C1\u03BF -cannot_add_parent_diff_parents =\u0393\u03b9' \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1, \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03cc\u03bb\u03bf\u03b9 \u03bf\u03b9 \u03ba\u03cc\u03bc\u03b2\u03bf\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03bf\u03bd \u03af\u03b4\u03b9\u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf. -cannot_add_parent_to_root =\u039F \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B5\u03B8\u03B5\u03AF \u03C3\u03B5 \u03BD\u03AD\u03BF \u03B3\u03BF\u03BD\u03AD\u03B1. -cannot_delete_root =\u039f \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03ae \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03bf\u03c0\u03b5\u03af. -cannot_join_nodes_with_children =\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03BD\u03C9\u03B8\u03B5\u03AF \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03BC\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 -cannot_move_to_child =\u0391\u03B4\u03C5\u03BD\u03B1\u03BC\u03AF\u03B1 \u03BC\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5. -center =\u03A3\u03C4\u03BF \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF -change_arrows_in_arrow_link =\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b2\u03b5\u03bb\u03ce\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03b2\u03b5\u03bb\u03ce\u03bd. -change_link_arrows=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03B2\u03B5\u03BB\u03CE\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 -choose_background_color =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5: -choose_cloud_color =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2: -choose_edge_color =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -choose_node_background_color =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -choose_node_color =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5: -close =&\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF -cloud =\u039D\u03AD\u03C6\u03BF\u03C2 -cloud_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2... -combined =\u03A3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF -confirmation=\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7 -copy =\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE -copy_single =\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 -cut =\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE -decrease_branch_font_size =\u039C\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -decrease_node_font_size =\u039C\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -delete=&\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE -delete_child =\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -documentation =\u03A4\u03B5\u03BA\u03BC\u03B7\u03C1\u03AF\u03C9\u03C3\u03B7 -edge =\u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 -edge_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2... -edge_style =\u03a3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -edge_width =\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -edge_width_parent =\u0393\u03BF\u03BD\u03AD\u03B1\u03C2 -edge_width_thin =\u039B\u03B5\u03C0\u03C4\u03CC -edit =&\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 -edit.decision=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 HTML -edit.edit_rich_text=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2, \u03CC\u03C0\u03C9\u03C2 \u03C4\u03B1 \u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 \u03AE \u03C4\u03B1 \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1; -edit_link_manually =\u03A7\u03B5\u03B9\u03C1\u03BF\u03BA\u03AF\u03BD\u03B7\u03C4\u03B7 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD ... -edit_long_node =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5... -edit_node =\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -enter_base_url =\u03A0\u03C1\u03CC\u03BA\u03B5\u03B9\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BA\u03BF\u03BB\u03BB\u03B7\u03B8\u03BF\u03CD\u03BD \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2. \u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03B2\u03B1\u03C3\u03B9\u03BA\u03CC URL. -enter_confirms =&\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7 \u03BC\u03B5 Enter -error =\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 -error_applying_template=\u039B\u03AC\u03B8\u03BF\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF\u03C5 XSL. -error_creating_directory =\u0394\u03B5\u03BD \u03B5\u03B9\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE -export_branch =\u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 -export_branch_new =\u039a\u03bb\u03ac\u03b4\u03bf\u03c2 \u03c9\u03c2 \u03bd\u03ad\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2... -export_branch_to_html =\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 \u03C3\u03B5 HTML -export_pdf_text =Portable Document Format (PDF) -export_svg_text = Scalable Vector Graphic (SVG) -export_to_html =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE HTML -extension_menu = \u03a6\u03c5\u03c3\u03b9\u03ba\u03cc &\u03c3\u03c4\u03c5\u03bb -FAQ=\u03a3\u03c5\u03bd\u03ae\u03b8\u03b7 \u03b5\u03c1\u03c9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 -FAQ =\u03a3\u03c5\u03bd\u03ae\u03b8\u03b7 \u03b5\u03c1\u03c9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 -file =&\u0391\u03C1\u03C7\u03B5\u03AF\u03BF -file_already_exists =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0} \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5; -file_not_found =\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF $1 \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 -filter_add=&\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 -filter_and=&\u039A\u03B1\u03B9 -filter_conditions =\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 -filter_contains=\u03A0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 -filter_delete=&\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE -filter_dialog=\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2 \u03c6\u03af\u03bb\u03c4\u03c1\u03bf\u03c5 -filter_does_not_exist=\u0394\u03b5\u03bd \u03c5\u03c6\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9 -filter_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 -filter_edit_description=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03C9\u03BD -filter_enter_value=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03B9\u03BC\u03AE\u03C2 -filter_exist=\u03A5\u03C6\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9 -filter_icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF -filter_ignore_case=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd/\u03c0\u03b5\u03b6\u03ce\u03bd -filter_is_equal_to=\u0395\u03AF\u03BD\u03B1\u03B9 \u03AF\u03C3\u03BF \u03BC\u03B5 -filter_is_not_equal_to=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AF\u03C3\u03BF \u03BC\u03B5 -filter_no_filtering=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF -filter_node=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -filter_not=&\u038C\u03C7\u03B9 -filter_or=&\u0389 -filter_select=&\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE -filter_selected_node_view=\u03A4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03B5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 -filter_show_ancestors=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 -filter_show_descendants=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 -filter_toolbar=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF -filter_unfold_ancestors=\u039e\u03b5\u03b4\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03c6\u03b9\u03bb\u03c4\u03c1\u03b1\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03c9\u03bd \u03ba\u03cc\u03bc\u03b2\u03c9\u03bd -find =\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 ... -find_next =\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 -find_what =\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b9 -fit_to_page =\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C3\u03C4\u03B1 \u03CC\u03C1\u03B9\u03B1 \u03BC\u03B9\u03B1\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 -fold =\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 -follow_graphical_link=\u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7: -follow_link =\u0391\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c5\u03c0\u03b5\u03c1\u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5 -font =\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -font_family =\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 -font_size =\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 -fork =&\u0394\u03B9\u03C7\u03AC\u03BB\u03B1 -format_menu_edge_styles=&\u03a3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -format_menu_edge_widths=\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 &\u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -FreeMind=\u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2 \u03C4\u03BF\u03C5 FreeMind -FreeMind.progress.buildScreen=\u039A\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03BF\u03B8\u03CC\u03BD\u03B7\u03C2... -FreeMind.progress.createController=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B5\u03BB\u03B5\u03B3\u03BA\u03C4\u03AE... -FreeMind.progress.createInitialMode=\u0391\u03C1\u03C7\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7... -FreeMind.progress.endStartup=\u03A4\u03AD\u03BB\u03BF\u03C2 \u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7\u03C2. -FreeMind.progress.gettingPreferenceDirectories=\u0391\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03BA\u03B1\u03C4\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... -FreeMind.progress.gettingPreferences=\u0391\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... -FreeMind.progress.loadMaps=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ce\u03bd \u03c7\u03b1\u03c1\u03c4\u03ce\u03bd... -FreeMind.progress.propageteLookAndFeel=\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03af\u03c3\u03b8\u03b7\u03c3\u03b7\u03c2... -FreeMind.progress.settingPreferences=\u03A1\u03CD\u03B8\u03BC\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... -FreeMind.progress.startCreateController=\u0388\u03BD\u03B1\u03C1\u03BE\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03B5\u03BB\u03B5\u03B3\u03BA\u03C4\u03AE... -FreeMind.progress.updateLookAndFeel=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03af\u03c3\u03b8\u03b7\u03c3\u03b7\u03c2... -freemind_reverted=\u03A4\u03BF Freemind_\u0395\u03C0\u03B1\u03BD\u03AD\u03BA\u03B1\u03BC\u03C8\u03B5_ -goto_link_node_action =\u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7 \u03C3\u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 -GrabKeyDialog.common.cancel=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 -GrabKeyDialog.common.ok=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 -GrabKeyDialog.grab-key.assigned-to=\u0391\u03BD\u03B1\u03C4\u03AD\u03B8\u03B7\u03BA\u03B5 \u03C3\u03B5 -GrabKeyDialog.grab-key.assigned-to.none=\u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03bd\u03ac\u03b8\u03b5\u03c3\u03b7 \u03b1\u03ba\u03cc\u03bc\u03b1 -GrabKeyDialog.grab-key.caption= -GrabKeyDialog.grab-key.clear=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 -GrabKeyDialog.grab-key.remove=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -GrabKeyDialog.grab-key.remove-ask=\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7; -GrabKeyDialog.grab-key.title=\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03bd\u03ad\u03bf\u03c5 \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf\u03c5 -help =\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 -html_export_based_on_headings =\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE HTML - \u0392\u03B1\u03C3\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C3\u03C4\u03B9\u03C2 \u03B5\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B5\u03C2 -html_export_fold_all =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae HTML - \u038c\u03bb\u03b1 \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03b1 -html_export_fold_currently_folded =\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE HTML - \u03A3\u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 -html_export_no_folding =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae HTML - \u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7 -icon_attach =\u039A\u03BF\u03AF\u03C4\u03B1 \u03B5\u03B4\u03CE -icon_back =\u03A0\u03AF\u03C3\u03C9 -icon_bell =\u03A5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 -icon_bookmark =\u0386\u03C1\u03B9\u03C3\u03C4\u03BF -icon_broken-line =\u03a3\u03c0\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf -icon_button_cancel =\u038C\u03C7\u03B9 \u03B5\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 -icon_button_ok =\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 -icon_calendar =\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 -icon_clanbomber =\u0395\u03C0\u03B9\u03BA\u03AF\u03BD\u03B4\u03C5\u03BD\u03BF -icon_clock =\u038f\u03c1\u03b1 -icon_closed =\u03A7\u03C9\u03C1\u03AF\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C7\u03CE\u03C1\u03B7\u03C3\u03B7 -icon_decrypted =\u039E\u03B5\u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03C4\u03BF -icon_desktop_new =\u039C\u03B7\u03BD \u03BE\u03B5\u03C7\u03AC\u03C3\u03B5\u03B9\u03C2 -icon_down =\u039A\u03AC\u03C4\u03C9 -icon_edit =\u03A4\u03B5\u03BB\u03B5\u03B9\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 -icon_encrypted =\u039A\u03BB\u03B5\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF -icon_family=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 -icon_fema=\u039A\u03BF\u03C1\u03AF\u03C4\u03C3\u03B9\u03B1 -icon_female1=\u039A\u03BF\u03C1\u03AF\u03C4\u03C3\u03B9 1 -icon_female2=\u039A\u03BF\u03C1\u03AF\u03C4\u03C3\u03B9 2 -icon_flag =\u039A\u03CC\u03BA\u03BA\u03B9\u03BD\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_flag-black =\u039C\u03B1\u03CD\u03C1\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_flag-blue =\u039C\u03C0\u03BB\u03B5 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_flag-green =\u03A0\u03C1\u03AC\u03C3\u03B9\u03BD\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_flag-orange =\u03A0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03AF \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_flag-pink =\u03A1\u03BF\u03B6 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_flag-yellow =\u039A\u03AF\u03C4\u03C1\u03B9\u03BD\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 -icon_folder =\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03C2 -icon_forward =\u0395\u03BC\u03C0\u03C1\u03CC\u03C2 -icon_freemind_butterfly = FreeMind -icon_full-0=\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 0 -icon_full-1 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 1 -icon_full-2 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 2 -icon_full-3 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 3 -icon_full-4 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 4 -icon_full-5 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 5 -icon_full-6 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 6 -icon_full-7 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 7 -icon_full-8 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 8 -icon_full-9 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 9 -icon_go=\u03A0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF \u03C6\u03C9\u03C2 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2 -icon_gohome =\u03A3\u03C0\u03AF\u03C4\u03B9 -icon_group=\u039F\u03BC\u03AC\u03B4\u03B1 -icon_help =\u0395\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7 -icon_hourglass =\u0391\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE -icon_idea =\u0388\u03BC\u03C0\u03BD\u03B5\u03C5\u03C3\u03B7 -icon_info=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 -icon_kaddressbook =\u03A4\u03B7\u03BB\u03AD\u03C6\u03C9\u03BD\u03BF -icon_kmail = E-Mail -icon_knotify =\u039C\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE -icon_korn =\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03BA\u03B9\u03B2\u03CE\u03C4\u03B9\u03BF -icon_ksmiletris =\u03A7\u03B1\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C2 -icon_launch=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 -icon_licq =\u03A9\u03C1\u03B1\u03AF\u03B1 -icon_list=\u039A\u03B1\u03C4\u03AC\u03BB\u03BF\u03B3\u03BF\u03C2 -icon_Mail =\u0391\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1 -icon_male1=\u0391\u03B3\u03CC\u03C1\u03B9 1 -icon_male2=\u0391\u03B3\u03CC\u03C1\u03B9 2 -icon_menu =\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 -icon_messagebox_warning =\u03A3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC -icon_password =\u039A\u03BB\u03B5\u03B9\u03B4\u03AF -icon_pencil =\u03A0\u03C1\u03CC\u03BA\u03B5\u03B9\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B2\u03B5\u03BB\u03C4\u03B9\u03C9\u03B8\u03B5\u03AF -icon_penguin = Linux -icon_prepare=\u039A\u03AF\u03C4\u03C1\u03B9\u03BD\u03BF \u03C6\u03C9\u03C2 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2 -icon_smiley-angry =\u0398\u03C5\u03BC\u03C9\u03BC\u03AD\u03BD\u03BF\u03C2 -icon_smiley-neutral =\u039F\u03C5\u03B4\u03AD\u03C4\u03B5\u03C1\u03BF\u03C2 -icon_smiley-oh =\u0388\u03BA\u03C0\u03BB\u03B7\u03BA\u03C4\u03BF\u03C2 -icon_smily_bad =\u0394\u03B5\u03BD \u03C0\u03B5\u03C1\u03BD\u03AC\u03C9 \u03BA\u03B1\u03BB\u03AC -icon_stop =\u039A\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF \u03C6\u03C9\u03C2 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2 -icon_stop-sign =\u0394\u03B9\u03B1\u03BA\u03BF\u03C0\u03AE -icon_up =\u0395\u03C0\u03AC\u03BD\u03C9 -icon_wizard =\u039C\u03B1\u03B3\u03B9\u03BA\u03CC -icon_xmag =\u039D\u03B1 \u03C4\u03BF \u03C3\u03C5\u03B6\u03B7\u03C4\u03AE\u03C3\u03BF\u03C5\u03BC\u03B5 -icon_yes =\u03A3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC -import =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE -import_branch =\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7... -import_explorer_favorites =\u0395\u03BE\u03B5\u03C1\u03B5\u03C5\u03BD\u03B7\u03C4\u03AE\u03C2 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03C9\u03BD... -import_folder_structure =\u0394\u03bf\u03bc\u03ae \u03c6\u03b1\u03ba\u03ad\u03bb\u03c9\u03bd... -import_linked_branch = \u03A3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03B7 \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 -import_linked_branch_no_link =\u039F \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B1\u03C0\u03CC \u03B1\u03C5\u03C4\u03AE\u03BD. -import_linked_branch_without_root = (\u03a3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03ba\u03bb\u03ac\u03b4\u03c9\u03c3\u03b7) \u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc... -increase_branch_font_size =\u039C\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -increase_node_font_size =\u039C\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -italic =\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 -italicise_branch =\u039C\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C3\u03B5 \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1 -join_nodes =\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u039a\u03cc\u03bc\u03b2\u03c9\u03bd -KeyDoc=\u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03a0\u03bb\u03ae\u03ba\u03c4\u03c1\u03c9\u03bd (\u03b1\u03c1\u03c7\u03b5\u03af\u03bf PDF) -less_than_two_selected_nodes =\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b3\u03af\u03bd\u03bf\u03c5\u03bd \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bf\u03cd\u03bd \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03b4\u03cd\u03bf \u03ba\u03cc\u03bc\u03b2\u03bf\u03b9. -license =\u0386\u03B4\u03B5\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 -license_text =FreeMind - \u039C\u03B9\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u0395\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CE\u03BD \u03A7\u03B1\u03C1\u03C4\u03CE\u03BD\nCopyright (C) 2000-2008 Joerg Mueller \n\u0394\u03AD\u03C3\u03C4\u03B5 \u03C4\u03BF \u0391\u039D\u03A4\u0399\u0393\u03A1\u0391\u03A6\u039F \u03B3\u03B9\u03B1 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2\n\n\u0391\u03C5\u03C4\u03AE \u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC, \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B4\u03B9\u03B1\u03BD\u03B5\u03AF\u03BC\u03B5\u03C4\u03B5 \u03BA\u03B1\u03B9/\u03AE\n\u03BD\u03B1 \u03C4\u03B7\u03BD \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C5\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03CC\u03C1\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2 \u0394\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1\u03C2 \u0386\u03B4\u03B5\u03B9\u03B1\u03C2 \u03A7\u03C1\u03AE\u03C3\u03B7\u03C2 GNU\n\u03CC\u03C0\u03C9\u03C2 \u03B5\u03BA\u03B4\u03CC\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF Free Software\nFoundation, \u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03C2 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2 2\n\u03C4\u03B7\u03C2 \u03AC\u03B4\u03B5\u03B9\u03B1\u03C2, \u03AE (\u03B1\u03BD\u03AC\u03BB\u03BF\u03B3\u03B1 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C3\u03B1\u03C2) \u03BF\u03C0\u03BF\u03B9\u03B1\u03C3\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7\u03C2 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2.\n\n\u0391\u03C5\u03C4\u03AE \u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B4\u03B9\u03B1\u03BD\u03AD\u03BC\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B5\u03BB\u03C0\u03AF\u03B4\u03B1 \u03CC\u03C4\u03B9 \u03B8\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C7\u03C1\u03AE\u03C3\u03B9\u03BC\u03B7,\n\u03B1\u03BB\u03BB\u03AC \u03A7\u03A9\u03A1\u0399\u03A3 \u039A\u0391\u039C\u0399\u0391 \u0395\u0393\u0393\u03A5\u0397\u03A3\u0397 \u03BA\u03B1\u03B9 \u03B1\u03BA\u03CC\u03BC\u03B7 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C5\u03C0\u03BF\u03B4\u03B7\u03BB\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03B5\u03B3\u03B3\u03CD\u03B7\u03C3\u03B7\n\u03B5\u03BC\u03C0\u03BF\u03C1\u03B5\u03C5\u03C3\u03B9\u03BC\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03AE \u03BA\u03B1\u03C4\u03B1\u03BB\u03BB\u03B7\u03BB\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03C3\u03BA\u03BF\u03C0\u03BF\u03CD\u03C2. \u0394\u03AD\u03C3\u03C4\u03B5\n\u03C4\u03B7 \u0394\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1 \u0386\u03B4\u03B5\u03B9\u03B1 \u03A7\u03C1\u03AE\u03C3\u03B7\u03C2 GNU \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2.\n\n\u0398\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BB\u03AC\u03B2\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B1\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF \u03C4\u03B7\u03C2 \u0386\u03B4\u03B5\u03B9\u03B1\u03C2 \u03B1\u03C5\u03C4\u03AE\u03C2\n\u03BC\u03B1\u03B6\u03AF \u03BC\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE. \u0395\u03AC\u03BD \u03CC\u03C7\u03B9, \u03B5\u03C0\u03B9\u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03AE\u03C3\u03C4\u03B5 \u03BC\u03B5 \u03C4\u03BF Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -linear =\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE -link_not_available_any_more =\u0397 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03B3\u03BA\u03C5\u03C1\u03B7 \u03C0\u03BB\u03AD\u03BF\u03BD. \u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF \u03AE\u03B4\u03B7. -link_not_found = \u039F \u03B4\u03B5\u03C3\u03BC\u03CC\u03C2 $1 \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5. -load =&\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 -locking_failed_by_open =\u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 $1 \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5. \u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7. -locking_failed_by_save_as =\u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 $1 \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5. \u0397 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2... \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5. -locking_old_lock_removed =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 $1 \u03BA\u03BB\u03B5\u03B9\u03B4\u03CE\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 $2. \u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B3\u03B9\u03B1\u03C4\u03AF \u03AE\u03C4\u03B1\u03BD \u03C0\u03B1\u03BB\u03B9\u03CC. -long_node_changed_cancel =\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AF\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; -long_node_changed_submit =\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; -lots_of_links_warning =\u03A0\u03C1\u03BF\u03C3\u03C0\u03B1\u03B8\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C0\u03BF\u03BB\u03BB\u03AD\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF. \u03A7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C3\u03C4\u03B5 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03B9\u03BA\u03AC \u03CC\u03BB\u03B5\u03C2 \u03B1\u03C5\u03C4\u03AD\u03C2 \u03C4\u03B9\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2; -ManagePatternsPopupDialog.Actions=&\u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 -ManagePatternsPopupDialog.add=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03BD\u03AD\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 -ManagePatternsPopupDialog.apply=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE -ManagePatternsPopupDialog.duplicate=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF\u03C5 -ManagePatternsPopupDialog.DuplicateNameMessage=\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03B1\u03C4\u03B5 \u03B4\u03CD\u03BF \u03C6\u03BF\u03C1\u03AD\u03C2 \u03C4\u03BF \u03AF\u03B4\u03B9\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1. \u03A0\u03B1\u03C1\u03B1\u03BA\u03B1\u03BB\u03CE \u03B1\u03BB\u03BB\u03AC\u03BE\u03C4\u03B5 \u03C4\u03BF \u03C0\u03C1\u03B9\u03BD \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF\u03BD \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF. -ManagePatternsPopupDialog.from_nodes=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03B3\u03AF\u03B1 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 -ManagePatternsPopupDialog.remove=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 -ManagePatternsPopupDialog.Save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE -map_already_exists =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AE\u03B4\u03B7. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF\u03BD \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5; -map_corrupted =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B1\u03C4\u03B5\u03C3\u03C4\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF\u03C2. \u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03B5\u03B9\u03CE\u03BD; -map_locked_by_open =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 $1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03BB\u03B5\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 $2. \u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7. -map_locked_by_save_as =\u039f \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 $1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 $2. \u0397 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1 "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c9\u03c2..." \u03b1\u03c0\u03bf\u03c1\u03c1\u03af\u03c6\u03b8\u03b7\u03ba\u03b5. -map_not_saved=\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7. -menu_attributes =& \u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac -menu_extras =&\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -menu_file_export =&\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae -menu_file_import =&\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae -menu_format =&\u039c\u03bf\u03c1\u03c6\u03ae -menu_insert =&\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae -menu_navigate =&\u03a0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7 -menu_view =&\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae -mindmap =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 -mindmaps =\u03a7\u03ac\u03c1\u03c4\u03b5\u03c2 -mindmaps_desc =\u03a7\u03ac\u03c1\u03c4\u03b5\u03c2 (*.mm) -mindmaps_filter_desc =\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 (*.mmfilter) -mode_Browse=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7\u03C2 -mode_File=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 -mode_MindMap=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03BF\u03CD \u03C7\u03AC\u03C1\u03C4\u03B7 -mode_na =\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b7 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 -mode_status =\u0397 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ac\u03bb\u03bb\u03b1\u03be\u03b5 \u03c3\u03c4\u03bf {0} -mode_title =FreeMind - {0} -modes =\u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 -most_recent_files =&\u03a4\u03b1 \u03c0\u03b9\u03bf \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 -move_to_root =\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF -new =\u039D\u03AD\u03BF -new_child =\u039D\u03AD\u03BF\u03C2 \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 -new_mindmap =\u039D\u03AD\u03BF\u03C2 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 -new_node =\u039d\u03ad\u03bf\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 -new_node_as_sibling_not_possible_for_the_root =\u039D\u03AD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C9\u03C2 \u03B1\u03B4\u03B5\u03BB\u03C6\u03B9\u03BA\u03CC\u03C2, \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03B8\u03B5\u03AF \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC -new_sibling_before =\u039D\u03AD\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C2 \u03B1\u03B4\u03B5\u03BB\u03C6\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 -new_sibling_behind =\u039D\u03AD\u03BF\u03C2 \u03B1\u03B4\u03B5\u03C1\u03C6\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 -next_map =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 -no =\u038C\u03C7\u03B9 -no_format_copy_before_format_paste =\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c2 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03b5\u03b9\u03c2 \u03bc\u03b9\u03b1 \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03b9\u03c2. -no_found_from = \u0394\u03B5\u03BD $1 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF $2. -no_more_found_from = \u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD $1 \u03AC\u03BB\u03BB\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF $2. -no_previous_find =\u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03BA\u03B1\u03BD\u03AD\u03BD\u03B1 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF. -node =\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 -node_background_color =&\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5... -node_changed_discard_changes =\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AF\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; -node_color =\u03a7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5... -node_down =\u039a\u03cc\u03bc\u03b2\u03bf\u03c2 \u03ba\u03ac\u03c4\u03c9 -node_is_write_protected=\u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C3\u03C4\u03CC\u03C7\u03BF\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C3\u03AF\u03B1 \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2. -node_location_help=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 \u03B8\u03AD\u03C3\u03B7\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03C3\u03CD\u03C1\u03C3\u03B9\u03BC\u03BF, ctrl+\u03C3\u03CD\u03C1\u03C3\u03B9\u03BC\u03BF \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03BF\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2, \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03BA\u03B1\u03B9 ctrl+\u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03C4\u03B9\u03C2 \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03B9. -node_up =\u039a\u03cc\u03bc\u03b2\u03bf\u03c2 \u03c0\u03ac\u03bd\u03c9 -nonboldify_branch =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF\u03C5 -nonitalicise_branch =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C0\u03BB\u03B1\u03B3\u03AF\u03C9\u03BD -normal =\u03a3\u03c5\u03bd\u03b7\u03b8\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf -not_saved_for_link_error =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03B8\u03B5\u03AF, \u03C0\u03C1\u03B9\u03BD \u03BF\u03C1\u03AF\u03C3\u03B5\u03C4\u03B5 \u03BC\u03B9\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD -ok =&\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 -open =\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1... -option_changes_may_require_restart=\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2, \u03bc\u03ac\u03bb\u03bb\u03bf\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf FreeMind. -OptionalDontShowMeAgainDialog.cancel=&\u038C\u03C7\u03B9 -OptionalDontShowMeAgainDialog.dontShowAgain=&\u039C\u03B7 \u03BC\u03B5 \u03BE\u03B1\u03BD\u03B1\u03C1\u03C9\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2. -OptionalDontShowMeAgainDialog.ok=&\u039D\u03B1\u03B9 -OptionalDontShowMeAgainDialog.rememberMyDescision=&\u039D\u03B1 \u03B8\u03C5\u03BC\u03AC\u03C3\u03B1\u03B9 \u03C4\u03B7\u03BD \u03B1\u03C0\u03CC\u03C6\u03B1\u03C3\u03AE \u03BC\u03BF\u03C5. -OptionPanel.absolute=\u0391\u03C0\u03CC\u03BB\u03C5\u03C4\u03BF -OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1 \u03b4\u03b9\u03ac\u03c4\u03b1\u03be\u03b7\u03c2 -OptionPanel.antialias=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 -OptionPanel.antialias.tooltip=\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03c0\u03bf\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03c7\u03ac\u03c1\u03c4\u03b7. \u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf . -OptionPanel.antialias_all=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd -OptionPanel.antialias_edges=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03c9\u03bd -OptionPanel.antialias_none=\u03a7\u03c9\u03c1\u03af\u03c2 \u03b5\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 -OptionPanel.Appearance=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 -OptionPanel.ar=Ar -OptionPanel.as_parent=\u03A9\u03C2 \u0393\u03BF\u03BD\u03AD\u03B1\u03C2 -OptionPanel.ask=\u0395\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 -OptionPanel.automatic=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF -OptionPanel.automaticFormat_level=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c3\u03c4\u03c5\u03bb \u03b4\u03b9\u03ac\u03c4\u03b1\u03be\u03b7\u03c2 -OptionPanel.automaticFormat_level1=\u039C\u03BF\u03C1\u03C6\u03AE \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.automaticFormat_level2=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 1 -OptionPanel.Behaviour=\u03A3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC -OptionPanel.bezier=\u039A\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 Bezier -OptionPanel.browsemode_initial_map=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c6\u03c5\u03bb\u03bb\u03bf\u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 -OptionPanel.browsemode_initial_map.tooltip=\u03a4\u03bf URL \u03c4\u03bf\u03c5 \u03c7\u03ac\u03c1\u03c4\u03b7 \u03c0\u03bf\u03c5 \u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03b5\u03b9, \u03cc\u03c4\u03b1\u03bd \u03be\u03b5\u03ba\u03b9\u03bd\u03ac\u03b5\u03b9 \u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c6\u03c5\u03bb\u03bb\u03bf\u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 -OptionPanel.bubble=\u03A6\u03BF\u03CD\u03C3\u03BA\u03B1 -OptionPanel.Cancel=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 -OptionPanel.ColorProperty.ResetColor=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 -OptionPanel.combined=\u03A3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF -OptionPanel.cs=Cs -OptionPanel.cut_nodes_without_question.tooltip=\u0395\u03AC\u03BD \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF, \u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B8\u03B1 \u03B1\u03C0\u03BF\u03BA\u03BF\u03C0\u03BF\u03CD\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u0391\u03C5\u03C4\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B1\u03C0\u03CE\u03BB\u03B5\u03B9\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD, \u03B5\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03CC\u03B8\u03B5\u03C3\u03B7. -OptionPanel.de=De -OptionPanel.default=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE -OptionPanel.default_browser_command_mac=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE\u03C2 \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 Mac -OptionPanel.default_browser_command_mac.tooltip= \u03BA\u03B1\u03B9 MAC: (\u03C7\u03AC\u03C1\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD Nick!) -OptionPanel.default_browser_command_other_os=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03bd\u03c4\u03bf\u03bb\u03ae\u03c2 \u03c6\u03c5\u03bb\u03bb\u03bf\u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae \u03b3\u03b9\u03b1 \u03ac\u03bb\u03bb\u03b1 Os -OptionPanel.default_browser_command_other_os.tooltip= \u0391\u03c5\u03c4\u03cc \u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 Linux: -OptionPanel.default_browser_command_windows_9x=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 Windows 9x -OptionPanel.default_browser_command_windows_9x.tooltip=\u0393\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Windows (\u03c4\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03b1 "" \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b1 \u03c3\u03b5 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd\u03c2, \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd "=" \u03c3\u03c4\u03bf URL \u03c4\u03bf\u03c5\u03c2). -OptionPanel.default_browser_command_windows_nt=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 Windows Nt -OptionPanel.default_browser_command_windows_nt.tooltip=\u0393\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Windows (\u03c4\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03b1 "" \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b1 \u03c3\u03b5 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd\u03c2, \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd "=" \u03c3\u03c4\u03bf URL \u03c4\u03bf\u03c5\u03c2). -OptionPanel.defaultfont=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -OptionPanel.defaultfont.tooltip=\u0397 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac \u03b3\u03b9\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5\u03c2. \u0399\u03c3\u03c7\u03cd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03cc\u03c4\u03b1\u03bd \u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac (TrueTypeFont) \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03c3\u03c4\u03bf \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 -OptionPanel.defaultfontsize=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 -OptionPanel.defaultfontsize.tooltip=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03ad\u03bf\u03c5\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5\u03c2. -OptionPanel.defaultfontstyle=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03c5\u03bb \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 -OptionPanel.Defaults=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 -OptionPanel.delete_automatic_saves_at_exit=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03c9\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03c9\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03ad\u03be\u03bf\u03b4\u03bf -OptionPanel.delete_automatic_saves_at_exit.tooltip=\u0391\u03BD \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03BF\u03CD\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03BC\u03B5\u03C4\u03AC \u03B1\u03C0\u03CC \u03BC\u03AF\u03B1 \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03AE \u03AD\u03BE\u03BF\u03B4\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF Freemind, \u03B7 \u03B1\u03BA\u03CC\u03BB\u03BF\u03C5\u03B8\u03B7 \u03BC\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AE \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B9\u03BC\u03AE true -OptionPanel.delete_nodes_without_question=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; -OptionPanel.delete_nodes_without_question.tooltip=\u0395\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5, \u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B8\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u0391\u03C5\u03C4\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B1\u03C0\u03CE\u03BB\u03B5\u03B9\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD, \u03B5\u03AC\u03BD \u03C0\u03B1\u03C4\u03B7\u03B8\u03B5\u03AF \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03CC\u03B8\u03B5\u03C3\u03B7. -OptionPanel.disable_cursor_move_paper=\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2 \u03c7\u03b1\u03c1\u03c4\u03b9\u03bf\u03cd \u03bc\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ad\u03c1\u03c3\u03bf\u03c1\u03b1 -OptionPanel.disable_cursor_move_paper.tooltip=\u039c\u03b7\u03bd \u03b4\u03b5\u03af\u03c7\u03bd\u03b5\u03b9\u03c2 'move' \u03b4\u03b5\u03af\u03ba\u03c4\u03b7, \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c3\u03c5\u03c1\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c7\u03b1\u03c1\u03c4\u03b9\u03bf\u03cd -OptionPanel.disable_key_type=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 Key Type -OptionPanel.disable_key_type.tooltip=Key typing: \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.dk=Dk -OptionPanel.docmapurl_since_version_0_7_0=Docmapurl -OptionPanel.draganddrop=\u03a3\u03cd\u03c1\u03c3\u03b9\u03bc\u03bf & \u0391\u03c0\u03cc\u03b8\u03b5\u03c3\u03b7 -OptionPanel.draganddrop.tooltip=\u0395\u03AC\u03BD \u03C4\u03BF dnd \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF. -OptionPanel.el=El -OptionPanel.el__buttons_position=\u0398\u03AD\u03C3\u03B5\u03B9\u03C2 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03CE\u03BD -OptionPanel.el__buttons_position.tooltip= \u03c0\u03ac\u03bd\u03c9/\u03ba\u03ac\u03c4\u03c9 -OptionPanel.el__enter_confirms_by_default=\u03a9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae, \u03c4\u03bf \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf Enter \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03bd\u03b5\u03b9 -OptionPanel.el__max_default_window_height=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03CD\u03C8\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 -OptionPanel.el__max_default_window_width=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 -OptionPanel.el__min_default_window_height=\u0395\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF \u03CD\u03C8\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 -OptionPanel.el__min_default_window_width=\u0395\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 -OptionPanel.el__position_window_below_node=\u03a4\u03bf\u03c0\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03ba\u03cc\u03bc\u03b2\u03bf. -OptionPanel.el__show_icon_for_attributes=\u0394\u03b5\u03af\u03be\u03b5 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac -OptionPanel.en=En -OptionPanel.enable_leaves_folding=\u0397 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C6\u03AE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 -OptionPanel.enable_leaves_folding.tooltip=\u0397 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C6\u03AE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 == \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1\u03C2/\u03B4\u03B9\u03C7\u03AC\u03BB\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 (\u03B1\u03BD \u03BA\u03B1\u03B9 \u03CC\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC, \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03C0\u03AC\u03BD\u03C4\u03B1 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C4\u03CD\u03C0\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03C4\u03B5) -OptionPanel.Environment=\u03A0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD -OptionPanel.es=Es -OptionPanel.et=Et -OptionPanel.execute_scripts_without_asking.tooltip=\u03A4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C4\u03BF\u03C5 FreeMind \u03B5\u03AF\u03BD\u03B1\u03B9, \u03BA\u03B1\u03C4\u03AC \u03BA\u03CD\u03C1\u03B9\u03BF \u03BB\u03CC\u03B3\u03BF, \u03B9\u03BA\u03B1\u03BD\u03AC \u03BD\u03B1 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03BF\u03C5\u03BD \u03BF\u03C0\u03BF\u03B9\u03B1\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2.
\u0388\u03C4\u03C3\u03B9, \u03B4\u03B5\u03BD \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B5 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C4\u03B1 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03B4\u03B5\u03BD \u03B3\u03BD\u03C9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B5 \u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C3\u03C6\u03B1\u03BB\u03AE. -OptionPanel.experimental_file_locking_on=\u03A0\u03B5\u03B9\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 -OptionPanel.experimental_file_locking_on.tooltip= \u03A0\u03B5\u03B9\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 -OptionPanel.export_icons_in_html=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C9\u03C2 Html -OptionPanel.export_icons_in_html.tooltip= \u039f\u03c1\u03b9\u03c3\u03b5 \u03b1\u03bd \u03c3\u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03b1 HTML \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03b1. \u03a4\u03bf \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03bf\u03b9 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03b9 \u03b4\u03b5\u03bd \u03b4\u03b5\u03af\u03c7\u03bd\u03bf\u03c5\u03bd \u03c3\u03c9\u03c3\u03c4\u03ac \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03bf HTML. -OptionPanel.Files=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 -OptionPanel.first=\u03A0\u03C1\u03CE\u03C4\u03BF -OptionPanel.foldingsymbolwidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C3\u03C5\u03BC\u03B2\u03CC\u03BB\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 -OptionPanel.foldingsymbolwidth.tooltip=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03CD\u03BA\u03BB\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 -OptionPanel.fork=\u0394\u03B9\u03C7\u03AC\u03BB\u03B1 -OptionPanel.fr=Fr -OptionPanel.gl=Gl -OptionPanel.gtk=Gtk -OptionPanel.hr=Hr -OptionPanel.HTML=HTML -OptionPanel.html_export_based_on_headings=\u0392\u03B1\u03C3\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03B5\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B5\u03C2 -OptionPanel.html_export_fold_all=\u038C\u03BB\u03B1 \u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03B1 -OptionPanel.html_export_fold_currently_folded=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 -OptionPanel.html_export_folding=\u0391\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE Html -OptionPanel.html_export_no_folding=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 -OptionPanel.hu=Hu -OptionPanel.icon_order_description=\u0395\u03B4\u03CE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03AE\u03C3\u03B5\u03C4\u03B5 \u03AE \u03BD\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1. \u03A4\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 ';'. -OptionPanel.icons.list=\u039A\u03B1\u03C4\u03AC\u03BB\u03BF\u03B3\u03BF\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03C9\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD -OptionPanel.id=Id -OptionPanel.it=It -OptionPanel.ja=Ja -OptionPanel.key_type_adds_new=Key Type \u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5 -OptionPanel.key_type_adds_new.tooltip=Key typing: \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 (false) / \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03b4\u03b5\u03bb\u03c6\u03b9\u03ba\u03bf\u03cd (true) (\u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af: disable_key_type = false) -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B4\u03B5\u03BE\u03B9\u03AC -OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 -OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03B7\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 -OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 -OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=\u03a3\u03c4\u03c5\u03bb \u03b4\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7\u03c2 -OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=\u0395\u03C3\u03BF\u03C7\u03AD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD -OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7/\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7\u03c2 -OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u03C3\u03CD\u03BD\u03C4\u03B1\u03BE\u03B7\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 -OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 -OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=\u0394\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03cc\u03bb\u03c9\u03bd -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=\u0394\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03b5\u03c0\u03af\u03c0\u03b5\u03b4\u03bf -OptionPanel.keystroke_add=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 -OptionPanel.keystroke_add_arrow_link_action=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2 \u03C3\u03B5 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2 -OptionPanel.keystroke_add_child=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5 -OptionPanel.keystroke_add_child_mac=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5 Mac -OptionPanel.keystroke_add_local_link_action=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 -OptionPanel.keystroke_add_sibling_before=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03b4\u03b5\u03bb\u03c6\u03bf\u03cd \u03c0\u03c1\u03b9\u03bd -OptionPanel.keystroke_apply_pattern_1=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 1 -OptionPanel.keystroke_apply_pattern_10=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 10 -OptionPanel.keystroke_apply_pattern_11=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 11 -OptionPanel.keystroke_apply_pattern_12=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 12 -OptionPanel.keystroke_apply_pattern_13=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 13 -OptionPanel.keystroke_apply_pattern_14=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 14 -OptionPanel.keystroke_apply_pattern_15=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 15 -OptionPanel.keystroke_apply_pattern_16=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 16 -OptionPanel.keystroke_apply_pattern_17=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 17 -OptionPanel.keystroke_apply_pattern_18=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 18 -OptionPanel.keystroke_apply_pattern_2=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 2 -OptionPanel.keystroke_apply_pattern_3=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 3 -OptionPanel.keystroke_apply_pattern_4=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 4 -OptionPanel.keystroke_apply_pattern_5=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 5 -OptionPanel.keystroke_apply_pattern_6=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 6 -OptionPanel.keystroke_apply_pattern_7=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 7 -OptionPanel.keystroke_apply_pattern_8=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 8 -OptionPanel.keystroke_apply_pattern_9=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 9 -OptionPanel.keystroke_assign_attributes=\u0391\u03bd\u03ac\u03b8\u03b5\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd... -OptionPanel.keystroke_close=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF -OptionPanel.keystroke_copy=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE -OptionPanel.keystroke_copy_single=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 -OptionPanel.keystroke_cut=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE -OptionPanel.keystroke_delete_child=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5 -OptionPanel.keystroke_edge_color=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -OptionPanel.keystroke_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 -OptionPanel.keystroke_edit_attributes=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD -OptionPanel.keystroke_edit_long_node=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.keystroke_export_branch=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7\u03C2 -OptionPanel.keystroke_export_branch_to_html=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7\u03C2 \u03C3\u03B5 Html -OptionPanel.keystroke_export_to_html=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03B5 Html -OptionPanel.keystroke_find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 -OptionPanel.keystroke_find_next=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 -OptionPanel.keystroke_follow_link=\u0391\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b1 \u03c4\u03b7 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 -OptionPanel.keystroke_hide_all_attributes=\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd -OptionPanel.keystroke_join_nodes=\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03ba\u03cc\u03bc\u03b2\u03c9\u03bd -OptionPanel.keystroke_mode_Browse=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c0\u03bb\u03bf\u03b7\u03b3\u03ae\u03c3\u03b7\u03c2 -OptionPanel.keystroke_mode_File=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 -OptionPanel.keystroke_mode_MindMap=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ce\u03bd \u03c7\u03b1\u03c1\u03c4\u03ce\u03bd -OptionPanel.keystroke_move_down=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03BA\u03AC\u03C4\u03C9 -OptionPanel.keystroke_move_left=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC -OptionPanel.keystroke_move_right=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B4\u03B5\u03BE\u03B9\u03AC -OptionPanel.keystroke_move_up=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03AC\u03BD\u03C9 -OptionPanel.keystroke_moveToRoot=\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf -OptionPanel.keystroke_newMap=\u039d\u03ad\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 -OptionPanel.keystroke_nextMap=\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 -OptionPanel.keystroke_node_color=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.keystroke_node_color_blend=\u039C\u03AF\u03BE\u03B7 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.keystroke_node_decrease_font_size=\u039C\u03B5\u03AF\u03C9\u03C3\u03B7 \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.keystroke_node_down=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03BA\u03AC\u03C4\u03C9 -OptionPanel.keystroke_node_increase_font_size=\u0391\u03CD\u03BE\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.keystroke_node_toggle_boldface=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03ad\u03bd\u03c4\u03bf\u03bd\u03b7 \u03b3\u03c1\u03b1\u03c6\u03ae -OptionPanel.keystroke_node_toggle_cloud=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03bd\u03ad\u03c6\u03bf\u03c2 -OptionPanel.keystroke_node_toggle_italic=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03c0\u03bb\u03ac\u03b3\u03b9\u03b1 \u03b3\u03c1\u03b1\u03c6\u03ae -OptionPanel.keystroke_node_toggle_underlined=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf -OptionPanel.keystroke_node_up=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B5\u03C0\u03AC\u03BD\u03C9 -OptionPanel.keystroke_open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 -OptionPanel.keystroke_open_first_in_history=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03ce\u03c4\u03bf\u03c5 \u03c3\u03c4\u03bf \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd -OptionPanel.keystroke_option_dialog=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 -OptionPanel.keystroke_paste=\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 -OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7 -OptionPanel.keystroke_previousMap=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 -OptionPanel.keystroke_print=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 -OptionPanel.keystroke_quit=\u0388\u03BE\u03BF\u03B4\u03BF\u03C2 -OptionPanel.keystroke_redo=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2 -OptionPanel.keystroke_remove=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -OptionPanel.keystroke_save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 -OptionPanel.keystroke_saveAs=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2 -OptionPanel.keystroke_select_all=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD -OptionPanel.keystroke_select_branch=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 -OptionPanel.keystroke_set_image_by_filechooser=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd -OptionPanel.keystroke_set_link_by_filechooser=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd \u03bc\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd -OptionPanel.keystroke_set_link_by_textfield=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd \u03bc\u03b5 \u03c0\u03b5\u03b4\u03af\u03bf \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 -OptionPanel.keystroke_show_all_attributes=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd -OptionPanel.keystroke_show_attribute_manager=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd -OptionPanel.keystroke_show_selected_attributes=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd -OptionPanel.keystroke_toggle_children_folded=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03c9\u03bd \u03b1\u03c0\u03bf\u03b3\u03cc\u03bd\u03c9\u03bd -OptionPanel.keystroke_toggle_folded=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03c9\u03bd -OptionPanel.keystroke_undo=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -OptionPanel.keystroke_zoom_in=\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7 -OptionPanel.keystroke_zoom_out=\u03a3\u03bc\u03af\u03ba\u03c1\u03c5\u03bd\u03c3\u03b7 -OptionPanel.Keystrokes=\u03a3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03bf\u03af \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03c9\u03bd -OptionPanel.ko=Ko -OptionPanel.language=\u0393\u03BB\u03CE\u03C3\u03C3\u03B1 -OptionPanel.language.tooltip=\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1. \u0397 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE '\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7' \u03C0\u03C1\u03BF\u03C3\u03C0\u03B1\u03B8\u03B5\u03AF \u03BD\u03B1 \u03C6\u03BF\u03C1\u03C4\u03CE\u03C3\u03B5\u03B9 \u03C4\u03B7 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C4\u03BF\u03C5 \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03BF\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7. -OptionPanel.last=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF -OptionPanel.last_opened_list_length=\u039c\u03ae\u03ba\u03bf\u03c2 \u03ba\u03b1\u03c4\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b1\u03bd\u03bf\u03b9\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd -OptionPanel.level=\u0395\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF -OptionPanel.level1=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.level2=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 1 -OptionPanel.level3=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 2 -OptionPanel.level4=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 3 -OptionPanel.level5=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03AC\u03BB\u03BB\u03C9\u03BD \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03C9\u03BD -OptionPanel.linear=\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC -OptionPanel.links=\u03a3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 -OptionPanel.links.tooltip=\u039f\u03c1\u03af\u03b6\u03b5\u03b9 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2, \u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc\u03bb\u03c5\u03c4\u03b1 \u03b5\u03af\u03c4\u03b5 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac -OptionPanel.loadLastMap=\u0391\u03bd\u03bf\u03af\u03b3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03bf\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03c7\u03ac\u03c1\u03c4\u03b7 -OptionPanel.loadLastMap.tooltip=\u038c\u03c4\u03b1\u03bd \u03c4\u03bf FreeMind \u03be\u03b5\u03ba\u03b9\u03bd\u03ac, \u03b1\u03bd\u03bf\u03af\u03b3\u03b5\u03b9 \u03c4\u03bf \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1, \u03b1\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af. -OptionPanel.lookandfeel=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7 -OptionPanel.lookandfeel.tooltip=\u0397 \u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7. \u03A5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 'metal','windows','motif', 'gtk', 'mac' \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF \u03BC\u03CC\u03BD\u03BF \u03C3\u03B5 MacOS. \u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9, \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF!. \u0391\u03BD \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03C4\u03B5 \u03B4\u03B9\u03BA\u03CC \u03C3\u03B1\u03C2, \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 class \u03B5\u03B4\u03CE \u03BA\u03B1\u03B9 \u03B2\u03B5\u03B2\u03B1\u03B9\u03C9\u03B8\u03B5\u03AF\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03C4\u03B1 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC jar \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B1. \u0391\u03BD \u03C5\u03C0\u03AC\u03C1\u03BE\u03B5\u03B9 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF \u03C0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1, \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 'nothing' . \u0394\u03BF\u03C5\u03BB\u03B5\u03CD\u03B5\u03B9 \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AF\u03B4\u03B9\u03B1 -OptionPanel.lt=Lt -OptionPanel.mapxsize=Map-X-size -OptionPanel.mapxsize.tooltip=\u039F\u03B9 \u03B1\u03C1\u03C7\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B9\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2 \u03BA\u03AC\u03B8\u03B5 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -OptionPanel.mapysize=Map-Y-size -OptionPanel.max_node_width=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.max_node_width.tooltip=\u03A4\u03BF \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 (\u03C3\u03B5 pixels) -OptionPanel.max_tooltip_width=\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ae\u03c2 -OptionPanel.max_tooltip_width.tooltip=\u03a4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ae\u03c2 (\u03c3\u03b5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1). -OptionPanel.metal=\u039c\u03b5\u03c4\u03b1\u03bb\u03bb\u03b9\u03ba\u03cc -OptionPanel.motif=\u039C\u03BF\u03C4\u03AF\u03B2\u03BF -OptionPanel.nb=Nb -OptionPanel.nl=Nl -OptionPanel.nn=Nn -OptionPanel.no=\u038C\u03C7\u03B9 -OptionPanel.nothing=\u03A4\u03AF\u03C0\u03BF\u03C4\u03B1 -OptionPanel.number_of_different_files_for_automatic_save=\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03CE\u03BD \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 -OptionPanel.number_of_different_files_for_automatic_save.tooltip= \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 n \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ce\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c7\u03b1\u03c1\u03c4\u03ce\u03bd \u03b5\u03bd\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5\u03c2. \u0397 \u03c0\u03c1\u03ce\u03c4\u03b7 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf, \u03ba.\u03bf.\u03ba., \u03b7 n+1-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03be\u03b1\u03bd\u03b1\u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf (\u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ac) -OptionPanel.OK=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 -OptionPanel.path_to_automatic_saves=\u0394\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 -OptionPanel.path_to_automatic_saves.tooltip= \u03b3\u03b9\u03b1 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 (\u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03c4\u03bf 'java.io.tmpdir' \u03c4\u03b7\u03c2 java), \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03b5\u03b4\u03ce \u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae: \u03b1\u03bb\u03bb\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2: * freemind_home \u03b1\u03bd\u03c4\u03b9\u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b5\u03cd\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03bf\u03c5 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf auto.properties. * default \u03b4\u03b5\u03af\u03c7\u03bd\u03b5\u03b9 \u03c4\u03bf java.io.tmpdir -OptionPanel.patternsfile=\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03c9\u03bd -OptionPanel.pl=Pl -OptionPanel.placenewbranches=\u03a4\u03bf\u03c0\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03bd\u03ad\u03c9\u03bd \u03b4\u03b9\u03b1\u03ba\u03bb\u03b1\u03b4\u03ce\u03c3\u03b5\u03c9\u03bd -OptionPanel.placenewbranches.tooltip=\u0395\u03b4\u03ce \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c4\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03bd\u03ad\u03b5\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bb\u03b1\u03b4\u03ce\u03c3\u03b5\u03b9\u03c2. \u0388\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 'first' \u03ba\u03b1\u03b9 'last' -OptionPanel.plugins/scripting/tab_name=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD -OptionPanel.printonwhitebackground=\u039B\u03B5\u03C5\u03BA\u03CC \u03C6\u03CC\u03BD\u03C4\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 -OptionPanel.printonwhitebackground.tooltip=\u0394\u03B9\u03B1\u03C1\u03BA\u03AE\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03BB\u03B5\u03C5\u03BA\u03BF\u03CD \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 -OptionPanel.pt_BR=Pt BR -OptionPanel.pt_PT=Pt PT -OptionPanel.relative=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03CC -OptionPanel.remind_type_of_new_nodes.tooltip=\u0397 "\u0395\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7" \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03c1\u03c9\u03c4\u03ac\u03b5\u03b9 (\u03b1\u03bc\u03c6\u03af\u03b2\u03bf\u03bb\u03b7 \u03c7\u03c1\u03ae\u03c3\u03b7).
\u03a4\u03bf "\u039d\u03b1\u03b9" \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03b5\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5.
\u03a4\u03bf "\u038c\u03c7\u03b9" \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03b1\u03c0\u03bb\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. -OptionPanel.remind_use_rich_text_in_new_long_nodes=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 -OptionPanel.remove_notes_without_question.tooltip=\u0395\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5, \u03BF\u03B9 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03AE\u03BA\u03BF\u03C5\u03BD \u03C3\u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03B8\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03B8\u03BF\u03CD\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u0391\u03C5\u03C4\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B1\u03C0\u03CE\u03BB\u03B5\u03B9\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD, \u03B5\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03CC\u03B8\u03B5\u03C3\u03B7. -OptionPanel.resources_convert_to_current_version=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD \u03C0\u03B1\u03BB\u03B1\u03B9\u03CC\u03C4\u03B5\u03C1\u03C9\u03BD \u03B5\u03BA\u03B4\u03CC\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 FreeMind
\u03C3\u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7; -OptionPanel.resources_convert_to_current_version.tooltip=\u039C\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03B1\u03C0\u03BF\u03CD\u03BD
(\u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03AD\u03BC\u03C0\u03B5\u03B9\u03C1\u03BF\u03C5\u03C2) \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03C4\u03B5 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE. -OptionPanel.resources_cut_nodes_without_question=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; -OptionPanel.resources_don_t_show_note_icons=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 -OptionPanel.resources_execute_scripts_without_asking=\u0398\u03B1 \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; -OptionPanel.resources_execute_scripts_without_exec_restriction=\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03AC\u03BB\u03BB\u03C9\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03CE\u03BD (\u0394\u0395\u039D \u03C3\u03C5\u03BD\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9) -OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD Groovy \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03BF\u03C5\u03BD \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AD\u03C2 (\u03CC\u03C0\u03C9\u03C2 \u03AD\u03BD\u03B1\u03BD \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE) \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7(!)),
\u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.
\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03CC\u03BC\u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE, \u03B3\u03B9\u03B1\u03C4\u03AF \u03BA\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2! -OptionPanel.resources_execute_scripts_without_file_restriction=\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b5\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 (\u0394\u0395\u039d \u03c3\u03c5\u03bd\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9) -OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD Groovy \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03BF\u03C5\u03BD \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 (\u03AC\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1, \u03BA\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF, \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE, \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE(!)),
\u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.
\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03CC\u03BC\u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE, \u03B3\u03B9\u03B1\u03C4\u03AF \u03BA\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2! -OptionPanel.resources_execute_scripts_without_network_restriction=\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b5\u03c2 \u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5 (\u0394\u0395\u039d \u03c3\u03c5\u03bd\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9) -OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD Groovy \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03BF\u03C5\u03BD \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B9\u03BA\u03C4\u03C5\u03B1\u03BA\u03AD\u03C2 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2,
\u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.
\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03CC\u03BC\u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE, \u03B3\u03B9\u03B1\u03C4\u03AF \u03BA\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2! -OptionPanel.resources_remove_notes_without_question=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7; -OptionPanel.resources_save_folding_state=\u0394\u03B9\u03B1\u03C1\u03BA\u03AE\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 -OptionPanel.resources_save_folding_state.tooltip=\u0395\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF, \u03BA\u03AC\u03B8\u03B5 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03C7\u03AC\u03BB\u03B9\u03B1 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03BA\u03B1\u03B9 \u03C3\u03B1\u03C2 \u03C5\u03C0\u03B5\u03BD\u03B8\u03C5\u03BC\u03AF\u03B6\u03B5\u03B9 \u03CC\u03C4\u03B9 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C4\u03BF\u03BD \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03C4\u03B5. -OptionPanel.resources_script_user_key_name_for_signing=\u03A0\u03C1\u03BF\u03B1\u03B9\u03C1\u03B5\u03C4\u03B9\u03BA\u03CC \u03C8\u03B5\u03C5\u03B4\u03CE\u03BD\u03C5\u03BC\u03BF \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03B3\u03B9\u03B1 \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE -OptionPanel.resources_script_user_key_name_for_signing.tooltip=\u0395\u03AC\u03BD \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C5\u03C0\u03BF\u03B3\u03C1\u03AC\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C3\u03B1\u03C2, \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C8\u03B5\u03C5\u03B4\u03CE\u03BD\u03C5\u03BC\u03BF \u03C4\u03BF\u03C5 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD \u03B5\u03B4\u03CE.
\u0391\u03BD\u03B1\u03BC\u03AD\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF \u03BD\u03B1 \u03B1\u03BD\u03AE\u03BA\u03B5\u03B9 \u03C3\u03C4\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B1 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03AC.
\u039F \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03BC\u03C5\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C3\u03C5\u03BC\u03C0\u03AF\u03C0\u03C4\u03B5\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 (\u03B1\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE). -OptionPanel.resources_signed_script_are_trusted=\u0395\u03BC\u03C0\u03B9\u03C3\u03C4\u03BF\u03C3\u03CD\u03BD\u03B7 \u03C3\u03C4\u03B1 \u03C5\u03C0\u03BF\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD (\u03C3\u03C5\u03BD\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9). -OptionPanel.resources_signed_script_are_trusted.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03AD\u03C7\u03BF\u03C5\u03BD \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF \u03B1\u03C0\u03CC \u03AC\u03C4\u03BF\u03BC\u03BF/\u03AC\u03C4\u03BF\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C0\u03B9\u03C3\u03C4\u03B5\u03CD\u03B5\u03C3\u03C4\u03B5 (\u03C0.\u03C7. \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03C4\u03AD\u03C2 \u03C4\u03BF\u03C5 FreeMind \u03AE \u03B1\u03C0\u03CC \u03B5\u03C3\u03AC\u03C2), \u03B5\u03BA\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD\u03C2. -OptionPanel.ru=Ru -OptionPanel.save_only_intrisically_needed_ids=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03BC\u03CC\u03BD\u03BF \u03C4\u03C9\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BC\u03B5\u03BD\u03C9\u03BD ID \u03C4\u03BF\u03C5 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.save_only_intrisically_needed_ids.tooltip=\u038C\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF, \u03C4\u03B1 ID \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C0\u03B1\u03C1\u03B1\u03BB\u03B5\u03AF\u03C0\u03BF\u03BD\u03C4\u03B1\u03B9. \u03A0\u03B1\u03C1\u03B1\u03C4\u03B7\u03C1\u03AE\u03C3\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03C4\u03B5 \u03B5\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03BF\u03CD\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03C3\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BC\u03AD\u03C3\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7, \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C4\u03BF ID \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. -OptionPanel.se=Se -OptionPanel.selection_method=\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 -OptionPanel.selection_method.tooltip= \u03bc\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b9\u03b1\u03ba\u03cc\u03c0\u03c4\u03b7 \u03b1\u03c5\u03c4\u03cc\u03bd, \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9/\u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03ba\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03c7\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2. \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2. \u039c\u03b7\u03bd \u03c4\u03bf \u03bc\u03b5\u03c4\u03b1\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b5 \u03b3\u03b9\u03b1\u03c4\u03af \u03b8\u03b1 \u03c3\u03c9\u03b8\u03b5\u03af \u03c3\u03c4\u03bf auto.properties \u03c3\u03b5 \u03ba\u03ac\u03b8\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7. -OptionPanel.selection_method_by_click=\u039C\u03B5 \u039A\u03BB\u03B9\u03BA -OptionPanel.selection_method_delayed=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03B5\u03C1\u03B7\u03BC\u03AD\u03BD\u03BF -OptionPanel.selection_method_direct=\u0386\u03BC\u03B5\u03C3\u03BF -OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 -OptionPanel.separator.anti_alias=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 -OptionPanel.separator.attributes=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC -OptionPanel.separator.automatic_save=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 -OptionPanel.separator.behaviour=\u03A3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC -OptionPanel.separator.browser=\u03A6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE\u03C2 -OptionPanel.separator.commands_for_the_program=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 -OptionPanel.separator.default_colors=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B1 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 -OptionPanel.separator.default_fonts=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AD\u03C2 -OptionPanel.separator.default_styles=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c4\u03c5\u03bb -OptionPanel.separator.edit_long_node_window=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 -OptionPanel.separator.files=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 -OptionPanel.separator.html_export=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE Html -OptionPanel.separator.hyperlink_types=\u0395\u03af\u03b4\u03b7 \u03c5\u03c0\u03b5\u03c1\u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03c9\u03bd -OptionPanel.separator.icon_properties=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 -OptionPanel.separator.icons=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C3\u03B5 "\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5..." -OptionPanel.separator.initial_map_size=\u0391\u03c1\u03c7\u03b9\u03ba\u03cc \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7 -OptionPanel.separator.key_typing=\u03A3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD -OptionPanel.separator.language=\u0393\u03BB\u03CE\u03C3\u03C3\u03B1 -OptionPanel.separator.look_and_feel=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7 -OptionPanel.separator.mouse_wheel=\u03A4\u03C1\u03BF\u03C7\u03CC\u03C2 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD -OptionPanel.separator.new_node_commands=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03BD\u03AD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.separator.node_editing_commands=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.separator.node_navigation_commands=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03C0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.separator.other_defaults=\u0391\u03BB\u03BB\u03B5\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 -OptionPanel.separator.others=\u0386\u03BB\u03BB\u03B5\u03C2 \u03C3\u03C7\u03AD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD -OptionPanel.separator.patterns=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1 -OptionPanel.separator.plugins/scripting/separatorPropertyName=\u0386\u03B4\u03B5\u03B9\u03B5\u03C2 -OptionPanel.separator.resources_notifications=\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 -OptionPanel.separator.root_node_appearance=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.separator.save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 -OptionPanel.separator.selection_colors=\u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 -OptionPanel.separator.selection_method=\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 -OptionPanel.separator.undo=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -OptionPanel.sk=Sk -OptionPanel.sl=Sl -OptionPanel.standardbackgroundcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 -OptionPanel.standardbackgroundcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html -OptionPanel.standardcloudcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2 -OptionPanel.standardcloudcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html -OptionPanel.standardcloudestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2 -OptionPanel.standardcloudestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2. \u03a0\u03c1\u03cc\u03c2 \u03c4\u03bf \u03c0\u03b1\u03c1\u03cc\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 'Bezier' -OptionPanel.standarddrawrectangleforselection=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C3\u03B5 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B5\u03C2 -OptionPanel.standarddrawrectangleforselection.tooltip=\u0395\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03BC\u03B5 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1 \u03BF\u03BB\u03CC\u03B3\u03C5\u03C1\u03B1. -OptionPanel.standardedgecolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -OptionPanel.standardedgecolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html -OptionPanel.standardedgestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -OptionPanel.standardedgestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2. \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf '\u03b3\u03c1\u03b1\u03bc\u03bc\u03b9\u03ba\u03cc' \u03ba\u03b1\u03b9 'Bezier' -OptionPanel.standardlinkcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 -OptionPanel.standardlinkcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html -OptionPanel.standardlinkestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 -OptionPanel.standardlinkestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2. \u03a0\u03c1\u03cc\u03c2 \u03c4\u03bf \u03c0\u03b1\u03c1\u03cc\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 'Bezier' -OptionPanel.standardnodecolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.standardnodecolor.tooltip=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u039C\u03BF\u03C1\u03C6\u03AE html (#RRGGBB \u03BC\u03B5 \u03B4\u03B5\u03BA\u03B1\u03B5\u03BE\u03B1\u03B4\u03B9\u03BA\u03AD\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2) -OptionPanel.standardnodestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.standardnodestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03c5\u03bb \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03bd\u03ad\u03bf \u03ba\u03cc\u03bc\u03b2\u03bf.\u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03c4\u03cd\u03c0\u03bf\u03b9 '\u03b4\u03b9\u03b1\u03ba\u03bb\u03ac\u03b4\u03c9\u03c3\u03b7', '\u03c6\u03bf\u03cd\u03c3\u03ba\u03b1' '\u03c9\u03c2_\u03b3\u03bf\u03bd\u03ad\u03b1\u03c2' \u03ba\u03b1\u03b9 '\u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf' -OptionPanel.standardnodetextcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.standardnodetextcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5. \u03a3\u03b5 \u03c3\u03c5\u03bc\u03b2\u03bf\u03bb\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 html (#RRGGBB \u03c3\u03b5 \u03b4\u03b5\u03be\u03b1\u03b5\u03be\u03b1\u03b4\u03b9\u03ba\u03ad\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2) -OptionPanel.standardrootnodestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.standardrootnodestyle.tooltip=\u03a4\u03bf \u03c3\u03c4\u03c5\u03bb \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03b1\u03bd \u03b4\u03b5\u03bd \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ac. \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03c4\u03cd\u03c0\u03bf\u03b9 '\u03b4\u03b9\u03b1\u03ba\u03bb\u03ac\u03b4\u03c9\u03c3\u03b7' '\u03c6\u03bf\u03cd\u03c3\u03ba\u03b1' \u03ba\u03b1\u03b9 '\u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf' -OptionPanel.standardselectednodecolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.standardselectednodecolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03b1\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af. \u039c\u03bf\u03c1\u03c6\u03ae html (#RRGGBB \u03bc\u03b5 \u03b4\u03b5\u03ba\u03b1\u03b5\u03be\u03b1\u03b4\u03b9\u03ba\u03ad\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2) -OptionPanel.standardselectednoderectanglecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7\u03C2 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -OptionPanel.standardselectednoderectanglecolor.tooltip=\u03A4\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. \u039C\u03B5 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03B9\u03C3\u03BC\u03CC html (#RRGGBB \u03C3\u03B5 \u03B4\u03B5\u03BE\u03B1\u03B5\u03BE\u03B1\u03B4\u03B9\u03BA\u03AD\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2) -OptionPanel.standardselectednodetextcolor.tooltip= -OptionPanel.time_for_automatic_save=\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2 -OptionPanel.time_for_automatic_save.tooltip= \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03BD\u03AC\u03BC\u03B5\u03C3\u03B1 \u03C3\u03B5 \u03B4\u03CD\u03BF \u03B4\u03B9\u03B1\u03B4\u03BF\u03C7\u03B9\u03BA\u03AD\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 (\u03C3\u03B5 msec): \u0393\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2, \u03B4\u03CE\u03C3\u03C4\u03B5 \u03C4\u03B7\u03BD \u03C4\u03B9\u03BC\u03AE 2000000000. -OptionPanel.time_for_delayed_selection=\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03B5\u03C1\u03B7\u03BC\u03AD\u03BD\u03B7\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 -OptionPanel.time_for_delayed_selection.tooltip= \u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7\u03C2, \u03CC\u03C4\u03B1\u03BD \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03B5\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03C3\u03C4\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF, \u03BC\u03AD\u03C7\u03C1\u03B9 \u03BD\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 (in msec). \u039C\u03B5 \u03C4\u03B9\u03BC\u03AE 1, \u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7. -OptionPanel.tr=Tr -OptionPanel.uk_UA=Uk UA -OptionPanel.undo_levels=\u0395\u03c0\u03af\u03c0\u03b5\u03b4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2 -OptionPanel.undo_levels.tooltip=\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03c0\u03cc\u03c3\u03b1 \u03b2\u03ae\u03bc\u03b1\u03c4\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b9\u03c1\u03b5\u03b8\u03bf\u03cd\u03bd \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b5\u03bd\u03c4\u03bf\u03bb\u03ae "\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7". -OptionPanel.unfold_on_paste=\u039e\u03b5\u03b4\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 -OptionPanel.unfold_on_paste.tooltip=\u039e\u03b5\u03b4\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd '\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7' \u03ae \u03c3\u03c4\u03b7\u03bd '\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac & \u03b1\u03c0\u03cc\u03b8\u03b5\u03c3\u03b7'. -OptionPanel.use_common_out_point_for_root_node=\u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -OptionPanel.use_common_out_point_for_root_node.tooltip=\u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5======= -OptionPanel.use_tabbed_pane=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BA\u03B1\u03C1\u03C4\u03B5\u03BB\u03CE\u03BD -OptionPanel.use_tabbed_pane.tooltip=\u038C\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF, \u03BF\u03B9 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2 (\u03CC\u03C0\u03C9\u03C2 \u03C3\u03C4\u03BF\u03BD Firefox :-) ). -OptionPanel.userproperties=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 -OptionPanel.vi=Vi -OptionPanel.wheel_velocity=\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 -OptionPanel.wheel_velocity.tooltip=\u03A5\u03C8\u03B7\u03BB\u03AE \u03C4\u03B9\u03BC\u03AE \u03C3\u03C4\u03B7 \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03B7 \u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C4\u03C1\u03BF\u03C7\u03BF\u03CD \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03B5\u03AF \u03BC\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B5\u03C6\u03AD \u03C3\u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7. -OptionPanel.windows=Windows -OptionPanel.zh=Zh -OptionPanel.zh_CN=Zh CN -OptionPanel.zh_TW=Zh -page =\u0394\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 &\u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2... -paste =\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 -PatternDialog.as_parent=\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 -PatternDialog.bezier=bezier -PatternDialog.bubble=\u03a6\u03bf\u03cd\u03c3\u03ba\u03b1 -PatternDialog.childpattern=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5 -PatternDialog.childpattern.tooltip=\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03b8\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2. -PatternDialog.clear_all_setters=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd -PatternDialog.clear_all_setters.tooltip=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF/\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03B9\u03C2 \u03B5\u03BD\u03B4\u03B5\u03B9\u03BE\u03B5\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD. -PatternDialog.ColorProperty.ResetColor=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 -PatternDialog.combined=\u03a3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf -PatternDialog.edgecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -PatternDialog.edgecolor.tooltip=\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf (\u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2) -PatternDialog.edgestyle=\u03a3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 -PatternDialog.edgestyle.tooltip=\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf (\u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2) -PatternDialog.edgewidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -PatternDialog.edgewidth.tooltip=\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf (\u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2) -PatternDialog.EdgeWidth_1=1 -PatternDialog.EdgeWidth_2=2 -PatternDialog.EdgeWidth_4=4 -PatternDialog.EdgeWidth_8=8 -PatternDialog.EdgeWidth_parent=\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 -PatternDialog.EdgeWidth_thin=\u03BB\u03B5\u03C0\u03C4\u03CC -PatternDialog.fork=\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 -PatternDialog.icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF -PatternDialog.icon.tooltip=\u0391\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03c3\u03c4\u03b5\u03af, \u03bf \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03b8\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf. -PatternDialog.linear=\u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE -PatternDialog.nodebackgroundcolor=\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -PatternDialog.nodebackgroundcolor.tooltip=\u039f\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -PatternDialog.nodecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -PatternDialog.nodecolor.tooltip=\u03a4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03c1\u03bf\u03c3\u03ba\u03b7\u03bd\u03af\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03cc\u03c4\u03b1\u03bd \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2. -PatternDialog.nodefontbold=\u0388\u03BD\u03C4\u03BF\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -PatternDialog.nodefontbold.tooltip= -PatternDialog.nodefontitalic=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -PatternDialog.nodefontitalic.tooltip= -PatternDialog.nodefontname=\u038c\u03bd\u03bf\u03bc\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -PatternDialog.nodefontname.tooltip= -PatternDialog.nodefontsize=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -PatternDialog.nodefontsize.tooltip= -PatternDialog.nodestyle=\u03a3\u03c4\u03c5\u03bb \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -PatternDialog.nodestyle.tooltip=\u03a4\u03bf \u03c3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03c6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ae \u03bc\u03bf\u03c1\u03c6\u03ae \u03b5\u03bd\u03cc\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5.
\u03a0\u03b9\u03b8\u03b1\u03bd\u03ad\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2:
<\u03c0\u03b5\u03c1\u03af\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1="1">\u03b4\u03b9\u03c7\u03ac\u03bb\u03b1: \u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7\u03c2,\u03c6\u03bf\u03cd\u03c3\u03ba\u03b1: \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03c7\u03c9\u03c1\u03af\u03c2 \u03bf\u03c1\u03b8\u03bf\u03b3\u03ce\u03bd\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7\u03c2,\u038c\u03c0\u03c9\u03c2 \u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03cc\u03c2: \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c6\u03b5\u03b9 \u03c4\u03bf \u03c3\u03c4\u03c5\u03bb \u03c4\u03bf\u03c5 \u03b3\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5
\u03ae \u03c4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03c5\u03bb \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5,\u03a3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf: \u03a6\u03bf\u03cd\u03c3\u03ba\u03b1 \u03cc\u03c4\u03b1\u03bd \u03bf \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2, \u03b4\u03b9\u03c7\u03ac\u03bb\u03b1 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7. -PatternDialog.nodetext=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -PatternDialog.nodetext.tooltip=\u0395\u03b4\u03ce, \u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5. \u03a4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b1\u03c0\u03bf\u03c1\u03c1\u03af\u03c0\u03c4\u03b5\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b1\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf. -PatternDialog.patternname=\u038C\u03BD\u03BF\u03BC\u03B1 -PatternDialog.patternname.tooltip=\u039C\u03BF\u03BD\u03B1\u03B4\u03B9\u03BA\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 -PatternDialog.script=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD -PatternDialog.script.tooltip=\u03a4\u03bf \u03c3\u03b5\u03bd\u03ac\u03c1\u03b9\u03bf \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd \u03c9\u03c2 \u03c0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 groovy. -PatternDialog.separator.EdgeControls=\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 -PatternDialog.separator.General=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC -PatternDialog.separator.NodeColors=\u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -PatternDialog.separator.NodeFont=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -PatternDialog.separator.NodeStyles=\u03a3\u03c4\u03c5\u03bb \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 -PatternDialog.separator.ScriptingControl=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 e\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD -PatternDialog.set_property_text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE -PatternDialog.set_property_text.tooltip=\u039a\u03b5\u03bd\u03cc: \u039c\u03ae\u03bd \u03b1\u03b3\u03b3\u03af\u03b6\u03b5\u03c4\u03b5, \u039c\u03b5\u03af\u03bf\u03bd=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 (\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03ce\u03bd), \u03a3\u03c5\u03bd=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 -PatternDialog.setscript=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE; -PatternDialog.setscript.tooltip=\u0388\u03BD\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C3\u03C5\u03C3\u03C7\u03B5\u03C4\u03B9\u03C3\u03C4\u03B5\u03AF \u03BC\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB. -PatternDialog.sharp_bezier=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF bezier -PatternDialog.sharp_linear=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF \u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC -PatternDialog.undefined_font=\u039c\u03b7 \u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac -PatternNewNameProperty=\u039D\u03AD\u03BF \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF -PatternToString.backgroundColor=\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 -PatternToString.Child=\u03A3\u03C4\u03C5\u03BB \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -PatternToString.color=\u03A7\u03C1\u03CE\u03BC\u03B1 -PatternToString.EdgeColor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -PatternToString.EdgeStyle=\u03A3\u03C4\u03C5\u03BB \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -PatternToString.EdgeWidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 -PatternToString.FontBold=\u0388\u03BD\u03C4\u03BF\u03BD\u03B1 -PatternToString.FontItalic=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 -PatternToString.FontName=\u038C\u03BD\u03BF\u03BC\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 -PatternToString.Icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF -PatternToString.NodeFontSize=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 -pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide.pdf -plugins/ExportPdf.xml_documentation =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae PDF -plugins/ExportPdf.xml_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE PDF... -plugins/ExportSvg.xml_documentation = \u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE SVG -plugins/ExportSvg.xml_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE SVG... -plugins/FreemindHelp.xml_documentation =\u0395\u03C0\u03B1\u03C5\u03BE\u03B7\u03BC\u03AD\u03BD\u03B7 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03C4\u03BF\u03C5 FreeMind -plugins/FreemindHelp.xml_name =\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1... -plugins/latex/LatexNodeHook.editorTitle =\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2, \u03BA\u03BF\u03BD\u03C4\u03AC \u03C3\u03C4\u03B7\u03BD \u03B1\u03C0\u03BF\u03B4\u03BF\u03C7\u03AE -plugins/latex/LatexNodeHook.properties_documentation = \u03A4\u03CD\u03C0\u03BF\u03C2 Latex -plugins/latex/LatexNodeHook.properties_name = &Latex -plugins/NodeList.xml_documentation=\u0394\u03b5\u03af\u03c7\u03bd\u03b5\u03b9 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5\u03c2 \u03c9\u03c2 \u03bc\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b9\u03bc\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c6\u03af\u03bb\u03c4\u03c1\u03bf\u03c5. -plugins/NodeList.xml_name=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7... -plugins/RemoveReminder.xml_documentation=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1\u03bd \u03ba\u03cc\u03bc\u03b2\u03bf. -plugins/RemoveReminder.xml_name=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7\u03C2 -plugins/ScriptEditor.cancel=&\u0391\u03C0\u03CC\u03C1\u03C1\u03B9\u03C8\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD \u03BA\u03B1\u03B9 \u03AD\u03BE\u03BF\u03B4\u03BF\u03C2 -plugins/ScriptEditor.exit=&\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03ad\u03be\u03bf\u03b4\u03bf\u03c2 -plugins/ScriptEditor.FORBIDDEN_ACTION=\u03A4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD groovy \u03C4\u03BF\u03C5 FreeMind \u03AD\u03C7\u03BF\u03C5\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF. \u0397 \u03B1\u03BA\u03CC\u03BB\u03BF\u03C5\u03B8\u03B7 {0,choice,0#File|1#Network|2#Exec} \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B1\u03C0\u03B1\u03B3\u03BF\u03C1\u03B5\u03CD\u03B5\u03C4\u03B1\u03B9: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03C4\u03B5 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03B7\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE\u03C2. -plugins/ScriptEditor.menu_actions=&\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2 -plugins/ScriptEditor.new_script=\u039D\u03AD\u03BF \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD -plugins/ScriptEditor.run=&\u0395\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 -plugins/ScriptEditor.sign=\u03A5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03B5\u03BD\u03B1\u03C1\u03AF\u03BF\u03C5 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD... -plugins/ScriptEditor.xml_documentation=\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7 \u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03B1\u03BA\u03C1\u03BF\u03C3\u03BA\u03B5\u03BB\u03CE\u03BD \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B4\u03AD\u03C3\u03BC\u03B7\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C3\u03C4\u03BF FreeMind. -plugins/ScriptEditor.xml_name=&\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2 \u03b4\u03ad\u03c3\u03bc\u03b7\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd... -plugins/ScriptEditor/window.Result=\u0391\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1: -plugins/ScriptEditor/window.title=\u03A3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7\u03C2 \u03B4\u03AD\u03C3\u03BC\u03B7\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD -plugins/ScriptingEngine.xml_documentation=\u0391\u03c0\u03bf\u03c4\u03b9\u03bc\u03ac \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03b4\u03ad\u03c3\u03bc\u03b5\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd (\u03b1\u03bd\u03ac\u03b4\u03c1\u03bf\u03bc\u03b7 \u03c3\u03b5\u03b9\u03c1\u03ac, \u03c6\u03b5\u03cd\u03b3\u03b5\u03b9 \u03c0\u03c1\u03ce\u03c4\u03b7) -plugins/ScriptingEngine.xml_name=\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7 -plugins/TimeList.xml_Created=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 -plugins/TimeList.xml_Date=\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 -plugins/TimeList.xml_documentation=\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03c7\u03c1\u03bf\u03bd\u03bf\u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03c4\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03ba\u03cc\u03bc\u03b2\u03c9\u03bd. -plugins/TimeList.xml_Icons=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 -plugins/TimeList.xml_Modified=\u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5 -plugins/TimeList.xml_name=&\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03c7\u03c1\u03bf\u03bd\u03bf\u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd -plugins/TimeList.xml_Notes=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 -plugins/TimeList.xml_Text=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF -plugins/TimeManagement.xml_appendButton=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 -plugins/TimeManagement.xml_Cancel=\u0386\u03ba\u03c5\u03c1\u03bf -plugins/TimeManagement.xml_cancelButton=\u0386\u03BA\u03C5\u03C1\u03BF -plugins/TimeManagement.xml_closeButton=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF -plugins/TimeManagement.xml_documentation= \u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF \u03AC\u03C1\u03B8\u03C1\u03C9\u03BC\u03B1 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5 \u03C4\u03BF\u03C5 Kai Toedter. -plugins/TimeManagement.xml_Export=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD -plugins/TimeManagement.xml_Find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 -plugins/TimeManagement.xml_Goto=\u039c\u03b5\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 -plugins/TimeManagement.xml_hour=\u038F\u03C1\u03B1: -plugins/TimeManagement.xml_menu_actions=\u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 -plugins/TimeManagement.xml_minute=\u039B\u03B5\u03C0\u03C4\u03CC: -plugins/TimeManagement.xml_name=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5... -plugins/TimeManagement.xml_reminderButton=\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 -plugins/TimeManagement.xml_reminderButton_tooltip=\u038C\u03C4\u03B1\u03BD \u03C4\u03BF \u03C0\u03B1\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5, \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C7\u03C1\u03BF\u03BD\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03B4\u03BF\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1. \u0398\u03B1 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF\u03C4\u03B5 \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9.
\u0395\u03AC\u03BD \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7, \u03C4\u03BF \u03C7\u03C1\u03BF\u03BD\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03B8\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03C4\u03B7\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03C6\u03BF\u03C1\u03AC \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03C4\u03BF\u03BD \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03C4\u03B5. -plugins/TimeManagement.xml_reminderNode_onlyOneDate=\u03a0\u03c1\u03bf\u03c2 \u03c4\u03bf \u03c0\u03b1\u03c1\u03cc\u03bd, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03bc\u03af\u03b1 \u03bc\u03cc\u03bd\u03bf \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03b1\u03bd\u03ac \u03ba\u03cc\u03bc\u03b2\u03bf.
\u0397 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03b3\u03b9\u03b1 {0,\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1} {0,\u03ce\u03c1\u03b1}, \u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03b1\u03c2 \u03ae\u03c4\u03b1\u03bd {1,\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1} {1,\u03ce\u03c1\u03b1}.

\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c7\u03c1\u03cc\u03bd\u03bf \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2 (\u039d\u0391\u0399)
\u03ae \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03c1\u03b1\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b1\u03bb\u03b9\u03cc (\u039f\u03a7\u0399); -plugins/TimeManagement.xml_reminderNode_showNode=\u0388\u03C7\u03B5\u03B9 \u03C0\u03B1\u03C1\u03AD\u03BB\u03B8\u03B5\u03B9 \u03BF \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF " {0} ". \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03B1\u03C1\u03AC\u03C4\u03B1\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03B4\u03AD\u03BA\u03B1 \u03BB\u03B5\u03C0\u03C4\u03AC; -plugins/TimeManagement.xml_reminderNode_tooltip=\u03A5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 {0,\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1} {0,\u03CE\u03C1\u03B1}. -plugins/TimeManagement.xml_removeReminderButton =\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2 -plugins/TimeManagement.xml_removeReminderButton_tooltip =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C5\u03C0\u03B5\u03BD\u03B8\u03C5\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. -plugins/TimeManagement.xml_Replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 -plugins/TimeManagement.xml_Replace_All=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD -plugins/TimeManagement.xml_Replace_Selected=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD -plugins/TimeManagement.xml_Select=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE -plugins/TimeManagement.xml_todayButton=\u03A3\u03AE\u03BC\u03B5\u03C1\u03B1 -plugins/TimeManagement.xml_WindowTitle=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5 -plugins/TimeManagement.xml_WindowTitle_All_Nodes=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 -plugins/TimeManagementReminder.xml_documentation=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03AC\u03B3\u03BA\u03B9\u03C3\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C0\u03B1\u03BD\u03C5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE \u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD. -plugins/TimeManagementReminder.xml_name=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03AC\u03B3\u03BA\u03B9\u03C3\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C0\u03B1\u03BD\u03C5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE \u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD. -preferences =\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 -previous_map =\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 -print =\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 -print_dialog =\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7... -print_preview =&\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2... -print_preview_title =\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 -printing_settings =\u039A\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 -property_dialog=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 ... -quit =\u0388\u03BE\u03BF\u03B4\u03BF\u03C2 -read_only =\u039C\u03CC\u03BD\u03BF \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 -really_convert_to_current_version=\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 FreeMind.
\u0398\u00a8\u03b5\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03b1\u03c0\u03b5\u03af (\u03c3\u03c5\u03bd\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9);
(\u0394\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ac, \u03b8\u03b1 \u03c0\u03b1\u03c1\u03b1\u03bc\u03b5\u03af\u03bd\u03b5\u03b9 \u03c9\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b5\u03b3\u03b3\u03cd\u03b7\u03c3\u03b7.) -really_cut_node=\u039D\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03B1\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5(\u03C9\u03BD); -really_execute_script=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC\u03BD \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7; \u03A0\u03B9\u03B8\u03B1\u03BD\u03CC\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2. -really_remove_node=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF; -really_remove_notes=\u039D\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03B7 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7; -redo =\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac -remove_all_icons =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD -remove_arrow_link =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2 -remove_last_icon =\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03b9\u03b4\u03af\u03bf\u03c5 -remove_node =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -remove_node_background_color =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 -rename=&\u039C\u03B5\u03C4\u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03AF\u03B1 -repair_link =\u0395\u03C0\u03B9\u03C3\u03BA\u03B5\u03C5\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 -repair_link_question =\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7. \u0395\u03C0\u03B9\u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03C7\u03B5\u03B9\u03C1\u03BF\u03BA\u03AF\u03BD\u03B7\u03C4\u03B1; -replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 -reset_node_position=&\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b8\u03ad\u03c3\u03b7\u03c2 -RevertAction=%\u0395\u03c0\u03ac\u03bd\u03bf\u03b4\u03bf\u03c2 -save =&\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 -save_as =\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2... -save_failed =\u0397 \u03C0\u03C1\u03BF\u03C3\u03C0\u03AC\u03B8\u03B5\u03B9\u03B1 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 $1 \u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AE\u03C2. -save_unsaved =\u039d\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03bf \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03bf\u03c2 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2; : -saved =\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5 -scheme_evaluate =\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7! -ScriptEditorPanel.changed_cancel=\u039f\u03b9 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ad\u03c2 \u03ac\u03bb\u03bb\u03b1\u03be\u03b1\u03bd. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c1\u03c1\u03af\u03c8\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2; -select_all=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03BF\u03C1\u03B1\u03C4\u03CE\u03BD -select_branch=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BF\u03C1\u03B1\u03C4\u03BF\u03CD \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 -select_favorites_folder =\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C0\u03BF\u03C5 \u03B2\u03C1\u03AF\u03C3\u03BA\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C4\u03B1 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1 \u03C3\u03B1\u03C2 -select_folder_for_importing =\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B5\u03B9\u03C3\u03B1\u03C7\u03B8\u03B5\u03AF -select_icon=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03BD\u03CC\u03C2 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 -selection_as_rectangle=\u039F\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE -selection_method_by_click =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BC\u03B5 \u03BC\u03BF\u03BD\u03CC \u03BA\u03BB\u03B9\u03BA -selection_method_delayed=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 -selection_method_direct =\u0394\u03B5\u03AF\u03BE\u03C4\u03B5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03C4\u03B5 -set_image_by_filechooser =\u0395\u03b9\u03ba\u03cc\u03bd\u03b1 (\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ae \u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7)... -set_link_by_filechooser =\u03a5\u03c0\u03b5\u03c1\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 (\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5)... -set_link_by_textfield =\u03a5\u03c0\u03b5\u03c1\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 (\u03a0\u03b5\u03b4\u03af\u03bf \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5)... -sharp_bezier =\u0391\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03ba\u03b1\u03bc\u03c0\u03cd\u03bb\u03b7 Bezier -sharp_linear =\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE -simplyhtml.aboutFrameTitle=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE -simplyhtml.aboutLabel=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03B7 SimplyHTML... -simplyhtml.alignCenter=\u03BA\u03AD\u03BD\u03C4\u03C1\u03BF -simplyhtml.alignLabel=\u03A3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7: -simplyhtml.alignLeft=\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC -simplyhtml.alignRight=\u03B4\u03B5\u03BE\u03B9\u03AC -simplyhtml.allCellsRangeLabel=\u03CC\u03BB\u03B1 \u03C4\u03B1 \u03BA\u03B5\u03BB\u03B9\u03AC -simplyhtml.allOccurrencesReplaced=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AC\u03B8\u03B7\u03BA\u03B5 \u03C3\u03B5 \u03CC\u03BB\u03B5\u03C2 \u03C4\u03B9\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 -simplyhtml.appendTableColLabel=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 -simplyhtml.appendTableRowLabel=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 -simplyhtml.applyCellAttrLabel=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C3\u03B5 -simplyhtml.backgroundLabel=\u03a6\u03cc\u03bd\u03c4\u03bf: -simplyhtml.boldItalicName=\u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1 -simplyhtml.boldName=\u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 -simplyhtml.borderColorLabel=\u03A7\u03C1\u03CE\u03BC\u03B1: -simplyhtml.borderWidthLabel=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 -simplyhtml.bottomLabel=\u03ba\u03ac\u03c4\u03c9 \u03bc\u03ad\u03c1\u03bf\u03c2: -simplyhtml.cancelBtnName=\u0386\u03ba\u03c5\u03c1\u03bf -simplyhtml.cellBorderTabLabel=\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 -simplyhtml.cellGenTabLabel=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC -simplyhtml.cellMarginTabLabel=\u03A0\u03B5\u03C1\u03B9\u03B8\u03CE\u03C1\u03B9\u03BF -simplyhtml.cellPanelTitle=\u039c\u03bf\u03c1\u03c6\u03ae \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd -simplyhtml.clearFormatLabel=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 -simplyhtml.clearFormatTip=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 -simplyhtml.close=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf -simplyhtml.closeBtnName=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf -simplyhtml.colorLabel=\u03A7\u03C1\u03CE\u03BC\u03B1 -simplyhtml.copyLabel=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE -simplyhtml.copyTip=\u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE -simplyhtml.cTagNameHead1=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 1 -simplyhtml.cTagNameHead2=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 2 -simplyhtml.cTagNameHead3=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 3 -simplyhtml.cTagNameHead4=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 4 -simplyhtml.cTagNameHead5=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 5 -simplyhtml.cTagNameHead6=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 6 -simplyhtml.cTagNameLink=\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 -simplyhtml.cTagNameOL=\u03A4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 -simplyhtml.cTagNamePara=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2 -simplyhtml.cTagNameUL=\u039c\u03b7 \u03c4\u03b1\u03be\u03b9\u03bd\u03bf\u03bc\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 -simplyhtml.cutLabel=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE -simplyhtml.cutTip=\u03B1\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE -simplyhtml.defaultDocName=\u0391\u03bd\u03ce\u03bd\u03c5\u03bc\u03bf -simplyhtml.deleteTableColLabel=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 -simplyhtml.deleteTableRowLabel=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 -simplyhtml.docTitleQuery=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf\u03c5: -simplyhtml.docTitleTitle=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf\u03c5 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 -simplyhtml.editLabel=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 -simplyhtml.effectLabel= \u0395\u03C6\u03AD -simplyhtml.familyLabel=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 -simplyhtml.findNext=\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5... -simplyhtml.findReplaceDialogTitle=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 -simplyhtml.findReplaceLabel=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 & \u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 -simplyhtml.findReplaceTip=\u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 & \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 -simplyhtml.fontBoldImage=resources/bold.gif -simplyhtml.fontBoldLabel=\u0388\u03bd\u03c4\u03bf\u03bd\u03b1 -simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif -simplyhtml.fontBoldTip=\u0388\u03bd\u03c4\u03bf\u03bd\u03b1 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 -simplyhtml.fontColorImage=resources/fontColor.gif -simplyhtml.fontColorLabel=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 -simplyhtml.fontColorTip=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 -simplyhtml.fontDialogTitle=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 -simplyhtml.fontItalicImage=resources/italic.gif -simplyhtml.fontItalicLabel=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 -simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif -simplyhtml.fontItalicTip=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 -simplyhtml.fontLabel=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC... -simplyhtml.fontTabLabel=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC -simplyhtml.fontTip=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2... -simplyhtml.fontUnderlineImage=resources/uline.gif -simplyhtml.fontUnderlineLabel=\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 -simplyhtml.fontUnderlineTip=\u03a5\u03c0\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 -simplyhtml.foregroundLabel=\u03A0\u03C1\u03BF\u03C3\u03BA\u03AE\u03BD\u03B9\u03BF: -simplyhtml.formatLabel=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 -simplyhtml.formatListLabel=\u039B\u03AF\u03C3\u03C4\u03B1... -simplyhtml.formatListTip=\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 -simplyhtml.formatParaLabel=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2... -simplyhtml.formatParaTip=\u0391\u03bb\u03bb\u03ac\u03b6\u03b5\u03b9 \u03c4\u03b7 \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5 -simplyhtml.formatTableLabel=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2... -simplyhtml.formatTableTip=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 -simplyhtml.helpLabel=\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 -simplyhtml.htmlTabTitle=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 HTML -simplyhtml.imageFileDesc=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 -simplyhtml.insertTableColLabel=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 -simplyhtml.insertTableLabel=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2... -simplyhtml.insertTableMsg=\u03A0\u03CC\u03C3\u03B5\u03C2 \u03C3\u03C4\u03AE\u03BB\u03B5\u03C2; -simplyhtml.insertTableRowLabel=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 -simplyhtml.insertTableTitle=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 -simplyhtml.italicName=\u03C0\u03BB\u03AC\u03B3\u03B9\u03B1 -simplyhtml.layoutTabTitle=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7\u03C2 -simplyhtml.leftLabel=\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC: -simplyhtml.listDialogTitle=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 -simplyhtml.listIndentTitle=\u0395\u03C3\u03BF\u03C7\u03AE: -simplyhtml.listPosInside=\u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AC -simplyhtml.listPositionLabel=\u0398\u03AD\u03C3\u03B7: -simplyhtml.listPosOutside=\u03B5\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AC -simplyhtml.listTypeCircle=\u03c3\u03c6\u03b1\u03b9\u03c1\u03b9\u03ba\u03ae \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 -simplyhtml.listTypeDecimal=1.,2.,3.,4. -simplyhtml.listTypeDisc=\u03c3\u03cd\u03bc\u03b2\u03bf\u03bb\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c9\u03c2 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 -simplyhtml.listTypeLabel=\u0395\u03AF\u03B4\u03BF\u03C2: -simplyhtml.listTypeLowerAlpha=\u03B1.,\u03B2.,\u03B3.,\u03B4. -simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. -simplyhtml.listTypeNone=\u03C4\u03AF\u03C0\u03BF\u03C4\u03B1 -simplyhtml.listTypeSquare=\u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03b7 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 -simplyhtml.listTypeUpperAlpha=\u0391.,\u0392.,\u0393.,\u0394. -simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. -simplyhtml.marginLabel=\u0395\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC -simplyhtml.matchCase=\u03A4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03C0\u03B5\u03B6\u03CE\u03BD/\u03BA\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD -simplyhtml.newStyleDefaultName=\u03bd\u03ad\u03bf \u03c3\u03c4\u03c5\u03bb -simplyhtml.nextTableCellLabel=\u0395\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03BA\u03B5\u03BB\u03AF -simplyhtml.noLineLabel=\u03C4\u03AF\u03C0\u03BF\u03C4\u03B1 -simplyhtml.noMoreOccurrencesFound=\u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD (\u03AC\u03BB\u03BB\u03B5\u03C2) \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 -simplyhtml.okBtnName=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 -simplyhtml.paddingLabel=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC -simplyhtml.paraAlignCenterLabel=\u03A3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF -simplyhtml.paraAlignCenterTip=\u039A\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03AE \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 -simplyhtml.paraAlignLeftLabel=\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 -simplyhtml.paraAlignLeftTip=\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 -simplyhtml.paraAlignRightLabel=\u0394\u03B5\u03BE\u03B9\u03AC \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 -simplyhtml.paraAlignRightTip=\u0394\u03B5\u03BE\u03AF\u03B1 \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 -simplyhtml.paraStyleDialogTitle=\u03a3\u03c4\u03c5\u03bb \u03c0\u03b1\u03c1\u03b1\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5 -simplyhtml.paraTabLabel=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2 -simplyhtml.pasteLabel=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 -simplyhtml.pasteTip=\u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 -simplyhtml.plainName=\u03B1\u03C0\u03BB\u03AC -simplyhtml.previewLabel=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 -simplyhtml.previewText=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 -simplyhtml.prevTableCellLabel=\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03BA\u03B5\u03BB\u03AF -simplyhtml.redoLabel=\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7 -simplyhtml.redoTip=\u03B5\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7 -simplyhtml.replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7... -simplyhtml.replaceAll=\u038C\u03BB\u03B1 -simplyhtml.replaceDone=\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 -simplyhtml.replaceNo=\u038c\u03c7\u03b9 -simplyhtml.replaceThisQuery=\u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AD\u03C3\u03C4\u03B7\u03C3\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 -simplyhtml.replaceWith=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BC\u03B5: -simplyhtml.replaceYes=\u039D\u03B1\u03B9 -simplyhtml.rightLabel=\u03B4\u03B5\u03BE\u03B9\u03AC: -simplyhtml.searchDown=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9 -simplyhtml.searchFromStart=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03B1\u03C1\u03C7\u03AE -simplyhtml.searchUp=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9 -simplyhtml.selectAllLabel=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD -simplyhtml.sizeLabel=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 -simplyhtml.standardStyleName=\u03C4\u03C5\u03C0\u03B9\u03BA\u03CC -simplyhtml.strikeLabel=\u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03ae \u03b3\u03c1\u03b1\u03c6\u03ae -simplyhtml.styleLabel=\u03a3\u03c4\u03c5\u03bb -simplyhtml.styleNameInputText=\u038c\u03bd\u03bf\u03bc\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03c3\u03c4\u03c5\u03bb; -simplyhtml.styleNameInputTitle=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c4\u03c5\u03bb -simplyhtml.tableBgColLabel=\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 -simplyhtml.tableDialogTitle=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 -simplyhtml.tableLabel=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 -simplyhtml.tablePanelTitle=\u039C\u03BF\u03C1\u03C6\u03AE \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 -simplyhtml.tableWidthLabel=\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2: -simplyhtml.textIndentLabel=\u0395\u03C3\u03BF\u03C7\u03AE: -simplyhtml.textToFind=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2: -simplyhtml.thisCellRangeLabel=\u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03BA\u03B5\u03BB\u03AF -simplyhtml.thisColRangeLabel=\u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03C3\u03C4\u03AE\u03BB\u03B7 -simplyhtml.thisRowRangeLabel=\u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE -simplyhtml.toggleBulletsLabel=\u039b\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 -simplyhtml.toggleBulletsTip=\u03bb\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 -simplyhtml.toggleNumbersLabel=\u0391\u03C1\u03B9\u03B8\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 -simplyhtml.toggleNumbersTip=\u03B1\u03C1\u03B9\u03B8\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 -simplyhtml.topLabel=\u03BA\u03BF\u03C1\u03C5\u03C6\u03AE: -simplyhtml.uLineLabel=\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 -simplyhtml.unableToOpenFileError=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 -simplyhtml.unableToRedoError=\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03B7 \u03B5\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7: -simplyhtml.unableToUndoError=\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03B7 \u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7: -simplyhtml.undoLabel=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -simplyhtml.undoTip=\u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -simplyhtml.valignBaseline=\u03b2\u03b1\u03c3\u03b9\u03ba\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae -simplyhtml.valignBottom=\u03ba\u03ac\u03c4\u03c9 \u03c4\u03bc\u03ae\u03bc\u03b1 -simplyhtml.valignLabel=\u039A\u03AC\u03B8\u03B5\u03C4\u03B7 \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7: -simplyhtml.valignMiddle=\u03BC\u03AD\u03C3\u03BF -simplyhtml.valignTop=\u03BA\u03BF\u03C1\u03C5\u03C6\u03AE -simplyhtml.wholeWordsOnly=\u039c\u03cc\u03bd\u03bf\u03bd \u03bf\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 -split =&\u0394\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 -style =\u03A3\u03C4\u03C5\u03BB -toggle_bold_branch =\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF\u03C5 \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 -toggle_children_folded =(\u0391\u03BD\u03B1)\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03C9\u03BD -toggle_folded =\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 -toggle_italic_branch =\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1\u03C2 \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7\u03C2 -toggle_left_toolbar =&\u03A3\u03C5\u03BC\u03C0\u03BB\u03B7\u03C1\u03C9\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD -toggle_menubar =\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03BC\u03B5\u03BD\u03BF\u03CD -toggle_toolbar =&\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD -undefined_error =\u03a3\u03c5\u03bd\u03ad\u03b2\u03b7 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03c1\u03cc\u03c3\u03bc\u03b5\u03bd\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1! \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2. -underline =\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 -underlined =\u03A5\u03C0\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF -undo =\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 -unfold =\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 -url_error =\u0391\u03C5\u03C4\u03CC \u03C4\u03BF URL \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B1\u03BA\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF! -url_load_error =\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C3\u03C4\u03BF URL: -use_plain_text =\u03A7\u03C1\u03AE\u03C3\u03B7 \u03B1\u03C0\u03BB\u03BF\u03CD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 -use_rich_formatting =\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b5\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 -user_defined_zoom =\u039a\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. -user_defined_zoom_status_bar =\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1\u03C2 \u03C3\u03C4\u03B7\u03BD \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C4\u03B9\u03BC\u03AE {0}%. -user_zoom =\u03A3\u03C5\u03BD\u03C4\u03B5\u03BB\u03B5\u03C3\u03C4\u03AE\u03C2 \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1\u03C2 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 (0.0 - 2.0): -webDocu =\u03A4\u03B5\u03BA\u03BC\u03B7\u03C1\u03AF\u03C9\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B9\u03C3\u03C4\u03CC -width =\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 -yes =\u039D\u03B1\u03B9 -zoom_in =\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7 -zoom_out =\u03A3\u03BC\u03AF\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7 +#! +#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) +#! encoding:ISO-8859-1 +# by sarikoudis - sarikoudis & Yannis Kaskamanidis +about=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC +about =\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC +# created/edited by Popeye version 0.54 (popeye.sourceforge.net) encoding\:ISO-8859-1 +about_text=\u03A4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 FreeMind \u03C4\u03BF\u03C5 Joerg Mueller \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u0395\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03AE\u03C2 \u03A7\u03B1\u03C1\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7\u03C2. Copyright (C) 2000-2010 Joerg Mueller \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03BF\u03B9. \u0391\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u039B\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC (GPL). \u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2\: http\://freemind.sourceforge.net/ Have fun\! Version\: +about_text =\u03A4\u03BF FreeMind - \u03B5\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC \u03BA\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE\u03C2 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CE\u03BD \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD\nCopyright \u00A9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03BF\u03B9.\n\u0391\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u039B\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC \u03BA\u03B1\u03B9 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03B5\u03AF \u03C5\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03CC\u03C1\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2 \u0393\u03B5\u03BD\u03B9\u03BA\u03AE\u03C2 \u0394\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1\u03C2 \u0386\u03B4\u03B5\u03B9\u03B1\u03C2 GNU.\n\n\u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2: http://freemind.sourceforge.net/\nVersion: +accessories/plugins/ApplyFormatPlugin.dialog.title=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD +accessories/plugins/ApplyFormatPlugin.properties_documentation=\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1n \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C4\u03B1\u03C5\u03C4\u03CC\u03C7\u03C1\u03BF\u03BD\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 . +accessories/plugins/ApplyFormatPlugin.properties_name=&\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2... +accessories/plugins/AutomaticLayout.properties_documentation = \u0394\u03B9\u03BF\u03C1\u03B8\u03CE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7.
\u03A4\u03BF \u03C0\u03C1\u03CE\u03C4\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B1\u03CD\u03C1\u03BF, \u03C4\u03BF \u03B4\u03B5\u03CD\u03C4\u03B5\u03C1\u03BF \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03C0\u03BB\u03AD, \u03BA\u03BB\u03C0. +accessories/plugins/AutomaticLayout.properties_name =&\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u0394\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 +accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 +accessories/plugins/BlinkingNodeHook.properties_documentation=\u039A\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF \u03BD\u03B1 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9. \u0391\u03BB\u03BB\u03AC \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE! \u039C\u03B7 \u03C4\u03BF \u03C3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C0\u03BF\u03BB\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2, \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF +accessories/plugins/BlinkingNodeHook.properties_documentation =\u039A\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF \u03BD\u03B1 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9. \u0391\u03BB\u03BB\u03AC \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE! \u039C\u03B7 \u03C4\u03BF \u03C3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C0\u03BF\u03BB\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2, \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF +accessories/plugins/BlinkingNodeHook.properties_name=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9 +accessories/plugins/BlinkingNodeHook.properties_name =\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9 +accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=\u03A3\u03C4' \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9/\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9. \u0398\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9(-\u03BD\u03BF\u03C5\u03BD) \u03C0\u03B1\u03B9\u03B4\u03AF(-\u03B9\u03AC) \u03C4\u03BF\u03C5 \u03B1\u03BC\u03C6\u03B9\u03B8\u03B1\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u03A3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03B9\u03C3\u03C4\u03B5\u03AF(-\u03BF\u03CD\u03BD) \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9. \u0391\u03C0\u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF\u03BD \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9(-\u03BE\u03BF\u03C5\u03BD) \u03C0\u03BB\u03B5\u03C5\u03C1\u03AD\u03C2. +accessories/plugins/ChangeNodeLevelAction_left.properties_name=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC +accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=\u03A3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9/\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9. \u0398\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9(-\u03BD\u03BF\u03C5\u03BD) \u03C0\u03B1\u03B9\u03B4\u03AF(-\u03B9\u03AC) \u03C4\u03BF\u03C5 \u03B1\u03BC\u03C6\u03B9\u03B8\u03B1\u03BB\u03BF\u03CD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u03A3\u03C4' \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03B9\u03C3\u03C4\u03B5\u03AF(-\u03BF\u03CD\u03BD) \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9. \u0391\u03C0\u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF\u03BD \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF, \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2(-\u03BF\u03B9) \u03B8\u03B1 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9(-\u03BE\u03BF\u03C5\u03BD) \u03C0\u03BB\u03B5\u03C5\u03C1\u03AD\u03C2. +accessories/plugins/ChangeNodeLevelAction_right.properties_name=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC +accessories/plugins/CreationModificationPlugin.properties_documentation=\u0397 \u03C3\u03C5\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03AE, \u03C0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03C5\u03B8\u03B5\u03AF \u03BA\u03B1\u03B9 \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD. +accessories/plugins/CreationModificationPlugin.properties_name =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 &\u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C9\u03C1\u03CE\u03BD. +accessories/plugins/EncryptNode.properties_0 =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF. +accessories/plugins/EncryptNode.properties_1 =\u039F\u03B9 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03AF \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03CC\u03BC\u03BF\u03B9\u03BF\u03B9 \u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03C3\u03CD\u03BD\u03C4\u03BF\u03BC\u03BF\u03B9. +accessories/plugins/EncryptNode.properties_2 =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2: +accessories/plugins/EncryptNode.properties_3 =\u0395\u03C0\u03B1\u03BD\u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2: +accessories/plugins/EncryptNode.properties_4 =\u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2. +accessories/plugins/EncryptNode.properties_5 = \u039D\u03B1 \u03B8\u03C5\u03BC\u03AC\u03C3\u03C4\u03B5, \u03B7 \u03B1\u03C3\u03C6\u03AC\u03BB\u03B5\u03B9\u03B1 \u03C4\u03B7\u03C2 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7\u03C2
\u03B5\u03BE\u03B1\u03C1\u03C4\u03AC\u03C4\u03B1\u03B9 \u03C3\u03C7\u03B5\u03B4\u03CC\u03BD \u03B1\u03C0\u03BF\u03BA\u03BB\u03B5\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03B1\u03C0\u03BF \u03C4\u03B7\u03BD \u03C0\u03BF\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C4\u03BF\u03C5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD. +accessories/plugins/EncryptNode.properties_6 =\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 +accessories/plugins/EncryptNode.properties_7 =\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 +accessories/plugins/EncryptNode.properties_documentation =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03BD\u03CC\u03C2 \u03BD\u03AD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2. +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first =\u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BC\u03CC\u03BD\u03BF \u03BD\u03B1 \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03C4\u03B5 \u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03AD\u03BD\u03B1\u03BD \u03C4\u03AD\u03C4\u03BF\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD. +accessories/plugins/EncryptNode.properties_name =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE &\u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 ... +accessories/plugins/EncryptNode.properties_select_me =\u0394\u03B9\u03AC\u03BB\u03B5\u03BE\u03AD \u03BC\u03B5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B5\u03C7\u03AF\u03C3\u03BF\u03C5\u03BC\u03B5! +accessories/plugins/EncryptNode.properties_wrong_password =\u039F \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03C9\u03C3\u03C4\u03CC\u03C2. +accessories/plugins/EnterPassword.properties_documentation= +accessories/plugins/EnterPassword.properties_name =&\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 +accessories/plugins/ExportToImage_JPEG.properties_documentation =\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B4\u03BF\u03BC\u03AE \u03B1\u03BD\u03B1\u03B4\u03B9\u03C0\u03BB\u03CE\u03C3\u03B5\u03C9\u03BD, \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 JPEG. +accessories/plugins/ExportToImage_JPEG.properties_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE JPEG... +accessories/plugins/ExportToImage_PNG.properties_documentation =\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B4\u03BF\u03BC\u03AE \u03B1\u03BD\u03B1\u03B4\u03B9\u03C0\u03BB\u03CE\u03C3\u03B5\u03C9\u03BD, \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 PNG. +accessories/plugins/ExportToImage_PNG.properties_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE PNG... +accessories/plugins/ExportToOoWriter.properties_documentation=\u039F\u03B9 \u03BE\u03B5\u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03C3\u03C7\u03B7\u03BC\u03B1\u03C4\u03AF\u03B6\u03BF\u03C5\u03BD \u03C4\u03B7 \u03B4\u03BF\u03BC\u03AE, \u03B5\u03BD\u03CE \u03BF\u03B9 \u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03BF\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5. +accessories/plugins/ExportToOoWriter.properties_name=\u03A9\u03C2 \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03C4\u03BF\u03C5 Open Office Writer ... +accessories/plugins/ExportWithTWiki.properties=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF TWiki (*.twi) +accessories/plugins/ExportWithTWiki.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 TWiki. +accessories/plugins/ExportWithTWiki.properties_name=\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE TWiki... +accessories/plugins/ExportWithXSLT.properties_documentation =\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03BD\u03B9\u03B1\u03AF\u03B1 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u03BC\u03B5 \u03C4\u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 XSLT \u03C3\u03B5\u03BD\u03B1\u03C1\u03AF\u03C9\u03BD \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD. +accessories/plugins/ExportWithXSLT.properties_name =\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 XSLT... +accessories/plugins/ExportWithXSLT_Applet.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C9\u03C2 \u03BC\u03B9\u03BA\u03C1\u03BF\u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE Java. +accessories/plugins/ExportWithXSLT_Applet.properties_name=\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE \u03BC\u03B9\u03BA\u03C1\u03BF\u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE\u03C2 Java... +accessories/plugins/ExportWithXSLT_Applet.properties_tji=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 \u03C3\u03C5\u03BC\u03C0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7\u03C2 Task Juggler +accessories/plugins/ExportWithXSLT_Applet.properties_webpage=\u0399\u03C3\u03C4\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 +accessories/plugins/ExportWithXSLT_Flash.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C9\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE flash. +accessories/plugins/ExportWithXSLT_Flash.properties_name=\u03A3\u03B5 Flash... +accessories/plugins/ExportWithXSLT_HTML.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML.properties_name =\u03A3\u03B5 XHTML (\u03B5\u03BA\u03B4\u03BF\u03C7\u03AE JavaScript )... +accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML3.properties_name =\u03A3\u03B5 XHTML (Clickable map image version)... +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =\u03A9\u03C2 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 MindManager +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C0\u03CC\u03C1\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF RESOURCES \u03C3\u03C4\u03BF Taskjuggler. +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=\u03A0\u03CC\u03C1\u03BF\u03B9 \u03B1\u03C0\u03BF \u03C4\u03BF\u03BD RESOURCES \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF TaskJuggler... +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF TASKS \u03C3\u03B5 Taskjuggler. +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=\u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B1\u03C0\u03BF TASKS \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF TaskJuggler ... +accessories/plugins/FitToPage.properties_documentation =\u03A1\u03C5\u03B8\u03BC\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03AD\u03C4\u03C3\u03B9 \u03CE\u03C3\u03C4\u03B5 \u03BF\u03BB\u03CC\u03BA\u03BB\u03B7\u03C1\u03BF\u03C2 \u03BF \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03BD\u03B1 \u03C7\u03C9\u03C1\u03AC\u03B5\u03B9 \u03C3\u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03C9\u03BD \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF. +accessories/plugins/FitToPage.properties_name =\u0395\u03C3\u03C4\u03AF\u03B1\u03C3\u03B7 \u03B3\u03B9\u03B1 &\u03C4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03C3\u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 +accessories/plugins/FoldAll.properties_documentation = \u0394\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2. +accessories/plugins/FoldAll.properties_name =\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD +accessories/plugins/FoldOneLevel.properties_documentation = \u0394\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF. +accessories/plugins/FoldOneLevel.properties_name =\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF +accessories/plugins/FormatCopy.properties_documentation = \u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. +accessories/plugins/FormatCopy.properties_name =\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 +accessories/plugins/FormatPaste.properties_documentation = \u0395\u03C0\u03B9\u03BA\u03BF\u03BB\u03BB\u03AC \u03C4\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. +accessories/plugins/FormatPaste.properties_name =\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 +accessories/plugins/FormularEditor.properties_documentation = \u03A3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03C4\u03C5\u03C0\u03B9\u03BA\u03CC \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7. +accessories/plugins/FormularEditor.properties_name =\u03A4\u03C5\u03C0\u03B9\u03BA\u03CC\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 +accessories/plugins/HierarchicalIcons.properties_documentation=\u0395\u03AC\u03BD \u03AD\u03BD\u03B1\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 (\u03B5\u03B3\u03B3\u03CC\u03BD\u03B9) \u03AD\u03C7\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF, \u03B8\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BC\u03B9\u03BA\u03C1\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1, \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2. +accessories/plugins/HierarchicalIcons.properties_name=\u0399\u03B5\u03C1\u03B1\u03C1\u03C7\u03B9\u03BA\u03AE \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 &\u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD +accessories/plugins/IconSelectionPlugin.properties_documentation = \u0395\u03B4\u03CE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03C4\u03B5 \u03BC\u03B9\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03BC\u03B5 \u03C5\u03C0\u03BF\u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF. +accessories/plugins/IconSelectionPlugin.properties_name =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5... +accessories/plugins/ImportMindmanagerFiles.properties_name=\u0395\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 MindManager X5 ... +accessories/plugins/ManagePatterns.dialog.title=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03C9\u03BD... +accessories/plugins/ManagePatterns.not_found=\u0391\u03B4\u03C5\u03BD\u03B1\u03BC\u03AF\u03B1 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 +accessories/plugins/ManagePatterns.properties_documentation=\u0391\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03C4\u03B1 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 \u03C0\u03BF\u03C5 \u03BF\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF patterns.xml \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5. \u03A4\u03BF \u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1. +accessories/plugins/ManagePatterns.properties_name=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03C9\u03BD... +accessories/plugins/NewEncryptedMap.properties_documentation =\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BD\u03AD\u03BF\u03C5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 +accessories/plugins/NewEncryptedMap.properties_name =\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 ... +accessories/plugins/NewParentNode.properties_documentation = \u038C\u03BB\u03BF\u03B9 \u03BF\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03BC\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BD\u03AD\u03BF \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF. +accessories/plugins/NewParentNode.properties_name =\u039D\u03AD\u03BF\u03C2 \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 +accessories/plugins/NodeHistoryBack.properties_documentation=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03AF\u03C3\u03C9 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1 +accessories/plugins/NodeHistoryBack.properties_name=\u03A0\u03AF\u03C3\u03C9 +accessories/plugins/NodeHistoryForward.properties_documentation=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B5\u03BC\u03C0\u03C1\u03CC\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1 +accessories/plugins/NodeHistoryForward.properties_name=\u03A0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03BC\u03C0\u03C1\u03CC\u03C2 +accessories/plugins/NodeNote.properties_documentation = \u03A3\u03C5\u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03C4\u03C5\u03C0\u03B9\u03BA\u03CC \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7. +accessories/plugins/NodeNote.properties_name =\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 +accessories/plugins/NodeNote_hide_show.properties_documentation=\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C4\u03B7\u03C2 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 \u03BD\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03AE \u03BD\u03B1 \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C0\u03C4\u03B5\u03C4\u03B1\u03B9 +accessories/plugins/NodeNote_hide_show.properties_name=\u03A0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 +accessories/plugins/NodeNote_jumpto.properties_documentation=\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03B1\u03C0\u03CC\u03BA\u03C1\u03B9\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD +accessories/plugins/NodeNote_jumpto.properties_name=\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 +accessories/plugins/PMCalculation.properties_documentation = \u03A5\u03C0\u03BF\u03BB\u03BF\u03B3\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03C0\u03AC\u03B8\u03B5\u03B9\u03B5\u03C2 \u03B3\u03B9\u03B1 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2. +accessories/plugins/PMCalculation.properties_name = PMCalculation +accessories/plugins/RemoveNote.properties_documentation = \u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 \u03B1\u03C0\u03CC, \u03B5\u03BD\u03B4\u03B5\u03C7\u03BF\u03BC\u03AD\u03BD\u03C9\u03C2, \u03B1\u03C1\u03BA\u03B5\u03C4\u03AD\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2. +accessories/plugins/RemoveNote.properties_name =\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD +accessories/plugins/RevisionPlugin.properties_documentation = \u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF \u03C6\u03CC\u03BD\u03C4\u03BF \u03BA\u03AC\u03B8\u03B5 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. +accessories/plugins/RevisionPlugin.properties_name =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 &\u0391\u03BD\u03B1\u03B8\u03B5\u03C9\u03C1\u03AE\u03C3\u03B5\u03C9\u03BD \u03BC\u03B5 \u03BA\u03AF\u03C4\u03C1\u03B9\u03BD\u03BF +accessories/plugins/SaveAll.properties_documentation=\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03AC \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1. +accessories/plugins/SaveAll.properties_name=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD +accessories/plugins/SaveAll.properties_save_all_cancelled=\u0397 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u03B4\u03B5\u03BD \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5 \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AF\u03B1. +accessories/plugins/SortNodes.properties_documentation=\u03A4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03B5\u03AF \u03B1\u03BB\u03C6\u03B1\u03B2\u03B7\u03C4\u03B9\u03BA\u03AC \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. +accessories/plugins/SortNodes.properties_name=\u03A4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03C9\u03BD +accessories/plugins/SplitNode.properties_documentation = \u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2 +accessories/plugins/SplitNode.properties_name =&\u0394\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +accessories/plugins/UnfoldAll.properties_documentation = \u039E\u03B5\u03B4\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2. +accessories/plugins/UnfoldAll.properties_name =\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD +accessories/plugins/UnfoldOneLevel.properties_documentation = \u039E\u03B5\u03B4\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF. +accessories/plugins/UnfoldOneLevel.properties_name =\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF +add=&\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 +add_link =\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 +add_local_link =\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE\u03C2 \u03C5\u03C0\u03B5\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 +antialias_all =\u0395\u03BE\u03BF\u03BC\u03AC\u03BB\u03C5\u03BD\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD +antialias_edges =\u0395\u03BE\u03BF\u03BC\u03AC\u03BB\u03C5\u03BD\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD +antialias_none =\u039a\u03b1\u03bc\u03af\u03b1 \u03b5\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 +apply=&\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE +arrow_link_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2... +as_parent =\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 +atributes_no_import_candidates_found= +attribute_delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C4\u03B9\u03BC\u03CE\u03BD +attribute_delete_value=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03C4\u03B9\u03BC\u03AE\u03C2 +attribute_font_size_tooltip=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +attribute_list_box_label_text=\u03A5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03C3\u03B5\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2 +attribute_replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BC\u03B5 +attribute_top=\u038c\u03bb\u03b1 \u03c4\u03b1 \u03b3\u03bd\u03c9\u03c3\u03c4\u03ac \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03bf\u03b9\u03ba\u03c4\u03bf\u03cd\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b5\u03c2. +attributes_adding_empty_attribute_error=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03BA\u03B5\u03BD\u03AE\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD. +attributes_all=\u038C\u03BB\u03B1 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC +attributes_assign_dialog=&\u03a0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd... +attributes_attribute=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC +attributes_close=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF +attributes_deselect_all=\u03A4\u03AF\u03C0\u03BF\u03C4\u03B5 +attributes_dialog=&\u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD... +attributes_dialog_title=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd +attributes_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 +attributes_edit_in_place=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +attributes_edit_tooltip=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 +attributes_for_selected=\u0395\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 +attributes_for_visible=\u038C\u03BB\u03BF\u03B9 \u03BF\u03B9 \u03BF\u03C1\u03B1\u03C4\u03BF\u03AF \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 +attributes_hide_all =\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +attributes_import=&\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE +attributes_import_tooltip=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03B1\u03C0\u03CC \u03AC\u03BB\u03BB\u03BF\u03C5\u03C2 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03BF\u03CD\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2. +attributes_no_import_candidates_found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03bd\u03ad\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +attributes_popup_delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE +attributes_popup_down=\u039A\u03AC\u03C4\u03C9 +attributes_popup_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 +attributes_popup_hide=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 +attributes_popup_new=\u039d\u03ad\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc +attributes_popup_optimal_width=\u0392\u03AD\u03BB\u03C4\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 +attributes_popup_up=\u03A0\u03AC\u03BD\u03C9 +attributes_refresh=\u0391\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B7 +attributes_restricted_attributes_tooltip=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +attributes_restricted_values_tooltip=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03C4\u03B9\u03BC\u03CE\u03BD \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC +attributes_restriction=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF +attributes_select_all=\u038C\u03BB\u03B1 +attributes_select_all_tooltip=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE/\u0391\u03C0\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD +attributes_show=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 +attributes_show_all =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +attributes_show_selected =\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +attributes_skip_root=\u03A0\u03B1\u03C1\u03AC\u03B2\u03BB\u03B5\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +attributes_visible=\u039F\u03C1\u03B1\u03C4\u03CC \u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF +attributes_visible_tooltip=\u039F\u03C1\u03B1\u03C4\u03CC \u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF +automatically_save_message=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C4\u03B7\u03BA\u03B5 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 (\u03BC\u03B5 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 {0}) ... +background =\u03A6\u03CC\u03BD\u03C4\u03BF +bezier =\u039A\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 Bezier +blend_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BC\u03AF\u03BE\u03B7\u03C2 +bold =\u0388\u03BD\u03C4\u03BF\u03BD\u03B1 +boldify_branch =\u039A\u03AC\u03BD\u03B5 \u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 +branch =\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 +browsemode_initial_map = ./doc/freemind.mm +bubble =&\u03A6\u03BF\u03CD\u03C3\u03BA\u03B1 +cancel =&\u0386\u03BA\u03C5\u03C1\u03BF +cannot_add_parent_diff_parents =\u0393\u03b9' \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1, \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03cc\u03bb\u03bf\u03b9 \u03bf\u03b9 \u03ba\u03cc\u03bc\u03b2\u03bf\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03bf\u03bd \u03af\u03b4\u03b9\u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf. +cannot_add_parent_to_root =\u039F \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B5\u03B8\u03B5\u03AF \u03C3\u03B5 \u03BD\u03AD\u03BF \u03B3\u03BF\u03BD\u03AD\u03B1. +cannot_delete_root =\u039f \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03ae \u03bd\u03b1 \u03b1\u03c0\u03bf\u03ba\u03bf\u03c0\u03b5\u03af. +cannot_join_nodes_with_children =\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03BD\u03C9\u03B8\u03B5\u03AF \u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03BC\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 +cannot_move_to_child =\u0391\u03B4\u03C5\u03BD\u03B1\u03BC\u03AF\u03B1 \u03BC\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5. +center =\u03A3\u03C4\u03BF \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF +change_arrows_in_arrow_link =\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b2\u03b5\u03bb\u03ce\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03b2\u03b5\u03bb\u03ce\u03bd. +change_link_arrows=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03B2\u03B5\u03BB\u03CE\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 +choose_background_color =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5: +choose_cloud_color =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2: +choose_edge_color =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +choose_node_background_color =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +choose_node_color =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5: +close =&\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF +cloud =\u039D\u03AD\u03C6\u03BF\u03C2 +cloud_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2... +combined =\u03A3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF +confirmation=\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7 +copy =\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE +copy_single =\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 +cut =\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE +decrease_branch_font_size =\u039C\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +decrease_node_font_size =\u039C\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +delete=&\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE +delete_child =\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +documentation =\u03A4\u03B5\u03BA\u03BC\u03B7\u03C1\u03AF\u03C9\u03C3\u03B7 +edge =\u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 +edge_color =\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2... +edge_style =\u03a3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +edge_width =\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +edge_width_parent =\u0393\u03BF\u03BD\u03AD\u03B1\u03C2 +edge_width_thin =\u039B\u03B5\u03C0\u03C4\u03CC +edit =&\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +edit.decision=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 HTML +edit.edit_rich_text=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2, \u03CC\u03C0\u03C9\u03C2 \u03C4\u03B1 \u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 \u03AE \u03C4\u03B1 \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1; +edit_link_manually =\u03A7\u03B5\u03B9\u03C1\u03BF\u03BA\u03AF\u03BD\u03B7\u03C4\u03B7 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD ... +edit_long_node =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5... +edit_node =\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +enter_base_url =\u03A0\u03C1\u03CC\u03BA\u03B5\u03B9\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BA\u03BF\u03BB\u03BB\u03B7\u03B8\u03BF\u03CD\u03BD \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2. \u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03B2\u03B1\u03C3\u03B9\u03BA\u03CC URL. +enter_confirms =&\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7 \u03BC\u03B5 Enter +error =\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 +error_applying_template=\u039B\u03AC\u03B8\u03BF\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF\u03C5 XSL. +error_creating_directory =\u0394\u03B5\u03BD \u03B5\u03B9\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE +export_branch =\u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 +export_branch_new =\u039a\u03bb\u03ac\u03b4\u03bf\u03c2 \u03c9\u03c2 \u03bd\u03ad\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2... +export_branch_to_html =\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 \u03C3\u03B5 HTML +export_pdf_text =Portable Document Format (PDF) +export_svg_text = Scalable Vector Graphic (SVG) +export_to_html =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE HTML +extension_menu = \u03a6\u03c5\u03c3\u03b9\u03ba\u03cc &\u03c3\u03c4\u03c5\u03bb +FAQ=\u03a3\u03c5\u03bd\u03ae\u03b8\u03b7 \u03b5\u03c1\u03c9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 +FAQ =\u03a3\u03c5\u03bd\u03ae\u03b8\u03b7 \u03b5\u03c1\u03c9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 +file =&\u0391\u03C1\u03C7\u03B5\u03AF\u03BF +file_already_exists =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0} \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5; +file_not_found =\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF $1 \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 +filter_add=&\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 +filter_and=&\u039A\u03B1\u03B9 +filter_conditions =\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 +filter_contains=\u03A0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 +filter_delete=&\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE +filter_dialog=\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2 \u03c6\u03af\u03bb\u03c4\u03c1\u03bf\u03c5 +filter_does_not_exist=\u0394\u03b5\u03bd \u03c5\u03c6\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9 +filter_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 +filter_edit_description=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03C9\u03BD +filter_enter_value=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03B9\u03BC\u03AE\u03C2 +filter_exist=\u03A5\u03C6\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9 +filter_icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF +filter_ignore_case=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd/\u03c0\u03b5\u03b6\u03ce\u03bd +filter_is_equal_to=\u0395\u03AF\u03BD\u03B1\u03B9 \u03AF\u03C3\u03BF \u03BC\u03B5 +filter_is_not_equal_to=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AF\u03C3\u03BF \u03BC\u03B5 +filter_no_filtering=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF +filter_node=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +filter_not=&\u038C\u03C7\u03B9 +filter_or=&\u0389 +filter_select=&\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE +filter_selected_node_view=\u03A4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03B5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 +filter_show_ancestors=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 +filter_show_descendants=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 +filter_toolbar=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF +filter_unfold_ancestors=\u039e\u03b5\u03b4\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03c6\u03b9\u03bb\u03c4\u03c1\u03b1\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03c9\u03bd \u03ba\u03cc\u03bc\u03b2\u03c9\u03bd +find =\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 ... +find_next =\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +find_what =\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b9 +fit_to_page =\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C3\u03C4\u03B1 \u03CC\u03C1\u03B9\u03B1 \u03BC\u03B9\u03B1\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 +fold =\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 +follow_graphical_link=\u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7: +follow_link =\u0391\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c5\u03c0\u03b5\u03c1\u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5 +font =\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +font_family =\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 +font_size =\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 +fork =&\u0394\u03B9\u03C7\u03AC\u03BB\u03B1 +format_menu_edge_styles=&\u03a3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +format_menu_edge_widths=\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 &\u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +FreeMind=\u0399\u03C3\u03C4\u03CC\u03C4\u03BF\u03C0\u03BF\u03C2 \u03C4\u03BF\u03C5 FreeMind +FreeMind.progress.buildScreen=\u039A\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03BF\u03B8\u03CC\u03BD\u03B7\u03C2... +FreeMind.progress.createController=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B5\u03BB\u03B5\u03B3\u03BA\u03C4\u03AE... +FreeMind.progress.createInitialMode=\u0391\u03C1\u03C7\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7... +FreeMind.progress.endStartup=\u03A4\u03AD\u03BB\u03BF\u03C2 \u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7\u03C2. +FreeMind.progress.gettingPreferenceDirectories=\u0391\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03BA\u03B1\u03C4\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... +FreeMind.progress.gettingPreferences=\u0391\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... +FreeMind.progress.loadMaps=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ce\u03bd \u03c7\u03b1\u03c1\u03c4\u03ce\u03bd... +FreeMind.progress.propageteLookAndFeel=\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03af\u03c3\u03b8\u03b7\u03c3\u03b7\u03c2... +FreeMind.progress.settingPreferences=\u03A1\u03CD\u03B8\u03BC\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... +FreeMind.progress.startCreateController=\u0388\u03BD\u03B1\u03C1\u03BE\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03B5\u03BB\u03B5\u03B3\u03BA\u03C4\u03AE... +FreeMind.progress.updateLookAndFeel=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03af\u03c3\u03b8\u03b7\u03c3\u03b7\u03c2... +freemind_reverted=\u03A4\u03BF Freemind_\u0395\u03C0\u03B1\u03BD\u03AD\u03BA\u03B1\u03BC\u03C8\u03B5_ +goto_link_node_action =\u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7 \u03C3\u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 +GrabKeyDialog.common.cancel=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 +GrabKeyDialog.common.ok=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 +GrabKeyDialog.grab-key.assigned-to=\u0391\u03BD\u03B1\u03C4\u03AD\u03B8\u03B7\u03BA\u03B5 \u03C3\u03B5 +GrabKeyDialog.grab-key.assigned-to.none=\u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03bd\u03ac\u03b8\u03b5\u03c3\u03b7 \u03b1\u03ba\u03cc\u03bc\u03b1 +GrabKeyDialog.grab-key.caption= +GrabKeyDialog.grab-key.clear=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 +GrabKeyDialog.grab-key.remove=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +GrabKeyDialog.grab-key.remove-ask=\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03c0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7; +GrabKeyDialog.grab-key.title=\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03bd\u03ad\u03bf\u03c5 \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf\u03c5 +help =\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 +html_export_based_on_headings =\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE HTML - \u0392\u03B1\u03C3\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C3\u03C4\u03B9\u03C2 \u03B5\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B5\u03C2 +html_export_fold_all =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae HTML - \u038c\u03bb\u03b1 \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03b1 +html_export_fold_currently_folded =\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE HTML - \u03A3\u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 +html_export_no_folding =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae HTML - \u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7 +icon_attach =\u039A\u03BF\u03AF\u03C4\u03B1 \u03B5\u03B4\u03CE +icon_back =\u03A0\u03AF\u03C3\u03C9 +icon_bell =\u03A5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 +icon_bookmark =\u0386\u03C1\u03B9\u03C3\u03C4\u03BF +icon_broken-line =\u03a3\u03c0\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf +icon_button_cancel =\u038C\u03C7\u03B9 \u03B5\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 +icon_button_ok =\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 +icon_calendar =\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 +icon_clanbomber =\u0395\u03C0\u03B9\u03BA\u03AF\u03BD\u03B4\u03C5\u03BD\u03BF +icon_clock =\u038f\u03c1\u03b1 +icon_closed =\u03A7\u03C9\u03C1\u03AF\u03C2 \u03BA\u03B1\u03C4\u03B1\u03C7\u03CE\u03C1\u03B7\u03C3\u03B7 +icon_decrypted =\u039E\u03B5\u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03C4\u03BF +icon_desktop_new =\u039C\u03B7\u03BD \u03BE\u03B5\u03C7\u03AC\u03C3\u03B5\u03B9\u03C2 +icon_down =\u039A\u03AC\u03C4\u03C9 +icon_edit =\u03A4\u03B5\u03BB\u03B5\u03B9\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 +icon_encrypted =\u039A\u03BB\u03B5\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF +icon_family=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 +icon_fema=\u039A\u03BF\u03C1\u03AF\u03C4\u03C3\u03B9\u03B1 +icon_female1=\u039A\u03BF\u03C1\u03AF\u03C4\u03C3\u03B9 1 +icon_female2=\u039A\u03BF\u03C1\u03AF\u03C4\u03C3\u03B9 2 +icon_flag =\u039A\u03CC\u03BA\u03BA\u03B9\u03BD\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_flag-black =\u039C\u03B1\u03CD\u03C1\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_flag-blue =\u039C\u03C0\u03BB\u03B5 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_flag-green =\u03A0\u03C1\u03AC\u03C3\u03B9\u03BD\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_flag-orange =\u03A0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03AF \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_flag-pink =\u03A1\u03BF\u03B6 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_flag-yellow =\u039A\u03AF\u03C4\u03C1\u03B9\u03BD\u03B7 \u03C3\u03B7\u03BC\u03B1\u03AF\u03B1 +icon_folder =\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03C2 +icon_forward =\u0395\u03BC\u03C0\u03C1\u03CC\u03C2 +icon_freemind_butterfly = FreeMind +icon_full-0=\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 0 +icon_full-1 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 1 +icon_full-2 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 2 +icon_full-3 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 3 +icon_full-4 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 4 +icon_full-5 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 5 +icon_full-6 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 6 +icon_full-7 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 7 +icon_full-8 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 8 +icon_full-9 =\u03A0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 9 +icon_go=\u03A0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF \u03C6\u03C9\u03C2 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2 +icon_gohome =\u03A3\u03C0\u03AF\u03C4\u03B9 +icon_group=\u039F\u03BC\u03AC\u03B4\u03B1 +icon_help =\u0395\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7 +icon_hourglass =\u0391\u03BD\u03B1\u03BC\u03BF\u03BD\u03AE +icon_idea =\u0388\u03BC\u03C0\u03BD\u03B5\u03C5\u03C3\u03B7 +icon_info=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 +icon_kaddressbook =\u03A4\u03B7\u03BB\u03AD\u03C6\u03C9\u03BD\u03BF +icon_kmail = E-Mail +icon_knotify =\u039C\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE +icon_korn =\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03BA\u03B9\u03B2\u03CE\u03C4\u03B9\u03BF +icon_ksmiletris =\u03A7\u03B1\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C2 +icon_launch=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 +icon_licq =\u03A9\u03C1\u03B1\u03AF\u03B1 +icon_list=\u039A\u03B1\u03C4\u03AC\u03BB\u03BF\u03B3\u03BF\u03C2 +icon_Mail =\u0391\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1 +icon_male1=\u0391\u03B3\u03CC\u03C1\u03B9 1 +icon_male2=\u0391\u03B3\u03CC\u03C1\u03B9 2 +icon_menu =\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 +icon_messagebox_warning =\u03A3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC +icon_password =\u039A\u03BB\u03B5\u03B9\u03B4\u03AF +icon_pencil =\u03A0\u03C1\u03CC\u03BA\u03B5\u03B9\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B2\u03B5\u03BB\u03C4\u03B9\u03C9\u03B8\u03B5\u03AF +icon_penguin = Linux +icon_prepare=\u039A\u03AF\u03C4\u03C1\u03B9\u03BD\u03BF \u03C6\u03C9\u03C2 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2 +icon_smiley-angry =\u0398\u03C5\u03BC\u03C9\u03BC\u03AD\u03BD\u03BF\u03C2 +icon_smiley-neutral =\u039F\u03C5\u03B4\u03AD\u03C4\u03B5\u03C1\u03BF\u03C2 +icon_smiley-oh =\u0388\u03BA\u03C0\u03BB\u03B7\u03BA\u03C4\u03BF\u03C2 +icon_smily_bad =\u0394\u03B5\u03BD \u03C0\u03B5\u03C1\u03BD\u03AC\u03C9 \u03BA\u03B1\u03BB\u03AC +icon_stop =\u039A\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF \u03C6\u03C9\u03C2 \u03BA\u03C5\u03BA\u03BB\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1\u03C2 +icon_stop-sign =\u0394\u03B9\u03B1\u03BA\u03BF\u03C0\u03AE +icon_up =\u0395\u03C0\u03AC\u03BD\u03C9 +icon_wizard =\u039C\u03B1\u03B3\u03B9\u03BA\u03CC +icon_xmag =\u039D\u03B1 \u03C4\u03BF \u03C3\u03C5\u03B6\u03B7\u03C4\u03AE\u03C3\u03BF\u03C5\u03BC\u03B5 +icon_yes =\u03A3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC +import =\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE +import_branch =\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7... +import_explorer_favorites =\u0395\u03BE\u03B5\u03C1\u03B5\u03C5\u03BD\u03B7\u03C4\u03AE\u03C2 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03C9\u03BD... +import_folder_structure =\u0394\u03bf\u03bc\u03ae \u03c6\u03b1\u03ba\u03ad\u03bb\u03c9\u03bd... +import_linked_branch = \u03A3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03B7 \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 +import_linked_branch_no_link =\u039F \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B1\u03C0\u03CC \u03B1\u03C5\u03C4\u03AE\u03BD. +import_linked_branch_without_root = (\u03a3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03ba\u03bb\u03ac\u03b4\u03c9\u03c3\u03b7) \u03a7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc... +increase_branch_font_size =\u039C\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +increase_node_font_size =\u039C\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +italic =\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 +italicise_branch =\u039C\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C3\u03B5 \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1 +join_nodes =\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u039a\u03cc\u03bc\u03b2\u03c9\u03bd +KeyDoc=\u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03a0\u03bb\u03ae\u03ba\u03c4\u03c1\u03c9\u03bd (\u03b1\u03c1\u03c7\u03b5\u03af\u03bf PDF) +less_than_two_selected_nodes =\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b3\u03af\u03bd\u03bf\u03c5\u03bd \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bf\u03cd\u03bd \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03b4\u03cd\u03bf \u03ba\u03cc\u03bc\u03b2\u03bf\u03b9. +license =\u0386\u03B4\u03B5\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 +license_text =FreeMind - \u039C\u03B9\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u0395\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CE\u03BD \u03A7\u03B1\u03C1\u03C4\u03CE\u03BD\nCopyright (C) 2000-2010 Joerg Mueller \n\u0394\u03AD\u03C3\u03C4\u03B5 \u03C4\u03BF \u0391\u039D\u03A4\u0399\u0393\u03A1\u0391\u03A6\u039F \u03B3\u03B9\u03B1 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2\n\n\u0391\u03C5\u03C4\u03AE \u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF \u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC, \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B4\u03B9\u03B1\u03BD\u03B5\u03AF\u03BC\u03B5\u03C4\u03B5 \u03BA\u03B1\u03B9/\u03AE\n\u03BD\u03B1 \u03C4\u03B7\u03BD \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C5\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03CC\u03C1\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2 \u0394\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1\u03C2 \u0386\u03B4\u03B5\u03B9\u03B1\u03C2 \u03A7\u03C1\u03AE\u03C3\u03B7\u03C2 GNU\n\u03CC\u03C0\u03C9\u03C2 \u03B5\u03BA\u03B4\u03CC\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF Free Software\nFoundation, \u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03C2 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2 2\n\u03C4\u03B7\u03C2 \u03AC\u03B4\u03B5\u03B9\u03B1\u03C2, \u03AE (\u03B1\u03BD\u03AC\u03BB\u03BF\u03B3\u03B1 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C3\u03B1\u03C2) \u03BF\u03C0\u03BF\u03B9\u03B1\u03C3\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7\u03C2 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2.\n\n\u0391\u03C5\u03C4\u03AE \u03B7 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B4\u03B9\u03B1\u03BD\u03AD\u03BC\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B5\u03BB\u03C0\u03AF\u03B4\u03B1 \u03CC\u03C4\u03B9 \u03B8\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C7\u03C1\u03AE\u03C3\u03B9\u03BC\u03B7,\n\u03B1\u03BB\u03BB\u03AC \u03A7\u03A9\u03A1\u0399\u03A3 \u039A\u0391\u039C\u0399\u0391 \u0395\u0393\u0393\u03A5\u0397\u03A3\u0397 \u03BA\u03B1\u03B9 \u03B1\u03BA\u03CC\u03BC\u03B7 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C5\u03C0\u03BF\u03B4\u03B7\u03BB\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03B5\u03B3\u03B3\u03CD\u03B7\u03C3\u03B7\n\u03B5\u03BC\u03C0\u03BF\u03C1\u03B5\u03C5\u03C3\u03B9\u03BC\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03AE \u03BA\u03B1\u03C4\u03B1\u03BB\u03BB\u03B7\u03BB\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03C3\u03BA\u03BF\u03C0\u03BF\u03CD\u03C2. \u0394\u03AD\u03C3\u03C4\u03B5\n\u03C4\u03B7 \u0394\u03B7\u03BC\u03CC\u03C3\u03B9\u03B1 \u0386\u03B4\u03B5\u03B9\u03B1 \u03A7\u03C1\u03AE\u03C3\u03B7\u03C2 GNU \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2.\n\n\u0398\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BB\u03AC\u03B2\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B1\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF \u03C4\u03B7\u03C2 \u0386\u03B4\u03B5\u03B9\u03B1\u03C2 \u03B1\u03C5\u03C4\u03AE\u03C2\n\u03BC\u03B1\u03B6\u03AF \u03BC\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE. \u0395\u03AC\u03BD \u03CC\u03C7\u03B9, \u03B5\u03C0\u03B9\u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03AE\u03C3\u03C4\u03B5 \u03BC\u03B5 \u03C4\u03BF Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +linear =\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE +link_not_available_any_more =\u0397 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03B3\u03BA\u03C5\u03C1\u03B7 \u03C0\u03BB\u03AD\u03BF\u03BD. \u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF \u03AE\u03B4\u03B7. +link_not_found = \u039F \u03B4\u03B5\u03C3\u03BC\u03CC\u03C2 $1 \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5. +load =&\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 +locking_failed_by_open =\u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 $1 \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5. \u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7. +locking_failed_by_save_as =\u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 $1 \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5. \u0397 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2... \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5. +locking_old_lock_removed =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 $1 \u03BA\u03BB\u03B5\u03B9\u03B4\u03CE\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 $2. \u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B3\u03B9\u03B1\u03C4\u03AF \u03AE\u03C4\u03B1\u03BD \u03C0\u03B1\u03BB\u03B9\u03CC. +long_node_changed_cancel =\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AF\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; +long_node_changed_submit =\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; +lots_of_links_warning =\u03A0\u03C1\u03BF\u03C3\u03C0\u03B1\u03B8\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C0\u03BF\u03BB\u03BB\u03AD\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF. \u03A7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C3\u03C4\u03B5 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03B9\u03BA\u03AC \u03CC\u03BB\u03B5\u03C2 \u03B1\u03C5\u03C4\u03AD\u03C2 \u03C4\u03B9\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2; +ManagePatternsPopupDialog.Actions=&\u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 +ManagePatternsPopupDialog.add=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03BD\u03AD\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 +ManagePatternsPopupDialog.apply=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE +ManagePatternsPopupDialog.duplicate=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF\u03C5 +ManagePatternsPopupDialog.DuplicateNameMessage=\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03B1\u03C4\u03B5 \u03B4\u03CD\u03BF \u03C6\u03BF\u03C1\u03AD\u03C2 \u03C4\u03BF \u03AF\u03B4\u03B9\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1. \u03A0\u03B1\u03C1\u03B1\u03BA\u03B1\u03BB\u03CE \u03B1\u03BB\u03BB\u03AC\u03BE\u03C4\u03B5 \u03C4\u03BF \u03C0\u03C1\u03B9\u03BD \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF\u03BD \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF. +ManagePatternsPopupDialog.from_nodes=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03B3\u03AF\u03B1 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 +ManagePatternsPopupDialog.remove=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 +ManagePatternsPopupDialog.Save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE +map_already_exists =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AE\u03B4\u03B7. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF\u03BD \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5; +map_corrupted =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B1\u03C4\u03B5\u03C3\u03C4\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF\u03C2. \u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03B5\u03B9\u03CE\u03BD; +map_locked_by_open =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 $1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03BB\u03B5\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 $2. \u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7. +map_locked_by_save_as =\u039f \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 $1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 $2. \u0397 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1 "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c9\u03c2..." \u03b1\u03c0\u03bf\u03c1\u03c1\u03af\u03c6\u03b8\u03b7\u03ba\u03b5. +map_not_saved=\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7. +menu_attributes =& \u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +menu_extras =&\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 +menu_file_export =&\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae +menu_file_import =&\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae +menu_format =&\u039c\u03bf\u03c1\u03c6\u03ae +menu_insert =&\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae +menu_navigate =&\u03a0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7 +menu_view =&\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +mindmap =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 +mindmaps =\u03a7\u03ac\u03c1\u03c4\u03b5\u03c2 +mindmaps_desc =\u03a7\u03ac\u03c1\u03c4\u03b5\u03c2 (*.mm) +mindmaps_filter_desc =\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 (*.mmfilter) +mode_Browse=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03AD\u03C4\u03C1\u03B7\u03C3\u03B7\u03C2 +mode_File=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +mode_MindMap=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03BF\u03CD \u03C7\u03AC\u03C1\u03C4\u03B7 +mode_na =\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b7 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 +mode_status =\u0397 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03ac\u03bb\u03bb\u03b1\u03be\u03b5 \u03c3\u03c4\u03bf {0} +mode_title =FreeMind - {0} +modes =\u039a\u03b1\u03c4\u03b1\u03c3\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2 +most_recent_files =&\u03a4\u03b1 \u03c0\u03b9\u03bf \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 +move_to_root =\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF +new =\u039D\u03AD\u03BF +new_child =\u039D\u03AD\u03BF\u03C2 \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 +new_mindmap =\u039D\u03AD\u03BF\u03C2 \u03B5\u03BD\u03BD\u03BF\u03B9\u03BF\u03BB\u03BF\u03B3\u03B9\u03BA\u03CC\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 +new_node =\u039d\u03ad\u03bf\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 +new_node_as_sibling_not_possible_for_the_root =\u039D\u03AD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C9\u03C2 \u03B1\u03B4\u03B5\u03BB\u03C6\u03B9\u03BA\u03CC\u03C2, \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03B8\u03B5\u03AF \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC +new_sibling_before =\u039D\u03AD\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C2 \u03B1\u03B4\u03B5\u03BB\u03C6\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 +new_sibling_behind =\u039D\u03AD\u03BF\u03C2 \u03B1\u03B4\u03B5\u03C1\u03C6\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 +next_map =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 +no =\u038C\u03C7\u03B9 +no_format_copy_before_format_paste =\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c2 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03b5\u03b9\u03c2 \u03bc\u03b9\u03b1 \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03b9\u03c2. +no_found_from = \u0394\u03B5\u03BD $1 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF $2. +no_more_found_from = \u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD $1 \u03AC\u03BB\u03BB\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF $2. +no_previous_find =\u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03BA\u03B1\u03BD\u03AD\u03BD\u03B1 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF. +node =\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 +node_background_color =&\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5... +node_changed_discard_changes =\u0388\u03C7\u03B5\u03C4\u03B5 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C1\u03C1\u03AF\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; +node_color =\u03a7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5... +node_down =\u039a\u03cc\u03bc\u03b2\u03bf\u03c2 \u03ba\u03ac\u03c4\u03c9 +node_is_write_protected=\u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C3\u03C4\u03CC\u03C7\u03BF\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C3\u03AF\u03B1 \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2. +node_location_help=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 \u03B8\u03AD\u03C3\u03B7\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03C3\u03CD\u03C1\u03C3\u03B9\u03BC\u03BF, ctrl+\u03C3\u03CD\u03C1\u03C3\u03B9\u03BC\u03BF \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B1\u03C0\u03BF\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2, \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03BA\u03B1\u03B9 ctrl+\u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03C4\u03B9\u03C2 \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03B9. +node_up =\u039a\u03cc\u03bc\u03b2\u03bf\u03c2 \u03c0\u03ac\u03bd\u03c9 +nonboldify_branch =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF\u03C5 +nonitalicise_branch =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C0\u03BB\u03B1\u03B3\u03AF\u03C9\u03BD +normal =\u03a3\u03c5\u03bd\u03b7\u03b8\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf +not_saved_for_link_error =\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03B8\u03B5\u03AF, \u03C0\u03C1\u03B9\u03BD \u03BF\u03C1\u03AF\u03C3\u03B5\u03C4\u03B5 \u03BC\u03B9\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD +ok =&\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 +open =\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1... +option_changes_may_require_restart=\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2, \u03bc\u03ac\u03bb\u03bb\u03bf\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf FreeMind. +OptionalDontShowMeAgainDialog.cancel=&\u038C\u03C7\u03B9 +OptionalDontShowMeAgainDialog.dontShowAgain=&\u039C\u03B7 \u03BC\u03B5 \u03BE\u03B1\u03BD\u03B1\u03C1\u03C9\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2. +OptionalDontShowMeAgainDialog.ok=&\u039D\u03B1\u03B9 +OptionalDontShowMeAgainDialog.rememberMyDescision=&\u039D\u03B1 \u03B8\u03C5\u03BC\u03AC\u03C3\u03B1\u03B9 \u03C4\u03B7\u03BD \u03B1\u03C0\u03CC\u03C6\u03B1\u03C3\u03AE \u03BC\u03BF\u03C5. +OptionPanel.absolute=\u0391\u03C0\u03CC\u03BB\u03C5\u03C4\u03BF +OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1 \u03b4\u03b9\u03ac\u03c4\u03b1\u03be\u03b7\u03c2 +OptionPanel.antialias=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 +OptionPanel.antialias.tooltip=\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03c0\u03bf\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c4\u03bf\u03c5 \u03c7\u03ac\u03c1\u03c4\u03b7. \u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b5\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf . +OptionPanel.antialias_all=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd +OptionPanel.antialias_edges=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03bc\u03bc\u03ac\u03c4\u03c9\u03bd +OptionPanel.antialias_none=\u03a7\u03c9\u03c1\u03af\u03c2 \u03b5\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 +OptionPanel.Appearance=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 +OptionPanel.ar=Ar +OptionPanel.as_parent=\u03A9\u03C2 \u0393\u03BF\u03BD\u03AD\u03B1\u03C2 +OptionPanel.ask=\u0395\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +OptionPanel.automatic=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF +OptionPanel.automaticFormat_level=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c3\u03c4\u03c5\u03bb \u03b4\u03b9\u03ac\u03c4\u03b1\u03be\u03b7\u03c2 +OptionPanel.automaticFormat_level1=\u039C\u03BF\u03C1\u03C6\u03AE \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.automaticFormat_level2=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 1 +OptionPanel.Behaviour=\u03A3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC +OptionPanel.bezier=\u039A\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 Bezier +OptionPanel.browsemode_initial_map=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c6\u03c5\u03bb\u03bb\u03bf\u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 +OptionPanel.browsemode_initial_map.tooltip=\u03a4\u03bf URL \u03c4\u03bf\u03c5 \u03c7\u03ac\u03c1\u03c4\u03b7 \u03c0\u03bf\u03c5 \u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03b5\u03b9, \u03cc\u03c4\u03b1\u03bd \u03be\u03b5\u03ba\u03b9\u03bd\u03ac\u03b5\u03b9 \u03b7 \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c6\u03c5\u03bb\u03bb\u03bf\u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7\u03c2 +OptionPanel.bubble=\u03A6\u03BF\u03CD\u03C3\u03BA\u03B1 +OptionPanel.Cancel=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 +OptionPanel.ColorProperty.ResetColor=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 +OptionPanel.combined=\u03A3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF +OptionPanel.cs=Cs +OptionPanel.cut_nodes_without_question.tooltip=\u0395\u03AC\u03BD \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF, \u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B8\u03B1 \u03B1\u03C0\u03BF\u03BA\u03BF\u03C0\u03BF\u03CD\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u0391\u03C5\u03C4\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B1\u03C0\u03CE\u03BB\u03B5\u03B9\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD, \u03B5\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03CC\u03B8\u03B5\u03C3\u03B7. +OptionPanel.de=De +OptionPanel.default=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE +OptionPanel.default_browser_command_mac=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE\u03C2 \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 Mac +OptionPanel.default_browser_command_mac.tooltip= \u03BA\u03B1\u03B9 MAC: (\u03C7\u03AC\u03C1\u03B9\u03C2 \u03C3\u03C4\u03BF\u03BD Nick!) +OptionPanel.default_browser_command_other_os=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03bd\u03c4\u03bf\u03bb\u03ae\u03c2 \u03c6\u03c5\u03bb\u03bb\u03bf\u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ae \u03b3\u03b9\u03b1 \u03ac\u03bb\u03bb\u03b1 Os +OptionPanel.default_browser_command_other_os.tooltip= \u0391\u03c5\u03c4\u03cc \u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 Linux: +OptionPanel.default_browser_command_windows_9x=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 Windows 9x +OptionPanel.default_browser_command_windows_9x.tooltip=\u0393\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Windows (\u03c4\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03b1 "" \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b1 \u03c3\u03b5 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd\u03c2, \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd "=" \u03c3\u03c4\u03bf URL \u03c4\u03bf\u03c5\u03c2). +OptionPanel.default_browser_command_windows_nt=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 Windows Nt +OptionPanel.default_browser_command_windows_nt.tooltip=\u0393\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd Windows (\u03c4\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03b1 "" \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b1 \u03c3\u03b5 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd\u03c2, \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd "=" \u03c3\u03c4\u03bf URL \u03c4\u03bf\u03c5\u03c2). +OptionPanel.defaultfont=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +OptionPanel.defaultfont.tooltip=\u0397 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac \u03b3\u03b9\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5\u03c2. \u0399\u03c3\u03c7\u03cd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03cc\u03c4\u03b1\u03bd \u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac (TrueTypeFont) \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03c3\u03c4\u03bf \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1 +OptionPanel.defaultfontsize=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 +OptionPanel.defaultfontsize.tooltip=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03ad\u03bf\u03c5\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5\u03c2. +OptionPanel.defaultfontstyle=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03c5\u03bb \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 +OptionPanel.Defaults=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 +OptionPanel.delete_automatic_saves_at_exit=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03c9\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03c9\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03ad\u03be\u03bf\u03b4\u03bf +OptionPanel.delete_automatic_saves_at_exit.tooltip=\u0391\u03BD \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03BF\u03CD\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03BC\u03B5\u03C4\u03AC \u03B1\u03C0\u03CC \u03BC\u03AF\u03B1 \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03AE \u03AD\u03BE\u03BF\u03B4\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF Freemind, \u03B7 \u03B1\u03BA\u03CC\u03BB\u03BF\u03C5\u03B8\u03B7 \u03BC\u03B5\u03C4\u03B1\u03B2\u03BB\u03B7\u03C4\u03AE \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03AD\u03C7\u03B5\u03B9 \u03C4\u03B9\u03BC\u03AE true +OptionPanel.delete_nodes_without_question=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; +OptionPanel.delete_nodes_without_question.tooltip=\u0395\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5, \u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B8\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u0391\u03C5\u03C4\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B1\u03C0\u03CE\u03BB\u03B5\u03B9\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD, \u03B5\u03AC\u03BD \u03C0\u03B1\u03C4\u03B7\u03B8\u03B5\u03AF \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03CC\u03B8\u03B5\u03C3\u03B7. +OptionPanel.disable_cursor_move_paper=\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03bc\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2 \u03c7\u03b1\u03c1\u03c4\u03b9\u03bf\u03cd \u03bc\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ad\u03c1\u03c3\u03bf\u03c1\u03b1 +OptionPanel.disable_cursor_move_paper.tooltip=\u039c\u03b7\u03bd \u03b4\u03b5\u03af\u03c7\u03bd\u03b5\u03b9\u03c2 'move' \u03b4\u03b5\u03af\u03ba\u03c4\u03b7, \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b4\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1 \u03c3\u03c5\u03c1\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c7\u03b1\u03c1\u03c4\u03b9\u03bf\u03cd +OptionPanel.disable_key_type=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 Key Type +OptionPanel.disable_key_type.tooltip=Key typing: \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.dk=Dk +OptionPanel.docmapurl_since_version_0_7_0=Docmapurl +OptionPanel.draganddrop=\u03a3\u03cd\u03c1\u03c3\u03b9\u03bc\u03bf & \u0391\u03c0\u03cc\u03b8\u03b5\u03c3\u03b7 +OptionPanel.draganddrop.tooltip=\u0395\u03AC\u03BD \u03C4\u03BF dnd \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF. +OptionPanel.el=El +OptionPanel.el__buttons_position=\u0398\u03AD\u03C3\u03B5\u03B9\u03C2 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03CE\u03BD +OptionPanel.el__buttons_position.tooltip= \u03c0\u03ac\u03bd\u03c9/\u03ba\u03ac\u03c4\u03c9 +OptionPanel.el__enter_confirms_by_default=\u03a9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae, \u03c4\u03bf \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf Enter \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03bd\u03b5\u03b9 +OptionPanel.el__max_default_window_height=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03CD\u03C8\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 +OptionPanel.el__max_default_window_width=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 +OptionPanel.el__min_default_window_height=\u0395\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF \u03CD\u03C8\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 +OptionPanel.el__min_default_window_width=\u0395\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 +OptionPanel.el__position_window_below_node=\u03a4\u03bf\u03c0\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03ba\u03ac\u03c4\u03c9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03ba\u03cc\u03bc\u03b2\u03bf. +OptionPanel.el__show_icon_for_attributes=\u0394\u03b5\u03af\u03be\u03b5 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +OptionPanel.en=En +OptionPanel.enable_leaves_folding=\u0397 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C6\u03AE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 +OptionPanel.enable_leaves_folding.tooltip=\u0397 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C6\u03AE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 == \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1\u03C2/\u03B4\u03B9\u03C7\u03AC\u03BB\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 (\u03B1\u03BD \u03BA\u03B1\u03B9 \u03CC\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC, \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03C0\u03AC\u03BD\u03C4\u03B1 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C4\u03CD\u03C0\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03C4\u03B5) +OptionPanel.Environment=\u03A0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD +OptionPanel.es=Es +OptionPanel.et=Et +OptionPanel.execute_scripts_without_asking.tooltip=\u03A4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C4\u03BF\u03C5 FreeMind \u03B5\u03AF\u03BD\u03B1\u03B9, \u03BA\u03B1\u03C4\u03AC \u03BA\u03CD\u03C1\u03B9\u03BF \u03BB\u03CC\u03B3\u03BF, \u03B9\u03BA\u03B1\u03BD\u03AC \u03BD\u03B1 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03BF\u03C5\u03BD \u03BF\u03C0\u03BF\u03B9\u03B1\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2.
\u0388\u03C4\u03C3\u03B9, \u03B4\u03B5\u03BD \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B5 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C4\u03B1 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03B4\u03B5\u03BD \u03B3\u03BD\u03C9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B5 \u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C3\u03C6\u03B1\u03BB\u03AE. +OptionPanel.experimental_file_locking_on=\u03A0\u03B5\u03B9\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 +OptionPanel.experimental_file_locking_on.tooltip= \u03A0\u03B5\u03B9\u03C1\u03B1\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 +OptionPanel.export_icons_in_html=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C9\u03C2 Html +OptionPanel.export_icons_in_html.tooltip= \u039f\u03c1\u03b9\u03c3\u03b5 \u03b1\u03bd \u03c3\u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03b1 HTML \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03b1. \u03a4\u03bf \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03bf\u03b9 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03b9 \u03b4\u03b5\u03bd \u03b4\u03b5\u03af\u03c7\u03bd\u03bf\u03c5\u03bd \u03c3\u03c9\u03c3\u03c4\u03ac \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03bf HTML. +OptionPanel.Files=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 +OptionPanel.first=\u03A0\u03C1\u03CE\u03C4\u03BF +OptionPanel.foldingsymbolwidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C3\u03C5\u03BC\u03B2\u03CC\u03BB\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 +OptionPanel.foldingsymbolwidth.tooltip=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C4\u03BF\u03C5 \u03BA\u03CD\u03BA\u03BB\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 +OptionPanel.fork=\u0394\u03B9\u03C7\u03AC\u03BB\u03B1 +OptionPanel.fr=Fr +OptionPanel.gl=Gl +OptionPanel.gtk=Gtk +OptionPanel.hr=Hr +OptionPanel.HTML=HTML +OptionPanel.html_export_based_on_headings=\u0392\u03B1\u03C3\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03B5\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B5\u03C2 +OptionPanel.html_export_fold_all=\u038C\u03BB\u03B1 \u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03B1 +OptionPanel.html_export_fold_currently_folded=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 +OptionPanel.html_export_folding=\u0391\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE Html +OptionPanel.html_export_no_folding=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 +OptionPanel.hu=Hu +OptionPanel.icon_order_description=\u0395\u03B4\u03CE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03AE\u03C3\u03B5\u03C4\u03B5 \u03AE \u03BD\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1. \u03A4\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 ';'. +OptionPanel.icons.list=\u039A\u03B1\u03C4\u03AC\u03BB\u03BF\u03B3\u03BF\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03C9\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD +OptionPanel.id=Id +OptionPanel.it=It +OptionPanel.ja=Ja +OptionPanel.key_type_adds_new=Key Type \u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03bd\u03ad\u03bf\u03c5 +OptionPanel.key_type_adds_new.tooltip=Key typing: \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 (false) / \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03b4\u03b5\u03bb\u03c6\u03b9\u03ba\u03bf\u03cd (true) (\u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af: disable_key_type = false) +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B4\u03B5\u03BE\u03B9\u03AC +OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 +OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03B7\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 +OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 +OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=\u03a3\u03c4\u03c5\u03bb \u03b4\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7\u03c2 +OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=\u0395\u03C3\u03BF\u03C7\u03AD\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD +OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7/\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7\u03c2 +OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u03C3\u03CD\u03BD\u03C4\u03B1\u03BE\u03B7\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 +OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 +OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=\u0394\u03b9\u03b1\u03c7\u03c9\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=\u0394\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03cc\u03bb\u03c9\u03bd +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=\u0394\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03b5\u03c0\u03af\u03c0\u03b5\u03b4\u03bf +OptionPanel.keystroke_add=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 +OptionPanel.keystroke_add_arrow_link_action=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2 \u03C3\u03B5 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2 +OptionPanel.keystroke_add_child=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5 +OptionPanel.keystroke_add_child_mac=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5 Mac +OptionPanel.keystroke_add_local_link_action=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 +OptionPanel.keystroke_add_sibling_before=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03b4\u03b5\u03bb\u03c6\u03bf\u03cd \u03c0\u03c1\u03b9\u03bd +OptionPanel.keystroke_apply_pattern_1=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 1 +OptionPanel.keystroke_apply_pattern_10=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 10 +OptionPanel.keystroke_apply_pattern_11=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 11 +OptionPanel.keystroke_apply_pattern_12=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 12 +OptionPanel.keystroke_apply_pattern_13=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 13 +OptionPanel.keystroke_apply_pattern_14=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 14 +OptionPanel.keystroke_apply_pattern_15=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 15 +OptionPanel.keystroke_apply_pattern_16=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 16 +OptionPanel.keystroke_apply_pattern_17=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 17 +OptionPanel.keystroke_apply_pattern_18=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 18 +OptionPanel.keystroke_apply_pattern_2=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 2 +OptionPanel.keystroke_apply_pattern_3=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 3 +OptionPanel.keystroke_apply_pattern_4=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 4 +OptionPanel.keystroke_apply_pattern_5=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 5 +OptionPanel.keystroke_apply_pattern_6=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 6 +OptionPanel.keystroke_apply_pattern_7=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 7 +OptionPanel.keystroke_apply_pattern_8=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 8 +OptionPanel.keystroke_apply_pattern_9=\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03bf\u03c5 9 +OptionPanel.keystroke_assign_attributes=\u0391\u03bd\u03ac\u03b8\u03b5\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd... +OptionPanel.keystroke_close=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF +OptionPanel.keystroke_copy=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE +OptionPanel.keystroke_copy_single=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 +OptionPanel.keystroke_cut=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE +OptionPanel.keystroke_delete_child=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5 +OptionPanel.keystroke_edge_color=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +OptionPanel.keystroke_edit=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 +OptionPanel.keystroke_edit_attributes=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD +OptionPanel.keystroke_edit_long_node=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.keystroke_export_branch=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7\u03C2 +OptionPanel.keystroke_export_branch_to_html=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7\u03C2 \u03C3\u03B5 Html +OptionPanel.keystroke_export_to_html=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03B5 Html +OptionPanel.keystroke_find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 +OptionPanel.keystroke_find_next=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +OptionPanel.keystroke_follow_link=\u0391\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b1 \u03c4\u03b7 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +OptionPanel.keystroke_hide_all_attributes=\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd +OptionPanel.keystroke_join_nodes=\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03ba\u03cc\u03bc\u03b2\u03c9\u03bd +OptionPanel.keystroke_mode_Browse=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c0\u03bb\u03bf\u03b7\u03b3\u03ae\u03c3\u03b7\u03c2 +OptionPanel.keystroke_mode_File=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +OptionPanel.keystroke_mode_MindMap=\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03ce\u03bd \u03c7\u03b1\u03c1\u03c4\u03ce\u03bd +OptionPanel.keystroke_move_down=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03BA\u03AC\u03C4\u03C9 +OptionPanel.keystroke_move_left=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC +OptionPanel.keystroke_move_right=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B4\u03B5\u03BE\u03B9\u03AC +OptionPanel.keystroke_move_up=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03AC\u03BD\u03C9 +OptionPanel.keystroke_moveToRoot=\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf +OptionPanel.keystroke_newMap=\u039d\u03ad\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 +OptionPanel.keystroke_nextMap=\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 +OptionPanel.keystroke_node_color=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.keystroke_node_color_blend=\u039C\u03AF\u03BE\u03B7 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.keystroke_node_decrease_font_size=\u039C\u03B5\u03AF\u03C9\u03C3\u03B7 \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.keystroke_node_down=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03BA\u03AC\u03C4\u03C9 +OptionPanel.keystroke_node_increase_font_size=\u0391\u03CD\u03BE\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.keystroke_node_toggle_boldface=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03ad\u03bd\u03c4\u03bf\u03bd\u03b7 \u03b3\u03c1\u03b1\u03c6\u03ae +OptionPanel.keystroke_node_toggle_cloud=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03bd\u03ad\u03c6\u03bf\u03c2 +OptionPanel.keystroke_node_toggle_italic=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03c0\u03bb\u03ac\u03b3\u03b9\u03b1 \u03b3\u03c1\u03b1\u03c6\u03ae +OptionPanel.keystroke_node_toggle_underlined=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03b5 \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf +OptionPanel.keystroke_node_up=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B5\u03C0\u03AC\u03BD\u03C9 +OptionPanel.keystroke_open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 +OptionPanel.keystroke_open_first_in_history=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03ce\u03c4\u03bf\u03c5 \u03c3\u03c4\u03bf \u03b9\u03c3\u03c4\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd +OptionPanel.keystroke_option_dialog=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 +OptionPanel.keystroke_paste=\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 +OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7 +OptionPanel.keystroke_previousMap=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 +OptionPanel.keystroke_print=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 +OptionPanel.keystroke_quit=\u0388\u03BE\u03BF\u03B4\u03BF\u03C2 +OptionPanel.keystroke_redo=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2 +OptionPanel.keystroke_remove=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +OptionPanel.keystroke_save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 +OptionPanel.keystroke_saveAs=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2 +OptionPanel.keystroke_select_all=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD +OptionPanel.keystroke_select_branch=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 +OptionPanel.keystroke_set_image_by_filechooser=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd +OptionPanel.keystroke_set_link_by_filechooser=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd \u03bc\u03b5 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd +OptionPanel.keystroke_set_link_by_textfield=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03b4\u03b5\u03c3\u03bc\u03bf\u03cd \u03bc\u03b5 \u03c0\u03b5\u03b4\u03af\u03bf \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 +OptionPanel.keystroke_show_all_attributes=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd +OptionPanel.keystroke_show_attribute_manager=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd +OptionPanel.keystroke_show_selected_attributes=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd +OptionPanel.keystroke_toggle_children_folded=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03c9\u03bd \u03b1\u03c0\u03bf\u03b3\u03cc\u03bd\u03c9\u03bd +OptionPanel.keystroke_toggle_folded=\u0395\u03bd\u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03c9\u03bd +OptionPanel.keystroke_undo=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +OptionPanel.keystroke_zoom_in=\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7 +OptionPanel.keystroke_zoom_out=\u03a3\u03bc\u03af\u03ba\u03c1\u03c5\u03bd\u03c3\u03b7 +OptionPanel.Keystrokes=\u03a3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03bf\u03af \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03c9\u03bd +OptionPanel.ko=Ko +OptionPanel.language=\u0393\u03BB\u03CE\u03C3\u03C3\u03B1 +OptionPanel.language.tooltip=\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1. \u0397 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE '\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7' \u03C0\u03C1\u03BF\u03C3\u03C0\u03B1\u03B8\u03B5\u03AF \u03BD\u03B1 \u03C6\u03BF\u03C1\u03C4\u03CE\u03C3\u03B5\u03B9 \u03C4\u03B7 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C4\u03BF\u03C5 \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03BF\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7. +OptionPanel.last=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF +OptionPanel.last_opened_list_length=\u039c\u03ae\u03ba\u03bf\u03c2 \u03ba\u03b1\u03c4\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b1\u03bd\u03bf\u03b9\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd +OptionPanel.level=\u0395\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF +OptionPanel.level1=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.level2=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 1 +OptionPanel.level3=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 2 +OptionPanel.level4=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 3 +OptionPanel.level5=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03AC\u03BB\u03BB\u03C9\u03BD \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03C9\u03BD +OptionPanel.linear=\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC +OptionPanel.links=\u03a3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 +OptionPanel.links.tooltip=\u039f\u03c1\u03af\u03b6\u03b5\u03b9 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2, \u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc\u03bb\u03c5\u03c4\u03b1 \u03b5\u03af\u03c4\u03b5 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac +OptionPanel.loadLastMap=\u0391\u03bd\u03bf\u03af\u03b3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03bf\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03c7\u03ac\u03c1\u03c4\u03b7 +OptionPanel.loadLastMap.tooltip=\u038c\u03c4\u03b1\u03bd \u03c4\u03bf FreeMind \u03be\u03b5\u03ba\u03b9\u03bd\u03ac, \u03b1\u03bd\u03bf\u03af\u03b3\u03b5\u03b9 \u03c4\u03bf \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1, \u03b1\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af. +OptionPanel.lookandfeel=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7 +OptionPanel.lookandfeel.tooltip=\u0397 \u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7. \u03A5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 'metal','windows','motif', 'gtk', 'mac' \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF \u03BC\u03CC\u03BD\u03BF \u03C3\u03B5 MacOS. \u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9, \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF!. \u0391\u03BD \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03C4\u03B5 \u03B4\u03B9\u03BA\u03CC \u03C3\u03B1\u03C2, \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 class \u03B5\u03B4\u03CE \u03BA\u03B1\u03B9 \u03B2\u03B5\u03B2\u03B1\u03B9\u03C9\u03B8\u03B5\u03AF\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03C4\u03B1 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC jar \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B1. \u0391\u03BD \u03C5\u03C0\u03AC\u03C1\u03BE\u03B5\u03B9 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF \u03C0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1, \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 'nothing' . \u0394\u03BF\u03C5\u03BB\u03B5\u03CD\u03B5\u03B9 \u03BA\u03B1\u03B9 \u03BC\u03B5 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AF\u03B4\u03B9\u03B1 +OptionPanel.lt=Lt +OptionPanel.mapxsize=Map-X-size +OptionPanel.mapxsize.tooltip=\u039F\u03B9 \u03B1\u03C1\u03C7\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B9\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2 \u03BA\u03AC\u03B8\u03B5 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +OptionPanel.mapysize=Map-Y-size +OptionPanel.max_node_width=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.max_node_width.tooltip=\u03A4\u03BF \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 (\u03C3\u03B5 pixels) +OptionPanel.max_tooltip_width=\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ae\u03c2 +OptionPanel.max_tooltip_width.tooltip=\u03a4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03b1\u03c1\u03b1\u03b8\u03cd\u03c1\u03bf\u03c5 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ae\u03c2 (\u03c3\u03b5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03bf\u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1). +OptionPanel.metal=\u039c\u03b5\u03c4\u03b1\u03bb\u03bb\u03b9\u03ba\u03cc +OptionPanel.motif=\u039C\u03BF\u03C4\u03AF\u03B2\u03BF +OptionPanel.nb=Nb +OptionPanel.nl=Nl +OptionPanel.nn=Nn +OptionPanel.no=\u038C\u03C7\u03B9 +OptionPanel.nothing=\u03A4\u03AF\u03C0\u03BF\u03C4\u03B1 +OptionPanel.number_of_different_files_for_automatic_save=\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03CE\u03BD \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 +OptionPanel.number_of_different_files_for_automatic_save.tooltip= \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 n \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ce\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03b3\u03b9\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c7\u03b1\u03c1\u03c4\u03ce\u03bd \u03b5\u03bd\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5\u03c2. \u0397 \u03c0\u03c1\u03ce\u03c4\u03b7 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf, \u03ba.\u03bf.\u03ba., \u03b7 n+1-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03be\u03b1\u03bd\u03b1\u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf (\u03ba\u03c5\u03ba\u03bb\u03b9\u03ba\u03ac) +OptionPanel.OK=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 +OptionPanel.path_to_automatic_saves=\u0394\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 +OptionPanel.path_to_automatic_saves.tooltip= \u03b3\u03b9\u03b1 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 (\u03c3\u03c5\u03bd\u03ae\u03b8\u03c9\u03c2 \u03c4\u03bf 'java.io.tmpdir' \u03c4\u03b7\u03c2 java), \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03b5\u03b4\u03ce \u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae: \u03b1\u03bb\u03bb\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2: * freemind_home \u03b1\u03bd\u03c4\u03b9\u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b5\u03cd\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03bf\u03c5 \u03b2\u03c1\u03af\u03c3\u03ba\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf auto.properties. * default \u03b4\u03b5\u03af\u03c7\u03bd\u03b5\u03b9 \u03c4\u03bf java.io.tmpdir +OptionPanel.patternsfile=\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u03c0\u03c1\u03bf\u03c4\u03cd\u03c0\u03c9\u03bd +OptionPanel.pl=Pl +OptionPanel.placenewbranches=\u03a4\u03bf\u03c0\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03bd\u03ad\u03c9\u03bd \u03b4\u03b9\u03b1\u03ba\u03bb\u03b1\u03b4\u03ce\u03c3\u03b5\u03c9\u03bd +OptionPanel.placenewbranches.tooltip=\u0395\u03b4\u03ce \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c4\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03bd\u03ad\u03b5\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bb\u03b1\u03b4\u03ce\u03c3\u03b5\u03b9\u03c2. \u0388\u03b3\u03ba\u03c5\u03c1\u03b5\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 'first' \u03ba\u03b1\u03b9 'last' +OptionPanel.plugins/scripting/tab_name=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD +OptionPanel.printonwhitebackground=\u039B\u03B5\u03C5\u03BA\u03CC \u03C6\u03CC\u03BD\u03C4\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 +OptionPanel.printonwhitebackground.tooltip=\u0394\u03B9\u03B1\u03C1\u03BA\u03AE\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03BB\u03B5\u03C5\u03BA\u03BF\u03CD \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 +OptionPanel.pt_BR=Pt BR +OptionPanel.pt_PT=Pt PT +OptionPanel.relative=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03CC +OptionPanel.remind_type_of_new_nodes.tooltip=\u0397 "\u0395\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7" \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03c1\u03c9\u03c4\u03ac\u03b5\u03b9 (\u03b1\u03bc\u03c6\u03af\u03b2\u03bf\u03bb\u03b7 \u03c7\u03c1\u03ae\u03c3\u03b7).
\u03a4\u03bf "\u039d\u03b1\u03b9" \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03b5\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5.
\u03a4\u03bf "\u038c\u03c7\u03b9" \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03b1\u03c0\u03bb\u03bf\u03cd \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. +OptionPanel.remind_use_rich_text_in_new_long_nodes=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 +OptionPanel.remove_notes_without_question.tooltip=\u0395\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5, \u03BF\u03B9 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03AE\u03BA\u03BF\u03C5\u03BD \u03C3\u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03B8\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03B8\u03BF\u03CD\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u0391\u03C5\u03C4\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B1\u03C0\u03CE\u03BB\u03B5\u03B9\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD, \u03B5\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03CC\u03B8\u03B5\u03C3\u03B7. +OptionPanel.resources_convert_to_current_version=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD \u03C0\u03B1\u03BB\u03B1\u03B9\u03CC\u03C4\u03B5\u03C1\u03C9\u03BD \u03B5\u03BA\u03B4\u03CC\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 FreeMind
\u03C3\u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7; +OptionPanel.resources_convert_to_current_version.tooltip=\u039C\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03C0\u03BF\u03BB\u03CD \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03B1\u03C0\u03BF\u03CD\u03BD
(\u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03AD\u03BC\u03C0\u03B5\u03B9\u03C1\u03BF\u03C5\u03C2) \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03C4\u03B5 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE. +OptionPanel.resources_cut_nodes_without_question=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; +OptionPanel.resources_don_t_show_note_icons=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 +OptionPanel.resources_execute_scripts_without_asking=\u0398\u03B1 \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; +OptionPanel.resources_execute_scripts_without_exec_restriction=\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03AC\u03BB\u03BB\u03C9\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03CE\u03BD (\u0394\u0395\u039D \u03C3\u03C5\u03BD\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9) +OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD Groovy \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03BF\u03C5\u03BD \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AD\u03C2 (\u03CC\u03C0\u03C9\u03C2 \u03AD\u03BD\u03B1\u03BD \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE) \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7(!)),
\u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.
\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03CC\u03BC\u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE, \u03B3\u03B9\u03B1\u03C4\u03AF \u03BA\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2! +OptionPanel.resources_execute_scripts_without_file_restriction=\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b5\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 (\u0394\u0395\u039d \u03c3\u03c5\u03bd\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9) +OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD Groovy \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03BF\u03C5\u03BD \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 (\u03AC\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1, \u03BA\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF, \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE, \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE(!)),
\u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.
\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03CC\u03BC\u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE, \u03B3\u03B9\u03B1\u03C4\u03AF \u03BA\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2! +OptionPanel.resources_execute_scripts_without_network_restriction=\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b5\u03c2 \u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5 (\u0394\u0395\u039d \u03c3\u03c5\u03bd\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9) +OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD Groovy \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03BF\u03C5\u03BD \u03B5\u03B9\u03B4\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B9\u03BA\u03C4\u03C5\u03B1\u03BA\u03AD\u03C2 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2,
\u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.
\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03CC\u03BC\u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03BF\u03C7\u03AE, \u03B3\u03B9\u03B1\u03C4\u03AF \u03BA\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2! +OptionPanel.resources_remove_notes_without_question=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7; +OptionPanel.resources_save_folding_state=\u0394\u03B9\u03B1\u03C1\u03BA\u03AE\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 +OptionPanel.resources_save_folding_state.tooltip=\u0395\u03AC\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF, \u03BA\u03AC\u03B8\u03B5 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03C7\u03AC\u03BB\u03B9\u03B1 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 \u03BA\u03B1\u03B9 \u03C3\u03B1\u03C2 \u03C5\u03C0\u03B5\u03BD\u03B8\u03C5\u03BC\u03AF\u03B6\u03B5\u03B9 \u03CC\u03C4\u03B9 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C4\u03BF\u03BD \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03C4\u03B5. +OptionPanel.resources_script_user_key_name_for_signing=\u03A0\u03C1\u03BF\u03B1\u03B9\u03C1\u03B5\u03C4\u03B9\u03BA\u03CC \u03C8\u03B5\u03C5\u03B4\u03CE\u03BD\u03C5\u03BC\u03BF \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03B3\u03B9\u03B1 \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE +OptionPanel.resources_script_user_key_name_for_signing.tooltip=\u0395\u03AC\u03BD \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C5\u03C0\u03BF\u03B3\u03C1\u03AC\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C3\u03B1\u03C2, \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C8\u03B5\u03C5\u03B4\u03CE\u03BD\u03C5\u03BC\u03BF \u03C4\u03BF\u03C5 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD \u03B5\u03B4\u03CE.
\u0391\u03BD\u03B1\u03BC\u03AD\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF \u03BD\u03B1 \u03B1\u03BD\u03AE\u03BA\u03B5\u03B9 \u03C3\u03C4\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B1 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03AC.
\u039F \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03BC\u03C5\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C3\u03C5\u03BC\u03C0\u03AF\u03C0\u03C4\u03B5\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 (\u03B1\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B7 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE). +OptionPanel.resources_signed_script_are_trusted=\u0395\u03BC\u03C0\u03B9\u03C3\u03C4\u03BF\u03C3\u03CD\u03BD\u03B7 \u03C3\u03C4\u03B1 \u03C5\u03C0\u03BF\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD (\u03C3\u03C5\u03BD\u03AF\u03C3\u03C4\u03B1\u03C4\u03B1\u03B9). +OptionPanel.resources_signed_script_are_trusted.tooltip=\u0395\u03AC\u03BD \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03AD\u03C7\u03BF\u03C5\u03BD \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF \u03B1\u03C0\u03CC \u03AC\u03C4\u03BF\u03BC\u03BF/\u03AC\u03C4\u03BF\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C0\u03B9\u03C3\u03C4\u03B5\u03CD\u03B5\u03C3\u03C4\u03B5 (\u03C0.\u03C7. \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03C4\u03AD\u03C2 \u03C4\u03BF\u03C5 FreeMind \u03AE \u03B1\u03C0\u03CC \u03B5\u03C3\u03AC\u03C2), \u03B5\u03BA\u03C4\u03B5\u03BB\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD\u03C2. +OptionPanel.ru=Ru +OptionPanel.save_only_intrisically_needed_ids=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03BC\u03CC\u03BD\u03BF \u03C4\u03C9\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BC\u03B5\u03BD\u03C9\u03BD ID \u03C4\u03BF\u03C5 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.save_only_intrisically_needed_ids.tooltip=\u038C\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF, \u03C4\u03B1 ID \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C0\u03B1\u03C1\u03B1\u03BB\u03B5\u03AF\u03C0\u03BF\u03BD\u03C4\u03B1\u03B9. \u03A0\u03B1\u03C1\u03B1\u03C4\u03B7\u03C1\u03AE\u03C3\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03C4\u03B5 \u03B5\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03BF\u03CD\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03C3\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BC\u03AD\u03C3\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7, \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C4\u03BF ID \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. +OptionPanel.se=Se +OptionPanel.selection_method=\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 +OptionPanel.selection_method.tooltip= \u03bc\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b9\u03b1\u03ba\u03cc\u03c0\u03c4\u03b7 \u03b1\u03c5\u03c4\u03cc\u03bd, \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9/\u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03ba\u03b1\u03b8\u03c5\u03c3\u03c4\u03b5\u03c1\u03b7\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03c7\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2. \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2. \u039c\u03b7\u03bd \u03c4\u03bf \u03bc\u03b5\u03c4\u03b1\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b5 \u03b3\u03b9\u03b1\u03c4\u03af \u03b8\u03b1 \u03c3\u03c9\u03b8\u03b5\u03af \u03c3\u03c4\u03bf auto.properties \u03c3\u03b5 \u03ba\u03ac\u03b8\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7. +OptionPanel.selection_method_by_click=\u039C\u03B5 \u039A\u03BB\u03B9\u03BA +OptionPanel.selection_method_delayed=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03B5\u03C1\u03B7\u03BC\u03AD\u03BD\u03BF +OptionPanel.selection_method_direct=\u0386\u03BC\u03B5\u03C3\u03BF +OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 +OptionPanel.separator.anti_alias=\u0395\u03be\u03bf\u03bc\u03ac\u03bb\u03c5\u03bd\u03c3\u03b7 +OptionPanel.separator.attributes=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC +OptionPanel.separator.automatic_save=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 +OptionPanel.separator.behaviour=\u03A3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC +OptionPanel.separator.browser=\u03A6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE\u03C2 +OptionPanel.separator.commands_for_the_program=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 +OptionPanel.separator.default_colors=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B1 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 +OptionPanel.separator.default_fonts=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AD\u03C2 +OptionPanel.separator.default_styles=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b1 \u03c3\u03c4\u03c5\u03bb +OptionPanel.separator.edit_long_node_window=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 +OptionPanel.separator.files=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 +OptionPanel.separator.html_export=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE Html +OptionPanel.separator.hyperlink_types=\u0395\u03af\u03b4\u03b7 \u03c5\u03c0\u03b5\u03c1\u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03c9\u03bd +OptionPanel.separator.icon_properties=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 +OptionPanel.separator.icons=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C3\u03B5 "\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5..." +OptionPanel.separator.initial_map_size=\u0391\u03c1\u03c7\u03b9\u03ba\u03cc \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7 +OptionPanel.separator.key_typing=\u03A3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD +OptionPanel.separator.language=\u0393\u03BB\u03CE\u03C3\u03C3\u03B1 +OptionPanel.separator.look_and_feel=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7 +OptionPanel.separator.mouse_wheel=\u03A4\u03C1\u03BF\u03C7\u03CC\u03C2 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD +OptionPanel.separator.new_node_commands=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03BD\u03AD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.separator.node_editing_commands=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.separator.node_navigation_commands=\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03C0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.separator.other_defaults=\u0391\u03BB\u03BB\u03B5\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 +OptionPanel.separator.others=\u0386\u03BB\u03BB\u03B5\u03C2 \u03C3\u03C7\u03AD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD +OptionPanel.separator.patterns=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03b1 +OptionPanel.separator.plugins/scripting/separatorPropertyName=\u0386\u03B4\u03B5\u03B9\u03B5\u03C2 +OptionPanel.separator.resources_notifications=\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 +OptionPanel.separator.root_node_appearance=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.separator.save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 +OptionPanel.separator.selection_colors=\u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 +OptionPanel.separator.selection_method=\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 +OptionPanel.separator.undo=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +OptionPanel.sk=Sk +OptionPanel.sl=Sl +OptionPanel.standardbackgroundcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 +OptionPanel.standardbackgroundcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html +OptionPanel.standardcloudcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2 +OptionPanel.standardcloudcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html +OptionPanel.standardcloudestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2 +OptionPanel.standardcloudestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03bd\u03ad\u03c6\u03bf\u03c5\u03c2. \u03a0\u03c1\u03cc\u03c2 \u03c4\u03bf \u03c0\u03b1\u03c1\u03cc\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 'Bezier' +OptionPanel.standarddrawrectangleforselection=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C3\u03B5 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B5\u03C2 +OptionPanel.standarddrawrectangleforselection.tooltip=\u0395\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03BC\u03B5 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1 \u03BF\u03BB\u03CC\u03B3\u03C5\u03C1\u03B1. +OptionPanel.standardedgecolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +OptionPanel.standardedgecolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html +OptionPanel.standardedgestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +OptionPanel.standardedgestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2. \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf '\u03b3\u03c1\u03b1\u03bc\u03bc\u03b9\u03ba\u03cc' \u03ba\u03b1\u03b9 'Bezier' +OptionPanel.standardlinkcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 +OptionPanel.standardlinkcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae html +OptionPanel.standardlinkestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 +OptionPanel.standardlinkestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2. \u03a0\u03c1\u03cc\u03c2 \u03c4\u03bf \u03c0\u03b1\u03c1\u03cc\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 'Bezier' +OptionPanel.standardnodecolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.standardnodecolor.tooltip=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. \u039C\u03BF\u03C1\u03C6\u03AE html (#RRGGBB \u03BC\u03B5 \u03B4\u03B5\u03BA\u03B1\u03B5\u03BE\u03B1\u03B4\u03B9\u03BA\u03AD\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2) +OptionPanel.standardnodestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.standardnodestyle.tooltip=\u03a4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03c5\u03bb \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03bd\u03ad\u03bf \u03ba\u03cc\u03bc\u03b2\u03bf.\u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03c4\u03cd\u03c0\u03bf\u03b9 '\u03b4\u03b9\u03b1\u03ba\u03bb\u03ac\u03b4\u03c9\u03c3\u03b7', '\u03c6\u03bf\u03cd\u03c3\u03ba\u03b1' '\u03c9\u03c2_\u03b3\u03bf\u03bd\u03ad\u03b1\u03c2' \u03ba\u03b1\u03b9 '\u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf' +OptionPanel.standardnodetextcolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.standardnodetextcolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5. \u03a3\u03b5 \u03c3\u03c5\u03bc\u03b2\u03bf\u03bb\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 html (#RRGGBB \u03c3\u03b5 \u03b4\u03b5\u03be\u03b1\u03b5\u03be\u03b1\u03b4\u03b9\u03ba\u03ad\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2) +OptionPanel.standardrootnodestyle=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c3\u03c4\u03c5\u03bb \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.standardrootnodestyle.tooltip=\u03a4\u03bf \u03c3\u03c4\u03c5\u03bb \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03b1\u03bd \u03b4\u03b5\u03bd \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ac. \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bf\u03b9 \u03c4\u03cd\u03c0\u03bf\u03b9 '\u03b4\u03b9\u03b1\u03ba\u03bb\u03ac\u03b4\u03c9\u03c3\u03b7' '\u03c6\u03bf\u03cd\u03c3\u03ba\u03b1' \u03ba\u03b1\u03b9 '\u03c3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf' +OptionPanel.standardselectednodecolor=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.standardselectednodecolor.tooltip=\u03a4\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03b1\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af. \u039c\u03bf\u03c1\u03c6\u03ae html (#RRGGBB \u03bc\u03b5 \u03b4\u03b5\u03ba\u03b1\u03b5\u03be\u03b1\u03b4\u03b9\u03ba\u03ad\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2) +OptionPanel.standardselectednoderectanglecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7\u03C2 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +OptionPanel.standardselectednoderectanglecolor.tooltip=\u03A4\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03C6\u03BF\u03CD\u03C3\u03BA\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. \u039C\u03B5 \u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03B9\u03C3\u03BC\u03CC html (#RRGGBB \u03C3\u03B5 \u03B4\u03B5\u03BE\u03B1\u03B5\u03BE\u03B1\u03B4\u03B9\u03BA\u03AD\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2) +OptionPanel.standardselectednodetextcolor.tooltip= +OptionPanel.time_for_automatic_save=\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2 +OptionPanel.time_for_automatic_save.tooltip= \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B1\u03BD\u03AC\u03BC\u03B5\u03C3\u03B1 \u03C3\u03B5 \u03B4\u03CD\u03BF \u03B4\u03B9\u03B1\u03B4\u03BF\u03C7\u03B9\u03BA\u03AD\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B5\u03C2 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 (\u03C3\u03B5 msec): \u0393\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2, \u03B4\u03CE\u03C3\u03C4\u03B5 \u03C4\u03B7\u03BD \u03C4\u03B9\u03BC\u03AE 2000000000. +OptionPanel.time_for_delayed_selection=\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03B5\u03C1\u03B7\u03BC\u03AD\u03BD\u03B7\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 +OptionPanel.time_for_delayed_selection.tooltip= \u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7\u03C2, \u03CC\u03C4\u03B1\u03BD \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03B5\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03C3\u03C4\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF, \u03BC\u03AD\u03C7\u03C1\u03B9 \u03BD\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 (in msec). \u039C\u03B5 \u03C4\u03B9\u03BC\u03AE 1, \u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7. +OptionPanel.tr=Tr +OptionPanel.uk_UA=Uk UA +OptionPanel.undo_levels=\u0395\u03c0\u03af\u03c0\u03b5\u03b4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2 +OptionPanel.undo_levels.tooltip=\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03c0\u03cc\u03c3\u03b1 \u03b2\u03ae\u03bc\u03b1\u03c4\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b9\u03c1\u03b5\u03b8\u03bf\u03cd\u03bd \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b5\u03bd\u03c4\u03bf\u03bb\u03ae "\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7". +OptionPanel.unfold_on_paste=\u039e\u03b5\u03b4\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 +OptionPanel.unfold_on_paste.tooltip=\u039e\u03b5\u03b4\u03af\u03c0\u03bb\u03c9\u03bc\u03b1 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd '\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7' \u03ae \u03c3\u03c4\u03b7\u03bd '\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac & \u03b1\u03c0\u03cc\u03b8\u03b5\u03c3\u03b7'. +OptionPanel.use_common_out_point_for_root_node=\u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +OptionPanel.use_common_out_point_for_root_node.tooltip=\u03a4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5======= +OptionPanel.use_tabbed_pane=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BA\u03B1\u03C1\u03C4\u03B5\u03BB\u03CE\u03BD +OptionPanel.use_tabbed_pane.tooltip=\u038C\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF, \u03BF\u03B9 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2 (\u03CC\u03C0\u03C9\u03C2 \u03C3\u03C4\u03BF\u03BD Firefox :-) ). +OptionPanel.userproperties=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 +OptionPanel.vi=Vi +OptionPanel.wheel_velocity=\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 +OptionPanel.wheel_velocity.tooltip=\u03A5\u03C8\u03B7\u03BB\u03AE \u03C4\u03B9\u03BC\u03AE \u03C3\u03C4\u03B7 \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03B7 \u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C4\u03C1\u03BF\u03C7\u03BF\u03CD \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03B5\u03AF \u03BC\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B5\u03C6\u03AD \u03C3\u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7. +OptionPanel.windows=Windows +OptionPanel.zh=Zh +OptionPanel.zh_CN=Zh CN +OptionPanel.zh_TW=Zh +page =\u0394\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 &\u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2... +paste =\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 +PatternDialog.as_parent=\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 +PatternDialog.bezier=bezier +PatternDialog.bubble=\u03a6\u03bf\u03cd\u03c3\u03ba\u03b1 +PatternDialog.childpattern=\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5 +PatternDialog.childpattern.tooltip=\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf \u03b8\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2. +PatternDialog.clear_all_setters=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd +PatternDialog.clear_all_setters.tooltip=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF/\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03B9\u03C2 \u03B5\u03BD\u03B4\u03B5\u03B9\u03BE\u03B5\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD. +PatternDialog.ColorProperty.ResetColor=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 +PatternDialog.combined=\u03a3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf +PatternDialog.edgecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +PatternDialog.edgecolor.tooltip=\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf (\u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2) +PatternDialog.edgestyle=\u03a3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 +PatternDialog.edgestyle.tooltip=\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf (\u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2) +PatternDialog.edgewidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +PatternDialog.edgewidth.tooltip=\u0399\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf\u03bd \u03b1\u03c1\u03c7\u03b9\u03ba\u03cc \u03ba\u03cc\u03bc\u03b2\u03bf (\u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03ba\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b1\u03c0\u03cc\u03b3\u03bf\u03bd\u03bf\u03c5\u03c2) +PatternDialog.EdgeWidth_1=1 +PatternDialog.EdgeWidth_2=2 +PatternDialog.EdgeWidth_4=4 +PatternDialog.EdgeWidth_8=8 +PatternDialog.EdgeWidth_parent=\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 +PatternDialog.EdgeWidth_thin=\u03BB\u03B5\u03C0\u03C4\u03CC +PatternDialog.fork=\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 +PatternDialog.icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF +PatternDialog.icon.tooltip=\u0391\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03c3\u03c4\u03b5\u03af, \u03bf \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03b8\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf. +PatternDialog.linear=\u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE +PatternDialog.nodebackgroundcolor=\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +PatternDialog.nodebackgroundcolor.tooltip=\u039f\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +PatternDialog.nodecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +PatternDialog.nodecolor.tooltip=\u03a4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03c0\u03c1\u03bf\u03c3\u03ba\u03b7\u03bd\u03af\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 \u03cc\u03c4\u03b1\u03bd \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2. +PatternDialog.nodefontbold=\u0388\u03BD\u03C4\u03BF\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +PatternDialog.nodefontbold.tooltip= +PatternDialog.nodefontitalic=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +PatternDialog.nodefontitalic.tooltip= +PatternDialog.nodefontname=\u038c\u03bd\u03bf\u03bc\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +PatternDialog.nodefontname.tooltip= +PatternDialog.nodefontsize=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +PatternDialog.nodefontsize.tooltip= +PatternDialog.nodestyle=\u03a3\u03c4\u03c5\u03bb \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +PatternDialog.nodestyle.tooltip=\u03a4\u03bf \u03c3\u03c4\u03c5\u03bb \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03c6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03ae \u03bc\u03bf\u03c1\u03c6\u03ae \u03b5\u03bd\u03cc\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5.
\u03a0\u03b9\u03b8\u03b1\u03bd\u03ad\u03c2 \u03c4\u03b9\u03bc\u03ad\u03c2:
<\u03c0\u03b5\u03c1\u03af\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1 \u03c0\u03af\u03bd\u03b1\u03ba\u03b1="1">\u03b4\u03b9\u03c7\u03ac\u03bb\u03b1: \u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7\u03c2,\u03c6\u03bf\u03cd\u03c3\u03ba\u03b1: \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03c7\u03c9\u03c1\u03af\u03c2 \u03bf\u03c1\u03b8\u03bf\u03b3\u03ce\u03bd\u03b9\u03bf \u03c0\u03b5\u03c1\u03b9\u03c3\u03c4\u03bf\u03af\u03c7\u03b9\u03c3\u03b7\u03c2,\u038c\u03c0\u03c9\u03c2 \u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03cc\u03c2: \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c6\u03b5\u03b9 \u03c4\u03bf \u03c3\u03c4\u03c5\u03bb \u03c4\u03bf\u03c5 \u03b3\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5
\u03ae \u03c4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03c5\u03bb \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b9\u03ba\u03bf\u03cd \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5,\u03a3\u03c5\u03bd\u03b4\u03c5\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf: \u03a6\u03bf\u03cd\u03c3\u03ba\u03b1 \u03cc\u03c4\u03b1\u03bd \u03bf \u03ba\u03cc\u03bc\u03b2\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03c0\u03bb\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2, \u03b4\u03b9\u03c7\u03ac\u03bb\u03b1 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ae \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7. +PatternDialog.nodetext=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +PatternDialog.nodetext.tooltip=\u0395\u03b4\u03ce, \u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03bf\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03c4\u03bf\u03c5 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5. \u03a4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03b1\u03c0\u03bf\u03c1\u03c1\u03af\u03c0\u03c4\u03b5\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b1\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03cc\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03c4\u03ad\u03c4\u03bf\u03b9\u03bf \u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf. +PatternDialog.patternname=\u038C\u03BD\u03BF\u03BC\u03B1 +PatternDialog.patternname.tooltip=\u039C\u03BF\u03BD\u03B1\u03B4\u03B9\u03BA\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 +PatternDialog.script=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD +PatternDialog.script.tooltip=\u03a4\u03bf \u03c3\u03b5\u03bd\u03ac\u03c1\u03b9\u03bf \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd \u03c9\u03c2 \u03c0\u03b7\u03b3\u03b1\u03af\u03bf\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 groovy. +PatternDialog.separator.EdgeControls=\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 +PatternDialog.separator.General=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC +PatternDialog.separator.NodeColors=\u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +PatternDialog.separator.NodeFont=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +PatternDialog.separator.NodeStyles=\u03a3\u03c4\u03c5\u03bb \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5 +PatternDialog.separator.ScriptingControl=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 e\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD +PatternDialog.set_property_text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE +PatternDialog.set_property_text.tooltip=\u039a\u03b5\u03bd\u03cc: \u039c\u03ae\u03bd \u03b1\u03b3\u03b3\u03af\u03b6\u03b5\u03c4\u03b5, \u039c\u03b5\u03af\u03bf\u03bd=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 (\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03b9\u03bc\u03ce\u03bd), \u03a3\u03c5\u03bd=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 +PatternDialog.setscript=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE; +PatternDialog.setscript.tooltip=\u0388\u03BD\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C3\u03C5\u03C3\u03C7\u03B5\u03C4\u03B9\u03C3\u03C4\u03B5\u03AF \u03BC\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB. +PatternDialog.sharp_bezier=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF bezier +PatternDialog.sharp_linear=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF \u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC +PatternDialog.undefined_font=\u039c\u03b7 \u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac +PatternNewNameProperty=\u039D\u03AD\u03BF \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF +PatternToString.backgroundColor=\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 +PatternToString.Child=\u03A3\u03C4\u03C5\u03BB \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +PatternToString.color=\u03A7\u03C1\u03CE\u03BC\u03B1 +PatternToString.EdgeColor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +PatternToString.EdgeStyle=\u03A3\u03C4\u03C5\u03BB \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +PatternToString.EdgeWidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 +PatternToString.FontBold=\u0388\u03BD\u03C4\u03BF\u03BD\u03B1 +PatternToString.FontItalic=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 +PatternToString.FontName=\u038C\u03BD\u03BF\u03BC\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 +PatternToString.Icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF +PatternToString.NodeFontSize=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 +pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide.pdf +plugins/ExportPdf.xml_documentation =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03bc\u03bf\u03c1\u03c6\u03ae PDF +plugins/ExportPdf.xml_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE PDF... +plugins/ExportSvg.xml_documentation = \u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE SVG +plugins/ExportSvg.xml_name =\u03A3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE SVG... +plugins/FreemindHelp.xml_documentation =\u0395\u03C0\u03B1\u03C5\u03BE\u03B7\u03BC\u03AD\u03BD\u03B7 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03C4\u03BF\u03C5 FreeMind +plugins/FreemindHelp.xml_name =\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1... +plugins/latex/LatexNodeHook.editorTitle =\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2, \u03BA\u03BF\u03BD\u03C4\u03AC \u03C3\u03C4\u03B7\u03BD \u03B1\u03C0\u03BF\u03B4\u03BF\u03C7\u03AE +plugins/latex/LatexNodeHook.properties_documentation = \u03A4\u03CD\u03C0\u03BF\u03C2 Latex +plugins/latex/LatexNodeHook.properties_name = &Latex +plugins/NodeList.xml_documentation=\u0394\u03b5\u03af\u03c7\u03bd\u03b5\u03b9 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03ba\u03cc\u03bc\u03b2\u03bf\u03c5\u03c2 \u03c9\u03c2 \u03bc\u03b9\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b9\u03bc\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c6\u03af\u03bb\u03c4\u03c1\u03bf\u03c5. +plugins/NodeList.xml_name=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7... +plugins/RemoveReminder.xml_documentation=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1\u03bd \u03ba\u03cc\u03bc\u03b2\u03bf. +plugins/RemoveReminder.xml_name=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7\u03C2 +plugins/ScriptEditor.cancel=&\u0391\u03C0\u03CC\u03C1\u03C1\u03B9\u03C8\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD \u03BA\u03B1\u03B9 \u03AD\u03BE\u03BF\u03B4\u03BF\u03C2 +plugins/ScriptEditor.exit=&\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03ad\u03be\u03bf\u03b4\u03bf\u03c2 +plugins/ScriptEditor.FORBIDDEN_ACTION=\u03A4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD groovy \u03C4\u03BF\u03C5 FreeMind \u03AD\u03C7\u03BF\u03C5\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF. \u0397 \u03B1\u03BA\u03CC\u03BB\u03BF\u03C5\u03B8\u03B7 {0,choice,0#File|1#Network|2#Exec} \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B1\u03C0\u03B1\u03B3\u03BF\u03C1\u03B5\u03CD\u03B5\u03C4\u03B1\u03B9: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03C4\u03B5 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03B7\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE\u03C2. +plugins/ScriptEditor.menu_actions=&\u0395\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b5\u03c2 +plugins/ScriptEditor.new_script=\u039D\u03AD\u03BF \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD +plugins/ScriptEditor.run=&\u0395\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 +plugins/ScriptEditor.sign=\u03A5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03B5\u03BD\u03B1\u03C1\u03AF\u03BF\u03C5 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD... +plugins/ScriptEditor.xml_documentation=\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7 \u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03B1\u03BA\u03C1\u03BF\u03C3\u03BA\u03B5\u03BB\u03CE\u03BD \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B4\u03AD\u03C3\u03BC\u03B7\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C3\u03C4\u03BF FreeMind. +plugins/ScriptEditor.xml_name=&\u03a3\u03c5\u03bd\u03c4\u03ac\u03ba\u03c4\u03b7\u03c2 \u03b4\u03ad\u03c3\u03bc\u03b7\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd... +plugins/ScriptEditor/window.Result=\u0391\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1: +plugins/ScriptEditor/window.title=\u03A3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7\u03C2 \u03B4\u03AD\u03C3\u03BC\u03B7\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD +plugins/ScriptingEngine.xml_documentation=\u0391\u03c0\u03bf\u03c4\u03b9\u03bc\u03ac \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b5\u03c2 \u03b4\u03ad\u03c3\u03bc\u03b5\u03c2 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd (\u03b1\u03bd\u03ac\u03b4\u03c1\u03bf\u03bc\u03b7 \u03c3\u03b5\u03b9\u03c1\u03ac, \u03c6\u03b5\u03cd\u03b3\u03b5\u03b9 \u03c0\u03c1\u03ce\u03c4\u03b7) +plugins/ScriptingEngine.xml_name=\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7 +plugins/TimeList.xml_Created=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 +plugins/TimeList.xml_Date=\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 +plugins/TimeList.xml_documentation=\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03c7\u03c1\u03bf\u03bd\u03bf\u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ce\u03bd \u03ba\u03b1\u03b9 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03c4\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03ba\u03cc\u03bc\u03b2\u03c9\u03bd. +plugins/TimeList.xml_Icons=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 +plugins/TimeList.xml_Modified=\u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5 +plugins/TimeList.xml_name=&\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03c7\u03c1\u03bf\u03bd\u03bf\u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd +plugins/TimeList.xml_Notes=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 +plugins/TimeList.xml_Text=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF +plugins/TimeManagement.xml_appendButton=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 +plugins/TimeManagement.xml_Cancel=\u0386\u03ba\u03c5\u03c1\u03bf +plugins/TimeManagement.xml_cancelButton=\u0386\u03BA\u03C5\u03C1\u03BF +plugins/TimeManagement.xml_closeButton=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF +plugins/TimeManagement.xml_documentation= \u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF \u03AC\u03C1\u03B8\u03C1\u03C9\u03BC\u03B1 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5 \u03C4\u03BF\u03C5 Kai Toedter. +plugins/TimeManagement.xml_Export=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD +plugins/TimeManagement.xml_Find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 +plugins/TimeManagement.xml_Goto=\u039c\u03b5\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 +plugins/TimeManagement.xml_hour=\u038F\u03C1\u03B1: +plugins/TimeManagement.xml_menu_actions=\u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 +plugins/TimeManagement.xml_minute=\u039B\u03B5\u03C0\u03C4\u03CC: +plugins/TimeManagement.xml_name=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5... +plugins/TimeManagement.xml_reminderButton=\u03a5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 +plugins/TimeManagement.xml_reminderButton_tooltip=\u038C\u03C4\u03B1\u03BD \u03C4\u03BF \u03C0\u03B1\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5, \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C7\u03C1\u03BF\u03BD\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03B4\u03BF\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1. \u0398\u03B1 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF\u03C4\u03B5 \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C0\u03BF\u03C5 \u03B1\u03BD\u03B1\u03B2\u03BF\u03C3\u03B2\u03AE\u03BD\u03B5\u03B9.
\u0395\u03AC\u03BD \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7, \u03C4\u03BF \u03C7\u03C1\u03BF\u03BD\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03B8\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03C4\u03B7\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03C6\u03BF\u03C1\u03AC \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03C4\u03BF\u03BD \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03C4\u03B5. +plugins/TimeManagement.xml_reminderNode_onlyOneDate=\u03a0\u03c1\u03bf\u03c2 \u03c4\u03bf \u03c0\u03b1\u03c1\u03cc\u03bd, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03bc\u03af\u03b1 \u03bc\u03cc\u03bd\u03bf \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03b1\u03bd\u03ac \u03ba\u03cc\u03bc\u03b2\u03bf.
\u0397 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03b3\u03b9\u03b1 {0,\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1} {0,\u03ce\u03c1\u03b1}, \u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03b1\u03c2 \u03ae\u03c4\u03b1\u03bd {1,\u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1} {1,\u03ce\u03c1\u03b1}.

\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c7\u03c1\u03cc\u03bd\u03bf \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2 (\u039d\u0391\u0399)
\u03ae \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03c1\u03b1\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b1\u03bb\u03b9\u03cc (\u039f\u03a7\u0399); +plugins/TimeManagement.xml_reminderNode_showNode=\u0388\u03C7\u03B5\u03B9 \u03C0\u03B1\u03C1\u03AD\u03BB\u03B8\u03B5\u03B9 \u03BF \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF " {0} ". \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03B1\u03C1\u03AC\u03C4\u03B1\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03B4\u03AD\u03BA\u03B1 \u03BB\u03B5\u03C0\u03C4\u03AC; +plugins/TimeManagement.xml_reminderNode_tooltip=\u03A5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 {0,\u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1} {0,\u03CE\u03C1\u03B1}. +plugins/TimeManagement.xml_removeReminderButton =\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c5\u03c0\u03b5\u03bd\u03b8\u03cd\u03bc\u03b9\u03c3\u03b7\u03c2 +plugins/TimeManagement.xml_removeReminderButton_tooltip =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C5\u03C0\u03B5\u03BD\u03B8\u03C5\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C3\u03C7\u03B5\u03C4\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. +plugins/TimeManagement.xml_Replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +plugins/TimeManagement.xml_Replace_All=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD +plugins/TimeManagement.xml_Replace_Selected=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD +plugins/TimeManagement.xml_Select=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE +plugins/TimeManagement.xml_todayButton=\u03A3\u03AE\u03BC\u03B5\u03C1\u03B1 +plugins/TimeManagement.xml_WindowTitle=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5 +plugins/TimeManagement.xml_WindowTitle_All_Nodes=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +plugins/TimeManagementReminder.xml_documentation=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03AC\u03B3\u03BA\u03B9\u03C3\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C0\u03B1\u03BD\u03C5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE \u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD. +plugins/TimeManagementReminder.xml_name=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC \u03AC\u03B3\u03BA\u03B9\u03C3\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C0\u03B1\u03BD\u03C5\u03C0\u03BF\u03B2\u03BF\u03BB\u03AE \u03B5\u03C1\u03B3\u03B1\u03C3\u03B9\u03CE\u03BD. +preferences =\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 +previous_map =\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 +print =\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 +print_dialog =\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7... +print_preview =&\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2... +print_preview_title =\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 +printing_settings =\u039A\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 +property_dialog=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 ... +quit =\u0388\u03BE\u03BF\u03B4\u03BF\u03C2 +read_only =\u039C\u03CC\u03BD\u03BF \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 +really_convert_to_current_version=\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 FreeMind.
\u0398\u00a8\u03b5\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03b1\u03c0\u03b5\u03af (\u03c3\u03c5\u03bd\u03af\u03c3\u03c4\u03b1\u03c4\u03b1\u03b9);
(\u0394\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ac, \u03b8\u03b1 \u03c0\u03b1\u03c1\u03b1\u03bc\u03b5\u03af\u03bd\u03b5\u03b9 \u03c9\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b5\u03b3\u03b3\u03cd\u03b7\u03c3\u03b7.) +really_cut_node=\u039D\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03B1\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5(\u03C9\u03BD); +really_execute_script=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B1 \u03C3\u03B5\u03BD\u03AC\u03C1\u03B9\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC\u03BD \u03C4\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7; \u03A0\u03B9\u03B8\u03B1\u03BD\u03CC\u03BD \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C8\u03BF\u03C5\u03BD \u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03B1\u03C2. +really_remove_node=\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03B5\u03C4\u03B5 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF; +really_remove_notes=\u039D\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03B8\u03B5\u03AF \u03C0\u03C1\u03AC\u03B3\u03BC\u03B1\u03C4\u03B9 \u03B7 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7; +redo =\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac +remove_all_icons =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD +remove_arrow_link =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2 +remove_last_icon =\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03b9\u03b4\u03af\u03bf\u03c5 +remove_node =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +remove_node_background_color =\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 +rename=&\u039C\u03B5\u03C4\u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03AF\u03B1 +repair_link =\u0395\u03C0\u03B9\u03C3\u03BA\u03B5\u03C5\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 +repair_link_question =\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7. \u0395\u03C0\u03B9\u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u03C7\u03B5\u03B9\u03C1\u03BF\u03BA\u03AF\u03BD\u03B7\u03C4\u03B1; +replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 +reset_node_position=&\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b8\u03ad\u03c3\u03b7\u03c2 +RevertAction=%\u0395\u03c0\u03ac\u03bd\u03bf\u03b4\u03bf\u03c2 +save =&\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 +save_as =\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2... +save_failed =\u0397 \u03C0\u03C1\u03BF\u03C3\u03C0\u03AC\u03B8\u03B5\u03B9\u03B1 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 $1 \u03B4\u03B5\u03BD \u03AE\u03C4\u03B1\u03BD \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AE\u03C2. +save_unsaved =\u039d\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03bf \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03bf\u03c2 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2; : +saved =\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5 +scheme_evaluate =\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7! +ScriptEditorPanel.changed_cancel=\u039f\u03b9 \u03b5\u03bd\u03c4\u03bf\u03bb\u03ad\u03c2 \u03ac\u03bb\u03bb\u03b1\u03be\u03b1\u03bd. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c1\u03c1\u03af\u03c8\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2; +select_all=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03BF\u03C1\u03B1\u03C4\u03CE\u03BD +select_branch=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BF\u03C1\u03B1\u03C4\u03BF\u03CD \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 +select_favorites_folder =\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C0\u03BF\u03C5 \u03B2\u03C1\u03AF\u03C3\u03BA\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C4\u03B1 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1 \u03C3\u03B1\u03C2 +select_folder_for_importing =\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03C4\u03BF\u03BD \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B5\u03B9\u03C3\u03B1\u03C7\u03B8\u03B5\u03AF +select_icon=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03BD\u03CC\u03C2 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 +selection_as_rectangle=\u039F\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE +selection_method_by_click =\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BC\u03B5 \u03BC\u03BF\u03BD\u03CC \u03BA\u03BB\u03B9\u03BA +selection_method_delayed=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 +selection_method_direct =\u0394\u03B5\u03AF\u03BE\u03C4\u03B5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03C4\u03B5 +set_image_by_filechooser =\u0395\u03b9\u03ba\u03cc\u03bd\u03b1 (\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ae \u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7)... +set_link_by_filechooser =\u03a5\u03c0\u03b5\u03c1\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 (\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5)... +set_link_by_textfield =\u03a5\u03c0\u03b5\u03c1\u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 (\u03a0\u03b5\u03b4\u03af\u03bf \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5)... +sharp_bezier =\u0391\u03c0\u03cc\u03c4\u03bf\u03bc\u03b7 \u03ba\u03b1\u03bc\u03c0\u03cd\u03bb\u03b7 Bezier +sharp_linear =\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE +simplyhtml.aboutFrameTitle=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE +simplyhtml.aboutLabel=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03B7 SimplyHTML... +simplyhtml.alignCenter=\u03BA\u03AD\u03BD\u03C4\u03C1\u03BF +simplyhtml.alignLabel=\u03A3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7: +simplyhtml.alignLeft=\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC +simplyhtml.alignRight=\u03B4\u03B5\u03BE\u03B9\u03AC +simplyhtml.allCellsRangeLabel=\u03CC\u03BB\u03B1 \u03C4\u03B1 \u03BA\u03B5\u03BB\u03B9\u03AC +simplyhtml.allOccurrencesReplaced=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AC\u03B8\u03B7\u03BA\u03B5 \u03C3\u03B5 \u03CC\u03BB\u03B5\u03C2 \u03C4\u03B9\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 +simplyhtml.appendTableColLabel=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 +simplyhtml.appendTableRowLabel=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 +simplyhtml.applyCellAttrLabel=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C3\u03B5 +simplyhtml.backgroundLabel=\u03a6\u03cc\u03bd\u03c4\u03bf: +simplyhtml.boldItalicName=\u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1 +simplyhtml.boldName=\u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 +simplyhtml.borderColorLabel=\u03A7\u03C1\u03CE\u03BC\u03B1: +simplyhtml.borderWidthLabel=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 +simplyhtml.bottomLabel=\u03ba\u03ac\u03c4\u03c9 \u03bc\u03ad\u03c1\u03bf\u03c2: +simplyhtml.cancelBtnName=\u0386\u03ba\u03c5\u03c1\u03bf +simplyhtml.cellBorderTabLabel=\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 +simplyhtml.cellGenTabLabel=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC +simplyhtml.cellMarginTabLabel=\u03A0\u03B5\u03C1\u03B9\u03B8\u03CE\u03C1\u03B9\u03BF +simplyhtml.cellPanelTitle=\u039c\u03bf\u03c1\u03c6\u03ae \u03ba\u03b5\u03bb\u03b9\u03bf\u03cd +simplyhtml.clearFormatLabel=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 +simplyhtml.clearFormatTip=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 +simplyhtml.close=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf +simplyhtml.closeBtnName=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf +simplyhtml.colorLabel=\u03A7\u03C1\u03CE\u03BC\u03B1 +simplyhtml.copyLabel=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE +simplyhtml.copyTip=\u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE +simplyhtml.cTagNameHead1=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 1 +simplyhtml.cTagNameHead2=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 2 +simplyhtml.cTagNameHead3=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 3 +simplyhtml.cTagNameHead4=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 4 +simplyhtml.cTagNameHead5=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 5 +simplyhtml.cTagNameHead6=\u0395\u03C0\u03B9\u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 6 +simplyhtml.cTagNameLink=\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +simplyhtml.cTagNameOL=\u03A4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 +simplyhtml.cTagNamePara=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2 +simplyhtml.cTagNameUL=\u039c\u03b7 \u03c4\u03b1\u03be\u03b9\u03bd\u03bf\u03bc\u03b7\u03bc\u03ad\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 +simplyhtml.cutLabel=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE +simplyhtml.cutTip=\u03B1\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE +simplyhtml.defaultDocName=\u0391\u03bd\u03ce\u03bd\u03c5\u03bc\u03bf +simplyhtml.deleteTableColLabel=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 +simplyhtml.deleteTableRowLabel=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 +simplyhtml.docTitleQuery=\u039f\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf\u03c5: +simplyhtml.docTitleTitle=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03af\u03c4\u03bb\u03bf\u03c5 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 +simplyhtml.editLabel=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 +simplyhtml.effectLabel= \u0395\u03C6\u03AD +simplyhtml.familyLabel=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 +simplyhtml.findNext=\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5... +simplyhtml.findReplaceDialogTitle=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 +simplyhtml.findReplaceLabel=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 & \u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 +simplyhtml.findReplaceTip=\u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 & \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 +simplyhtml.fontBoldImage=resources/bold.gif +simplyhtml.fontBoldLabel=\u0388\u03bd\u03c4\u03bf\u03bd\u03b1 +simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif +simplyhtml.fontBoldTip=\u0388\u03bd\u03c4\u03bf\u03bd\u03b1 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 +simplyhtml.fontColorImage=resources/fontColor.gif +simplyhtml.fontColorLabel=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 +simplyhtml.fontColorTip=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 +simplyhtml.fontDialogTitle=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 +simplyhtml.fontItalicImage=resources/italic.gif +simplyhtml.fontItalicLabel=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 +simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif +simplyhtml.fontItalicTip=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 +simplyhtml.fontLabel=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC... +simplyhtml.fontTabLabel=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC +simplyhtml.fontTip=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2... +simplyhtml.fontUnderlineImage=resources/uline.gif +simplyhtml.fontUnderlineLabel=\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 +simplyhtml.fontUnderlineTip=\u03a5\u03c0\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b9\u03c3\u03b7 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 +simplyhtml.foregroundLabel=\u03A0\u03C1\u03BF\u03C3\u03BA\u03AE\u03BD\u03B9\u03BF: +simplyhtml.formatLabel=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 +simplyhtml.formatListLabel=\u039B\u03AF\u03C3\u03C4\u03B1... +simplyhtml.formatListTip=\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 +simplyhtml.formatParaLabel=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2... +simplyhtml.formatParaTip=\u0391\u03bb\u03bb\u03ac\u03b6\u03b5\u03b9 \u03c4\u03b7 \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5 +simplyhtml.formatTableLabel=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2... +simplyhtml.formatTableTip=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 +simplyhtml.helpLabel=\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 +simplyhtml.htmlTabTitle=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 HTML +simplyhtml.imageFileDesc=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 +simplyhtml.insertTableColLabel=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 +simplyhtml.insertTableLabel=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2... +simplyhtml.insertTableMsg=\u03A0\u03CC\u03C3\u03B5\u03C2 \u03C3\u03C4\u03AE\u03BB\u03B5\u03C2; +simplyhtml.insertTableRowLabel=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 +simplyhtml.insertTableTitle=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 +simplyhtml.italicName=\u03C0\u03BB\u03AC\u03B3\u03B9\u03B1 +simplyhtml.layoutTabTitle=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7\u03C2 +simplyhtml.leftLabel=\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC: +simplyhtml.listDialogTitle=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 +simplyhtml.listIndentTitle=\u0395\u03C3\u03BF\u03C7\u03AE: +simplyhtml.listPosInside=\u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AC +simplyhtml.listPositionLabel=\u0398\u03AD\u03C3\u03B7: +simplyhtml.listPosOutside=\u03B5\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AC +simplyhtml.listTypeCircle=\u03c3\u03c6\u03b1\u03b9\u03c1\u03b9\u03ba\u03ae \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 +simplyhtml.listTypeDecimal=1.,2.,3.,4. +simplyhtml.listTypeDisc=\u03c3\u03cd\u03bc\u03b2\u03bf\u03bb\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c9\u03c2 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 +simplyhtml.listTypeLabel=\u0395\u03AF\u03B4\u03BF\u03C2: +simplyhtml.listTypeLowerAlpha=\u03B1.,\u03B2.,\u03B3.,\u03B4. +simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. +simplyhtml.listTypeNone=\u03C4\u03AF\u03C0\u03BF\u03C4\u03B1 +simplyhtml.listTypeSquare=\u03c4\u03b5\u03c4\u03c1\u03ac\u03b3\u03c9\u03bd\u03b7 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 +simplyhtml.listTypeUpperAlpha=\u0391.,\u0392.,\u0393.,\u0394. +simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. +simplyhtml.marginLabel=\u0395\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC +simplyhtml.matchCase=\u03A4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03C0\u03B5\u03B6\u03CE\u03BD/\u03BA\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD +simplyhtml.newStyleDefaultName=\u03bd\u03ad\u03bf \u03c3\u03c4\u03c5\u03bb +simplyhtml.nextTableCellLabel=\u0395\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03BA\u03B5\u03BB\u03AF +simplyhtml.noLineLabel=\u03C4\u03AF\u03C0\u03BF\u03C4\u03B1 +simplyhtml.noMoreOccurrencesFound=\u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD (\u03AC\u03BB\u03BB\u03B5\u03C2) \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 +simplyhtml.okBtnName=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 +simplyhtml.paddingLabel=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC +simplyhtml.paraAlignCenterLabel=\u03A3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF +simplyhtml.paraAlignCenterTip=\u039A\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03AE \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 +simplyhtml.paraAlignLeftLabel=\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 +simplyhtml.paraAlignLeftTip=\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 +simplyhtml.paraAlignRightLabel=\u0394\u03B5\u03BE\u03B9\u03AC \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 +simplyhtml.paraAlignRightTip=\u0394\u03B5\u03BE\u03AF\u03B1 \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 +simplyhtml.paraStyleDialogTitle=\u03a3\u03c4\u03c5\u03bb \u03c0\u03b1\u03c1\u03b1\u03b3\u03c1\u03ac\u03c6\u03bf\u03c5 +simplyhtml.paraTabLabel=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2 +simplyhtml.pasteLabel=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 +simplyhtml.pasteTip=\u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 +simplyhtml.plainName=\u03B1\u03C0\u03BB\u03AC +simplyhtml.previewLabel=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 +simplyhtml.previewText=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 +simplyhtml.prevTableCellLabel=\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03BA\u03B5\u03BB\u03AF +simplyhtml.redoLabel=\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7 +simplyhtml.redoTip=\u03B5\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7 +simplyhtml.replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7... +simplyhtml.replaceAll=\u038C\u03BB\u03B1 +simplyhtml.replaceDone=\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 +simplyhtml.replaceNo=\u038c\u03c7\u03b9 +simplyhtml.replaceThisQuery=\u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AD\u03C3\u03C4\u03B7\u03C3\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 +simplyhtml.replaceWith=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BC\u03B5: +simplyhtml.replaceYes=\u039D\u03B1\u03B9 +simplyhtml.rightLabel=\u03B4\u03B5\u03BE\u03B9\u03AC: +simplyhtml.searchDown=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9 +simplyhtml.searchFromStart=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03B1\u03C1\u03C7\u03AE +simplyhtml.searchUp=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9 +simplyhtml.selectAllLabel=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD +simplyhtml.sizeLabel=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 +simplyhtml.standardStyleName=\u03C4\u03C5\u03C0\u03B9\u03BA\u03CC +simplyhtml.strikeLabel=\u03b4\u03b9\u03b1\u03ba\u03c1\u03b9\u03c4\u03ae \u03b3\u03c1\u03b1\u03c6\u03ae +simplyhtml.styleLabel=\u03a3\u03c4\u03c5\u03bb +simplyhtml.styleNameInputText=\u038c\u03bd\u03bf\u03bc\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03c3\u03c4\u03c5\u03bb; +simplyhtml.styleNameInputTitle=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c4\u03c5\u03bb +simplyhtml.tableBgColLabel=\u03a7\u03c1\u03ce\u03bc\u03b1 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5 +simplyhtml.tableDialogTitle=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 +simplyhtml.tableLabel=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 +simplyhtml.tablePanelTitle=\u039C\u03BF\u03C1\u03C6\u03AE \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 +simplyhtml.tableWidthLabel=\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2: +simplyhtml.textIndentLabel=\u0395\u03C3\u03BF\u03C7\u03AE: +simplyhtml.textToFind=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2: +simplyhtml.thisCellRangeLabel=\u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03BA\u03B5\u03BB\u03AF +simplyhtml.thisColRangeLabel=\u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03C3\u03C4\u03AE\u03BB\u03B7 +simplyhtml.thisRowRangeLabel=\u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE +simplyhtml.toggleBulletsLabel=\u039b\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 +simplyhtml.toggleBulletsTip=\u03bb\u03af\u03c3\u03c4\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c5\u03ba\u03ba\u03af\u03b4\u03b1 \u03bd\u03b1\u03b9/\u03cc\u03c7\u03b9 +simplyhtml.toggleNumbersLabel=\u0391\u03C1\u03B9\u03B8\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 +simplyhtml.toggleNumbersTip=\u03B1\u03C1\u03B9\u03B8\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 +simplyhtml.topLabel=\u03BA\u03BF\u03C1\u03C5\u03C6\u03AE: +simplyhtml.uLineLabel=\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 +simplyhtml.unableToOpenFileError=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +simplyhtml.unableToRedoError=\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03B7 \u03B5\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7: +simplyhtml.unableToUndoError=\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03B7 \u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7: +simplyhtml.undoLabel=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +simplyhtml.undoTip=\u03B1\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +simplyhtml.valignBaseline=\u03b2\u03b1\u03c3\u03b9\u03ba\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae +simplyhtml.valignBottom=\u03ba\u03ac\u03c4\u03c9 \u03c4\u03bc\u03ae\u03bc\u03b1 +simplyhtml.valignLabel=\u039A\u03AC\u03B8\u03B5\u03C4\u03B7 \u03C3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7: +simplyhtml.valignMiddle=\u03BC\u03AD\u03C3\u03BF +simplyhtml.valignTop=\u03BA\u03BF\u03C1\u03C5\u03C6\u03AE +simplyhtml.wholeWordsOnly=\u039c\u03cc\u03bd\u03bf\u03bd \u03bf\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 +split =&\u0394\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 +style =\u03A3\u03C4\u03C5\u03BB +toggle_bold_branch =\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF\u03C5 \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 +toggle_children_folded =(\u0391\u03BD\u03B1)\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03C9\u03BD +toggle_folded =\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 +toggle_italic_branch =\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03BB\u03AC\u03B3\u03B9\u03B1\u03C2 \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7\u03C2 +toggle_left_toolbar =&\u03A3\u03C5\u03BC\u03C0\u03BB\u03B7\u03C1\u03C9\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD +toggle_menubar =\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03BC\u03B5\u03BD\u03BF\u03CD +toggle_toolbar =&\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD +undefined_error =\u03a3\u03c5\u03bd\u03ad\u03b2\u03b7 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03c1\u03cc\u03c3\u03bc\u03b5\u03bd\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1! \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2. +underline =\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 +underlined =\u03A5\u03C0\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF +undo =\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 +unfold =\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 +url_error =\u0391\u03C5\u03C4\u03CC \u03C4\u03BF URL \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B1\u03BA\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF! +url_load_error =\u0391\u03B4\u03CD\u03BD\u03B1\u03C4\u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C3\u03C4\u03BF URL: +use_plain_text =\u03A7\u03C1\u03AE\u03C3\u03B7 \u03B1\u03C0\u03BB\u03BF\u03CD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 +use_rich_formatting =\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b5\u03bc\u03c0\u03bb\u03bf\u03c5\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 +user_defined_zoom =\u039a\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. +user_defined_zoom_status_bar =\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1\u03C2 \u03C3\u03C4\u03B7\u03BD \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C4\u03B9\u03BC\u03AE {0}%. +user_zoom =\u03A3\u03C5\u03BD\u03C4\u03B5\u03BB\u03B5\u03C3\u03C4\u03AE\u03C2 \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1\u03C2 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 (0.0 - 2.0): +webDocu =\u03A4\u03B5\u03BA\u03BC\u03B7\u03C1\u03AF\u03C9\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B9\u03C3\u03C4\u03CC +width =\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 +yes =\u039D\u03B1\u03B9 +zoom_in =\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7 +zoom_out =\u03A3\u03BC\u03AF\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7 + +really_convert_to_current_version2=\u039f \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03cc\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5, \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 FreeMind \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ae \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7.
\u03a4\u03bf FreeMind \u03b8\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c7\u03ac\u03c1\u03c4\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03bc\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7.
\u0391\u03c6\u03bf\u03cd \u03bf \u03c7\u03ac\u03c1\u03c4\u03b7\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03b1\u03c0\u03b5\u03af \u03ba\u03b1\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 FreeMind, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03c4\u03bf\u03bd \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03bc\u03b5 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b5\u03ba\u03b4\u03cc\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5 FreeMind.
\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03ba\u03b1\u03b9 \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03b5\u03bd\u03bd\u03bf\u03b9\u03bf\u03bb\u03bf\u03b3\u03b9\u03ba\u03bf\u03cd \u03c7\u03ac\u03c1\u03c4\u03b7; +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_en.properties freemind-0.9.0RC7/Resources_en.properties --- freemind-0.9.0RC6/Resources_en.properties 2009-09-23 20:21:48.000000000 +0100 +++ freemind-0.9.0RC7/Resources_en.properties 2010-02-27 21:44:28.000000000 +0000 @@ -1,7 +1,7 @@ about = About add=&Add -about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2009 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: +about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: antialias_all = Antialias All antialias_edges = Antialias Edges antialias_none = Antialias None @@ -93,7 +93,7 @@ italicise_branch = Italicise join_nodes = Join Nodes license = FreeMind's License -license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright \u00a9 2000-2009 Joerg Mueller and others.\nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright \u00a9 2000-2010 Joerg Mueller and others.\nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linear load = &Load locking_failed_by_open = Locking of the map $1 failed. Opening as read-only. @@ -1417,3 +1417,7 @@ # new, fc, 20.12.2008 OptionPanel.ro=Ro + +#new, fc, 6.12.2009: +really_convert_to_current_version2=The mind map you are trying to open was created with an older version of FreeMind, stored in an old format.
FreeMind is about to convert this mind map into its current format.
After the mind map is converted and saved by this version of FreeMind, it can no longer be opened in older versions of FreeMind.
Should FreeMind convert and open the mind map? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_es.properties freemind-0.9.0RC7/Resources_es.properties --- freemind-0.9.0RC6/Resources_es.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_es.properties 2010-02-27 21:47:59.000000000 +0000 @@ -1,1084 +1,1087 @@ -#! -#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) -#! encoding:ISO-8859-1 -# by jmasesch - jmases1 -about = Acerca de -about_text = Joerg Mueller's FreeMind\nAdoptando la t\u00e9cnica de Mapeo de Conceptos al dise\u00f1o de interfaces Humano-Computadora.\nDerechos Reservados (C) 2000-2004 Joerg Mueller y otros\nEste programa es software libre (GPL)\nHome: http://freemind.sourceforge.net/\nDisfr\u00fatalo!\nVersion: -antialias_all = Suavizar Todo -antialias_edges = Suavizar Bordes -antialias_none = No Suavizar -apply=Aplicar -background = Fondo -bezier = Bezier -blend_color = Mezclar Color -bold = Negrita -boldify_branch = Obscurecer Rama -branch = Rama -bubble = Burbuja -cancel = Cancelar -cannot_join_nodes_with_children = No se pueden unir nodos con hijos -center = Centrar -cloud = Nube -cloud_color = Color de Nube... -close = Cerrar -copy = Copiar -copy_single = Copia Sencilla -cut = Cortar -decrease_branch_font_size = Reducir Fuente -decrease_node_font_size = Reducir Fuente -documentation = Documentaci\u00f3n -edge = Borde -edge_color = Color del Borde... -edge_width_parent = Principal -edge_width_thin = Delgado -edit = Editar -edit_link_manually = Editar Enlace Manualmente... -edit_long_node = Editar Nodo Largo... -enter_base_url = Voy a pegar enlaces relativos. Por favor ingrese la URL base. -enter_confirms = Tecla Intro Confirma -error =Error -#export_branch = Rama... -export_branch_to_html = Rama como HTML -export_to_html = Como HTML -extension_menu = Estilo F\u00edsico -file = Archivo -file_not_found = El archivo $1 no se encontr\u00f3 -find = Buscar... -find_what = Buscar Qu\u00e9 -find_next = Buscar Siquiente -fold = Doblar -follow_link = Ir a: -font = Fuente -fork = Bifurcaci\u00f3n -help = Ayuda -html_export_based_on_headings = Exportar HTML - Basado en Encabezados -html_export_no_folding = Exportar HTML - Sin Doblar -html_export_fold_currently_folded = Exportar HTML - Doblar lo Actualmente Doblado -html_export_fold_all = Exportar HTML - Doblar Todo -# Daniel Polansky: This way of maintaining icon text -# will ultimately lead to unbearable overheads. -icon_menu = Iconos -icon_help = Pregunta -icon_messagebox_warning = Importante -icon_idea = Idea -icon_button_ok = Bien -icon_button_cancel = Mal -icon_back = Avanzar -icon_forward = Retroceder -icon_attach = Ver Aqu\u00ed -icon_ksmiletris = Estoy Feliz! -icon_clanbomber = Peligroso -icon_desktop_new = No Olvidar -icon_flag = Bandera -icon_gohome = Inicio -icon_kaddressbook = Tel\u00e9fono -icon_knotify = M\u00fasica -icon_korn = Buz\u00f3n -icon_Mail = Correo -icon_password = Llave -icon_pencil = Para Pulir -icon_stop = Detener -icon_wizard = Magia -icon_xmag = Para Discutir -icon_bell = Recordar -icon_bookmark = Excelente -icon_penguin = Linux -icon_licq = Lindo -import = Importar -import_branch = Rama... -import_explorer_favorites = Favoritos del Explorer... -import_folder_structure = Estructura de Carpetas... -import_linked_branch = Rama Enlazada -import_linked_branch_without_root = (Rama Enlazada) Sin Ra\u00edz... -increase_branch_font_size = Ampliar Fuente -increase_node_font_size = Ampliar Fuente -italic =Cursiva -italicise_branch =Poner en Cursiva -join_nodes = Unir Nodos -license = Licencia -license_text = FreeMind - Un programa para crear y visualizar Mapas Conceptuales\nCopyright (C) 2000-2008 Joerg Mueller \nVea el archivo COPYING para detalles\n\nEste programa es Software Libre; puede redistribuirlo y/o \nmodificarlo bajo los t\u00e9rminos de la licencia p\u00fablica general GNU\n(GNU General Public License)\npublicada por la Fundaci\u00f3n para el Software Libre (Free Software Foundation); ya sea version 2\nde la licencia, o (seg\u00fan tu opci\u00f3n) cualquier versi\u00f3n posterior.\n\nEste programa es distribuido con la esperanza de que sea \u00fatil,\npero SIN NINGUNA GARANTIA; sin ni siquiera la garant\u00eda impl\u00edcita de\nMERCABILIDAD o UTILIDAD para un prop\u00f3sito en particular. Vea la licencia\nGNU General Public License para mas detalles.\n\nUsted debi\u00f3 haber recibido una copia de la GNU General Public License\njunto con este programa; si no, escriba a: \nFree Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -linear = Lineal -load =Cargar -locking_failed_by_open = El bloqueo del mapa $1 fall\u00f3. Abriendolo como Solo Lectura. -locking_failed_by_save_as = El bloqueo del mapa $1 fall\u00f3. Acci\u00f3n Guardar Como abortada. -locking_old_lock_removed = El mapa $1 fu\u00e9 bloqueado por el usuario $2. El bloqueo ha sido removido por ser muy antiguo. -map_already_exists = El mapa existe actualmente. \u00bfQuiere sobre-escribirlo? -map_corrupted = Mapa corrupto. \u00bfVer detalles? -map_locked_by_open = El mapa $1 est\u00e1 siendo editado por el usuario $2. Abriendo como Solo Lectura. -map_locked_by_save_as = El mapa $1 esta siendo editado por el usuario $2. Acci\u00f3n Guardar Como abortada. -mindmap = Mapa -mindmaps = Mapas -mindmaps_desc = Mapas (*.mm) -mindmaps_filter_desc =Filtros (*.mmfilter) -mode_na = Modo no disponible -mode_status = Cambio a Modo {0} -mode_title =FreeMind - Modo {0} -modes = Modos -move_to_root = Mover a Ra\u00edz -new = Nuevo -new_child = Nuevo Nodo Hijo -new_mindmap = Nuevo Mapa -new_node = Nuevo Nodo -new_sibling_before = Nuevo Nodo Previo Hermano -new_sibling_behind = Nuevo Nodo Hermano -next_map = Siguiente Mapa -no = No -node = Nodo -node_changed_discard_changes = Ha cambiado el Nodo. \u00bfDesea descartar los cambios? -long_node_changed_submit =Ha cambiado el Nodo. \u00bfDesea salvar los cambios?* -long_node_changed_cancel =Ha cambiado el nodo. \u00bfQuiere descartar los cambios?* -node_color = Color del Nodo... -node_down = Bajar Nodo -node_up = Subir Nodo -nonboldify_branch =Sin negrita -nonitalicise_branch =Sin cursiva -normal = Normal -no_found_from = No "$1" encontrado de "$2". -no_more_found_from = No mas "$1" encontrado de "$2". -no_previous_find = No se encontro Anterior. -not_saved_for_link_error = El Mapa debe ser guardado antes de establecer un enlace con el selector de archivos -open = Abrir... -page = Configurar P\u00e1gina... -paste = Pegar -new_node_as_sibling_not_possible_for_the_root = No es posible un Nuevo Nodo Hermano en la Ra\u00edz -preferences = Preferencias -previous_map = Mapa Previo -print = Imprimir... -print_preview =Vista Previa... -quit = Salir -read_only = Solo Lectura -remove_node = Eliminar Nodo -repair_link = Reparar Enlace -repair_link_question = No se pudo cargar el Mapa enlazado. \u00bfQuiere reparar el enlace manualmente? -replace=Reemplazar -save = Guardar -save_as = Guardar Como... -save_failed = Fall\u00f3 el intento de guardar el mapa $1. -save_unsaved = Desea guardar el Mapa? : -saved = Guardado -scheme_evaluate = Evaluar! -select_favorites_folder = Seleccione la carpeta donde residen sus favoritos -select_folder_for_importing = Seleccionar carpeta a importar -set_image_by_filechooser = Imagen (Seleccionar archivo u enlace)... -set_link_by_filechooser = Enlace (Seleccionar archivo)... -set_link_by_textfield = Enlace (Campo de texto)... -sharp_bezier = Conexi\u00f3n Bezier -sharp_linear = Conexi\u00f3n lineal -split = Separar -style = Stilo -toggle_bold_branch = Cambiar Negrita -toggle_children_folded = (Des)doblar hija -toggle_folded = (Des)activar Doblez -toggle_italic_branch = (Des)activar Cursiva -toggle_menubar = (Des)activar Barra de men\u00fa -toggle_toolbar = (Des)activar Barra de herramientas -toggle_left_toolbar = (Des)activar Barra de herramientas izquierda -underline = Subrayar -unfold = Desdoblar -url_error = Esta URL est\u00e1 malformada! -url_load_error = No se puede cargar el Mapa en la URL: -width = Ancho -yes = Si -zoom_in = Acercar -zoom_out = Alejar -remove_last_icon = Eliminar \u00faltimo Icono -remove_all_icons = Eliminar Todos los Iconos -lots_of_links_warning = Vas a crear muchos enlaces en el mismo nodo. Realmente quieres crear estos enlaces? -remove_arrow_link = Eliminar Flecha Enlace -arrow_link_color = Color de la Flecha Enlace... -user_defined_zoom = Definido por el usuario. -user_defined_zoom_status_bar = Cambiar el nivel de acercamiento al nivel definido por el usuario {0}%. -# new from 14.12.2003, fc -FAQ = FAQ -webDocu =Documentaci\u00f3n Web -# new from 20.12.2003, fc -printing_settings = Escalado de impresi\u00f3n -fit_to_page = Ajustar a una p\u00e1gina -user_zoom = Factor de acercamiento de impresi\u00f3n (0.0 - 2.0): -ok = De Acuerdo -# changed from 23.1.2004, fc. -selection_method_by_click = Aprieta una vez para seleccionar -selection_method_direct = Apunta para seleccionar -#new from 30.08.2004, Dimitri -combined = Combinado -as_parent = Como Principal -# added at 2.5.2004, fc: -undo = Deshacer -redo = Rehacer -delete_child = Borrar Nodo -# added at 22.5.2004, fc: -most_recent_files = Archivos M\u00e1s Recientes -menu_view = Ver -menu_navigate = Navegar -menu_format = Formato -menu_extras = Herramientas -menu_insert = Insertar -menu_attributes =Atributos -edge_style = Estilo del Borde -# Beware: "Edge Width " and "Edge Style " must end with space. -edge_width = Ancho del Borde -menu_file_import = Importar -menu_file_export = Exportar -edit_node = Editar Nodo -# added at 5.6.2004, fc: -node_background_color = Color de Fondo del Nodo... -# added at 25.8.2004, fc: -choose_edge_color = Elegir Color del Borde -# added at 27.8.2004, fc: -underlined = Subrayado -font_size = Tama\u00f1o de Fuente -font_family = Familia de la Fuente -# add at 16.9.2004, fc: -import_linked_branch_no_link = El nodo seleccionado no tiene enlaces de donde importar. -# added at 09.10.2004 -add_link = Agregar Enlace Gr\u00e1fico -less_than_two_selected_nodes = Tiene que seleccionar cuando menos dos nodos para poder crear enlaces. -choose_node_background_color = Elegir Color de Fondo del Nodo: -choose_node_color = Elegir Color del Nodo: -choose_background_color = Elegir Color de Fondo: -choose_cloud_color = Elegir Color de Nube: -change_arrows_in_arrow_link = Cambiar Flechas del Enlace de Flecha -add_local_link = Agregar Enlace Local -link_not_available_any_more = El enlace ya no es valido. El nodo fue borrado. -file_already_exists = El archivo {0} existe actualmente. \u00bfQuiere sobre-escribirlo? -error_creating_directory = No se puede crear el directorio para exportar. -export_svg_text = Gr\u00e1fica de Vectores Escalables (SVG) -export_pdf_text = Formato de Documentos Portables (PDF) -goto_link_node_action = Ir al Enlace -#fc, 14.11.2004: -undefined_error = Ocurri\u00f3 un error inesperado. Por favor reportelo a los desarrolladores de Freemind. -cannot_add_parent_to_root = El nodo Ra\u00edz no puede ser agregado a un nuevo nodo Principal. -cannot_delete_root =El nodo raiz no puede ser borrado o cortado. -cannot_add_parent_diff_parents = Todos los nodos deben tener el mismo nodo principal para poder utilizar esta funci\u00f3n. -no_format_copy_before_format_paste = No puede pegar un formato a menos que haya copiado uno. -#fc, 15.11.2004: -accessories/plugins/AutomaticLayout.properties_documentation = Arregla la presentaci\u00f3n del mapa.
El primer nivel es negro, el segundo azul, etc. -accessories/plugins/AutomaticLayout.properties_name = Presentaci\u00f3n Automatica -accessories/plugins/BlinkingNodeHook.properties_documentation = Esto hace que el nodo parpadee. Pero tenga cuidado. No lo utilice en muchos nodos,y no lo haga junto con otros formatos automaticos en el mismo nodo -accessories/plugins/BlinkingNodeHook.properties_name = Nodo Parpadeante -accessories/plugins/CreationModificationPlugin.properties_documentation=Esta funci\u00f3n sigue la pista del tiempo de creaci\u00f3n y modificaci\u00f3n de nodos. -accessories/plugins/CreationModificationPlugin.properties_name = Mostrar Tiempo de Modificaciones -accessories/plugins/ExportToImage_PNG.properties_documentation = Exporta el mapa en el doblez actual a formato de imagen PNG. -accessories/plugins/ExportToImage_PNG.properties_name = Como PNG... -accessories/plugins/ExportToImage_JPEG.properties_documentation = Exporta el mapa en el doblez actual a formato de imagen JPEG. -accessories/plugins/ExportToImage_JPEG.properties_name = Como JPEG... -accessories/plugins/ExportWithXSLT.properties_documentation = Este es un m\u00e9todo uniforme de exportaci\u00f3n utilizando scripts XSLT. -accessories/plugins/ExportWithXSLT.properties_name = Utilizando XSLT... -accessories/plugins/ExportWithXSLT_HTML.properties_name = Como XHTML (versi\u00f3n JavaScript)... -accessories/plugins/ExportWithXSLT_HTML3.properties_name = Como XHTML (versi\u00f3n mapa Seleccionable)... -accessories/plugins/FitToPage.properties_documentation = Ajusta el nivel de acercamiento de manera tal que todo el mapa pueda verse en la ventana actual. -accessories/plugins/FitToPage.properties_name = Acercamiento Todo en Una Pagina -accessories/plugins/FormatCopy.properties_documentation = Copia el formato de un nodo. -accessories/plugins/FormatCopy.properties_name = Copiar Formato -accessories/plugins/FormatPaste.properties_documentation = Pega el formato de un nodo. -accessories/plugins/FormatPaste.properties_name = Pegar Formato -accessories/plugins/FormularEditor.properties_documentation = Asocia un editor de f\u00f3rmulas simple a la nota actual. -accessories/plugins/FormularEditor.properties_name = Editor de F\u00f3rmulas -accessories/plugins/IconSelectionPlugin.properties_documentation = Aqu\u00ed puede seleccionar un icono utilizando una subventana. -accessories/plugins/IconSelectionPlugin.properties_name = Seleccionar Icono... -accessories/plugins/NewParentNode.properties_documentation = Todos los seleccionados son enviados a un nuevo nodo Principal. -accessories/plugins/NewParentNode.properties_name = Nuevo Nodo Principal -accessories/plugins/NodeNote.properties_documentation = Asocia un editor de notas simple a la nota actual. -accessories/plugins/NodeNote.properties_name = Nota -accessories/plugins/PMCalculation.properties_documentation = Calcula el esfuerzo para tareas diferentes. -accessories/plugins/PMCalculation.properties_name = PMCalculation -accessories/plugins/RevisionPlugin.properties_documentation = Marca el fondo de cada nodo cambiado. -accessories/plugins/RevisionPlugin.properties_name = Muestra Revisiones en Amarillo -accessories/plugins/SplitNode.properties_documentation = El Nodo es dividido* -accessories/plugins/SplitNode.properties_name =Dividir el Nodo -accessories/plugins/UnfoldAll.properties_documentation = Desdobla los nodos seleccionados y todos sus hijos. -accessories/plugins/UnfoldAll.properties_name = Desdoblar Todos -accessories/plugins/FoldAll.properties_documentation = Dobla los nodos seleccionados y todos sus hijos. -accessories/plugins/FoldAll.properties_name = Doblar Todos -accessories/plugins/UnfoldOneLevel.properties_documentation = Desdobla un nivel de nodos seleccionados. -accessories/plugins/UnfoldOneLevel.properties_name = Desdobla Un Nivel -accessories/plugins/FoldOneLevel.properties_documentation = Dobla un nivel de nodos seleccionados. -accessories/plugins/FoldOneLevel.properties_name = Dobla Un Nivel -plugins/FreemindHelp.xml_documentation = Ayuda Extendida de FreeMind -plugins/FreemindHelp.xml_name = Ayuda En-Linea... -plugins/ExportPdf.xml_documentation = Exportar a PDF -plugins/ExportPdf.xml_name = Como PDF... -plugins/ExportSvg.xml_documentation = Exportar a SVG -plugins/ExportSvg.xml_name = Como SVG... - -# fc, 28.11.2004: -cannot_move_to_child = No se puede mover un nodo dentro de uno de sus hijos. -# fc, 14.12.2004: -accessories/plugins/EnterPassword.properties_name = (Des)activar cifrado -accessories/plugins/EncryptNode.properties_name = Insertar Nodo Cifrado... -accessories/plugins/EncryptNode.properties_documentation = Inserta un nuevo nodo que esta almacenado de manera cifrada. -accessories/plugins/EncryptNode.properties_0 = Elija contrase\u00f1a para cifrar nodo -accessories/plugins/EncryptNode.properties_1 = Las contrase\u00f1as no son iguales o es muy corta. -accessories/plugins/EncryptNode.properties_2 = Ingrese Contrase\u00f1a: -accessories/plugins/EncryptNode.properties_3 = Reingrese Contrase\u00f1a: -accessories/plugins/EncryptNode.properties_4 = Enter your password. -accessories/plugins/EncryptNode.properties_5 = Recuerde que la calidad del cifrado
depende casi completamente de la calidad de su contrase\u00f1a. -accessories/plugins/EncryptNode.properties_6 = De Acuerdo -accessories/plugins/EncryptNode.properties_7 = Cancelar -accessories/plugins/EncryptNode.properties_wrong_password = La contrase\u00f1a no es correcta. -accessories/plugins/NewEncryptedMap.properties_documentation = Crear un nuevo mapa cifrado -accessories/plugins/NewEncryptedMap.properties_name = Crear Mapa Cifrado... -accessories/plugins/EncryptNode.properties_select_me = Seleccioneme para continuar! -accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Usted solo puede (des)activar el cifrado si el nodo ha sido cifrado anteriormente. Por favor inserte un nodo cifrado utilizando el men\u00fa de herramientas. -# fc, 2.2.05: -selection_method_delayed=Selecci\u00f3n Autom\u00e1tica Retardada -# fc, 4.2.05: -plugins/TimeManagement.xml_documentation=Muestra el m\u00f3dulo calendario por Kai Toedter. -plugins/TimeManagement.xml_name= Mostrar Calendario... -plugins/TimeManagement.xml_appendButton= Agregar Fecha A Los Nodos Seleccionados -plugins/TimeManagement.xml_reminderButton= Recordar En Esta Fecha -plugins/TimeManagement.xml_cancelButton=Cancelar -plugins/TimeManagementReminder.xml_documentation=Gancho Interno para calendarizar tareas de re-envio. -plugins/TimeManagementReminder.xml_name=Gancho Interno para calendarizar tareas de re-envio. -plugins/TimeManagement.xml_reminderNode_tooltip=Recordatorio especificado en {0,date} {0,time}. -plugins/TimeManagement.xml_reminderNode_showNode=El tiempo ha transcurrido para el nodo " {0} ". Quiere postponerlo por diez minutos? -plugins/TimeManagement.xml_reminderNode_onlyOneDate=Por el momento solu puede haber un recordatorio por nodo.
El recordatorio actual esta ajustado a {0,date} {0,time}, su opci\u00f3n fu\u00e9 {1,date} {1,time}.

Desea cambiar el recordatorio del nodo (SI)
o desea mantener el anterior (NO)? -plugins/TimeManagement.xml_removeReminderButton = Eliminar Recordatorio -plugins/TimeManagement.xml_removeReminderButton_tooltip = Eliminar todos los recordatorios asociados con los nodos seleccionados. -plugins/TimeManagement.xml_minute= Minuto: -plugins/TimeManagement.xml_hour= Hora: -plugins/TimeManagement.xml_WindowTitle=Administraci\u00f3n de Tiempo -plugins/latex/LatexNodeHook.properties_documentation = F\u00f3rmula Latex -plugins/latex/LatexNodeHook.properties_name =&Latex -plugins/latex/LatexNodeHook.editorTitle =Editor, cierra para aceptar -# fc, 18.2.2005: -accessories/plugins/HierarchicalIcons.properties_documentation=Si uno de los hijos tiene un \u00edcono, lo mostrar\u00e9 en un formato peque\u00f1o. -accessories/plugins/HierarchicalIcons.properties_name=Mostrar Iconos Jerarquicamente -# fc, 1.3.2005: -icon_full-1 = Prioridad 1 -icon_full-2 = Prioridad 2 -icon_full-3 = Prioridad 3 -icon_full-4 = Prioridad 4 -icon_full-5 = Prioridad 5 -icon_full-6 = Prioridad 6 -icon_full-7 = Prioridad 7 -# fc, 11.3.2005: -RevertAction=Revertir -# the prefix for the reconstructed map (revert + undo). -freemind_reverted=Freemind_Revertido_ -plugins/TimeManagement.xml_todayButton=Hoy -plugins/TimeList.xml_documentation=Muestra todos los tiempos agendados y los correspondientes nodos.* -plugins/TimeList.xml_name=Mostrar la Lista del Planificador de Tiempo... -remove_node_background_color =Borra Color de Fondo del Nodo -plugins/TimeList.xml_Modified=Modificado -plugins/TimeList.xml_Created=Creado -plugins/TimeList.xml_Date=Fecha -plugins/TimeList.xml_Text=Texto -plugins/TimeList.xml_Icons=Iconos -select_branch=Selecciona Rama Visible -select_all=Selecciona Todos los visibles -change_link_arrows=Cambia_flechas_de_enlace -reset_node_position=Reinicia Posici\u00f3n -plugins/RemoveReminder.xml_documentation=Borra un recordatorio del nodo. -plugins/RemoveReminder.xml_name=Borra Recordatorio -plugins/TimeManagement.xml_reminderButton_tooltip=Cuando se presiona, un temporizador es activado en la fecha estipulada. Despu\u00e9s, una ventana llama su atenci\u00f3n.
Si usted cierra el mapa, los temporizadores ser\u00e1n reactivados la pr\u00f3xima vez que el mapa sea abierto. -filter_toolbar=Filtro -filter_dialog=Compositor de Filtro -filter_no_filtering=Sin Filtrado -filter_selected_node_view=Nodos Seleccionados Actualmente -filter_conditions =Filtros -filter_edit=Editar -filter_edit_description=Editar Lista de Filtros -filter_unfold_ancestors=Desplegar Nodos Filtrados -filter_icon=Icono -filter_node=Texto del Nodo -filter_exist=Existe -filter_does_not_exist=No Existe -filter_contains=Contiene -filter_is_equal_to=Igual a -filter_is_not_equal_to=No igual a -filter_ignore_case=Ignorar May\u00fascula/Min\u00fascula -filter_enter_value=Entrar Valor -filter_add=A\u00f1adir -filter_delete=Borrar -filter_select=Seleccionar -filter_not=No -filter_and=Y -filter_or=O -filter_show_ancestors=Mostrar Ancestros -filter_show_descendants=Mostrar Descendientes -attributes_all=Todos los Atributos -attributes_attribute=Atributos -attributes_close=Cerrar -attribute_delete=Borrar todos los Valores -attribute_delete_value=Borrar este Valor -attributes_edit=Editar -attributes_edit_in_place=Editar Atributos -attributes_edit_tooltip=Editar Conjunto -attribute_font_size_tooltip=Tama\u00f1o de Fuente del Atributo -attributes_dialog=Gestor Atributos... -attributes_import=Importar -attributes_import_tooltip=Importar atributos de otros mapas cargados -attributes_assign_dialog=Asignar Atributos... -attributes_visible=Seleccionado Visible -attributes_visible_tooltip=Seleccionado Visible -attributes_refresh=Refresco -attribute_replace=Reemplazar con -attributes_restriction=Conjunto Restringido -attributes_restricted_attributes_tooltip=Restringir Conjunto de Atributos -attributes_restricted_values_tooltip=Restringir Conjunto de Valores para Atributo actual -attributes_select_all=Todos -attributes_select_all_tooltip=Seleccionar/Deseleccionar todos -attributes_for_selected=Nodos Seleccionados -attributes_for_visible=Todos los Nodos Visibles -attributes_deselect_all=Nada -attribute_list_box_label_text=Valores Existentes -attributes_popup_edit=Editar -attributes_popup_optimal_width=Anchura \u00d3ptima -attributes_popup_hide=Ocultar -attributes_popup_new=Nuevo Atributo -attributes_popup_delete=Borrar -attributes_popup_up=Arriba -attributes_popup_down=Abajo -attributes_show=Mostrar -attributes_show_all =Mostrar todos los atributos -attributes_show_selected =Mostrar Atributos Seleccionados -attributes_hide_all =Esconder Todos los Atributos -attribute_top=Todos los Atributos conocidos para los Mapas cargados -attributes_skip_root=Evitar Nodo Raiz -attributes_no_import_candidates_found=Ningun atributo nuevo encontrado -attributes_adding_empty_attribute_error=No se puede usar la cadena vac\u00eda como nombre de atributo -property_dialog=Preferencias ... -OptionPanel.automatic=Autom\u00e1tico -OptionPanel.de=De -OptionPanel.dk=Dk -OptionPanel.en=En -OptionPanel.es=Es -OptionPanel.fr=Fr -OptionPanel.gl=Gl -OptionPanel.hu=Hu -OptionPanel.it=It -OptionPanel.ja=Ja -OptionPanel.ko=Ko -OptionPanel.nl=Nl -OptionPanel.pl=Pl -OptionPanel.pt_BR=Pt BR -OptionPanel.pt_PT=Pt PT -OptionPanel.ru=Ru -OptionPanel.sl=Sl -OptionPanel.zh_TW=Zh -OptionPanel.zh_CN=Zh CN -OptionPanel.fork=Bifurcaci\u00f3n -OptionPanel.bubble=Burbuja -OptionPanel.as_parent=Como el Padre -OptionPanel.combined=Combinar -OptionPanel.bezier=Beizer -OptionPanel.linear=Lineal -OptionPanel.default=Por Defecto -OptionPanel.metal=Metal -OptionPanel.windows=Windows -OptionPanel.motif=Motif -OptionPanel.gtk=Gtk -OptionPanel.nothing=Nada -OptionPanel.relative=Relativo -OptionPanel.absolute=Absoluto -OptionPanel.first=Primero -OptionPanel.last=\u00daltimo -OptionPanel.selection_method_direct=Directo -OptionPanel.selection_method_delayed=Retrasado -OptionPanel.selection_method_by_click=Por Click -OptionPanel.html_export_no_folding=No Doblado -OptionPanel.html_export_fold_currently_folded=Doblar Actualmente Doblados -OptionPanel.html_export_fold_all=Doblar Todos -OptionPanel.html_export_based_on_headings=Basado en Cabeceras -OptionPanel.Environment=Entorno -OptionPanel.Files=Ficheros -OptionPanel.language=Idioma -OptionPanel.language.tooltip= Este es el diioma que deber\u00eda ser usado en el programa. 'autom\u00e1tico' intenta cargar el lenguaje actual del usuario. -OptionPanel.experimental_file_locking_on=Bloqueo de Ficheros Experimental -OptionPanel.experimental_file_locking_on.tooltip= Caracter\u00edstica Experimental -OptionPanel.draganddrop=Arrastrar y Soltar -OptionPanel.draganddrop.tooltip=si dnd est\u00e1 habilitado. -OptionPanel.userproperties=Propiedades de usuario -OptionPanel.patternsfile=Fichero de Patrones -OptionPanel.docmapurl_since_version_0_7_0=Docmapurl -OptionPanel.browsemode_initial_map=Mapa Inicial del ModoNavegaci\u00f3n -OptionPanel.browsemode_initial_map.tooltip=La URL del mapa que es cargado cuando el ModoNavegaci\u00f3n se inicia -OptionPanel.last_opened_list_length=Longitud de la Ultima Lista Abierta -OptionPanel.time_for_automatic_save=Tiempo para el Salvado Autom\u00e1tico -OptionPanel.time_for_automatic_save.tooltip= tiempo entre dos salvados autom\u00e1ticos consecutivos (en msec): Para deshabilitar el salvado autom\u00e1tico fijar este n\u00famero a 2000000000. -OptionPanel.delete_automatic_saves_at_exit=Borrar Salvados Autom\u00e1ticos al Salir -OptionPanel.delete_automatic_saves_at_exit.tooltip= Si los ficheros deben ser borrados autom\u00e1ticamente en un apagado normal de Freemind, fijar la siguiente variable a 'true' -OptionPanel.number_of_different_files_for_automatic_save=Numero de Diferentes Ficheros para Salvado Autom\u00e1tico -OptionPanel.number_of_different_files_for_automatic_save.tooltip= n\u00famero n de diferentes ficheros en los que almacenar los mapas. El primer salvado autom\u00e1tico se hace en el primer fichero, y de esta manera hasta el salvado n+1 que de forma c\u00edclica se almacena en el primer fichero -OptionPanel.path_to_automatic_saves=Directorio para Salvados Autom\u00e1ticos -OptionPanel.path_to_automatic_saves.tooltip= para cambiar el directorio por defecto, 'java.io.tmpdir' en java, introducir un directorio aqu\u00ed; otras posibilidades:* freemind_home indica que el directorio donde se apunta es la ubicaci\u00f3n de auto.properties. * default apunta a java.io.tmpdir -OptionPanel.Defaults=Por Defecto -OptionPanel.standardnodestyle=Estilo de Nodo Est\u00e1ndard -OptionPanel.standardnodestyle.tooltip=El nuevo estilo de nodo por defecto.'fork','bubble' 'as_parent' and 'combined' est\u00e1n soportados -OptionPanel.standardrootnodestyle=Estilo Est\u00e1ndar del Nodo Raiz -OptionPanel.standardrootnodestyle.tooltip=El estilo del nodo raiz si otros no est\u00e1n definidos.'fork','bubble' 'as_parent' and 'combined' est\u00e1n soportados -OptionPanel.standardnodetextcolor=Color de Nodo Est\u00e1ndar -OptionPanel.standardnodetextcolor.tooltip=El color del nodo est\u00e1ndar. En notaci\u00f3n html (#RRGGBB in valores hex) -OptionPanel.standardselectednodecolor=Color de Nodo Seleccionado -OptionPanel.standardselectednodecolor.tooltip=El color est\u00e1ndar del nodo si seleccionado. En notaci\u00f3n html (#RRGGBB en valores hex) -OptionPanel.standardselectednoderectanglecolor=Color de Rect\u00e1ngulo de Selecci\u00f3n -OptionPanel.standardselectednoderectanglecolor.tooltip=El color est\u00e1ndar del rect\u00e1ngula que marca los nodos seleccionados. En notaci\u00f3n html (#RRGGBB en valores hex) -selection_as_rectangle=Muestra Selecci\u00f3n como Rectangulo on/off -OptionPanel.standarddrawrectangleforselection=Mostrar Selecci\u00f3n como Rect\u00e1ngulo -OptionPanel.standarddrawrectangleforselection.tooltip=Marcar los nodos seleccionados mediante un rect\u00e1ngulo. -OptionPanel.standardedgecolor=Color Est\u00e1ndar del Borde -OptionPanel.standardedgecolor.tooltip=El color est\u00e1ndar del borde en notaci\u00f3n html -OptionPanel.standardlinkcolor=Color Est\u00e1ndar del Enlace -OptionPanel.standardlinkcolor.tooltip=El color est\u00e1ndar del enlace en notaci\u00f3n html -OptionPanel.standardbackgroundcolor=Color de Fondo Est\u00e1ndar -OptionPanel.standardbackgroundcolor.tooltip=El color est\u00e1ndar de fondo en notaci\u00f3n html -OptionPanel.printonwhitebackground=Fondo Blanco para impresi\u00f3n -OptionPanel.printonwhitebackground.tooltip=Siempre usar fondo blanco para impresi\u00f3n -OptionPanel.standardcloudcolor=Color Est\u00e1ndar de Nube -OptionPanel.standardcloudcolor.tooltip=El color de nuve est\u00e1ndar en notaci\u00f3n html -OptionPanel.defaultfont=Fuente por Defecto -OptionPanel.defaultfont.tooltip=Fuente del nodo por defecto. Esto s\u00f3lo ser\u00e1 v\u00e1lido si la fuente (TrueTypeFont) est\u00e1 disponible en el sistema -OptionPanel.defaultfontstyle=Estilo de Fuente por Defecto -OptionPanel.defaultfontsize=Tama\u00f1o de Fuente por Defecto -OptionPanel.max_node_width=Anchura M\u00e1xima de Nodo -OptionPanel.max_node_width.tooltip=Anchura m\u00e1xima del nodo por defecto en pixels -OptionPanel.standardedgestyle=Estilo de Borde Est\u00e1ndar -OptionPanel.standardedgestyle.tooltip=El estilo de borde est\u00e1ndar. Est\u00e1n soportados 'lineal' y 'bezier' . -OptionPanel.standardcloudestyle=Estilo Est\u00e1ndar de Nubes -OptionPanel.standardcloudestyle.tooltip=El estilo est\u00e1ndar de nubes. Actualmente s\u00f3lo est\u00e1 soportado 'bezier' -OptionPanel.standardlinkestyle=Estilo de Enlace Est\u00e1ndar -OptionPanel.standardlinkestyle.tooltip=El estilo est\u00e1ndar de enlace. Actualmente s\u00f3lo est\u00e1 soportado 'bezier' -OptionPanel.Appearance=Apariencia -OptionPanel.lookandfeel=Look and Feel -OptionPanel.lookandfeel.tooltip= El Look&Feel a utilizar. Est\u00e1n soportados \u201cmetal\u201d, 'windows', 'motif', \u201cgtk\u201d, \u201cmac\u201d est\u00e1 disponible solamente en MacOS. Por defecto significa que se usa el look and feel por defecto. Si desea utilizar su propio L&F, incorporar por favor el nombre de la clase aqu\u00ed y asegurase que los archivos jar correspondientes est\u00e1n cargados. Si hay problemas con el L&F, entonces aqu\u00ed elegir 'nada' . Funciona con los applets -OptionPanel.mapxsize=Tama\u00f1o de Abcisas (X) -OptionPanel.mapxsize.tooltip=Tama\u00f1o inicial de cualquier mapa -OptionPanel.mapysize=Tama\u00f1o en Ordenadas (Y) -OptionPanel.links=Enlaces -OptionPanel.links.tooltip=Fijar los Enlaces o bier relativos o bien absolutos -OptionPanel.el__buttons_position=Posici\u00f3n de Botones -OptionPanel.el__buttons_position.tooltip= arriba / abajo -OptionPanel.el__position_window_below_node=Posicionar Ventana Debajo del Nodo -OptionPanel.el__min_default_window_height=Altura M\u00edn de Ventana por Defecto -OptionPanel.el__max_default_window_height=Altura Max de Ventana por Defecto -OptionPanel.el__min_default_window_width=Anchura M\u00ednima de Ventana por Defecto -OptionPanel.el__max_default_window_width=Anchura Max. de Ventana por Defecto -OptionPanel.el__enter_confirms_by_default=Intro Confirma Por Defecto -OptionPanel.el__show_icon_for_attributes=Mostrar el Icono para Atributos -OptionPanel.Keystrokes=Pulsaciones de teclado -OptionPanel.keystroke_newMap=NuevoMapa -OptionPanel.keystroke_open=Abrir -OptionPanel.keystroke_save=Salvar -OptionPanel.keystroke_saveAs=SalvarComo -OptionPanel.keystroke_print=Imprimir -OptionPanel.keystroke_close=Cerrar -OptionPanel.keystroke_quit=Salir -OptionPanel.keystroke_export_to_html=Exportar a Html -OptionPanel.keystroke_export_branch_to_html=Exportar Rama a Html -OptionPanel.keystroke_open_first_in_history=Abrir el Primero del Historial -OptionPanel.keystroke_previousMap=MapaPrevio -OptionPanel.keystroke_nextMap=SiguienteMapa -OptionPanel.keystroke_mode_MindMap=Modo MindMap -OptionPanel.keystroke_mode_Browse=Modo Navegaci\u00f3n -OptionPanel.keystroke_mode_File=Modo Fichero -OptionPanel.keystroke_node_toggle_italic=Nodo - Conmutar Cursiva -OptionPanel.keystroke_node_toggle_boldface=Nodo - Conmutar Negrita -OptionPanel.keystroke_node_toggle_underlined=Nodo - Conmutar Subrayado -OptionPanel.keystroke_node_toggle_cloud=Nodo - Conmutar Nube -OptionPanel.keystroke_undo=Deshacer -OptionPanel.keystroke_redo=Rehacer -OptionPanel.keystroke_delete_child=Borrar Hijo -OptionPanel.keystroke_select_all=Seleccionar Todos -OptionPanel.keystroke_select_branch=Seleccionar Rama -OptionPanel.keystroke_zoom_out=Ampliar Zoom -OptionPanel.keystroke_zoom_in=Reducir Zoom -OptionPanel.keystroke_cut=Cortar -OptionPanel.keystroke_copy=Copiar -OptionPanel.keystroke_copy_single=Copia Simple -OptionPanel.keystroke_paste=Pegar -OptionPanel.keystroke_remove=Borrar -OptionPanel.keystroke_add_arrow_link_action=A\u00f1adir Acci\u00f3n a la Flecha de Enlace -OptionPanel.keystroke_add_local_link_action=A\u00f1adir Acci\u00f3n al Enlace Local -OptionPanel.keystroke_moveToRoot=MoverARaiz -OptionPanel.keystroke_move_up=Mover Arriba -OptionPanel.keystroke_move_down=Mover Abajo -OptionPanel.keystroke_move_left=Mover Izquierda -OptionPanel.keystroke_move_right=Mover Derecha -OptionPanel.keystroke_follow_link=Seguir Enlace -OptionPanel.keystroke_add=A\u00f1adir -OptionPanel.keystroke_add_child=A\u00f1adir Hijo -OptionPanel.keystroke_add_child_mac=A\u00f1adir Hijo Mac -OptionPanel.keystroke_add_sibling_before=A\u00f1adir Hermano Antes -OptionPanel.keystroke_edit=Editar -OptionPanel.keystroke_edit_long_node=Editar Nodo Largo -OptionPanel.keystroke_join_nodes=Unir Nodos -OptionPanel.keystroke_toggle_folded=Conmutar Doblado -OptionPanel.keystroke_toggle_children_folded=Conmutar Hijos Doblados -OptionPanel.keystroke_set_link_by_filechooser=Establecer Enlace mediante Selector de Ficheros -OptionPanel.keystroke_set_link_by_textfield=Establecer Enlace Mediante Campo de Texto -OptionPanel.keystroke_set_image_by_filechooser=Establecer Imagen Mediante Selector de Ficheros -OptionPanel.keystroke_node_up=Nodo Arriba -OptionPanel.keystroke_node_down=Nodo Abajo -OptionPanel.keystroke_node_increase_font_size=Nodo Incrementar Tama\u00f1o Fuente -OptionPanel.keystroke_node_decrease_font_size=Nodo Decrementar Tama\u00f1o Fuente -OptionPanel.keystroke_export_branch=Exportar Rama -OptionPanel.keystroke_node_color=Color de Nodo -OptionPanel.keystroke_node_color_blend=Mezcla de Color del Nodo -OptionPanel.keystroke_edge_color=Color del Borde -OptionPanel.keystroke_find=Buscar -OptionPanel.keystroke_find_next=Buscar Siguiente -OptionPanel.keystroke_apply_pattern_1=Aplicar Patr\u00f3n 1 -OptionPanel.keystroke_apply_pattern_2=Aplicar Patr\u00f3n 2 -OptionPanel.keystroke_apply_pattern_3=Aplicar Patr\u00f3n 3 -OptionPanel.keystroke_apply_pattern_4=Aplicar Patr\u00f3n 4 -OptionPanel.keystroke_apply_pattern_5=Aplicar Patr\u00f3n 5 -OptionPanel.keystroke_apply_pattern_6=Aplicar Patr\u00f3n 6 -OptionPanel.keystroke_apply_pattern_7=Aplicar Patr\u00f3n 7 -OptionPanel.keystroke_apply_pattern_8=Aplicar Patr\u00f3n 8 -OptionPanel.keystroke_apply_pattern_9=Aplicar Patr\u00f3n 9 -OptionPanel.keystroke_apply_pattern_10=Aplicar Patr\u00f3n 10 -OptionPanel.keystroke_apply_pattern_11=Aplicar Patr\u00f3n 11 -OptionPanel.keystroke_apply_pattern_12=Aplicar Patr\u00f3n 12 -OptionPanel.keystroke_apply_pattern_13=Aplicar Patr\u00f3n 13 -OptionPanel.keystroke_apply_pattern_14=Aplicar Patr\u00f3n 14 -OptionPanel.keystroke_apply_pattern_15=Aplicar Patr\u00f3n 15 -OptionPanel.keystroke_apply_pattern_16=Aplicar Patr\u00f3n 16 -OptionPanel.keystroke_apply_pattern_17=Aplicar Patr\u00f3n 17 -OptionPanel.keystroke_apply_pattern_18=Aplicar Patr\u00f3n 18 -OptionPanel.Behaviour=Comportamiento -OptionPanel.placenewbranches=Ubicar Ramas Nuevas -OptionPanel.placenewbranches.tooltip=Donde ubicar nuevas ramas. Valores v\u00e1lidos: 'Primero' y '\u00faltimo' -OptionPanel.disable_cursor_move_paper=Desactivar Papel de Movimiento de Cursor -OptionPanel.disable_cursor_move_paper.tooltip=No mostrar 'mover' cursor durante arrastre de papel -OptionPanel.enable_leaves_folding=Activa Doblado de Hojas -OptionPanel.enable_leaves_folding.tooltip=Activa doblado de hojas == cambiando bubble/fork para acci\u00f3n de doblado (De todas maneras si falso, siempre es posible utilizar el estilo del nodo para cambiarlo -OptionPanel.foldingsymbolwidth=Anchura del Simbolo de Doblado -OptionPanel.foldingsymbolwidth.tooltip=Anchura del circulo de marcaje de doblado -OptionPanel.disable_key_type=Desactivar Teclear -OptionPanel.disable_key_type.tooltip=Teclear: si activado entra en edici\u00f3n de nodo -OptionPanel.key_type_adds_new=Teclear A\u00f1ade Nuevo -OptionPanel.key_type_adds_new.tooltip=Teclear: sobrescribe contenido (false) / crea nuevo hermano (true) (requiere: desactivar_teclear = falso) -OptionPanel.selection_method=M\u00e9todo de Selecci\u00f3n -OptionPanel.selection_method.tooltip= con el siguiente conmutador puede activar/desactivar el esquema de selecci\u00f3n retardado. Opciones Autom\u00e1ticas. De cualquier manera No modificar estas mientras sean salvadas en auto.properties. -OptionPanel.time_for_delayed_selection=Tiempo para la Selecci\u00f3n Retrasada -OptionPanel.time_for_delayed_selection.tooltip= Tiempo de retardo de Selecci\u00f3n de nodos cuando el rat\u00f3n est\u00e1 encima (en msec). Cambiar este valor a 1 si quiere selecci\u00f3n directa cuando el rat\u00f3n est\u00e9 encima. -OptionPanel.HTML=HTML -OptionPanel.default_browser_command_windows_nt=Comando de Navegador por defecto. Windows Nt -OptionPanel.default_browser_command_windows_nt.tooltip=Para Windows (los "" signos son necesarios debido a los enlaces, que tienen "=" en su URL). -OptionPanel.default_browser_command_windows_9x=Comando de Navegador por defecto. Windows 9x -OptionPanel.default_browser_command_windows_9x.tooltip=Para Windows (los "" signos son necesarios debido a los enlaces, que tienen "=" en su URL). -OptionPanel.default_browser_command_other_os=Comando de Navegador por defecto. Otros SO -OptionPanel.default_browser_command_other_os.tooltip= Esto es t\u00edpicamente Linux: -OptionPanel.default_browser_command_mac=Comando de Navegador por defecto. Mac -OptionPanel.default_browser_command_mac.tooltip= y MAC: (gracias a to Nick!) -OptionPanel.html_export_folding=Carpeta de Exportaci\u00f3n Html -OptionPanel.export_icons_in_html=Exportar Iconos en Html -OptionPanel.export_icons_in_html.tooltip= Indica si el HTML exportado de FreeMind deber\u00eda contener iconos. El problema con iconos es que bastante amenudo los enlaces a iconos no pueden ser encontrados en el HTML exportado. -OptionPanel.Cancel=Cancel -OptionPanel.OK=Salvar -option_changes_may_require_restart=Para ver los efectos de las propiedades cambiadas, probablemente deber\u00e1 reiniciar FreeMind. -GrabKeyDialog.grab-key.title=Introducir nueva clave -GrabKeyDialog.grab-key.clear=Limpiar -GrabKeyDialog.grab-key.assigned-to.none=Actualmente sin asignar -GrabKeyDialog.grab-key.assigned-to=Asignado a -GrabKeyDialog.common.ok=OK -GrabKeyDialog.grab-key.remove=Borrar -GrabKeyDialog.common.cancel=Cancelar -GrabKeyDialog.grab-key.remove-ask=\u00bfEst\u00e1 seguro que quiere borrar esta pulsaci\u00f3n de teclado? -OptionPanel.separator.language=Idioma -OptionPanel.separator.files=Ficheros -OptionPanel.separator.automatic_save=Salvado Autom\u00e1tico -OptionPanel.separator.default_styles=Estilos por Defecto -OptionPanel.separator.default_colors=Colores por Defecto -OptionPanel.separator.selection_colors=Colores de Selecci\u00f3n -OptionPanel.separator.default_fonts=Fuentes por Defecto -OptionPanel.separator.other_defaults=Otros Par\u00e1metros por Defecto -OptionPanel.separator.look_and_feel=Look and Feel -OptionPanel.separator.anti_alias=Antialias -OptionPanel.separator.initial_map_size=Tama\u00f1o de Mapa Inicial -OptionPanel.separator.hyperlink_types=Tipos de Hyperenlaces -OptionPanel.separator.edit_long_node_window=Ventana de Edici\u00f3n de Nodo Largo -OptionPanel.separator.commands_for_the_program=Instrucciones para el programa -OptionPanel.separator.node_editing_commands=Instrucciones de Edici\u00f3n de Nodo -OptionPanel.separator.node_navigation_commands=Instrucciones de Navegaci\u00f3n de Nodo -OptionPanel.separator.new_node_commands=Instrucciones de Nuevo Nodo -OptionPanel.separator.patterns=Patrones -OptionPanel.separator.behaviour=Comportamiento -OptionPanel.separator.key_typing=Teclear -OptionPanel.separator.selection_method=M\u00e9todo de Selecci\u00f3n -OptionPanel.separator.browser=Navegador -OptionPanel.separator.html_export=Exportaci\u00f3n de Html -OptionPanel.separator.attributes=Atributos -OptionPanel.separator.icons=Iconos en "Seleccionar Icono..." -OptionPanel.keystroke_edit_attributes=Editar atributos -OptionPanel.keystroke_show_all_attributes=Mostrar todos los atributos -OptionPanel.keystroke_show_selected_attributes=Mostrar atributos seleccionados -OptionPanel.keystroke_hide_all_attributes=Esconder todos los atributos -OptionPanel.keystroke_show_attribute_manager=Mostrar el gestor de atributos -OptionPanel.keystroke_assign_attributes=Asignar atributos ... -OptionPanel.antialias.tooltip=Determina la calidad del mapa. M\u00e1s antialias necesita m\u00e1s tiempo. -OptionPanel.antialias=Antialias -OptionPanel.antialias_edges=Bordes de Antialias -OptionPanel.antialias_all=Todo Antialias -OptionPanel.antialias_none=No Antialias -OptionPanel.cs=Cs -OptionPanel.nb=Nb -OptionPanel.ColorProperty.ResetColor=Reinicia Color -OptionPanel.keystroke_option_dialog=Preferencias -format_menu_edge_styles=Estilos de Bordes -format_menu_edge_widths=Anchura Bordes -accessories/plugins/ImportMindmanagerFiles.properties_name=Mapa MindManager X5 ... -accessories/plugins/ExportToOoWriter.properties_name=Como Documento Open Office Writer ... -OptionPanel.separator.undo=Deshacer -OptionPanel.undo_levels=Deshacer Niveles -OptionPanel.undo_levels.tooltip=Determina cuantos pasos almacenados pueden ser deshechos v\u00eda "Deshacer". -OptionPanel.lt=Lt -# fc, 12.1.2006: new spanish translation. Thanks to Natxo. -browsemode_initial_map = ./doc/freemind_es.mm -link_not_found =Enlace $1 no encontrado. -icon_smily_bad =No me encuentro divertido -OptionPanel.hr=Hr -OptionPanel.nn=Nn -OptionPanel.se=Se -OptionPanel.unfold_on_paste=Despliega nodo al pegar -OptionPanel.unfold_on_paste.tooltip=Despliega nodo al pegar o Arrastrar y Soltar -accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Exporta el mapa como un applet java para Navegador -accessories/plugins/ExportWithXSLT_Applet.properties_name=Como Applet de Java ... -accessories/plugins/ExportWithXSLT_Applet.properties_webpage=P\u00e1gina Web -accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Exporta el mapa como una aplicaci\u00f3n flash -accessories/plugins/ExportWithXSLT_Flash.properties_name=Como Flash ... -accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=A la izquierda de la raiz los nodos son desplazados hacia abajo. Se convierten en hijos de su hermano superior. A la derecha de la raiz, los nodos son desplazados hacia arriba. Directamente en la raiz, el nodo cambia de lado. -accessories/plugins/ChangeNodeLevelAction_left.properties_name=Nodo izquierdo -accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=A la derecha de la raiz los nodos son desplazados hacia abajo. Ellos se convierten en hijos de su hermano superior. A la izquierda de la raiz los nodos son desplazados hacia arriba. Directamente en la raiz, los nodos cambian de lado. -accessories/plugins/ChangeNodeLevelAction_right.properties_name=Nodo derecho -PatternDialog.ColorProperty.ResetColor=ReiniciaColor -PatternDialog.EdgeWidth_1=1 -PatternDialog.EdgeWidth_2=2 -PatternDialog.EdgeWidth_4=4 -PatternDialog.EdgeWidth_8=8 -PatternDialog.EdgeWidth_parent=Como el padre -PatternDialog.EdgeWidth_thin=Delgado -PatternDialog.as_parent=Como el padre -PatternDialog.bezier=bezier -PatternDialog.bubble=burbuja -PatternDialog.combined=Combinado -PatternDialog.edgecolor.tooltip=La propiedad del borde del nodo padre (se aplica tambi\u00e9n a todos los nodos hijos) -PatternDialog.edgecolor=Color del Borde -PatternDialog.edgestyle.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00e9n a todos los nodos hijos) -PatternDialog.edgestyle=Estilo del borde -PatternDialog.edgewidth.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00e9n a todos los nodos hijos) -PatternDialog.edgewidth=Anchura del borde -PatternDialog.fork=Bifurcaci\u00f3n -PatternDialog.linear=Lineal -PatternDialog.nodebackgroundcolor=Color de Fondo del nodo -PatternDialog.nodecolor=Color del Nodo -PatternDialog.nodestyle=Estilo del Nodo -PatternDialog.nodetext=Texto del Nodo -PatternDialog.separator.EdgeControls=Bordes -PatternDialog.separator.NodeColors=Colores del Nodo -PatternDialog.separator.NodeStyles=Estilos del Nodo -PatternDialog.sharp_bezier=Bezier agudo -PatternDialog.sharp_linear=Lineal Agudo -PatternDialog.undefined_font=Fuente indefinida -accessories/plugins/ApplyFormatPlugin.properties_documentation=Presenta un di\u00e1logo en el que los atributos de nodo y borde pueden ser cambiados al mismo tiempo. -accessories/plugins/ApplyFormatPlugin.properties_name=Cambiar formato ... -accessories/plugins/ApplyFormatPlugin.dialog.title=Cambiar formato de los nodos -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Mover izquierda -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Mover derecha -OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Copiar formato -OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Pegar formato -OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Insertar icono -OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Indentar nodos -OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Dividir nodo -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Doblar un nivel -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Desdoblar un nivel -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Doblar todos -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Desdoblar todos -OptionPanel.separator.others=Otros enlaces clave -PatternDialog.separator.General=General -PatternDialog.clear_all_setters=Conmutar todos -PatternDialog.clear_all_setters.tooltip=Activa o desactiva todas las indicaciones de cambio -accessories/plugins/ManagePatterns.dialog.title=Gestiona Patrones ... -accessories/plugins/ManagePatterns.not_found=El Patr\u00f3n de fichero no puede ser cargado. -accessories/plugins/ManagePatterns.properties_documentation=Cambia los patrones definidos en patterns.xml en un editor. El resultado se salva autom\u00e1ticamente. -accessories/plugins/ManagePatterns.properties_name=Gestiona Patrones... -PatternDialog.nodefontname=Fuente del Nodo -PatternDialog.nodefontsize=Fuente del Nodo -PatternDialog.nodefontbold=Fuente Negrita -PatternDialog.nodefontitalic=Fuente Cursiva -PatternDialog.separator.NodeFont=Fuente del Nodo -ManagePatternsPopupDialog.remove=Eliminar Patr\u00f3n -ManagePatternsPopupDialog.add=A\u00f1adir nuevo Patr\u00f3n -PatternDialog.patternname=Nombre -PatternDialog.patternname.tooltip=Nombre de patr\u00f3n \u00fanico -PatternNewNameProperty=Nuevo Patr\u00f3n -ManagePatternsPopupDialog.DuplicateNameMessage=Ha elegido un nombre dos veces. Por favor, cambia esto antes de abandonar este di\u00e1logo. -PatternDialog.childpattern.tooltip=El patr\u00f3n seleccionado se aplica a todos los hijos. -PatternDialog.childpattern=Patr\u00f3n de Hijos -ManagePatternsPopupDialog.Save=Salvar y Volver -PatternDialog.icon.tooltip=Si se aplica, el nodo tendr\u00e1 exactamente este icono. -PatternDialog.icon=Icono -PatternDialog.set_property_text=Cambiar -PatternDialog.set_property_text.tooltip=Vacio:No tocar;Menos=Eliminar propiedad (fijar los valores por defecto);M\u00e1s=Cambia propiedad -accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Cambiar patr\u00f3n -OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Patrones autom\u00e1ticos de distribuci\u00f3n -OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Patrones -PatternToString.color=Color -PatternToString.backgroundColor=Color de Fondo -OptionPanel.automaticFormat_level1=Formato de Nodo Raiz -OptionPanel.automaticFormat_level2=Formato de Nodo de Nivel 1. -PatternToString.NodeFontSize=Tama\u00f1o de Fuente -OptionPanel.level1=Formato de Nodo Raiz -OptionPanel.level2=Formato de Nodo de Nivel 1. -OptionPanel.level3=Formato de Nodo de Nivel 2. -OptionPanel.level4=Formato de Nodo de Nivel 3. -OptionPanel.level5=Formato de Nodo de otros niveles. -OptionPanel.automaticFormat_level=Estilos autom\u00e1ticos de disposici\u00f3n -ManagePatternsPopupDialog.duplicate=Patr\u00f3n Duplicado -ManagePatternsPopupDialog.from_nodes=Crear Patron de los Nodos Seleccionados -accessories/plugins/SaveAll.properties_documentation=Salvar todos los mapas abiertos -accessories/plugins/SaveAll.properties_name=Salvar Todo -accessories/plugins/SaveAll.properties_save_all_cancelled=La operaci\u00f3n no se complet\u00f3 con exito. -OptionPanel.loadLastMap=Abrir autom\u00e1ticamente el \u00faltimo mapa -OptionPanel.loadLastMap.tooltip=Si chequeado, cuando FreeMind se inicia, carga el \u00faltimo mapa abierto -use_rich_formatting =Usar Formato Rico -use_plain_text =Usar Texto Plano -FreeMind.progress.gettingPreferenceDirectories=Cargando Preferencias de Directorio ... -FreeMind.progress.gettingPreferences=Cargando Preferencias ... -FreeMind.progress.updateLookAndFeel=Actualizar Look And Feel ... -FreeMind.progress.createController=Crear Controlador ... -FreeMind.progress.settingPreferences=Fijar Preferencias ... -FreeMind.progress.propageteLookAndFeel=Propagar Look And Feel ... -FreeMind.progress.createInitialMode=Crear Modo Inicial ... -FreeMind.progress.startCreateController=Iniciar Crear Controlador ... -FreeMind.progress.loadMaps=Cargar Mapas ... -FreeMind.progress.buildScreen=Construir Pantalla ... -FreeMind.progress.endStartup=Finalizar Inicio. -OptionPanel.tr=Tr -OptionPanel.level=Nivel -map_not_saved=El mapa no fue salvado previamente. -plugins/TimeManagement.xml_Find=Buscar -plugins/TimeManagement.xml_Replace=Reemplazar -plugins/TimeManagement.xml_Select=Seleccionar -plugins/TimeManagement.xml_Export=Exportar los Nodos Seleccionados -plugins/TimeManagement.xml_Replace_All=Reemplazar Todos -plugins/TimeManagement.xml_Replace_Selected=Reemplazar los Seleccionados -plugins/TimeManagement.xml_Goto=Ir a -plugins/TimeManagement.xml_Cancel=Cancelar -automatically_save_message=El Mapa se salv\u00f3 autom\u00e1ticamente (utilizando el nombre de fichero {0}) ... -plugins/ScriptingEngine.xml_documentation=Evalua todos los scripts contenidos (orden recursivo, leaves first). -plugins/ScriptingEngine.xml_name=Evalua -OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Evalua -error_applying_template=Error aplicando la plantilla XSL. -accessories/plugins/NodeNote_jumpto.properties_documentation=Conmuta a resp. de la ventana de notas -accessories/plugins/NodeNote_jumpto.properties_name=Conmutador de Editor de Notas -OptionPanel.max_tooltip_width=Anchura de la Herramienta de Consejos -OptionPanel.max_tooltip_width.tooltip=La anchura por defecto, en pixels, de la herramienta de consejos. -plugins/NodeList.xml_documentation=Muestra todos los nodos como una lista de b\u00fasqueda con propiedades de filtro. -accessories/plugins/NodeNote_hide_show.properties_documentation=Es un atajo de men\u00fa para las peque\u00f1as flechas en la l\u00ednea de divisi\u00f3n. -accessories/plugins/NodeNote_hide_show.properties_name=Mostrar/Esconder Ventana de Notas -OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Conmutador de Editor de Notas -OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Mostrar/Ocultar Ventana de Notas -accessories/plugins/ExportWithXSLT_Applet.properties_tji=Ficheros Include de Task Juggler -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Exporta tareas del nodo de TAREAS al m\u00f3dulo Taskjuggler. -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Tareas del nodo de TAREAS al fichero TaskJuggler ... -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Exporta recursos del nodo RECURSOS al m\u00f3dulo Taskjuggler. -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Recursos del nodo RECURSOS al fichero TaskJuggler ... -plugins/NodeList.xml_name=Buscar y Reemplazar ... -plugins/TimeManagement.xml_menu_actions=Acciones -plugins/TimeList.xml_Notes=Notas -accessories/plugins/SortNodes.properties_documentation=Ordena alfab\u00e9ticamente los hijos de un nodo. -accessories/plugins/SortNodes.properties_name=Ordenar Hijos -OptionPanel.ar=Ar -plugins/TimeManagement.xml_WindowTitle_All_Nodes=Buscar y Reemplazar -plugins/ScriptEditor.xml_documentation=Activa escribir scripts grandes en FreeMind. -plugins/ScriptEditor.xml_name=Editor de Scripts ... -plugins/ScriptEditor/window.title=Editor de Scripts -plugins/ScriptEditor.menu_actions=Acciones -plugins/ScriptEditor.run=Ejecutar -plugins/ScriptEditor.exit=Salir -plugins/ScriptEditor/window.Result=Resultado: -simplyhtml.editLabel=Editar -simplyhtml.undoLabel=Deshacer -simplyhtml.undoTip=deshacer -simplyhtml.redoLabel=Rehacer -simplyhtml.redoTip=rehacer -simplyhtml.cutLabel=Cortar -simplyhtml.cutTip=cortar -simplyhtml.copyLabel=Copiar -simplyhtml.copyTip=copiar -simplyhtml.pasteLabel=Pegar -simplyhtml.pasteTip=pegar -simplyhtml.selectAllLabel=Seleccionar todos -simplyhtml.findReplaceLabel=Encontrar y Reemplazar -simplyhtml.findReplaceTip=encontrar y reemplazar -simplyhtml.insertTableLabel=Tabla... -simplyhtml.formatLabel=Formato -simplyhtml.fontLabel=Fuente... -simplyhtml.fontTip=Formato de fuente... -simplyhtml.clearFormatLabel=Eliminar Formato -simplyhtml.clearFormatTip=Elminar Formato -simplyhtml.fontBoldLabel=Negrita -simplyhtml.fontBoldTip=conmutar negrita on/off -simplyhtml.fontItalicLabel=Cursiva -simplyhtml.fontItalicTip=Cunmuta cursiva on/off -simplyhtml.fontUnderlineLabel=Subrayado -simplyhtml.fontUnderlineTip=conmutar subrayado on/off -simplyhtml.formatTableLabel=Tabla... -simplyhtml.formatTableTip=Formatea tabla -simplyhtml.toggleBulletsLabel=Vi\u00f1etas on/off -simplyhtml.toggleBulletsTip=vi\u00f1etas on/off -simplyhtml.toggleNumbersLabel=Numeraci\u00f3n on/off -simplyhtml.toggleNumbersTip=numeraci\u00f3n on/off -simplyhtml.formatListLabel=Lista... -simplyhtml.formatListTip=cambiar formato de lista -simplyhtml.formatParaLabel=Par\u00e1grafo... -simplyhtml.formatParaTip=Cambiar formato de par\u00e1grafo -simplyhtml.paraAlignLeftLabel=Alinear izquierda -simplyhtml.paraAlignLeftTip=Fijar alineado izquierdo de par\u00e1grafo -simplyhtml.paraAlignCenterLabel=Alinear centrado -simplyhtml.paraAlignCenterTip=Fijar alineado centrado de par\u00e1grafo -simplyhtml.paraAlignRightLabel=Alinear derecha -simplyhtml.paraAlignRightTip=Fijar alineado derecho de par\u00e1grafo -simplyhtml.tableLabel=Tabla -simplyhtml.nextTableCellLabel=Celda siguiente -simplyhtml.prevTableCellLabel=Celda previa -simplyhtml.insertTableRowLabel=Insertar fila -simplyhtml.insertTableColLabel=Insertar columna -simplyhtml.appendTableRowLabel=A\u00f1adir fila -simplyhtml.appendTableColLabel=A\u00f1adir col -simplyhtml.deleteTableRowLabel=Borrar fila -simplyhtml.deleteTableColLabel=Borrar columna -simplyhtml.helpLabel=Ayuda -simplyhtml.aboutLabel=Acerca de SimplyHTML... -simplyhtml.aboutFrameTitle=Acerca de esta aplicaci\u00f3n -simplyhtml.fontDialogTitle=Formatear Fuente -simplyhtml.uLineLabel=Subrayar -simplyhtml.strikeLabel=Tachado -simplyhtml.previewLabel=Vista Previa -simplyhtml.previewText=Vista previa texto -simplyhtml.familyLabel=Familia -simplyhtml.sizeLabel=Tama\u00f1o -simplyhtml.plainName=plano -simplyhtml.boldName=negrita -simplyhtml.italicName=cursiva -simplyhtml.boldItalicName=cursiva negrita -simplyhtml.styleLabel=Estilo -simplyhtml.effectLabel=Efecto -simplyhtml.colorLabel=Color -simplyhtml.foregroundLabel=Primer Plano -simplyhtml.backgroundLabel=Fondo -simplyhtml.noLineLabel=ninfguno -simplyhtml.textIndentLabel=Indentar: -simplyhtml.alignLabel=Alineado: -simplyhtml.alignLeft=izquierda -simplyhtml.alignCenter=centro -simplyhtml.alignRight=derecha -simplyhtml.valignLabel=Alin. Vert. -simplyhtml.valignTop=top -simplyhtml.valignMiddle=medio -simplyhtml.valignBottom=fondo -simplyhtml.valignBaseline=L\u00ednea Base -simplyhtml.marginLabel=Exterior -simplyhtml.paddingLabel=Interior -simplyhtml.tableDialogTitle=Formatear Tabla -simplyhtml.tablePanelTitle=Formato de Tabla -simplyhtml.cellPanelTitle=Formato de Celda -simplyhtml.tableWidthLabel=Anchura: -simplyhtml.tableBgColLabel=Color de fondo: -simplyhtml.cellMarginTabLabel=Margen -simplyhtml.cellBorderTabLabel=Bordes -simplyhtml.borderWidthLabel=Anchura -simplyhtml.borderColorLabel=Color: -simplyhtml.thisCellRangeLabel=esta celda -simplyhtml.thisColRangeLabel=esta columna -simplyhtml.thisRowRangeLabel=esta fila -simplyhtml.allCellsRangeLabel=todas las celdas -simplyhtml.applyCellAttrLabel=Aplicar a -simplyhtml.cellGenTabLabel=General -simplyhtml.paraStyleDialogTitle=Estilo de Par\u00e1grafo -simplyhtml.fontTabLabel=Fuente -simplyhtml.paraTabLabel=Par\u00e1grafo -simplyhtml.cTagNamePara=Par\u00e1grafo -simplyhtml.cTagNameHead1=T\u00edtulo 1 -simplyhtml.cTagNameHead2=T\u00edtulo 2 -simplyhtml.cTagNameHead3=T\u00edtulo 3 -simplyhtml.cTagNameHead4=T\u00edtulo 4 -simplyhtml.cTagNameHead5=T\u00edtulo 5 -simplyhtml.cTagNameHead6=T\u00edtulo 6 -simplyhtml.cTagNameLink=Enlace -simplyhtml.cTagNameUL=Lista no ordenada -simplyhtml.cTagNameOL=Lista Ordenada -simplyhtml.listDialogTitle=Formato de Lista -simplyhtml.listTypeLabel=Tipo: -simplyhtml.listPositionLabel=Posici\u00f3n: -simplyhtml.listIndentTitle=Indentar: -simplyhtml.listTypeNone=ninguno -simplyhtml.listTypeDecimal=1.,2.,3.,4. -simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. -simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. -simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. -simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. -simplyhtml.listTypeDisc=S\u00edmbolo de fichero como vi\u00f1eta -simplyhtml.listTypeCircle=vi\u00f1eta redonda -simplyhtml.listTypeSquare=vi\u00f1eta cuadrada -simplyhtml.listPosInside=dentro -simplyhtml.listPosOutside=fuera -simplyhtml.findReplaceDialogTitle=B\u00fascar y Reemplazar -simplyhtml.findNext=Buscar siguiente... -simplyhtml.searchFromStart=Buscar desde el principio -simplyhtml.searchDown=Buscar hacia abajo -simplyhtml.wholeWordsOnly=Palabras completas s\u00f3lo -simplyhtml.searchUp=B\u00fascar hacia arriba -simplyhtml.matchCase=Coincidir may\u00fasculas y min\u00fasculas -simplyhtml.replaceWith=Reemplazar con: -simplyhtml.textToFind=Texto a encontrar: -simplyhtml.replace=Reemplazar... -simplyhtml.noMoreOccurrencesFound=no se han encontrado (m\u00e1s) ocurrencias -simplyhtml.allOccurrencesReplaced=Todas las ocurrencias reemplazadas -simplyhtml.replaceThisQuery=Reemplazar esta ocurrencia de -simplyhtml.replaceYes=S\u00ed -simplyhtml.replaceNo=No -simplyhtml.replaceAll=Todo -simplyhtml.replaceDone=Hecho -simplyhtml.unableToUndoError=No es posible deshacer: -simplyhtml.unableToRedoError=No es posible rehacer: -simplyhtml.unableToOpenFileError=El fichero no puede ser abierto -simplyhtml.imageFileDesc=Ficheros de imagen -simplyhtml.defaultDocName=Sin t\u00edtulo -simplyhtml.cancelBtnName=Cancelar -simplyhtml.closeBtnName=Cerrar -simplyhtml.okBtnName=OK -simplyhtml.leftLabel=izquierda: -simplyhtml.rightLabel=derecha: -simplyhtml.topLabel=Arriba: -simplyhtml.bottomLabel=Abajo: -simplyhtml.insertTableTitle=insertarTabla -simplyhtml.insertTableMsg=\u00bfCuantas columnas? -simplyhtml.close=Cerrar -simplyhtml.standardStyleName=est\u00e1ndar -simplyhtml.styleNameInputTitle=Salvar estilo -simplyhtml.styleNameInputText=\u00bfNombre del nuevo estilo? -simplyhtml.newStyleDefaultName=nuevo estilo -simplyhtml.docTitleTitle=Editar T\u00edtulo del Documento -simplyhtml.docTitleQuery=Fijar t\u00edtulo a: -simplyhtml.layoutTabTitle=Vista de disposici\u00f3n -simplyhtml.htmlTabTitle=Vista de c\u00f3digo HTML -ScriptEditorPanel.changed_cancel=Los escripts fueron cambiados. \u00bfQuiere abandonar estos cambios? -OptionPanel.separator.mouse_wheel=Rueda del rat\u00f3n -OptionPanel.wheel_velocity=Velocidad -OptionPanel.wheel_velocity.tooltip=Un valor m\u00e1s alto tendr\u00e1 como consecuencia un efecto mayor del movimiento de la rueda del rat\u00f3n en el mapa. -accessories/plugins/NodeHistoryBack.properties_name=Atr\u00e1s -accessories/plugins/NodeHistoryBack.properties_documentation=Salta hacia atr\u00e1s en la cadena de selecci\u00f3n -accessories/plugins/NodeHistoryForward.properties_name=Adelante -accessories/plugins/NodeHistoryForward.properties_documentation=Salta adelante en la cadena de selecci\u00f3n -OptionPanel.use_tabbed_pane.tooltip=Si los mapas seleccionados son mostrados como pesta\u00f1as (como en FireFox :-) ). -OptionPanel.use_tabbed_pane=Usar Pesta\u00f1as -accessories/plugins/ExportWithTWiki.properties_name=Como TWiki... -accessories/plugins/ExportWithTWiki.properties_documentation=Exporta el mapa como un documento TWiki. -accessories/plugins/ExportWithTWiki.properties=Fichero TWiki (*.twi) -really_remove_node=\u00bfDe verdad borrar el nodo(s)? -confirmation=Confirmaci\u00f3n -OptionalDontShowMeAgainDialog.dontShowAgain=No preguntar otra vez -OptionalDontShowMeAgainDialog.rememberMyDescision=Recordar decisi\u00f3n -OptionalDontShowMeAgainDialog.cancel=No -OptionalDontShowMeAgainDialog.ok=S\u00ed -OptionPanel.separator.resources_notifications=Confirmaciones -OptionPanel.delete_nodes_without_question=\u00bfBorrar nodo sin confirmaci\u00f3n? -OptionPanel.delete_nodes_without_question.tooltip=Si esta check box se activa los nodos ser\u00e1n borrados sin confirmaci\u00f3n. Esto puede causar p\u00e9rdida de informaci\u00f3n si se presiona sin intenci\u00f3n. -edit.decision=Editor HTML -edit.edit_rich_text=\u00bfQuiere usar formatos como negrita o cursiva? -OptionPanel.remind_use_rich_text_in_new_long_nodes=Usar formato para nuevos nodos -OptionPanel.remind_type_of_new_nodes.tooltip="Pregunta" preguntar\u00e1 (use en caso de duda).
"S\u00ed" muestra el editor de texto enriquecido.
"No" muestra el editor de texto plano. -OptionPanel.ask=Pregunta +#! +#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) +#! encoding:ISO-8859-1 +# by jmasesch - jmases1 +about = Acerca de +about_text = Joerg Mueller's FreeMind\nAdoptando la t\u00e9cnica de Mapeo de Conceptos al dise\u00f1o de interfaces Humano-Computadora.\nDerechos Reservados (C) 2000-2010 Joerg Mueller y otros\nEste programa es software libre (GPL)\nHome: http://freemind.sourceforge.net/\nDisfr\u00fatalo!\nVersion: +antialias_all = Suavizar Todo +antialias_edges = Suavizar Bordes +antialias_none = No Suavizar +apply=Aplicar +background = Fondo +bezier = Bezier +blend_color = Mezclar Color +bold = Negrita +boldify_branch = Obscurecer Rama +branch = Rama +bubble = Burbuja +cancel = Cancelar +cannot_join_nodes_with_children = No se pueden unir nodos con hijos +center = Centrar +cloud = Nube +cloud_color = Color de Nube... +close = Cerrar +copy = Copiar +copy_single = Copia Sencilla +cut = Cortar +decrease_branch_font_size = Reducir Fuente +decrease_node_font_size = Reducir Fuente +documentation = Documentaci\u00f3n +edge = Borde +edge_color = Color del Borde... +edge_width_parent = Principal +edge_width_thin = Delgado +edit = Editar +edit_link_manually = Editar Enlace Manualmente... +edit_long_node = Editar Nodo Largo... +enter_base_url = Voy a pegar enlaces relativos. Por favor ingrese la URL base. +enter_confirms = Tecla Intro Confirma +error =Error +#export_branch = Rama... +export_branch_to_html = Rama como HTML +export_to_html = Como HTML +extension_menu = Estilo F\u00edsico +file = Archivo +file_not_found = El archivo $1 no se encontr\u00f3 +find = Buscar... +find_what = Buscar Qu\u00e9 +find_next = Buscar Siquiente +fold = Doblar +follow_link = Ir a: +font = Fuente +fork = Bifurcaci\u00f3n +help = Ayuda +html_export_based_on_headings = Exportar HTML - Basado en Encabezados +html_export_no_folding = Exportar HTML - Sin Doblar +html_export_fold_currently_folded = Exportar HTML - Doblar lo Actualmente Doblado +html_export_fold_all = Exportar HTML - Doblar Todo +# Daniel Polansky: This way of maintaining icon text +# will ultimately lead to unbearable overheads. +icon_menu = Iconos +icon_help = Pregunta +icon_messagebox_warning = Importante +icon_idea = Idea +icon_button_ok = Bien +icon_button_cancel = Mal +icon_back = Avanzar +icon_forward = Retroceder +icon_attach = Ver Aqu\u00ed +icon_ksmiletris = Estoy Feliz! +icon_clanbomber = Peligroso +icon_desktop_new = No Olvidar +icon_flag = Bandera +icon_gohome = Inicio +icon_kaddressbook = Tel\u00e9fono +icon_knotify = M\u00fasica +icon_korn = Buz\u00f3n +icon_Mail = Correo +icon_password = Llave +icon_pencil = Para Pulir +icon_stop = Detener +icon_wizard = Magia +icon_xmag = Para Discutir +icon_bell = Recordar +icon_bookmark = Excelente +icon_penguin = Linux +icon_licq = Lindo +import = Importar +import_branch = Rama... +import_explorer_favorites = Favoritos del Explorer... +import_folder_structure = Estructura de Carpetas... +import_linked_branch = Rama Enlazada +import_linked_branch_without_root = (Rama Enlazada) Sin Ra\u00edz... +increase_branch_font_size = Ampliar Fuente +increase_node_font_size = Ampliar Fuente +italic =Cursiva +italicise_branch =Poner en Cursiva +join_nodes = Unir Nodos +license = Licencia +license_text = FreeMind - Un programa para crear y visualizar Mapas Conceptuales\nCopyright (C) 2000-2010 Joerg Mueller \nVea el archivo COPYING para detalles\n\nEste programa es Software Libre; puede redistribuirlo y/o \nmodificarlo bajo los t\u00e9rminos de la licencia p\u00fablica general GNU\n(GNU General Public License)\npublicada por la Fundaci\u00f3n para el Software Libre (Free Software Foundation); ya sea version 2\nde la licencia, o (seg\u00fan tu opci\u00f3n) cualquier versi\u00f3n posterior.\n\nEste programa es distribuido con la esperanza de que sea \u00fatil,\npero SIN NINGUNA GARANTIA; sin ni siquiera la garant\u00eda impl\u00edcita de\nMERCABILIDAD o UTILIDAD para un prop\u00f3sito en particular. Vea la licencia\nGNU General Public License para mas detalles.\n\nUsted debi\u00f3 haber recibido una copia de la GNU General Public License\njunto con este programa; si no, escriba a: \nFree Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +linear = Lineal +load =Cargar +locking_failed_by_open = El bloqueo del mapa $1 fall\u00f3. Abriendolo como Solo Lectura. +locking_failed_by_save_as = El bloqueo del mapa $1 fall\u00f3. Acci\u00f3n Guardar Como abortada. +locking_old_lock_removed = El mapa $1 fu\u00e9 bloqueado por el usuario $2. El bloqueo ha sido removido por ser muy antiguo. +map_already_exists = El mapa existe actualmente. \u00bfQuiere sobre-escribirlo? +map_corrupted = Mapa corrupto. \u00bfVer detalles? +map_locked_by_open = El mapa $1 est\u00e1 siendo editado por el usuario $2. Abriendo como Solo Lectura. +map_locked_by_save_as = El mapa $1 esta siendo editado por el usuario $2. Acci\u00f3n Guardar Como abortada. +mindmap = Mapa +mindmaps = Mapas +mindmaps_desc = Mapas (*.mm) +mindmaps_filter_desc =Filtros (*.mmfilter) +mode_na = Modo no disponible +mode_status = Cambio a Modo {0} +mode_title =FreeMind - Modo {0} +modes = Modos +move_to_root = Mover a Ra\u00edz +new = Nuevo +new_child = Nuevo Nodo Hijo +new_mindmap = Nuevo Mapa +new_node = Nuevo Nodo +new_sibling_before = Nuevo Nodo Previo Hermano +new_sibling_behind = Nuevo Nodo Hermano +next_map = Siguiente Mapa +no = No +node = Nodo +node_changed_discard_changes = Ha cambiado el Nodo. \u00bfDesea descartar los cambios? +long_node_changed_submit =Ha cambiado el Nodo. \u00bfDesea salvar los cambios?* +long_node_changed_cancel =Ha cambiado el nodo. \u00bfQuiere descartar los cambios?* +node_color = Color del Nodo... +node_down = Bajar Nodo +node_up = Subir Nodo +nonboldify_branch =Sin negrita +nonitalicise_branch =Sin cursiva +normal = Normal +no_found_from = No "$1" encontrado de "$2". +no_more_found_from = No mas "$1" encontrado de "$2". +no_previous_find = No se encontro Anterior. +not_saved_for_link_error = El Mapa debe ser guardado antes de establecer un enlace con el selector de archivos +open = Abrir... +page = Configurar P\u00e1gina... +paste = Pegar +new_node_as_sibling_not_possible_for_the_root = No es posible un Nuevo Nodo Hermano en la Ra\u00edz +preferences = Preferencias +previous_map = Mapa Previo +print = Imprimir... +print_preview =Vista Previa... +quit = Salir +read_only = Solo Lectura +remove_node = Eliminar Nodo +repair_link = Reparar Enlace +repair_link_question = No se pudo cargar el Mapa enlazado. \u00bfQuiere reparar el enlace manualmente? +replace=Reemplazar +save = Guardar +save_as = Guardar Como... +save_failed = Fall\u00f3 el intento de guardar el mapa $1. +save_unsaved = Desea guardar el Mapa? : +saved = Guardado +scheme_evaluate = Evaluar! +select_favorites_folder = Seleccione la carpeta donde residen sus favoritos +select_folder_for_importing = Seleccionar carpeta a importar +set_image_by_filechooser = Imagen (Seleccionar archivo u enlace)... +set_link_by_filechooser = Enlace (Seleccionar archivo)... +set_link_by_textfield = Enlace (Campo de texto)... +sharp_bezier = Conexi\u00f3n Bezier +sharp_linear = Conexi\u00f3n lineal +split = Separar +style = Stilo +toggle_bold_branch = Cambiar Negrita +toggle_children_folded = (Des)doblar hija +toggle_folded = (Des)activar Doblez +toggle_italic_branch = (Des)activar Cursiva +toggle_menubar = (Des)activar Barra de men\u00fa +toggle_toolbar = (Des)activar Barra de herramientas +toggle_left_toolbar = (Des)activar Barra de herramientas izquierda +underline = Subrayar +unfold = Desdoblar +url_error = Esta URL est\u00e1 malformada! +url_load_error = No se puede cargar el Mapa en la URL: +width = Ancho +yes = Si +zoom_in = Acercar +zoom_out = Alejar +remove_last_icon = Eliminar \u00faltimo Icono +remove_all_icons = Eliminar Todos los Iconos +lots_of_links_warning = Vas a crear muchos enlaces en el mismo nodo. Realmente quieres crear estos enlaces? +remove_arrow_link = Eliminar Flecha Enlace +arrow_link_color = Color de la Flecha Enlace... +user_defined_zoom = Definido por el usuario. +user_defined_zoom_status_bar = Cambiar el nivel de acercamiento al nivel definido por el usuario {0}%. +# new from 14.12.2003, fc +FAQ = FAQ +webDocu =Documentaci\u00f3n Web +# new from 20.12.2003, fc +printing_settings = Escalado de impresi\u00f3n +fit_to_page = Ajustar a una p\u00e1gina +user_zoom = Factor de acercamiento de impresi\u00f3n (0.0 - 2.0): +ok = De Acuerdo +# changed from 23.1.2004, fc. +selection_method_by_click = Aprieta una vez para seleccionar +selection_method_direct = Apunta para seleccionar +#new from 30.08.2004, Dimitri +combined = Combinado +as_parent = Como Principal +# added at 2.5.2004, fc: +undo = Deshacer +redo = Rehacer +delete_child = Borrar Nodo +# added at 22.5.2004, fc: +most_recent_files = Archivos M\u00e1s Recientes +menu_view = Ver +menu_navigate = Navegar +menu_format = Formato +menu_extras = Herramientas +menu_insert = Insertar +menu_attributes =Atributos +edge_style = Estilo del Borde +# Beware: "Edge Width " and "Edge Style " must end with space. +edge_width = Ancho del Borde +menu_file_import = Importar +menu_file_export = Exportar +edit_node = Editar Nodo +# added at 5.6.2004, fc: +node_background_color = Color de Fondo del Nodo... +# added at 25.8.2004, fc: +choose_edge_color = Elegir Color del Borde +# added at 27.8.2004, fc: +underlined = Subrayado +font_size = Tama\u00f1o de Fuente +font_family = Familia de la Fuente +# add at 16.9.2004, fc: +import_linked_branch_no_link = El nodo seleccionado no tiene enlaces de donde importar. +# added at 09.10.2004 +add_link = Agregar Enlace Gr\u00e1fico +less_than_two_selected_nodes = Tiene que seleccionar cuando menos dos nodos para poder crear enlaces. +choose_node_background_color = Elegir Color de Fondo del Nodo: +choose_node_color = Elegir Color del Nodo: +choose_background_color = Elegir Color de Fondo: +choose_cloud_color = Elegir Color de Nube: +change_arrows_in_arrow_link = Cambiar Flechas del Enlace de Flecha +add_local_link = Agregar Enlace Local +link_not_available_any_more = El enlace ya no es valido. El nodo fue borrado. +file_already_exists = El archivo {0} existe actualmente. \u00bfQuiere sobre-escribirlo? +error_creating_directory = No se puede crear el directorio para exportar. +export_svg_text = Gr\u00e1fica de Vectores Escalables (SVG) +export_pdf_text = Formato de Documentos Portables (PDF) +goto_link_node_action = Ir al Enlace +#fc, 14.11.2004: +undefined_error = Ocurri\u00f3 un error inesperado. Por favor reportelo a los desarrolladores de Freemind. +cannot_add_parent_to_root = El nodo Ra\u00edz no puede ser agregado a un nuevo nodo Principal. +cannot_delete_root =El nodo raiz no puede ser borrado o cortado. +cannot_add_parent_diff_parents = Todos los nodos deben tener el mismo nodo principal para poder utilizar esta funci\u00f3n. +no_format_copy_before_format_paste = No puede pegar un formato a menos que haya copiado uno. +#fc, 15.11.2004: +accessories/plugins/AutomaticLayout.properties_documentation = Arregla la presentaci\u00f3n del mapa.
El primer nivel es negro, el segundo azul, etc. +accessories/plugins/AutomaticLayout.properties_name = Presentaci\u00f3n Automatica +accessories/plugins/BlinkingNodeHook.properties_documentation = Esto hace que el nodo parpadee. Pero tenga cuidado. No lo utilice en muchos nodos,y no lo haga junto con otros formatos automaticos en el mismo nodo +accessories/plugins/BlinkingNodeHook.properties_name = Nodo Parpadeante +accessories/plugins/CreationModificationPlugin.properties_documentation=Esta funci\u00f3n sigue la pista del tiempo de creaci\u00f3n y modificaci\u00f3n de nodos. +accessories/plugins/CreationModificationPlugin.properties_name = Mostrar Tiempo de Modificaciones +accessories/plugins/ExportToImage_PNG.properties_documentation = Exporta el mapa en el doblez actual a formato de imagen PNG. +accessories/plugins/ExportToImage_PNG.properties_name = Como PNG... +accessories/plugins/ExportToImage_JPEG.properties_documentation = Exporta el mapa en el doblez actual a formato de imagen JPEG. +accessories/plugins/ExportToImage_JPEG.properties_name = Como JPEG... +accessories/plugins/ExportWithXSLT.properties_documentation = Este es un m\u00e9todo uniforme de exportaci\u00f3n utilizando scripts XSLT. +accessories/plugins/ExportWithXSLT.properties_name = Utilizando XSLT... +accessories/plugins/ExportWithXSLT_HTML.properties_name = Como XHTML (versi\u00f3n JavaScript)... +accessories/plugins/ExportWithXSLT_HTML3.properties_name = Como XHTML (versi\u00f3n mapa Seleccionable)... +accessories/plugins/FitToPage.properties_documentation = Ajusta el nivel de acercamiento de manera tal que todo el mapa pueda verse en la ventana actual. +accessories/plugins/FitToPage.properties_name = Acercamiento Todo en Una Pagina +accessories/plugins/FormatCopy.properties_documentation = Copia el formato de un nodo. +accessories/plugins/FormatCopy.properties_name = Copiar Formato +accessories/plugins/FormatPaste.properties_documentation = Pega el formato de un nodo. +accessories/plugins/FormatPaste.properties_name = Pegar Formato +accessories/plugins/FormularEditor.properties_documentation = Asocia un editor de f\u00f3rmulas simple a la nota actual. +accessories/plugins/FormularEditor.properties_name = Editor de F\u00f3rmulas +accessories/plugins/IconSelectionPlugin.properties_documentation = Aqu\u00ed puede seleccionar un icono utilizando una subventana. +accessories/plugins/IconSelectionPlugin.properties_name = Seleccionar Icono... +accessories/plugins/NewParentNode.properties_documentation = Todos los seleccionados son enviados a un nuevo nodo Principal. +accessories/plugins/NewParentNode.properties_name = Nuevo Nodo Principal +accessories/plugins/NodeNote.properties_documentation = Asocia un editor de notas simple a la nota actual. +accessories/plugins/NodeNote.properties_name = Nota +accessories/plugins/PMCalculation.properties_documentation = Calcula el esfuerzo para tareas diferentes. +accessories/plugins/PMCalculation.properties_name = PMCalculation +accessories/plugins/RevisionPlugin.properties_documentation = Marca el fondo de cada nodo cambiado. +accessories/plugins/RevisionPlugin.properties_name = Muestra Revisiones en Amarillo +accessories/plugins/SplitNode.properties_documentation = El Nodo es dividido* +accessories/plugins/SplitNode.properties_name =Dividir el Nodo +accessories/plugins/UnfoldAll.properties_documentation = Desdobla los nodos seleccionados y todos sus hijos. +accessories/plugins/UnfoldAll.properties_name = Desdoblar Todos +accessories/plugins/FoldAll.properties_documentation = Dobla los nodos seleccionados y todos sus hijos. +accessories/plugins/FoldAll.properties_name = Doblar Todos +accessories/plugins/UnfoldOneLevel.properties_documentation = Desdobla un nivel de nodos seleccionados. +accessories/plugins/UnfoldOneLevel.properties_name = Desdobla Un Nivel +accessories/plugins/FoldOneLevel.properties_documentation = Dobla un nivel de nodos seleccionados. +accessories/plugins/FoldOneLevel.properties_name = Dobla Un Nivel +plugins/FreemindHelp.xml_documentation = Ayuda Extendida de FreeMind +plugins/FreemindHelp.xml_name = Ayuda En-Linea... +plugins/ExportPdf.xml_documentation = Exportar a PDF +plugins/ExportPdf.xml_name = Como PDF... +plugins/ExportSvg.xml_documentation = Exportar a SVG +plugins/ExportSvg.xml_name = Como SVG... + +# fc, 28.11.2004: +cannot_move_to_child = No se puede mover un nodo dentro de uno de sus hijos. +# fc, 14.12.2004: +accessories/plugins/EnterPassword.properties_name = (Des)activar cifrado +accessories/plugins/EncryptNode.properties_name = Insertar Nodo Cifrado... +accessories/plugins/EncryptNode.properties_documentation = Inserta un nuevo nodo que esta almacenado de manera cifrada. +accessories/plugins/EncryptNode.properties_0 = Elija contrase\u00f1a para cifrar nodo +accessories/plugins/EncryptNode.properties_1 = Las contrase\u00f1as no son iguales o es muy corta. +accessories/plugins/EncryptNode.properties_2 = Ingrese Contrase\u00f1a: +accessories/plugins/EncryptNode.properties_3 = Reingrese Contrase\u00f1a: +accessories/plugins/EncryptNode.properties_4 = Enter your password. +accessories/plugins/EncryptNode.properties_5 = Recuerde que la calidad del cifrado
depende casi completamente de la calidad de su contrase\u00f1a. +accessories/plugins/EncryptNode.properties_6 = De Acuerdo +accessories/plugins/EncryptNode.properties_7 = Cancelar +accessories/plugins/EncryptNode.properties_wrong_password = La contrase\u00f1a no es correcta. +accessories/plugins/NewEncryptedMap.properties_documentation = Crear un nuevo mapa cifrado +accessories/plugins/NewEncryptedMap.properties_name = Crear Mapa Cifrado... +accessories/plugins/EncryptNode.properties_select_me = Seleccioneme para continuar! +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Usted solo puede (des)activar el cifrado si el nodo ha sido cifrado anteriormente. Por favor inserte un nodo cifrado utilizando el men\u00fa de herramientas. +# fc, 2.2.05: +selection_method_delayed=Selecci\u00f3n Autom\u00e1tica Retardada +# fc, 4.2.05: +plugins/TimeManagement.xml_documentation=Muestra el m\u00f3dulo calendario por Kai Toedter. +plugins/TimeManagement.xml_name= Mostrar Calendario... +plugins/TimeManagement.xml_appendButton= Agregar Fecha A Los Nodos Seleccionados +plugins/TimeManagement.xml_reminderButton= Recordar En Esta Fecha +plugins/TimeManagement.xml_cancelButton=Cancelar +plugins/TimeManagementReminder.xml_documentation=Gancho Interno para calendarizar tareas de re-envio. +plugins/TimeManagementReminder.xml_name=Gancho Interno para calendarizar tareas de re-envio. +plugins/TimeManagement.xml_reminderNode_tooltip=Recordatorio especificado en {0,date} {0,time}. +plugins/TimeManagement.xml_reminderNode_showNode=El tiempo ha transcurrido para el nodo " {0} ". Quiere postponerlo por diez minutos? +plugins/TimeManagement.xml_reminderNode_onlyOneDate=Por el momento solu puede haber un recordatorio por nodo.
El recordatorio actual esta ajustado a {0,date} {0,time}, su opci\u00f3n fu\u00e9 {1,date} {1,time}.

Desea cambiar el recordatorio del nodo (SI)
o desea mantener el anterior (NO)? +plugins/TimeManagement.xml_removeReminderButton = Eliminar Recordatorio +plugins/TimeManagement.xml_removeReminderButton_tooltip = Eliminar todos los recordatorios asociados con los nodos seleccionados. +plugins/TimeManagement.xml_minute= Minuto: +plugins/TimeManagement.xml_hour= Hora: +plugins/TimeManagement.xml_WindowTitle=Administraci\u00f3n de Tiempo +plugins/latex/LatexNodeHook.properties_documentation = F\u00f3rmula Latex +plugins/latex/LatexNodeHook.properties_name =&Latex +plugins/latex/LatexNodeHook.editorTitle =Editor, cierra para aceptar +# fc, 18.2.2005: +accessories/plugins/HierarchicalIcons.properties_documentation=Si uno de los hijos tiene un \u00edcono, lo mostrar\u00e9 en un formato peque\u00f1o. +accessories/plugins/HierarchicalIcons.properties_name=Mostrar Iconos Jerarquicamente +# fc, 1.3.2005: +icon_full-1 = Prioridad 1 +icon_full-2 = Prioridad 2 +icon_full-3 = Prioridad 3 +icon_full-4 = Prioridad 4 +icon_full-5 = Prioridad 5 +icon_full-6 = Prioridad 6 +icon_full-7 = Prioridad 7 +# fc, 11.3.2005: +RevertAction=Revertir +# the prefix for the reconstructed map (revert + undo). +freemind_reverted=Freemind_Revertido_ +plugins/TimeManagement.xml_todayButton=Hoy +plugins/TimeList.xml_documentation=Muestra todos los tiempos agendados y los correspondientes nodos.* +plugins/TimeList.xml_name=Mostrar la Lista del Planificador de Tiempo... +remove_node_background_color =Borra Color de Fondo del Nodo +plugins/TimeList.xml_Modified=Modificado +plugins/TimeList.xml_Created=Creado +plugins/TimeList.xml_Date=Fecha +plugins/TimeList.xml_Text=Texto +plugins/TimeList.xml_Icons=Iconos +select_branch=Selecciona Rama Visible +select_all=Selecciona Todos los visibles +change_link_arrows=Cambia_flechas_de_enlace +reset_node_position=Reinicia Posici\u00f3n +plugins/RemoveReminder.xml_documentation=Borra un recordatorio del nodo. +plugins/RemoveReminder.xml_name=Borra Recordatorio +plugins/TimeManagement.xml_reminderButton_tooltip=Cuando se presiona, un temporizador es activado en la fecha estipulada. Despu\u00e9s, una ventana llama su atenci\u00f3n.
Si usted cierra el mapa, los temporizadores ser\u00e1n reactivados la pr\u00f3xima vez que el mapa sea abierto. +filter_toolbar=Filtro +filter_dialog=Compositor de Filtro +filter_no_filtering=Sin Filtrado +filter_selected_node_view=Nodos Seleccionados Actualmente +filter_conditions =Filtros +filter_edit=Editar +filter_edit_description=Editar Lista de Filtros +filter_unfold_ancestors=Desplegar Nodos Filtrados +filter_icon=Icono +filter_node=Texto del Nodo +filter_exist=Existe +filter_does_not_exist=No Existe +filter_contains=Contiene +filter_is_equal_to=Igual a +filter_is_not_equal_to=No igual a +filter_ignore_case=Ignorar May\u00fascula/Min\u00fascula +filter_enter_value=Entrar Valor +filter_add=A\u00f1adir +filter_delete=Borrar +filter_select=Seleccionar +filter_not=No +filter_and=Y +filter_or=O +filter_show_ancestors=Mostrar Ancestros +filter_show_descendants=Mostrar Descendientes +attributes_all=Todos los Atributos +attributes_attribute=Atributos +attributes_close=Cerrar +attribute_delete=Borrar todos los Valores +attribute_delete_value=Borrar este Valor +attributes_edit=Editar +attributes_edit_in_place=Editar Atributos +attributes_edit_tooltip=Editar Conjunto +attribute_font_size_tooltip=Tama\u00f1o de Fuente del Atributo +attributes_dialog=Gestor Atributos... +attributes_import=Importar +attributes_import_tooltip=Importar atributos de otros mapas cargados +attributes_assign_dialog=Asignar Atributos... +attributes_visible=Seleccionado Visible +attributes_visible_tooltip=Seleccionado Visible +attributes_refresh=Refresco +attribute_replace=Reemplazar con +attributes_restriction=Conjunto Restringido +attributes_restricted_attributes_tooltip=Restringir Conjunto de Atributos +attributes_restricted_values_tooltip=Restringir Conjunto de Valores para Atributo actual +attributes_select_all=Todos +attributes_select_all_tooltip=Seleccionar/Deseleccionar todos +attributes_for_selected=Nodos Seleccionados +attributes_for_visible=Todos los Nodos Visibles +attributes_deselect_all=Nada +attribute_list_box_label_text=Valores Existentes +attributes_popup_edit=Editar +attributes_popup_optimal_width=Anchura \u00d3ptima +attributes_popup_hide=Ocultar +attributes_popup_new=Nuevo Atributo +attributes_popup_delete=Borrar +attributes_popup_up=Arriba +attributes_popup_down=Abajo +attributes_show=Mostrar +attributes_show_all =Mostrar todos los atributos +attributes_show_selected =Mostrar Atributos Seleccionados +attributes_hide_all =Esconder Todos los Atributos +attribute_top=Todos los Atributos conocidos para los Mapas cargados +attributes_skip_root=Evitar Nodo Raiz +attributes_no_import_candidates_found=Ningun atributo nuevo encontrado +attributes_adding_empty_attribute_error=No se puede usar la cadena vac\u00eda como nombre de atributo +property_dialog=Preferencias ... +OptionPanel.automatic=Autom\u00e1tico +OptionPanel.de=De +OptionPanel.dk=Dk +OptionPanel.en=En +OptionPanel.es=Es +OptionPanel.fr=Fr +OptionPanel.gl=Gl +OptionPanel.hu=Hu +OptionPanel.it=It +OptionPanel.ja=Ja +OptionPanel.ko=Ko +OptionPanel.nl=Nl +OptionPanel.pl=Pl +OptionPanel.pt_BR=Pt BR +OptionPanel.pt_PT=Pt PT +OptionPanel.ru=Ru +OptionPanel.sl=Sl +OptionPanel.zh_TW=Zh +OptionPanel.zh_CN=Zh CN +OptionPanel.fork=Bifurcaci\u00f3n +OptionPanel.bubble=Burbuja +OptionPanel.as_parent=Como el Padre +OptionPanel.combined=Combinar +OptionPanel.bezier=Beizer +OptionPanel.linear=Lineal +OptionPanel.default=Por Defecto +OptionPanel.metal=Metal +OptionPanel.windows=Windows +OptionPanel.motif=Motif +OptionPanel.gtk=Gtk +OptionPanel.nothing=Nada +OptionPanel.relative=Relativo +OptionPanel.absolute=Absoluto +OptionPanel.first=Primero +OptionPanel.last=\u00daltimo +OptionPanel.selection_method_direct=Directo +OptionPanel.selection_method_delayed=Retrasado +OptionPanel.selection_method_by_click=Por Click +OptionPanel.html_export_no_folding=No Doblado +OptionPanel.html_export_fold_currently_folded=Doblar Actualmente Doblados +OptionPanel.html_export_fold_all=Doblar Todos +OptionPanel.html_export_based_on_headings=Basado en Cabeceras +OptionPanel.Environment=Entorno +OptionPanel.Files=Ficheros +OptionPanel.language=Idioma +OptionPanel.language.tooltip= Este es el diioma que deber\u00eda ser usado en el programa. 'autom\u00e1tico' intenta cargar el lenguaje actual del usuario. +OptionPanel.experimental_file_locking_on=Bloqueo de Ficheros Experimental +OptionPanel.experimental_file_locking_on.tooltip= Caracter\u00edstica Experimental +OptionPanel.draganddrop=Arrastrar y Soltar +OptionPanel.draganddrop.tooltip=si dnd est\u00e1 habilitado. +OptionPanel.userproperties=Propiedades de usuario +OptionPanel.patternsfile=Fichero de Patrones +OptionPanel.docmapurl_since_version_0_7_0=Docmapurl +OptionPanel.browsemode_initial_map=Mapa Inicial del ModoNavegaci\u00f3n +OptionPanel.browsemode_initial_map.tooltip=La URL del mapa que es cargado cuando el ModoNavegaci\u00f3n se inicia +OptionPanel.last_opened_list_length=Longitud de la Ultima Lista Abierta +OptionPanel.time_for_automatic_save=Tiempo para el Salvado Autom\u00e1tico +OptionPanel.time_for_automatic_save.tooltip= tiempo entre dos salvados autom\u00e1ticos consecutivos (en msec): Para deshabilitar el salvado autom\u00e1tico fijar este n\u00famero a 2000000000. +OptionPanel.delete_automatic_saves_at_exit=Borrar Salvados Autom\u00e1ticos al Salir +OptionPanel.delete_automatic_saves_at_exit.tooltip= Si los ficheros deben ser borrados autom\u00e1ticamente en un apagado normal de Freemind, fijar la siguiente variable a 'true' +OptionPanel.number_of_different_files_for_automatic_save=Numero de Diferentes Ficheros para Salvado Autom\u00e1tico +OptionPanel.number_of_different_files_for_automatic_save.tooltip= n\u00famero n de diferentes ficheros en los que almacenar los mapas. El primer salvado autom\u00e1tico se hace en el primer fichero, y de esta manera hasta el salvado n+1 que de forma c\u00edclica se almacena en el primer fichero +OptionPanel.path_to_automatic_saves=Directorio para Salvados Autom\u00e1ticos +OptionPanel.path_to_automatic_saves.tooltip= para cambiar el directorio por defecto, 'java.io.tmpdir' en java, introducir un directorio aqu\u00ed; otras posibilidades:* freemind_home indica que el directorio donde se apunta es la ubicaci\u00f3n de auto.properties. * default apunta a java.io.tmpdir +OptionPanel.Defaults=Por Defecto +OptionPanel.standardnodestyle=Estilo de Nodo Est\u00e1ndard +OptionPanel.standardnodestyle.tooltip=El nuevo estilo de nodo por defecto.'fork','bubble' 'as_parent' and 'combined' est\u00e1n soportados +OptionPanel.standardrootnodestyle=Estilo Est\u00e1ndar del Nodo Raiz +OptionPanel.standardrootnodestyle.tooltip=El estilo del nodo raiz si otros no est\u00e1n definidos.'fork','bubble' 'as_parent' and 'combined' est\u00e1n soportados +OptionPanel.standardnodetextcolor=Color de Nodo Est\u00e1ndar +OptionPanel.standardnodetextcolor.tooltip=El color del nodo est\u00e1ndar. En notaci\u00f3n html (#RRGGBB in valores hex) +OptionPanel.standardselectednodecolor=Color de Nodo Seleccionado +OptionPanel.standardselectednodecolor.tooltip=El color est\u00e1ndar del nodo si seleccionado. En notaci\u00f3n html (#RRGGBB en valores hex) +OptionPanel.standardselectednoderectanglecolor=Color de Rect\u00e1ngulo de Selecci\u00f3n +OptionPanel.standardselectednoderectanglecolor.tooltip=El color est\u00e1ndar del rect\u00e1ngula que marca los nodos seleccionados. En notaci\u00f3n html (#RRGGBB en valores hex) +selection_as_rectangle=Muestra Selecci\u00f3n como Rectangulo on/off +OptionPanel.standarddrawrectangleforselection=Mostrar Selecci\u00f3n como Rect\u00e1ngulo +OptionPanel.standarddrawrectangleforselection.tooltip=Marcar los nodos seleccionados mediante un rect\u00e1ngulo. +OptionPanel.standardedgecolor=Color Est\u00e1ndar del Borde +OptionPanel.standardedgecolor.tooltip=El color est\u00e1ndar del borde en notaci\u00f3n html +OptionPanel.standardlinkcolor=Color Est\u00e1ndar del Enlace +OptionPanel.standardlinkcolor.tooltip=El color est\u00e1ndar del enlace en notaci\u00f3n html +OptionPanel.standardbackgroundcolor=Color de Fondo Est\u00e1ndar +OptionPanel.standardbackgroundcolor.tooltip=El color est\u00e1ndar de fondo en notaci\u00f3n html +OptionPanel.printonwhitebackground=Fondo Blanco para impresi\u00f3n +OptionPanel.printonwhitebackground.tooltip=Siempre usar fondo blanco para impresi\u00f3n +OptionPanel.standardcloudcolor=Color Est\u00e1ndar de Nube +OptionPanel.standardcloudcolor.tooltip=El color de nuve est\u00e1ndar en notaci\u00f3n html +OptionPanel.defaultfont=Fuente por Defecto +OptionPanel.defaultfont.tooltip=Fuente del nodo por defecto. Esto s\u00f3lo ser\u00e1 v\u00e1lido si la fuente (TrueTypeFont) est\u00e1 disponible en el sistema +OptionPanel.defaultfontstyle=Estilo de Fuente por Defecto +OptionPanel.defaultfontsize=Tama\u00f1o de Fuente por Defecto +OptionPanel.max_node_width=Anchura M\u00e1xima de Nodo +OptionPanel.max_node_width.tooltip=Anchura m\u00e1xima del nodo por defecto en pixels +OptionPanel.standardedgestyle=Estilo de Borde Est\u00e1ndar +OptionPanel.standardedgestyle.tooltip=El estilo de borde est\u00e1ndar. Est\u00e1n soportados 'lineal' y 'bezier' . +OptionPanel.standardcloudestyle=Estilo Est\u00e1ndar de Nubes +OptionPanel.standardcloudestyle.tooltip=El estilo est\u00e1ndar de nubes. Actualmente s\u00f3lo est\u00e1 soportado 'bezier' +OptionPanel.standardlinkestyle=Estilo de Enlace Est\u00e1ndar +OptionPanel.standardlinkestyle.tooltip=El estilo est\u00e1ndar de enlace. Actualmente s\u00f3lo est\u00e1 soportado 'bezier' +OptionPanel.Appearance=Apariencia +OptionPanel.lookandfeel=Look and Feel +OptionPanel.lookandfeel.tooltip= El Look&Feel a utilizar. Est\u00e1n soportados \u201cmetal\u201d, 'windows', 'motif', \u201cgtk\u201d, \u201cmac\u201d est\u00e1 disponible solamente en MacOS. Por defecto significa que se usa el look and feel por defecto. Si desea utilizar su propio L&F, incorporar por favor el nombre de la clase aqu\u00ed y asegurase que los archivos jar correspondientes est\u00e1n cargados. Si hay problemas con el L&F, entonces aqu\u00ed elegir 'nada' . Funciona con los applets +OptionPanel.mapxsize=Tama\u00f1o de Abcisas (X) +OptionPanel.mapxsize.tooltip=Tama\u00f1o inicial de cualquier mapa +OptionPanel.mapysize=Tama\u00f1o en Ordenadas (Y) +OptionPanel.links=Enlaces +OptionPanel.links.tooltip=Fijar los Enlaces o bier relativos o bien absolutos +OptionPanel.el__buttons_position=Posici\u00f3n de Botones +OptionPanel.el__buttons_position.tooltip= arriba / abajo +OptionPanel.el__position_window_below_node=Posicionar Ventana Debajo del Nodo +OptionPanel.el__min_default_window_height=Altura M\u00edn de Ventana por Defecto +OptionPanel.el__max_default_window_height=Altura Max de Ventana por Defecto +OptionPanel.el__min_default_window_width=Anchura M\u00ednima de Ventana por Defecto +OptionPanel.el__max_default_window_width=Anchura Max. de Ventana por Defecto +OptionPanel.el__enter_confirms_by_default=Intro Confirma Por Defecto +OptionPanel.el__show_icon_for_attributes=Mostrar el Icono para Atributos +OptionPanel.Keystrokes=Pulsaciones de teclado +OptionPanel.keystroke_newMap=NuevoMapa +OptionPanel.keystroke_open=Abrir +OptionPanel.keystroke_save=Salvar +OptionPanel.keystroke_saveAs=SalvarComo +OptionPanel.keystroke_print=Imprimir +OptionPanel.keystroke_close=Cerrar +OptionPanel.keystroke_quit=Salir +OptionPanel.keystroke_export_to_html=Exportar a Html +OptionPanel.keystroke_export_branch_to_html=Exportar Rama a Html +OptionPanel.keystroke_open_first_in_history=Abrir el Primero del Historial +OptionPanel.keystroke_previousMap=MapaPrevio +OptionPanel.keystroke_nextMap=SiguienteMapa +OptionPanel.keystroke_mode_MindMap=Modo MindMap +OptionPanel.keystroke_mode_Browse=Modo Navegaci\u00f3n +OptionPanel.keystroke_mode_File=Modo Fichero +OptionPanel.keystroke_node_toggle_italic=Nodo - Conmutar Cursiva +OptionPanel.keystroke_node_toggle_boldface=Nodo - Conmutar Negrita +OptionPanel.keystroke_node_toggle_underlined=Nodo - Conmutar Subrayado +OptionPanel.keystroke_node_toggle_cloud=Nodo - Conmutar Nube +OptionPanel.keystroke_undo=Deshacer +OptionPanel.keystroke_redo=Rehacer +OptionPanel.keystroke_delete_child=Borrar Hijo +OptionPanel.keystroke_select_all=Seleccionar Todos +OptionPanel.keystroke_select_branch=Seleccionar Rama +OptionPanel.keystroke_zoom_out=Ampliar Zoom +OptionPanel.keystroke_zoom_in=Reducir Zoom +OptionPanel.keystroke_cut=Cortar +OptionPanel.keystroke_copy=Copiar +OptionPanel.keystroke_copy_single=Copia Simple +OptionPanel.keystroke_paste=Pegar +OptionPanel.keystroke_remove=Borrar +OptionPanel.keystroke_add_arrow_link_action=A\u00f1adir Acci\u00f3n a la Flecha de Enlace +OptionPanel.keystroke_add_local_link_action=A\u00f1adir Acci\u00f3n al Enlace Local +OptionPanel.keystroke_moveToRoot=MoverARaiz +OptionPanel.keystroke_move_up=Mover Arriba +OptionPanel.keystroke_move_down=Mover Abajo +OptionPanel.keystroke_move_left=Mover Izquierda +OptionPanel.keystroke_move_right=Mover Derecha +OptionPanel.keystroke_follow_link=Seguir Enlace +OptionPanel.keystroke_add=A\u00f1adir +OptionPanel.keystroke_add_child=A\u00f1adir Hijo +OptionPanel.keystroke_add_child_mac=A\u00f1adir Hijo Mac +OptionPanel.keystroke_add_sibling_before=A\u00f1adir Hermano Antes +OptionPanel.keystroke_edit=Editar +OptionPanel.keystroke_edit_long_node=Editar Nodo Largo +OptionPanel.keystroke_join_nodes=Unir Nodos +OptionPanel.keystroke_toggle_folded=Conmutar Doblado +OptionPanel.keystroke_toggle_children_folded=Conmutar Hijos Doblados +OptionPanel.keystroke_set_link_by_filechooser=Establecer Enlace mediante Selector de Ficheros +OptionPanel.keystroke_set_link_by_textfield=Establecer Enlace Mediante Campo de Texto +OptionPanel.keystroke_set_image_by_filechooser=Establecer Imagen Mediante Selector de Ficheros +OptionPanel.keystroke_node_up=Nodo Arriba +OptionPanel.keystroke_node_down=Nodo Abajo +OptionPanel.keystroke_node_increase_font_size=Nodo Incrementar Tama\u00f1o Fuente +OptionPanel.keystroke_node_decrease_font_size=Nodo Decrementar Tama\u00f1o Fuente +OptionPanel.keystroke_export_branch=Exportar Rama +OptionPanel.keystroke_node_color=Color de Nodo +OptionPanel.keystroke_node_color_blend=Mezcla de Color del Nodo +OptionPanel.keystroke_edge_color=Color del Borde +OptionPanel.keystroke_find=Buscar +OptionPanel.keystroke_find_next=Buscar Siguiente +OptionPanel.keystroke_apply_pattern_1=Aplicar Patr\u00f3n 1 +OptionPanel.keystroke_apply_pattern_2=Aplicar Patr\u00f3n 2 +OptionPanel.keystroke_apply_pattern_3=Aplicar Patr\u00f3n 3 +OptionPanel.keystroke_apply_pattern_4=Aplicar Patr\u00f3n 4 +OptionPanel.keystroke_apply_pattern_5=Aplicar Patr\u00f3n 5 +OptionPanel.keystroke_apply_pattern_6=Aplicar Patr\u00f3n 6 +OptionPanel.keystroke_apply_pattern_7=Aplicar Patr\u00f3n 7 +OptionPanel.keystroke_apply_pattern_8=Aplicar Patr\u00f3n 8 +OptionPanel.keystroke_apply_pattern_9=Aplicar Patr\u00f3n 9 +OptionPanel.keystroke_apply_pattern_10=Aplicar Patr\u00f3n 10 +OptionPanel.keystroke_apply_pattern_11=Aplicar Patr\u00f3n 11 +OptionPanel.keystroke_apply_pattern_12=Aplicar Patr\u00f3n 12 +OptionPanel.keystroke_apply_pattern_13=Aplicar Patr\u00f3n 13 +OptionPanel.keystroke_apply_pattern_14=Aplicar Patr\u00f3n 14 +OptionPanel.keystroke_apply_pattern_15=Aplicar Patr\u00f3n 15 +OptionPanel.keystroke_apply_pattern_16=Aplicar Patr\u00f3n 16 +OptionPanel.keystroke_apply_pattern_17=Aplicar Patr\u00f3n 17 +OptionPanel.keystroke_apply_pattern_18=Aplicar Patr\u00f3n 18 +OptionPanel.Behaviour=Comportamiento +OptionPanel.placenewbranches=Ubicar Ramas Nuevas +OptionPanel.placenewbranches.tooltip=Donde ubicar nuevas ramas. Valores v\u00e1lidos: 'Primero' y '\u00faltimo' +OptionPanel.disable_cursor_move_paper=Desactivar Papel de Movimiento de Cursor +OptionPanel.disable_cursor_move_paper.tooltip=No mostrar 'mover' cursor durante arrastre de papel +OptionPanel.enable_leaves_folding=Activa Doblado de Hojas +OptionPanel.enable_leaves_folding.tooltip=Activa doblado de hojas == cambiando bubble/fork para acci\u00f3n de doblado (De todas maneras si falso, siempre es posible utilizar el estilo del nodo para cambiarlo +OptionPanel.foldingsymbolwidth=Anchura del Simbolo de Doblado +OptionPanel.foldingsymbolwidth.tooltip=Anchura del circulo de marcaje de doblado +OptionPanel.disable_key_type=Desactivar Teclear +OptionPanel.disable_key_type.tooltip=Teclear: si activado entra en edici\u00f3n de nodo +OptionPanel.key_type_adds_new=Teclear A\u00f1ade Nuevo +OptionPanel.key_type_adds_new.tooltip=Teclear: sobrescribe contenido (false) / crea nuevo hermano (true) (requiere: desactivar_teclear = falso) +OptionPanel.selection_method=M\u00e9todo de Selecci\u00f3n +OptionPanel.selection_method.tooltip= con el siguiente conmutador puede activar/desactivar el esquema de selecci\u00f3n retardado. Opciones Autom\u00e1ticas. De cualquier manera No modificar estas mientras sean salvadas en auto.properties. +OptionPanel.time_for_delayed_selection=Tiempo para la Selecci\u00f3n Retrasada +OptionPanel.time_for_delayed_selection.tooltip= Tiempo de retardo de Selecci\u00f3n de nodos cuando el rat\u00f3n est\u00e1 encima (en msec). Cambiar este valor a 1 si quiere selecci\u00f3n directa cuando el rat\u00f3n est\u00e9 encima. +OptionPanel.HTML=HTML +OptionPanel.default_browser_command_windows_nt=Comando de Navegador por defecto. Windows Nt +OptionPanel.default_browser_command_windows_nt.tooltip=Para Windows (los "" signos son necesarios debido a los enlaces, que tienen "=" en su URL). +OptionPanel.default_browser_command_windows_9x=Comando de Navegador por defecto. Windows 9x +OptionPanel.default_browser_command_windows_9x.tooltip=Para Windows (los "" signos son necesarios debido a los enlaces, que tienen "=" en su URL). +OptionPanel.default_browser_command_other_os=Comando de Navegador por defecto. Otros SO +OptionPanel.default_browser_command_other_os.tooltip= Esto es t\u00edpicamente Linux: +OptionPanel.default_browser_command_mac=Comando de Navegador por defecto. Mac +OptionPanel.default_browser_command_mac.tooltip= y MAC: (gracias a to Nick!) +OptionPanel.html_export_folding=Carpeta de Exportaci\u00f3n Html +OptionPanel.export_icons_in_html=Exportar Iconos en Html +OptionPanel.export_icons_in_html.tooltip= Indica si el HTML exportado de FreeMind deber\u00eda contener iconos. El problema con iconos es que bastante amenudo los enlaces a iconos no pueden ser encontrados en el HTML exportado. +OptionPanel.Cancel=Cancel +OptionPanel.OK=Salvar +option_changes_may_require_restart=Para ver los efectos de las propiedades cambiadas, probablemente deber\u00e1 reiniciar FreeMind. +GrabKeyDialog.grab-key.title=Introducir nueva clave +GrabKeyDialog.grab-key.clear=Limpiar +GrabKeyDialog.grab-key.assigned-to.none=Actualmente sin asignar +GrabKeyDialog.grab-key.assigned-to=Asignado a +GrabKeyDialog.common.ok=OK +GrabKeyDialog.grab-key.remove=Borrar +GrabKeyDialog.common.cancel=Cancelar +GrabKeyDialog.grab-key.remove-ask=\u00bfEst\u00e1 seguro que quiere borrar esta pulsaci\u00f3n de teclado? +OptionPanel.separator.language=Idioma +OptionPanel.separator.files=Ficheros +OptionPanel.separator.automatic_save=Salvado Autom\u00e1tico +OptionPanel.separator.default_styles=Estilos por Defecto +OptionPanel.separator.default_colors=Colores por Defecto +OptionPanel.separator.selection_colors=Colores de Selecci\u00f3n +OptionPanel.separator.default_fonts=Fuentes por Defecto +OptionPanel.separator.other_defaults=Otros Par\u00e1metros por Defecto +OptionPanel.separator.look_and_feel=Look and Feel +OptionPanel.separator.anti_alias=Antialias +OptionPanel.separator.initial_map_size=Tama\u00f1o de Mapa Inicial +OptionPanel.separator.hyperlink_types=Tipos de Hyperenlaces +OptionPanel.separator.edit_long_node_window=Ventana de Edici\u00f3n de Nodo Largo +OptionPanel.separator.commands_for_the_program=Instrucciones para el programa +OptionPanel.separator.node_editing_commands=Instrucciones de Edici\u00f3n de Nodo +OptionPanel.separator.node_navigation_commands=Instrucciones de Navegaci\u00f3n de Nodo +OptionPanel.separator.new_node_commands=Instrucciones de Nuevo Nodo +OptionPanel.separator.patterns=Patrones +OptionPanel.separator.behaviour=Comportamiento +OptionPanel.separator.key_typing=Teclear +OptionPanel.separator.selection_method=M\u00e9todo de Selecci\u00f3n +OptionPanel.separator.browser=Navegador +OptionPanel.separator.html_export=Exportaci\u00f3n de Html +OptionPanel.separator.attributes=Atributos +OptionPanel.separator.icons=Iconos en "Seleccionar Icono..." +OptionPanel.keystroke_edit_attributes=Editar atributos +OptionPanel.keystroke_show_all_attributes=Mostrar todos los atributos +OptionPanel.keystroke_show_selected_attributes=Mostrar atributos seleccionados +OptionPanel.keystroke_hide_all_attributes=Esconder todos los atributos +OptionPanel.keystroke_show_attribute_manager=Mostrar el gestor de atributos +OptionPanel.keystroke_assign_attributes=Asignar atributos ... +OptionPanel.antialias.tooltip=Determina la calidad del mapa. M\u00e1s antialias necesita m\u00e1s tiempo. +OptionPanel.antialias=Antialias +OptionPanel.antialias_edges=Bordes de Antialias +OptionPanel.antialias_all=Todo Antialias +OptionPanel.antialias_none=No Antialias +OptionPanel.cs=Cs +OptionPanel.nb=Nb +OptionPanel.ColorProperty.ResetColor=Reinicia Color +OptionPanel.keystroke_option_dialog=Preferencias +format_menu_edge_styles=Estilos de Bordes +format_menu_edge_widths=Anchura Bordes +accessories/plugins/ImportMindmanagerFiles.properties_name=Mapa MindManager X5 ... +accessories/plugins/ExportToOoWriter.properties_name=Como Documento Open Office Writer ... +OptionPanel.separator.undo=Deshacer +OptionPanel.undo_levels=Deshacer Niveles +OptionPanel.undo_levels.tooltip=Determina cuantos pasos almacenados pueden ser deshechos v\u00eda "Deshacer". +OptionPanel.lt=Lt +# fc, 12.1.2006: new spanish translation. Thanks to Natxo. +browsemode_initial_map = ./doc/freemind_es.mm +link_not_found =Enlace $1 no encontrado. +icon_smily_bad =No me encuentro divertido +OptionPanel.hr=Hr +OptionPanel.nn=Nn +OptionPanel.se=Se +OptionPanel.unfold_on_paste=Despliega nodo al pegar +OptionPanel.unfold_on_paste.tooltip=Despliega nodo al pegar o Arrastrar y Soltar +accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Exporta el mapa como un applet java para Navegador +accessories/plugins/ExportWithXSLT_Applet.properties_name=Como Applet de Java ... +accessories/plugins/ExportWithXSLT_Applet.properties_webpage=P\u00e1gina Web +accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Exporta el mapa como una aplicaci\u00f3n flash +accessories/plugins/ExportWithXSLT_Flash.properties_name=Como Flash ... +accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=A la izquierda de la raiz los nodos son desplazados hacia abajo. Se convierten en hijos de su hermano superior. A la derecha de la raiz, los nodos son desplazados hacia arriba. Directamente en la raiz, el nodo cambia de lado. +accessories/plugins/ChangeNodeLevelAction_left.properties_name=Nodo izquierdo +accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=A la derecha de la raiz los nodos son desplazados hacia abajo. Ellos se convierten en hijos de su hermano superior. A la izquierda de la raiz los nodos son desplazados hacia arriba. Directamente en la raiz, los nodos cambian de lado. +accessories/plugins/ChangeNodeLevelAction_right.properties_name=Nodo derecho +PatternDialog.ColorProperty.ResetColor=ReiniciaColor +PatternDialog.EdgeWidth_1=1 +PatternDialog.EdgeWidth_2=2 +PatternDialog.EdgeWidth_4=4 +PatternDialog.EdgeWidth_8=8 +PatternDialog.EdgeWidth_parent=Como el padre +PatternDialog.EdgeWidth_thin=Delgado +PatternDialog.as_parent=Como el padre +PatternDialog.bezier=bezier +PatternDialog.bubble=burbuja +PatternDialog.combined=Combinado +PatternDialog.edgecolor.tooltip=La propiedad del borde del nodo padre (se aplica tambi\u00e9n a todos los nodos hijos) +PatternDialog.edgecolor=Color del Borde +PatternDialog.edgestyle.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00e9n a todos los nodos hijos) +PatternDialog.edgestyle=Estilo del borde +PatternDialog.edgewidth.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00e9n a todos los nodos hijos) +PatternDialog.edgewidth=Anchura del borde +PatternDialog.fork=Bifurcaci\u00f3n +PatternDialog.linear=Lineal +PatternDialog.nodebackgroundcolor=Color de Fondo del nodo +PatternDialog.nodecolor=Color del Nodo +PatternDialog.nodestyle=Estilo del Nodo +PatternDialog.nodetext=Texto del Nodo +PatternDialog.separator.EdgeControls=Bordes +PatternDialog.separator.NodeColors=Colores del Nodo +PatternDialog.separator.NodeStyles=Estilos del Nodo +PatternDialog.sharp_bezier=Bezier agudo +PatternDialog.sharp_linear=Lineal Agudo +PatternDialog.undefined_font=Fuente indefinida +accessories/plugins/ApplyFormatPlugin.properties_documentation=Presenta un di\u00e1logo en el que los atributos de nodo y borde pueden ser cambiados al mismo tiempo. +accessories/plugins/ApplyFormatPlugin.properties_name=Cambiar formato ... +accessories/plugins/ApplyFormatPlugin.dialog.title=Cambiar formato de los nodos +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Mover izquierda +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Mover derecha +OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Copiar formato +OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Pegar formato +OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Insertar icono +OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Indentar nodos +OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Dividir nodo +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Doblar un nivel +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Desdoblar un nivel +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Doblar todos +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Desdoblar todos +OptionPanel.separator.others=Otros enlaces clave +PatternDialog.separator.General=General +PatternDialog.clear_all_setters=Conmutar todos +PatternDialog.clear_all_setters.tooltip=Activa o desactiva todas las indicaciones de cambio +accessories/plugins/ManagePatterns.dialog.title=Gestiona Patrones ... +accessories/plugins/ManagePatterns.not_found=El Patr\u00f3n de fichero no puede ser cargado. +accessories/plugins/ManagePatterns.properties_documentation=Cambia los patrones definidos en patterns.xml en un editor. El resultado se salva autom\u00e1ticamente. +accessories/plugins/ManagePatterns.properties_name=Gestiona Patrones... +PatternDialog.nodefontname=Fuente del Nodo +PatternDialog.nodefontsize=Fuente del Nodo +PatternDialog.nodefontbold=Fuente Negrita +PatternDialog.nodefontitalic=Fuente Cursiva +PatternDialog.separator.NodeFont=Fuente del Nodo +ManagePatternsPopupDialog.remove=Eliminar Patr\u00f3n +ManagePatternsPopupDialog.add=A\u00f1adir nuevo Patr\u00f3n +PatternDialog.patternname=Nombre +PatternDialog.patternname.tooltip=Nombre de patr\u00f3n \u00fanico +PatternNewNameProperty=Nuevo Patr\u00f3n +ManagePatternsPopupDialog.DuplicateNameMessage=Ha elegido un nombre dos veces. Por favor, cambia esto antes de abandonar este di\u00e1logo. +PatternDialog.childpattern.tooltip=El patr\u00f3n seleccionado se aplica a todos los hijos. +PatternDialog.childpattern=Patr\u00f3n de Hijos +ManagePatternsPopupDialog.Save=Salvar y Volver +PatternDialog.icon.tooltip=Si se aplica, el nodo tendr\u00e1 exactamente este icono. +PatternDialog.icon=Icono +PatternDialog.set_property_text=Cambiar +PatternDialog.set_property_text.tooltip=Vacio:No tocar;Menos=Eliminar propiedad (fijar los valores por defecto);M\u00e1s=Cambia propiedad +accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Cambiar patr\u00f3n +OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Patrones autom\u00e1ticos de distribuci\u00f3n +OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Patrones +PatternToString.color=Color +PatternToString.backgroundColor=Color de Fondo +OptionPanel.automaticFormat_level1=Formato de Nodo Raiz +OptionPanel.automaticFormat_level2=Formato de Nodo de Nivel 1. +PatternToString.NodeFontSize=Tama\u00f1o de Fuente +OptionPanel.level1=Formato de Nodo Raiz +OptionPanel.level2=Formato de Nodo de Nivel 1. +OptionPanel.level3=Formato de Nodo de Nivel 2. +OptionPanel.level4=Formato de Nodo de Nivel 3. +OptionPanel.level5=Formato de Nodo de otros niveles. +OptionPanel.automaticFormat_level=Estilos autom\u00e1ticos de disposici\u00f3n +ManagePatternsPopupDialog.duplicate=Patr\u00f3n Duplicado +ManagePatternsPopupDialog.from_nodes=Crear Patron de los Nodos Seleccionados +accessories/plugins/SaveAll.properties_documentation=Salvar todos los mapas abiertos +accessories/plugins/SaveAll.properties_name=Salvar Todo +accessories/plugins/SaveAll.properties_save_all_cancelled=La operaci\u00f3n no se complet\u00f3 con exito. +OptionPanel.loadLastMap=Abrir autom\u00e1ticamente el \u00faltimo mapa +OptionPanel.loadLastMap.tooltip=Si chequeado, cuando FreeMind se inicia, carga el \u00faltimo mapa abierto +use_rich_formatting =Usar Formato Rico +use_plain_text =Usar Texto Plano +FreeMind.progress.gettingPreferenceDirectories=Cargando Preferencias de Directorio ... +FreeMind.progress.gettingPreferences=Cargando Preferencias ... +FreeMind.progress.updateLookAndFeel=Actualizar Look And Feel ... +FreeMind.progress.createController=Crear Controlador ... +FreeMind.progress.settingPreferences=Fijar Preferencias ... +FreeMind.progress.propageteLookAndFeel=Propagar Look And Feel ... +FreeMind.progress.createInitialMode=Crear Modo Inicial ... +FreeMind.progress.startCreateController=Iniciar Crear Controlador ... +FreeMind.progress.loadMaps=Cargar Mapas ... +FreeMind.progress.buildScreen=Construir Pantalla ... +FreeMind.progress.endStartup=Finalizar Inicio. +OptionPanel.tr=Tr +OptionPanel.level=Nivel +map_not_saved=El mapa no fue salvado previamente. +plugins/TimeManagement.xml_Find=Buscar +plugins/TimeManagement.xml_Replace=Reemplazar +plugins/TimeManagement.xml_Select=Seleccionar +plugins/TimeManagement.xml_Export=Exportar los Nodos Seleccionados +plugins/TimeManagement.xml_Replace_All=Reemplazar Todos +plugins/TimeManagement.xml_Replace_Selected=Reemplazar los Seleccionados +plugins/TimeManagement.xml_Goto=Ir a +plugins/TimeManagement.xml_Cancel=Cancelar +automatically_save_message=El Mapa se salv\u00f3 autom\u00e1ticamente (utilizando el nombre de fichero {0}) ... +plugins/ScriptingEngine.xml_documentation=Evalua todos los scripts contenidos (orden recursivo, leaves first). +plugins/ScriptingEngine.xml_name=Evalua +OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Evalua +error_applying_template=Error aplicando la plantilla XSL. +accessories/plugins/NodeNote_jumpto.properties_documentation=Conmuta a resp. de la ventana de notas +accessories/plugins/NodeNote_jumpto.properties_name=Conmutador de Editor de Notas +OptionPanel.max_tooltip_width=Anchura de la Herramienta de Consejos +OptionPanel.max_tooltip_width.tooltip=La anchura por defecto, en pixels, de la herramienta de consejos. +plugins/NodeList.xml_documentation=Muestra todos los nodos como una lista de b\u00fasqueda con propiedades de filtro. +accessories/plugins/NodeNote_hide_show.properties_documentation=Es un atajo de men\u00fa para las peque\u00f1as flechas en la l\u00ednea de divisi\u00f3n. +accessories/plugins/NodeNote_hide_show.properties_name=Mostrar/Esconder Ventana de Notas +OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Conmutador de Editor de Notas +OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Mostrar/Ocultar Ventana de Notas +accessories/plugins/ExportWithXSLT_Applet.properties_tji=Ficheros Include de Task Juggler +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Exporta tareas del nodo de TAREAS al m\u00f3dulo Taskjuggler. +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Tareas del nodo de TAREAS al fichero TaskJuggler ... +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Exporta recursos del nodo RECURSOS al m\u00f3dulo Taskjuggler. +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Recursos del nodo RECURSOS al fichero TaskJuggler ... +plugins/NodeList.xml_name=Buscar y Reemplazar ... +plugins/TimeManagement.xml_menu_actions=Acciones +plugins/TimeList.xml_Notes=Notas +accessories/plugins/SortNodes.properties_documentation=Ordena alfab\u00e9ticamente los hijos de un nodo. +accessories/plugins/SortNodes.properties_name=Ordenar Hijos +OptionPanel.ar=Ar +plugins/TimeManagement.xml_WindowTitle_All_Nodes=Buscar y Reemplazar +plugins/ScriptEditor.xml_documentation=Activa escribir scripts grandes en FreeMind. +plugins/ScriptEditor.xml_name=Editor de Scripts ... +plugins/ScriptEditor/window.title=Editor de Scripts +plugins/ScriptEditor.menu_actions=Acciones +plugins/ScriptEditor.run=Ejecutar +plugins/ScriptEditor.exit=Salir +plugins/ScriptEditor/window.Result=Resultado: +simplyhtml.editLabel=Editar +simplyhtml.undoLabel=Deshacer +simplyhtml.undoTip=deshacer +simplyhtml.redoLabel=Rehacer +simplyhtml.redoTip=rehacer +simplyhtml.cutLabel=Cortar +simplyhtml.cutTip=cortar +simplyhtml.copyLabel=Copiar +simplyhtml.copyTip=copiar +simplyhtml.pasteLabel=Pegar +simplyhtml.pasteTip=pegar +simplyhtml.selectAllLabel=Seleccionar todos +simplyhtml.findReplaceLabel=Encontrar y Reemplazar +simplyhtml.findReplaceTip=encontrar y reemplazar +simplyhtml.insertTableLabel=Tabla... +simplyhtml.formatLabel=Formato +simplyhtml.fontLabel=Fuente... +simplyhtml.fontTip=Formato de fuente... +simplyhtml.clearFormatLabel=Eliminar Formato +simplyhtml.clearFormatTip=Elminar Formato +simplyhtml.fontBoldLabel=Negrita +simplyhtml.fontBoldTip=conmutar negrita on/off +simplyhtml.fontItalicLabel=Cursiva +simplyhtml.fontItalicTip=Cunmuta cursiva on/off +simplyhtml.fontUnderlineLabel=Subrayado +simplyhtml.fontUnderlineTip=conmutar subrayado on/off +simplyhtml.formatTableLabel=Tabla... +simplyhtml.formatTableTip=Formatea tabla +simplyhtml.toggleBulletsLabel=Vi\u00f1etas on/off +simplyhtml.toggleBulletsTip=vi\u00f1etas on/off +simplyhtml.toggleNumbersLabel=Numeraci\u00f3n on/off +simplyhtml.toggleNumbersTip=numeraci\u00f3n on/off +simplyhtml.formatListLabel=Lista... +simplyhtml.formatListTip=cambiar formato de lista +simplyhtml.formatParaLabel=Par\u00e1grafo... +simplyhtml.formatParaTip=Cambiar formato de par\u00e1grafo +simplyhtml.paraAlignLeftLabel=Alinear izquierda +simplyhtml.paraAlignLeftTip=Fijar alineado izquierdo de par\u00e1grafo +simplyhtml.paraAlignCenterLabel=Alinear centrado +simplyhtml.paraAlignCenterTip=Fijar alineado centrado de par\u00e1grafo +simplyhtml.paraAlignRightLabel=Alinear derecha +simplyhtml.paraAlignRightTip=Fijar alineado derecho de par\u00e1grafo +simplyhtml.tableLabel=Tabla +simplyhtml.nextTableCellLabel=Celda siguiente +simplyhtml.prevTableCellLabel=Celda previa +simplyhtml.insertTableRowLabel=Insertar fila +simplyhtml.insertTableColLabel=Insertar columna +simplyhtml.appendTableRowLabel=A\u00f1adir fila +simplyhtml.appendTableColLabel=A\u00f1adir col +simplyhtml.deleteTableRowLabel=Borrar fila +simplyhtml.deleteTableColLabel=Borrar columna +simplyhtml.helpLabel=Ayuda +simplyhtml.aboutLabel=Acerca de SimplyHTML... +simplyhtml.aboutFrameTitle=Acerca de esta aplicaci\u00f3n +simplyhtml.fontDialogTitle=Formatear Fuente +simplyhtml.uLineLabel=Subrayar +simplyhtml.strikeLabel=Tachado +simplyhtml.previewLabel=Vista Previa +simplyhtml.previewText=Vista previa texto +simplyhtml.familyLabel=Familia +simplyhtml.sizeLabel=Tama\u00f1o +simplyhtml.plainName=plano +simplyhtml.boldName=negrita +simplyhtml.italicName=cursiva +simplyhtml.boldItalicName=cursiva negrita +simplyhtml.styleLabel=Estilo +simplyhtml.effectLabel=Efecto +simplyhtml.colorLabel=Color +simplyhtml.foregroundLabel=Primer Plano +simplyhtml.backgroundLabel=Fondo +simplyhtml.noLineLabel=ninfguno +simplyhtml.textIndentLabel=Indentar: +simplyhtml.alignLabel=Alineado: +simplyhtml.alignLeft=izquierda +simplyhtml.alignCenter=centro +simplyhtml.alignRight=derecha +simplyhtml.valignLabel=Alin. Vert. +simplyhtml.valignTop=top +simplyhtml.valignMiddle=medio +simplyhtml.valignBottom=fondo +simplyhtml.valignBaseline=L\u00ednea Base +simplyhtml.marginLabel=Exterior +simplyhtml.paddingLabel=Interior +simplyhtml.tableDialogTitle=Formatear Tabla +simplyhtml.tablePanelTitle=Formato de Tabla +simplyhtml.cellPanelTitle=Formato de Celda +simplyhtml.tableWidthLabel=Anchura: +simplyhtml.tableBgColLabel=Color de fondo: +simplyhtml.cellMarginTabLabel=Margen +simplyhtml.cellBorderTabLabel=Bordes +simplyhtml.borderWidthLabel=Anchura +simplyhtml.borderColorLabel=Color: +simplyhtml.thisCellRangeLabel=esta celda +simplyhtml.thisColRangeLabel=esta columna +simplyhtml.thisRowRangeLabel=esta fila +simplyhtml.allCellsRangeLabel=todas las celdas +simplyhtml.applyCellAttrLabel=Aplicar a +simplyhtml.cellGenTabLabel=General +simplyhtml.paraStyleDialogTitle=Estilo de Par\u00e1grafo +simplyhtml.fontTabLabel=Fuente +simplyhtml.paraTabLabel=Par\u00e1grafo +simplyhtml.cTagNamePara=Par\u00e1grafo +simplyhtml.cTagNameHead1=T\u00edtulo 1 +simplyhtml.cTagNameHead2=T\u00edtulo 2 +simplyhtml.cTagNameHead3=T\u00edtulo 3 +simplyhtml.cTagNameHead4=T\u00edtulo 4 +simplyhtml.cTagNameHead5=T\u00edtulo 5 +simplyhtml.cTagNameHead6=T\u00edtulo 6 +simplyhtml.cTagNameLink=Enlace +simplyhtml.cTagNameUL=Lista no ordenada +simplyhtml.cTagNameOL=Lista Ordenada +simplyhtml.listDialogTitle=Formato de Lista +simplyhtml.listTypeLabel=Tipo: +simplyhtml.listPositionLabel=Posici\u00f3n: +simplyhtml.listIndentTitle=Indentar: +simplyhtml.listTypeNone=ninguno +simplyhtml.listTypeDecimal=1.,2.,3.,4. +simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. +simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. +simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. +simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. +simplyhtml.listTypeDisc=S\u00edmbolo de fichero como vi\u00f1eta +simplyhtml.listTypeCircle=vi\u00f1eta redonda +simplyhtml.listTypeSquare=vi\u00f1eta cuadrada +simplyhtml.listPosInside=dentro +simplyhtml.listPosOutside=fuera +simplyhtml.findReplaceDialogTitle=B\u00fascar y Reemplazar +simplyhtml.findNext=Buscar siguiente... +simplyhtml.searchFromStart=Buscar desde el principio +simplyhtml.searchDown=Buscar hacia abajo +simplyhtml.wholeWordsOnly=Palabras completas s\u00f3lo +simplyhtml.searchUp=B\u00fascar hacia arriba +simplyhtml.matchCase=Coincidir may\u00fasculas y min\u00fasculas +simplyhtml.replaceWith=Reemplazar con: +simplyhtml.textToFind=Texto a encontrar: +simplyhtml.replace=Reemplazar... +simplyhtml.noMoreOccurrencesFound=no se han encontrado (m\u00e1s) ocurrencias +simplyhtml.allOccurrencesReplaced=Todas las ocurrencias reemplazadas +simplyhtml.replaceThisQuery=Reemplazar esta ocurrencia de +simplyhtml.replaceYes=S\u00ed +simplyhtml.replaceNo=No +simplyhtml.replaceAll=Todo +simplyhtml.replaceDone=Hecho +simplyhtml.unableToUndoError=No es posible deshacer: +simplyhtml.unableToRedoError=No es posible rehacer: +simplyhtml.unableToOpenFileError=El fichero no puede ser abierto +simplyhtml.imageFileDesc=Ficheros de imagen +simplyhtml.defaultDocName=Sin t\u00edtulo +simplyhtml.cancelBtnName=Cancelar +simplyhtml.closeBtnName=Cerrar +simplyhtml.okBtnName=OK +simplyhtml.leftLabel=izquierda: +simplyhtml.rightLabel=derecha: +simplyhtml.topLabel=Arriba: +simplyhtml.bottomLabel=Abajo: +simplyhtml.insertTableTitle=insertarTabla +simplyhtml.insertTableMsg=\u00bfCuantas columnas? +simplyhtml.close=Cerrar +simplyhtml.standardStyleName=est\u00e1ndar +simplyhtml.styleNameInputTitle=Salvar estilo +simplyhtml.styleNameInputText=\u00bfNombre del nuevo estilo? +simplyhtml.newStyleDefaultName=nuevo estilo +simplyhtml.docTitleTitle=Editar T\u00edtulo del Documento +simplyhtml.docTitleQuery=Fijar t\u00edtulo a: +simplyhtml.layoutTabTitle=Vista de disposici\u00f3n +simplyhtml.htmlTabTitle=Vista de c\u00f3digo HTML +ScriptEditorPanel.changed_cancel=Los escripts fueron cambiados. \u00bfQuiere abandonar estos cambios? +OptionPanel.separator.mouse_wheel=Rueda del rat\u00f3n +OptionPanel.wheel_velocity=Velocidad +OptionPanel.wheel_velocity.tooltip=Un valor m\u00e1s alto tendr\u00e1 como consecuencia un efecto mayor del movimiento de la rueda del rat\u00f3n en el mapa. +accessories/plugins/NodeHistoryBack.properties_name=Atr\u00e1s +accessories/plugins/NodeHistoryBack.properties_documentation=Salta hacia atr\u00e1s en la cadena de selecci\u00f3n +accessories/plugins/NodeHistoryForward.properties_name=Adelante +accessories/plugins/NodeHistoryForward.properties_documentation=Salta adelante en la cadena de selecci\u00f3n +OptionPanel.use_tabbed_pane.tooltip=Si los mapas seleccionados son mostrados como pesta\u00f1as (como en FireFox :-) ). +OptionPanel.use_tabbed_pane=Usar Pesta\u00f1as +accessories/plugins/ExportWithTWiki.properties_name=Como TWiki... +accessories/plugins/ExportWithTWiki.properties_documentation=Exporta el mapa como un documento TWiki. +accessories/plugins/ExportWithTWiki.properties=Fichero TWiki (*.twi) +really_remove_node=\u00bfDe verdad borrar el nodo(s)? +confirmation=Confirmaci\u00f3n +OptionalDontShowMeAgainDialog.dontShowAgain=No preguntar otra vez +OptionalDontShowMeAgainDialog.rememberMyDescision=Recordar decisi\u00f3n +OptionalDontShowMeAgainDialog.cancel=No +OptionalDontShowMeAgainDialog.ok=S\u00ed +OptionPanel.separator.resources_notifications=Confirmaciones +OptionPanel.delete_nodes_without_question=\u00bfBorrar nodo sin confirmaci\u00f3n? +OptionPanel.delete_nodes_without_question.tooltip=Si esta check box se activa los nodos ser\u00e1n borrados sin confirmaci\u00f3n. Esto puede causar p\u00e9rdida de informaci\u00f3n si se presiona sin intenci\u00f3n. +edit.decision=Editor HTML +edit.edit_rich_text=\u00bfQuiere usar formatos como negrita o cursiva? +OptionPanel.remind_use_rich_text_in_new_long_nodes=Usar formato para nuevos nodos +OptionPanel.remind_type_of_new_nodes.tooltip="Pregunta" preguntar\u00e1 (use en caso de duda).
"S\u00ed" muestra el editor de texto enriquecido.
"No" muestra el editor de texto plano. +OptionPanel.ask=Pregunta + +really_convert_to_current_version2=El mapa mental que est\u00e1 intentando abrir fue creado con una versi\u00f3n antigua de FreeMind y almacenado en formato antiguo. FreeMind va a convertir este mapa mental al formato actual. Una vez convertido no ser\u00e1 posible abrirlo con versiones antiguas de FreeMind. \u00bfDesea que FreeMind convierta y abra el mapa mental? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_et.properties freemind-0.9.0RC7/Resources_et.properties --- freemind-0.9.0RC6/Resources_et.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_et.properties 2010-02-27 21:47:59.000000000 +0000 @@ -7,7 +7,7 @@ about = Programmist add= &Lisa -about_text = FreeMind - vaba m\u00f5ttekaartide ja teadmiste ehitamise tarkvara \nAutori\u00f5igus \u00a9 2000-2008 J\u00f6rg M\u00fcller, Daniel Polansky, Christian Foltin, Dimitry Polivaev ja teised.\nSee programm on vaba tarkvara, litsenseeritud GNU \u00dcldise Avaliku Litsentsiga.\n\nKoduleht: http://freemind.sourceforge.net/\nVersioon: +about_text = FreeMind - vaba m\u00f5ttekaartide ja teadmiste ehitamise tarkvara \nAutori\u00f5igus \u00a9 2000-2010 J\u00f6rg M\u00fcller, Daniel Polansky, Christian Foltin, Dimitry Polivaev ja teised.\nSee programm on vaba tarkvara, litsenseeritud GNU \u00dcldise Avaliku Litsentsiga.\n\nKoduleht: http://freemind.sourceforge.net/\nVersioon: antialias_all = Pehmenda: fonte k\u00f5ikjal antialias_edges = Pehmenda: servad antialias_none = Eemalda pehmendamine @@ -101,7 +101,7 @@ italicise_branch = Kaldkirjaks join_nodes = \u00dchenda s\u00f5lmed license = Litsents -license_text = FreeMind - programm m\u00f5ttekaartide loomiseks ja vaatamiseks\nAutori\u00f5igus (C) 2000-2008 J\u00f6rg M\u00fcller \nT\u00e4psemalt vaata KOPEERIMINE\n\nSee programm on vaba tarkvara; Sa v\u00f5id seda edasi jagada ja/v\u00f5i\n muuta GNU \u00dcldise Avaliku Litsentsi alusel\nnagu see on avaldatud vaba Tarkvara Fondi poolt; versioon kaks\nlitsentsist, v\u00f5i (vastavalt Sinu arvamusele) suvaline uuem versioon.\n\nSeda programmi jagatakse lootuses, et see on kellelegi kasulik,\nkuid ilma IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDIGARANTIITA\nv\u00f5i SOBIVUSELE TEATUD KINDLAKS EESM\u00c4RGIKS. \u00dcksikasjade suhtes vaata\nGNU \u00dcldist Avalikku Litsentsi.\n\nSa peaksid olema saanud koopia GNU \u00dcldisest Avalikust Litsentsist\nkoos selle programmiga; kui ei ole siis kirjuta Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\nSamuti v\u00f5ib GNU \u00dcldise Avaliku Litsentsi eestikeelset teksti leida internetist aadressilt\nhttp://et.wikipedia.org/wiki/GNU_GPL_(tekst) +license_text = FreeMind - programm m\u00f5ttekaartide loomiseks ja vaatamiseks\nAutori\u00f5igus (C) 2000-2010 J\u00f6rg M\u00fcller \nT\u00e4psemalt vaata KOPEERIMINE\n\nSee programm on vaba tarkvara; Sa v\u00f5id seda edasi jagada ja/v\u00f5i\n muuta GNU \u00dcldise Avaliku Litsentsi alusel\nnagu see on avaldatud vaba Tarkvara Fondi poolt; versioon kaks\nlitsentsist, v\u00f5i (vastavalt Sinu arvamusele) suvaline uuem versioon.\n\nSeda programmi jagatakse lootuses, et see on kellelegi kasulik,\nkuid ilma IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDIGARANTIITA\nv\u00f5i SOBIVUSELE TEATUD KINDLAKS EESM\u00c4RGIKS. \u00dcksikasjade suhtes vaata\nGNU \u00dcldist Avalikku Litsentsi.\n\nSa peaksid olema saanud koopia GNU \u00dcldisest Avalikust Litsentsist\nkoos selle programmiga; kui ei ole siis kirjuta Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\nSamuti v\u00f5ib GNU \u00dcldise Avaliku Litsentsi eestikeelset teksti leida internetist aadressilt\nhttp://et.wikipedia.org/wiki/GNU_GPL_(tekst) linear = Lineaarne load = &Laadi locking_failed_by_open = $1 kaardi lukustamine eba\u00f5nnestus. Avan vaid lugemisre\u017eiimis. @@ -1412,3 +1412,4 @@ simplyhtml.alignLabelj=Joondus: icon_smiley-sad = Kurb icon_stop-sign= Seis +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_eu.properties freemind-0.9.0RC7/Resources_eu.properties --- freemind-0.9.0RC6/Resources_eu.properties 1970-01-01 01:00:00.000000000 +0100 +++ freemind-0.9.0RC7/Resources_eu.properties 2010-02-27 21:47:59.000000000 +0000 @@ -0,0 +1,648 @@ +# Summary: - ID: 2956683 Submitted: Mikel Iturbe Urretxa ( azkentximinoa ) - 2010-02-22 18:04 +about = Freemind-i buruz +#about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: +about_text = Joerg Mueller-en FreeMind\nKontzeptu-mapaketa teknika gizaki-ordenagailu interfazeen diseinura hurbiltzen.\nCopyright (C) 2000-2010 Joerg Mueller eta beste.\nAplikazio hau Software Librea da (GPL)\nWebgunea: http://freemind.sourceforge.net/\nOndo Pasa!\nBertsioa: +antialias_all = Dena leundu +antialias_edges = Ertzak leundu +antialias_none = Ez leundu +background = Background +bezier = Bezier +blend_color = Kolorea nahastu +bold = Lodia +boldify_branch = Lodiagotu +cloud = Hodeia +cloud_color = Hodei kolorea... +branch = Adarra +bubble = Burbuila +cancel = Utzi +cannot_join_nodes_with_children = Cannot join nodes with children +center = Zentratu +close = Itxi +copy = Kopiatu +copy_single = Bakarra kopiatu +cut = Moztu +decrease_branch_font_size = Txikiagotu letra-tipoa +decrease_node_font_size = Handiagotu letra-tipoa +documentation = Dokumentazioa +edge = Ertza +edge_color = Ertz kolorea... +edge_width_parent = Gurasoa +edge_width_thin = Mehea +edit = Editatu +edit_link_manually = Hiperresteka eskuz editatu... +edit_long_node = Nodo luzea editatu... +enter_base_url = Esteka erlatiboak itsatsiko ditut. Sartu mesedez URL oinarria. +enter_confirms = KonfirmatuEnter Confirms +export_branch = Adarra... +export_branch_to_html = Adarra HTMLn +export_to_html = HTML gisa +extension_menu = Estilo fisikoa +file = Fitxategia +file_not_found = $1 fitxategia ez da aurkitu +find = Bilatu... +find_what = Find what +find_next = Bilatu hurrengoa +fold = Bildu +follow_link = Jarraitu esteka +font = Letra tipoa +fork = Adardura +help = Laguntza +html_export_based_on_headings = HTML Export - Based on Headings +html_export_no_folding = HTML esportazioa - Bildurarik ez +html_export_fold_currently_folded = HTML esportazioa - Bildutakoak bilduta mantendu +html_export_fold_all = HTML esportazioa - Denak bildu +# Daniel Polansky: This way of maintaining icon text +# will ultimately lead to unbearable overheads. +icon_menu = Ikonoak +icon_help = Galdera +icon_messagebox_warning = Garrantzitsua +icon_idea = Ideia +icon_button_ok = Ados +icon_button_cancel = Utzi +icon_back = Atzera +icon_forward = Aurrera +icon_attach = Hemen begiratu +icon_ksmiletris = Pozik nago +icon_clanbomber = Arriskutsua +icon_desktop_new = Ez ahaztu +icon_flag = Bandera +icon_gohome = Etxea +icon_kaddressbook = Telefonoa +icon_knotify = Musika +icon_korn = Postontzia +icon_Mail = Posta +icon_password = Gakoa +icon_pencil = Findu beharrekoa +icon_stop = Gelditu +icon_wizard = Magikoa +icon_xmag = Eztabaidatu beharrekoa +icon_bell = Gogoratu +icon_bookmark = Bikaina +icon_penguin = Linux +icon_licq = Ondo +import = Inportatu +import_branch = Adarra... +import_explorer_favorites = Arakatzaileko gogokoenak +import_folder_structure = Karpeta Egitura... +import_linked_branch = Estekaturiko Adarra +import_linked_branch_without_root = (Estekaturiko adarra) Root gabe... +increase_branch_font_size = Handiagotu letra-tipoa +increase_node_font_size = Handiagotu letra-tipoa +italic = Etzana +italicise_branch = Etzana bihurtu +join_nodes = Nodoak batu +license = Lizentzia +license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +linear = Lineala +locking_failed_by_open = Arazoak $1 mapa finkatzen. Irakurtzeko soilik zabaltzen. +locking_failed_by_save_as = Arazoak $1 mapa finkatzen. Honela Gorde ekintza etena. +locking_old_lock_removed = The map $1 was locked by the user $2. The lock has been removed because it is old. +map_already_exists = Mapa jada existitzen da. Gainidatzi nahi al duzu? +map_corrupted = Mapa hondaturik dago. Xehetasunak ikusi? +map_locked_by_open = The map $1 is already being edited by the user $2. Opening as read-only. +map_locked_by_save_as = $2 erabiltzailea $1 mapa ari da editatzen. Gorde Honela ekintza etena. +mindmap = Mapa +mindmaps = Mapak +mindmaps_desc = Mapak (*.mm) +mode_na = Modua ez dago eskuragarri +mode_status = Modua {0} modura aldatu da +mode_title =FreeMind - {0} Modua +modes = Moduak +move_to_root = Errora joan +new = Berria +new_child = Nodo kume berria +new_mindmap = Mapa mental berria +new_node = Nodo berria +new_sibling_behind = Nodo senide berria +new_sibling_before = Nodo senide berria aurretik +next_map = Hurrengo mapa +no = Ez +node = Nodo +node_changed_discard_changes = Nodoa aldatu duzu. Aldaketak baztertu nahi al dituzu? +node_color = Nodoaren kolorea... +node_down = Nodoa behera +node_up = Nodoa gora +nonboldify_branch = Kendu lodia +nonitalicise_branch = Kendu etzana +normal = Normal +no_found_from = Ez da "$1"-(e)rik aurkitu "$2"-(e)n. +no_more_found_from = No more "$1" found from "$2". +no_previous_find = Ez da Aurrekoa topatu. +not_saved_for_link_error = Esteka bat fitxategi arakatzailearekin aukeratu baino lehen, mapa gorde behar da +open = Ireki... +page = Orrialdea konfiguratu... +paste = Itsatsi +new_node_as_sibling_not_possible_for_the_root = Erroaren kasuan ez da posible nodo senidea sortzea +preferences = Ezarpenak +previous_map = Aurreko Mapa +print = Inprimatu... +quit = Irten +remove_node = Nodoa Kendu +read_only = Irakurtzeko Soilik +repair_link = Esteka konpondu +repair_link_question = Ezin izan da estekaturiko mapa kargatu. Esteka eskuz konpondu? +save = Gorde +save_as = Gorde honela... +save_failed = $1 mapa gordetzeko saiakerak huts egin du. +save_unsaved = Hurrengo mapa mentala gorde nahi duzu? : +saved = Gordeta +scheme_evaluate = Ebaluatu! +select_favorites_folder = Aukeratu zure gogokoak dauden direktorioa +select_folder_for_importing = Aukeratu inportatu beharreko direktorioa +set_image_by_filechooser = Irudia (Fitxategi arakatzailea edo Esteka)... +set_link_by_filechooser = Hiperesteka (Fitxategi Arakatzailea)... +set_link_by_textfield = Hiperesteka (Testu-eremua)... +sharp_bezier = Bezier lotura +sharp_linear = Lotura lineala +split = Banatu +style = Estiloa +toggle_bold_branch = Lodia jarri/kendu +toggle_children_folded = Kumeak bildu/hedatu. +toggle_folded = Bildu/Ez-bildu. +toggle_italic_branch = Etzana jarri/kendu +toggle_menubar = Menu-Barra erakutsi/ezkutatu +toggle_toolbar = Tresna-Barra erakutsi/ezkutatu +toggle_left_toolbar = Ezkerreko Tresna-Barra erakutsi/ezkutatu +underline = Azpimarratu +unfold = Hedatu +url_error = URLa ez da egokia! +url_load_error = Ezin izan da mapa hurrengo URLtik kargatu: +width = Zabalera +yes = Bai +zoom_in = Txikiagotu +zoom_out = Handiagotu +remove_last_icon = Azken Ikonoa Kendu +remove_all_icons = Ikono Guztiak Kendu +lots_of_links_warning = Nodo beraren esteka pila bat sortzera zoaz. Esteka hauek benetan sortu nahi al dituzu? +remove_arrow_link = Gezi-Esteka Kendu +arrow_link_color = Gezi-Esteka Kolorea... +# removed: follow_link = Joan: +user_defined_zoom = Erabiltzaileak definitua. +user_defined_zoom_status_bar = Zooma erabiltzaileak definituriko {0}% baliora aldatzen. +# new from 14.12.2003, fc +FAQ = FAQ +# new from 20.12.2003, fc +printing_settings = Inprimaketa Eskala +fit_to_page = Orrialdera doitu +user_zoom = Inpresio Zoom Faktorea (0.0 - 2.0): +ok = Ados +# changed from 23.1.2004, fc. +selection_method_by_click = Klik Bakarra Aukeratzeko +selection_method_direct = Apuntateko Aukeratzeko +#new from 30.08.2004, Dimitri +combined = Konbinatua +as_parent = Guraso gisa +# added at 2.5.2004, fc: +undo = Desegin +redo = Berregin +delete_child = Nodoa ezabatu +# added at 22.5.2004, fc: +most_recent_files = Azken fitxategiak +menu_view = Ikusi +menu_navigate = Nabigatu +menu_format = Formatua +menu_extras = Tresnak +menu_insert = Txertatu +# Beware: "Edge Width " and "Edge Style " must end with space. +edge_width = Ertz zabalera +edge_style = Ertz estiloa +menu_file_import = Inportatu +menu_file_export = Esportatu +edit_node = Nodoa editatu +# added at 5.6.2004, fc: +node_background_color = Nodoaren hondo kolorea... +# added at 25.8.2004, fc: +choose_edge_color = Aukeratu ertz kolorea +# added at 27.8.2004, fc: +underlined = Azpimarratua +font_size = Letra-tamaina +font_family = Letra-tipo familia +# add at 16.9.2004, fc: +import_linked_branch_no_link = Aukeraturiko nodoak ez du bertatik inportatzeko estekarik. +# added at 09.10.2004 +add_link = Gehitu esteka grafikoa +less_than_two_selected_nodes = Estekak jasotzeko gutxienez bi nodo aukeratu behar dira. +choose_node_background_color = Aukeratu nodoaren hondo kolorea: +choose_node_color = Aukeratu nodoaren kolorea: +choose_background_color = Aukeratu hondo kolorea: +choose_cloud_color = Aukeratu hodei kolorea: +change_arrows_in_arrow_link = Gezi-estekaren geziak aldatu +add_local_link = Hiperesteka lokala gehitu +link_not_available_any_more = Esteka jada ez da baliagarria. Bitartean nodoa ezabatua izan da. +file_already_exists = {0} Fitxategia aurretik existitzen da. Gainidatzi nahi al duzu? +error_creating_directory = Ezin da esportatzeko direktoriorik sortu. +export_svg_text = Bektore Grafiko Eskalagarria (SVG) +export_pdf_text = Dokumentu Formatu Eramangarria (PDF) +goto_link_node_action = Joan estekara +#fc, 14.11.2004: +undefined_error = Ezusteko akatsa jazo da. Mesedez, saia zaitez errorearen berri ematen. +cannot_add_parent_diff_parents = Nodo guztiek guraso bera izan behar dute funtzio hau erabiltzeko. +cannot_add_parent_to_root = Erro-nodoari ezin zaio nodo guraso berririk gehitu. +no_format_copy_before_format_paste = Bat aukeratu arte, ezin duzu formaturik itsatsi. +#fc, 15.11.2004: +accessories/plugins/AutomaticLayout.properties_documentation = Maparen diseinua fijatzen du.
Lehen maila beltza da, bigarrena urdina, e.a. +accessories/plugins/AutomaticLayout.properties_name = Diseinu automatikoa +accessories/plugins/BlinkingNodeHook.properties_documentation = Honek nodoa keinu egiten jartzen du. Baina kontuz ibili. Ez ezazu erlaziona nodo larregirekin ezta beste formaturekin ere +accessories/plugins/BlinkingNodeHook.properties_name = Nodo keinularia +accessories/plugins/CreationModificationPlugin.properties_documentation=Funtzio honek nodoaren sorrera eta aldaketen erregistroa darama. +accessories/plugins/CreationModificationPlugin.properties_name = Aldaketa Denborak Erakutsi +accessories/plugins/ExportToImage_PNG.properties_documentation = Esporatu egiten du mapa PNG irudi batera bildurak mantenduz. +accessories/plugins/ExportToImage_PNG.properties_name = PNG gisa... +accessories/plugins/ExportToImage_JPEG.properties_documentation = Esporatu egiten du mapa PNG irudi batera bildurak mantenduz. +accessories/plugins/ExportToImage_JPEG.properties_name = JPEG gisa... +accessories/plugins/ExportWithXSLT.properties_documentation = Hau esportatze-metodo uniformea da, XSLT script-ak darabilena. +accessories/plugins/ExportWithXSLT.properties_name = XSLT erabiliz... +accessories/plugins/ExportWithXSLT_HTML.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML.properties_name = XHTML gisa (JavaScript bertsioa)... +accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML3.properties_name = XHTML gisa (Mapa irudi klikagarria bertsioa)... +accessories/plugins/FitToPage.properties_documentation = Zooma egokitzen du, mapa oraingo leihoan osorik sar dadin. +accessories/plugins/FitToPage.properties_name = Zooma orrialdera egokitu +accessories/plugins/FormatCopy.properties_documentation = Nodo baten formatua kopiatzen du. +accessories/plugins/FormatCopy.properties_name = Formatua kopiatu +accessories/plugins/FormatPaste.properties_documentation = Nodo baten formatua itsasten du. +accessories/plugins/FormatPaste.properties_name = Formatua itsatsi +accessories/plugins/FormularEditor.properties_documentation = Oharrari formulario bidezko editorea atxikitzen dio. +accessories/plugins/FormularEditor.properties_name = Formulario bidezko editorea +accessories/plugins/IconSelectionPlugin.properties_documentation = Hemen, azpilehio bat erabiliz ikono bat aukera dezakezu. +accessories/plugins/IconSelectionPlugin.properties_name = Ikonoa aukeratu... +accessories/plugins/NewParentNode.properties_documentation = Aukeraturiko nodo guztiei guraso berria esleitzen zaie. +accessories/plugins/NewParentNode.properties_name = Nodo guraso berria +accessories/plugins/NodeNote.properties_documentation = Ohar-editore sinplearekin oharra editatzea ahalbidetzen du. +accessories/plugins/NodeNote.properties_name = Oharra +accessories/plugins/PMCalculation.properties_documentation = Eginkizun desberdinetarako beharrezkoak diren esfortsuak kalkulatzen ditu. +accessories/plugins/PMCalculation.properties_name = PMCalculation +accessories/plugins/RevisionPlugin.properties_documentation = Aldaturiko nodo guztien hondoa markatzen du. +accessories/plugins/RevisionPlugin.properties_name = Zuzenketak horiz erakutsi +accessories/plugins/UnfoldAll.properties_documentation = Aukeraturiko nodo eta bere kume guztiak hedatzen ditu +accessories/plugins/UnfoldAll.properties_name = Denak hedatu +accessories/plugins/FoldAll.properties_documentation = Aukeraturiko nodo eta bere kumeak biltzen ditu. +accessories/plugins/FoldAll.properties_name = Denak bildu +accessories/plugins/UnfoldOneLevel.properties_documentation = Aukeraturiko nodoak hedatzen ditu maila batez. +accessories/plugins/UnfoldOneLevel.properties_name = Maila bat hedatu +accessories/plugins/FoldOneLevel.properties_documentation = Aukeraturiko nodoak maila batez biltzen ditu. +accessories/plugins/FoldOneLevel.properties_name = Maila bat bildu +plugins/FreemindHelp.xml_documentation = FreeMind laguntza hedatua +plugins/FreemindHelp.xml_name = Laguntza... +plugins/ExportPdf.xml_documentation = PDFra esportatu +plugins/ExportPdf.xml_name = PDF gisa... +plugins/ExportSvg.xml_documentation = SVGra esportatu +plugins/ExportSvg.xml_name = SVG gisa... + +# fc, 28.11.2004: +cannot_move_to_child = Ezin da nodo bat bere kume batera mugitu. +# fc, 14.12.2004: +accessories/plugins/EnterPassword.properties_name = Zifratuta / Ez zifratuta +accessories/plugins/EnterPassword.properties_documentation= +accessories/plugins/EncryptNode.properties_name = Nodo zifratua txertatu ... +accessories/plugins/EncryptNode.properties_documentation = Bere kumeak zifraturik dituen nodo berria txertatzen du. +accessories/plugins/EncryptNode.properties_0 = Zifraturiko nodorako pasahitza aukeratu +accessories/plugins/EncryptNode.properties_1 = Pasahitzak ez dira berdinak edota motzegiak dira. +accessories/plugins/EncryptNode.properties_2 = Sartu pasahitza: +accessories/plugins/EncryptNode.properties_3 = Berriro sartu pasahitza: +accessories/plugins/EncryptNode.properties_4 = Sartu zure pasahitza. +accessories/plugins/EncryptNode.properties_5 = Gogoratu, zifraketaren sendotasuna
zure pasahitzaren kalitatearen menpekoa dela ia erabat. +accessories/plugins/EncryptNode.properties_6 = Ados +accessories/plugins/EncryptNode.properties_7 = Utzi +accessories/plugins/EncryptNode.properties_wrong_password = Pasahitza ez da zuzena. +accessories/plugins/NewEncryptedMap.properties_documentation = Mapa zifratu berria sortu +accessories/plugins/NewEncryptedMap.properties_name = Sortu mapa zifratua ... +accessories/plugins/EncryptNode.properties_select_me = Ni aukeratu aurrera jarraitzeko! +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Zifraturiko egoera bakarrik zifraturiko nodo bati aldatu ahal diozu. Nodo zifratu bat sortzeko, erabili Tresnak menua. +# fc, 2.2.05: +selection_method_delayed=Aukeraketa automatiko luzatua +# fc, 4.2.05: +plugins/TimeManagement.xml_documentation= Egutegia erakutsi modulua, Kai Toedter-ek egina. +plugins/TimeManagement.xml_name= Egutegia erakutsi... +plugins/TimeManagement.xml_appendButton= Data aukeraturiko nodoei atxiki +plugins/TimeManagement.xml_reminderButton= Gogorarazi data honetan +plugins/TimeManagement.xml_cancelButton=Utzi +plugins/TimeManagementReminder.xml_documentation=Berriz meneko bihurtzeko egitekoak programatzeko. +plugins/TimeManagementReminder.xml_name=Berriz meneko bihurtzeko egitekoak programatzeko. +plugins/TimeManagement.xml_reminderNode_tooltip=Ohartarazpena {0,date} {0,time}-(e)an programatua. +plugins/TimeManagement.xml_reminderNode_showNode=" {0} " nodorako denbora bukatu da. Beste hamar minutuz luzatu nahi duzu? +plugins/TimeManagement.xml_reminderNode_onlyOneDate=Nodoko ohartarazpen bakarra egon daiteke.
Oraingo ohartarazpena {0,date} {0,time}-(e)rako dago programatua, zure aukera {1,date} {1,time} zen.

Nodoaren ohartarazpen ordua aldatu nahi al duzu (BAI)
edo ordu zaharra mantendu gura duzu (EZ)? +plugins/TimeManagement.xml_removeReminderButton = Gogorarazpena ezabatu +plugins/TimeManagement.xml_removeReminderButton_tooltip = Aukeraturiko nodoekin zerikusia duten gogorarazpen guztiak ezabatu. +plugins/TimeManagement.xml_minute= Minutua: +plugins/TimeManagement.xml_hour= Ordua: +plugins/TimeManagement.xml_WindowTitle=Denbora kudeaketa +# fc, 18.2.2005: +accessories/plugins/HierarchicalIcons.properties_documentation=Nire kumeetariko batek ikono bat baldin badu, nik ere ikono hori formatu txikian erakutsiko dut. +accessories/plugins/HierarchicalIcons.properties_name=Ikonoak hierarkikoki erakutsi +# fc, 1.3.2005: +icon_full-1 = 1 Lehentasuna +icon_full-2 = 2 Lehentasuna +icon_full-3 = 3 Lehentasuna +icon_full-4 = 4 Lehentasuna +icon_full-5 = 5 Lehentasuna +icon_full-6 = 6 Lehentasuna +icon_full-7 = 7 Lehentasuna +# fc, 11.3.2005: +RevertAction=Itzuli +# the prefix for the reconstructed map (revert + undo). +freemind_reverted=Freemind_Berreskuratutakoa_ +# fc, 5.4.2005 +plugins/TimeManagement.xml_todayButton=Gaur +plugins/TimeList.xml_documentation=Programaturiko denbora guztiak eta eurekin loturiko nodoak erakusten ditu. +plugins/TimeList.xml_name=Erakutsi Denbora antolatzailearen zerrenda ... +remove_node_background_color = Nodoaren hondo kolorea kendu +plugins/NodeList.xml_documentation=Nodo guztiak erakusten ditu, sorrera/aldaketa datekin. +plugins/NodeList.xml_name=Erakutsi Maparen historia ... +plugins/TimeList.xml_Modified=Aldatua +plugins/TimeList.xml_Created=Sortua +plugins/TimeList.xml_Date=Data +plugins/TimeList.xml_Text=Testua +plugins/TimeList.xml_Icons=Ikonoak +#fc, 26.4.2005: +select_branch=Ageriko Adarra aukeratu +select_all=Ageriko Guztiak aukeratu +change_link_arrows=aldatu_esteka_geziak +# fc, 27.4.2005: +reset_node_position=Posizioa berrezarri +# fc, 2.5.2005: +plugins/RemoveReminder.xml_documentation=Nodo batetik ohartarazpena kentzen du. +plugins/RemoveReminder.xml_name=Ohartarazpena kendu +# fc, 3.5.2005: +plugins/TimeManagement.xml_reminderButton_tooltip=Sakaturikoan, denboragailu bat programatzen da emandako datarako. Ondoren, keinuka ari diren ikonoek jakinaraziko dizute.
Mapa ixten baduzu, denboragailuak berriro aktibatuko dira mapa zabaldutakoan. +# fc, 10.5.2005: +property_dialog=Ezarpenak ... +OptionPanel.automatic=Automatikoa +OptionPanel.de=De +OptionPanel.dk=Dk +OptionPanel.en=En +OptionPanel.es=Es +OptionPanel.fr=Fr +OptionPanel.hu=Hu +OptionPanel.it=It +OptionPanel.ja=Ja +OptionPanel.ko=Ko +OptionPanel.nl=Nl +OptionPanel.pl=Pl +OptionPanel.pt_BR=Pt BR +OptionPanel.pt_PT=Pt PT +OptionPanel.ru=Ru +OptionPanel.sl=Sl +OptionPanel.zh=Zh +OptionPanel.zh_CN=Zh CN +OptionPanel.fork=Adardura +OptionPanel.bubble=Burbuila +OptionPanel.as_parent=Guraso gisa +OptionPanel.combined=Konbinatua +OptionPanel.bezier=Bezier +OptionPanel.linear=Lineala +OptionPanel.default=Lehenetsia +OptionPanel.metal=Metalikoa +OptionPanel.windows=Windows +OptionPanel.motif=Motif +OptionPanel.gtk=Gtk +OptionPanel.nothing=Ezer ez +OptionPanel.relative=Erlatiboa +OptionPanel.absolute=Absolutua +OptionPanel.first=Lehena +OptionPanel.last=Azkena +OptionPanel.selection_method_direct=Zuzena +OptionPanel.selection_method_delayed=Atzeratua +OptionPanel.selection_method_by_click=Klik bitartez +OptionPanel.html_export_no_folding=Bilketarik ez +OptionPanel.html_export_fold_currently_folded=Orain bildutakoak bildu +OptionPanel.html_export_fold_all=Guztiak bildu +OptionPanel.html_export_based_on_headings=Goiburuetan oinarriturik +OptionPanel.Environment=Ingurunea +OptionPanel.Files=Fitxategiak +OptionPanel.language=Hizkuntza +OptionPanel.language.tooltip=Hau da programan erabiliko den hizkuntza. 'Automatikoa' erabiltzailearen oraingo hizkuntza kargatzen saiatzen da. +OptionPanel.experimental_file_locking_on=Fitxategien babes esperimentala +OptionPanel.experimental_file_locking_on.tooltip= Eginbide esperimentala +OptionPanel.draganddrop=Arrastratu eta Askatu +OptionPanel.draganddrop.tooltip=aea aktibaturik badago. +OptionPanel.userproperties=Userproperties +OptionPanel.patternsfile=Patternsfile +OptionPanel.docmapurl_since_version_0_7_0=Docmapurl +OptionPanel.browsemode_initial_map=Arakatze moduko hasierako mapa +OptionPanel.browsemode_initial_map.tooltip=Arakatze modua abiarazten denean kargatuko den maparen URLa +OptionPanel.last_opened_list_length=Irekitako Azkenen zerrendaren luzera +OptionPanel.time_for_automatic_save=Gordetze Automatikorako denbora +OptionPanel.time_for_automatic_save.tooltip= hurrenez hurreneko bi gordetze automatikoko ekintzen arteko denbora (milisegundotan): Gordetze automatikoa kentzeko, esleitu hurrengo zenbakia: 2000000000. +OptionPanel.delete_automatic_saves_at_exit=Irteterakoan Gordetze automatikoak ezabatu +OptionPanel.delete_automatic_saves_at_exit.tooltip= Freemind normal itxi ostean fitxategiak automatikoki ezabatzea gura baduzu, ezarri hurrengo aldagaia true-ra +OptionPanel.number_of_different_files_for_automatic_save=Desberdinak diren Gordetze Automatikorako Fitxategi Kopurua +OptionPanel.number_of_different_files_for_automatic_save.tooltip= n kopuruko fitxategi desberdinak, bertan mapak gordetzeko. Lehen gordetze automatikoa lehen fitxategian egiten da, eta horrela jarraitzen du n+1-garren gordetze automatikora arte, zeina berriro lehen fitxategian gordetzen den (ziklikoa) +OptionPanel.path_to_automatic_saves=Gordetze automatikoen bidea +OptionPanel.path_to_automatic_saves.tooltip= lehenetsitako bidea aldatzeko (hau javako 'java.io.tmpdir' da), sartu direktorio bateko bidea hemen: beste aukera batzuk: * freemind_home auto.properties dauden direktorioa da. * default java.io.tmpdir da +OptionPanel.Defaults=Lehenetsiak +OptionPanel.standardnodestyle=Nodo-estilo lehenetsia +OptionPanel.standardnodestyle.tooltip=Nodo berriaren estilo lehenetsi berria. 'adardura', 'burbuila' 'guraso gisa' eta 'konbinatua' estiloak erabil daitezke +OptionPanel.standardrootnodestyle=Erro-nodoaren estilo lehenetsia +OptionPanel.standardrootnodestyle.tooltip=Erro Nodoaren estiloa, besterik ez bada adierazten. 'Adardura' eta 'burbuila' eta 'konbinatua' erabil daitezke +OptionPanel.standardnodecolor=Nodo kolore lehenetsia +OptionPanel.standardnodecolor.tooltip=Nodoen kolore lehenetsia. HTML notazioa erabiliz (#RRGGBB balio hexamartarretan) +OptionPanel.standardselectednodecolor=Aukeraturiko nodoaren kolore lehenetsia +OptionPanel.standardselectednodecolor.tooltip=Nodoen kolore lehenetsia. HTML notazioa erabiliz (#RRGGBB balio hexamartarretan) +OptionPanel.standardedgecolor=Ertz kolore lehenetsia +OptionPanel.standardedgecolor.tooltip=Ertz kolore lehenetsia html notazioan +OptionPanel.standardlinkcolor=Esteka kolore lehenetsia +OptionPanel.standardlinkcolor.tooltip=Esteka kolore lehenetsia html notazioan +OptionPanel.standardbackgroundcolor=Hondo kolore lehenetsia +OptionPanel.standardbackgroundcolor.tooltip=Hondo kolore lehenetsia html notazioan +OptionPanel.standardcloudcolor=Hodei kolore lehenetsia +OptionPanel.standardcloudcolor.tooltip=Hodei kolore lehenetsia html notazioan +OptionPanel.defaultfont=Letra-tipo lehenetsia +OptionPanel.defaultfont.tooltip=Nodoetako letra-tipo lehenetsia. Hau bakarrik izango da baliagarria letra-tipoa (TrueTypeFont) sisteman eskuragarri badago +OptionPanel.defaultfontstyle=Letra-tipo estilo lehenetsia +OptionPanel.defaultfontsize=Letra-tipo tamaina lehenetsia +OptionPanel.max_node_width=Nodo Zab. Max. +OptionPanel.max_node_width.tooltip=Nodo-zabalera maximo lehenetsia pixeletan +OptionPanel.standardedgestyle=Ertz estilo lehenetsia +OptionPanel.standardedgestyle.tooltip=Ertz estilo lehenetsia. 'lineal' eta 'bezier' erabil daitezke +OptionPanel.standardcloudestyle=Hodei estilo lehenetsia +OptionPanel.standardcloudestyle.tooltip=Hodei-estilo lehenetsia. Momentuz 'bezier' estiloa dago bakarrik erabilgarri +OptionPanel.standardlinkestyle=Esteka estilo lehenetsia +OptionPanel.standardlinkestyle.tooltip=Esteka-estilo lehenetsia. Momentuz 'bezier' estiloa dago bakarrik erabilgarri +OptionPanel.Appearance=Itxura +OptionPanel.lookandfeel=Look and Feel +OptionPanel.lookandfeel.tooltip=Erabiltzeko Look&Feel-a. 'metal','windows','motif', 'gtk' erabil daitezke, 'mac' bakarrik dago eskuragarri MacOS-n. Zure Look and Feel propioa jarri nahi baduzu sartu klase izena hemen eta egon ziur dago(z)kon jar fitxategia(k) kargaturik daudela. Arazoak baldin badaude, 'ezer ez' aukeratu. +OptionPanel.mapxsize=Mapa-X-tamaina +OptionPanel.mapxsize.tooltip=Mapa guztien hasierako tamaina +OptionPanel.mapysize=Map-Y-tamaina +OptionPanel.links=Estekak +OptionPanel.links.tooltip=Esteka erlatibo zein absolutuak ezarri +OptionPanel.el__buttons_position=Botoien posizioa +OptionPanel.el__buttons_position.tooltip= gainean / azpian +OptionPanel.el__position_window_below_node=Leiho posizioa azpian +OptionPanel.el__min_default_window_height=Leihoaren altuera minimo lehenetsia +OptionPanel.el__max_default_window_height=Leihoaren altuera maximo lehenetsia +OptionPanel.el__min_default_window_width=Leihoaren zabalera minimo lehenetsia +OptionPanel.el__max_default_window_width=Leihoaren zabalera maximo lehenetsia +OptionPanel.el__enter_confirms_by_default=Lehenetsiak baieztatu +OptionPanel.Keystrokes=Tekla-konbinazioak +OptionPanel.keystroke_newMap=Mapa Berria +OptionPanel.keystroke_open=Ireki +OptionPanel.keystroke_save=Gorde +OptionPanel.keystroke_saveAs=Gorde Honela +OptionPanel.keystroke_print=Inprimatu +OptionPanel.keystroke_close=Itxi +OptionPanel.keystroke_quit=Irten +OptionPanel.keystroke_export_to_html=HTMLra esportatu +OptionPanel.keystroke_export_branch_to_html=Adarra HTMLra esportatu +OptionPanel.keystroke_open_first_in_history=Historiako lehen fitxategia ireki +OptionPanel.keystroke_previousMap=Aurreko mapa +OptionPanel.keystroke_nextMap=Hurrengo mapa +OptionPanel.keystroke_mode_MindMap=Mapa mental modua +OptionPanel.keystroke_mode_Browse=Arakatzaile modua +OptionPanel.keystroke_mode_File=Fitxategi Modua +OptionPanel.keystroke_node_toggle_italic=Letra etzana ezarri/kendu +OptionPanel.keystroke_node_toggle_boldface=Letra lodia ezarri/kendu +OptionPanel.keystroke_node_toggle_underlined=Azpimarratu/Azpimarra kendu +OptionPanel.keystroke_node_toggle_cloud=Hodeia jarri/Kendu +OptionPanel.keystroke_undo=Desegin +OptionPanel.keystroke_redo=Berregin +OptionPanel.keystroke_delete_child=Kumea Ezabatu +OptionPanel.keystroke_select_all=Aukeratu Denak +OptionPanel.keystroke_select_branch=Aukeratu Adarra +OptionPanel.keystroke_zoom_out=Txikiagotu +OptionPanel.keystroke_zoom_in=Handiagotu +OptionPanel.keystroke_cut=Moztu +OptionPanel.keystroke_copy=Kopiatu +OptionPanel.keystroke_copy_single=Bakarra Kopiatu +OptionPanel.keystroke_paste=Itsatsi +OptionPanel.keystroke_remove=Kendu +OptionPanel.keystroke_add_arrow_link_action=Gezi-estekari ekintza gehitu +OptionPanel.keystroke_add_local_link_action=Add Local Link Action +OptionPanel.keystroke_moveToRoot=Errora mugitu +OptionPanel.keystroke_move_up=Gora Joan +OptionPanel.keystroke_move_down=Behera Joan +OptionPanel.keystroke_move_left=Ezkerrera Joan +OptionPanel.keystroke_move_right=Eskuinera Joan +OptionPanel.keystroke_follow_link=Esteka jarraitu +OptionPanel.keystroke_add=Gehitu +OptionPanel.keystroke_add_child=Kumea gehitu +OptionPanel.keystroke_add_child_mac=Kumea gehitu Mac-en +OptionPanel.keystroke_add_sibling_before=Senidea aurretik gehitu +OptionPanel.keystroke_edit=Editatu +OptionPanel.keystroke_edit_long_node=Nodo luzea editatu +OptionPanel.keystroke_join_nodes=Nodoak batu +OptionPanel.keystroke_toggle_folded=Bildu/Hedatu +OptionPanel.keystroke_toggle_children_folded=Kumeak bildu/hedatu +OptionPanel.keystroke_set_link_by_filechooser=Fitxategi arakatzailearekin ezarri esteka +OptionPanel.keystroke_set_link_by_textfield=Testu-eremu batekin ezarri esteka +OptionPanel.keystroke_set_image_by_filechooser=Fitxategi arakatzailearekin ezarri irudia +OptionPanel.keystroke_node_up=Nodoa gora +OptionPanel.keystroke_node_down=Nodoa behera +OptionPanel.keystroke_node_increase_font_size=Nodoko letra-tipoa handitu +OptionPanel.keystroke_node_decrease_font_size=Nodoko letra-tipoa txikitu +OptionPanel.keystroke_export_branch=Adarra esportatu +OptionPanel.keystroke_node_color=Nodo Kolorea +OptionPanel.keystroke_node_color_blend=Node Color Blend +OptionPanel.keystroke_edge_color=Ertz Kolorea +OptionPanel.keystroke_find=Bilatu +OptionPanel.keystroke_find_next=Bilatu Hurrengoa +OptionPanel.keystroke_apply_pattern_1=1. patroia aplikatu +OptionPanel.keystroke_apply_pattern_2=2. patroia aplikatu +OptionPanel.keystroke_apply_pattern_3=3. patroia aplikatu +OptionPanel.keystroke_apply_pattern_4=4. patroia aplikatu +OptionPanel.keystroke_apply_pattern_5=5. patroia aplikatu +OptionPanel.keystroke_apply_pattern_6=6. patroia aplikatu +OptionPanel.keystroke_apply_pattern_7=7. patroia aplikatu +OptionPanel.keystroke_apply_pattern_8=8. patroia aplikatu +OptionPanel.keystroke_apply_pattern_9=9. patroia aplikatu +OptionPanel.keystroke_apply_pattern_10=10. patroia aplikatu +OptionPanel.keystroke_apply_pattern_11=11. patroia aplikatu +OptionPanel.keystroke_apply_pattern_12=12. patroia aplikatu +OptionPanel.keystroke_apply_pattern_13=13. patroia aplikatu +OptionPanel.keystroke_apply_pattern_14=14. patroia aplikatu +OptionPanel.keystroke_apply_pattern_15=15. patroia aplikatu +OptionPanel.keystroke_apply_pattern_16=16. patroia aplikatu +OptionPanel.keystroke_apply_pattern_17=17. patroia aplikatu +OptionPanel.keystroke_apply_pattern_18=18. patroia aplikatu +OptionPanel.Behaviour=Portaera +OptionPanel.placenewbranches=Adar berriak kokatu +OptionPanel.placenewbranches.tooltip=Adar berriak non kokatu. Balio baliodunak 'lehena' eta 'azkena' dira +OptionPanel.disable_cursor_move_paper=Papera mugitzerakoan kurtsorea desaktibatu +OptionPanel.disable_cursor_move_paper.tooltip='Mugitu' kurtsorea ez erakutsi paperak arrastratzerakoan +OptionPanel.enable_leaves_folding=Aktibatu bildutakoak +OptionPanel.enable_leaves_folding.tooltip=Horriak biltzea aktibatzen du +OptionPanel.foldingsymbolwidth=Bildu sinboloaren zabalera +OptionPanel.foldingsymbolwidth.tooltip=Bildura baten sinboloa den borobilaren zabalera +OptionPanel.disable_key_type=Tekleatzea desgaitu +OptionPanel.disable_key_type.tooltip=Tekleatzea: Aktibatuta badago, nodoak editatu daitezke +OptionPanel.key_type_adds_new=Tekleatzeak berria gehitu +OptionPanel.key_type_adds_new.tooltip=Tekleatzeak: edukia gainidatzi (false) / senide berria sortu (true) (behar du: disable_key_type = false) +OptionPanel.selection_method=Aukeratze-metodoa +OptionPanel.selection_method.tooltip= hurrengoekin aukeraketa atzeratua gaitu/desgaitu daiteke. Aukera automatikoak ez aldatu, auto.properties fitxategian gordeko baitira. +OptionPanel.time_for_delayed_selection=Aukera atzeraturako denbora +OptionPanel.time_for_delayed_selection.tooltip= Nodo baten gainean saguak egon beharreko denbora, berau aukeratzeko. Aldatu balioa 1-era aukeraketa zuzena nahi baduzu, sagua gainetik pasatzean. +OptionPanel.HTML=HTML +OptionPanel.default_browser_command_windows_nt=Windows NTrako nabigatzaile lehenetsiaren komandoa +OptionPanel.default_browser_command_windows_nt.tooltip=Windowserako ( "" sinboloak beharrezkoak dira, URLan "=" duten esteketarako). +OptionPanel.default_browser_command_windows_9x=Windows 9Xrako nabigatzaile lehenetsiaren komandoa +OptionPanel.default_browser_command_windows_9x.tooltip=Windowserako ( "" sinboloak beharrezkoak dira, URLan "=" duten esteketarako). +OptionPanel.default_browser_command_other_os=Nabigatzaile lehenetsiaren komandoa beste SEetan +OptionPanel.default_browser_command_other_os.tooltip= Normalean Linux izaten da +OptionPanel.default_browser_command_mac=Mac-erako nabigatzaile lehenetsiaren komandoa +OptionPanel.default_browser_command_mac.tooltip= eta MAC: (eskerrak Nick-i!) +OptionPanel.html_export_folding=HTMLn esportatu bildurak +OptionPanel.export_icons_in_html=Ikonoak HTMLn esportatu +OptionPanel.export_icons_in_html.tooltip= Freemind-etik esportaturiko HTMLak ikonoak izan beharko lituzkeen esan. Ikonoek duten arazoa da askotan ikonoetara egindako estekak ez direla esportaturiko HTMLan ikusiko. +OptionPanel.Cancel=Utzi +OptionPanel.OK=Gorde +option_changes_may_require_restart=Aldaturiko ezarpenen efektuak, FreeMind berrabiarazitakoan egongo dira ikusgai. +# fc, 12.5.2005: +GrabKeyDialog.grab-key.title=Sartu gako berria +GrabKeyDialog.grab-key.caption= +GrabKeyDialog.grab-key.clear=Garbitu +GrabKeyDialog.grab-key.assigned-to.none=Currently not assigned +GrabKeyDialog.grab-key.assigned-to=Honi esleiturik: +GrabKeyDialog.common.ok=Ados +GrabKeyDialog.grab-key.remove=Kendu +GrabKeyDialog.common.cancel=Utzi +GrabKeyDialog.grab-key.remove-ask=Tekla-konbinazio hau kendu nahi duzula ziur zaude? +OptionPanel.separator.language=Hizkuntza +OptionPanel.separator.files=Fitxategiak +OptionPanel.separator.automatic_save=Gordetze Automatikoa +OptionPanel.separator.default_styles=Estilo Lehenetsiak +OptionPanel.separator.default_colors=Kolore Lehenetsiak +OptionPanel.separator.default_fonts=Letra-Tipo Lehenetsiak +OptionPanel.separator.other_defaults=Beste balio lehenetsi batzuk +OptionPanel.separator.look_and_feel=Look and Feel +OptionPanel.separator.anti_alias=Antialias +OptionPanel.separator.initial_map_size=Hasierako mapa-tamaina +OptionPanel.separator.hyperlink_types=Hiperesteka motak +OptionPanel.separator.edit_long_node_window=Nodo Luzea Editatu Leihoa +OptionPanel.separator.commands_for_the_program=Programarentzako komandoak +OptionPanel.separator.node_editing_commands=Nodoak editatzeko komandoak +OptionPanel.separator.node_navigation_commands=Nodoen artean nabigatzeko komandoak +OptionPanel.separator.new_node_commands=Nodo komando berriak +OptionPanel.separator.patterns=Patroiak +OptionPanel.separator.behaviour=Portaera +OptionPanel.separator.key_typing=Tekla-jotzea +OptionPanel.separator.selection_method=Aukeraketa Metodoa +OptionPanel.separator.browser=Nabigatzailea +OptionPanel.separator.html_export=HTML Esportazioa +# fc, 2.6.2005: +OptionPanel.antialias.tooltip=Maparen kalitatea ezartzen du. Zenbat eta antialias gehiago, orduan eta denbora gehiago beharko da. +OptionPanel.antialias=Antialias +OptionPanel.antialias_edges=Antialias Ertzak +OptionPanel.antialias_all=Antialias Guztia +OptionPanel.antialias_none=Antialiasik ez +OptionPanel.cs=Cs +OptionPanel.no=Ez +# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above +follow_link = Hiperesteka ireki: +OptionPanel.ColorProperty.ResetColor=Reset Color +# fc, 16.6.2005: +OptionPanel.keystroke_option_dialog=Ezarpenak +format_menu_edge_styles=Ertz Estiloak +format_menu_edge_widths=Ertz zabalerak +# fc, 3.7.2005: +accessories/plugins/ImportMindmanagerFiles.properties_name=MindManager X5 mapa... +# fc, 5.7.2005: +accessories/plugins/ExportToOoWriter.properties_documentation=Bildu gabeko nodoek egitura osatzen dute, bildutakoek dokumentuaren edukia. +accessories/plugins/ExportToOoWriter.properties_name= Open Office Writter dokumentu modura... +# fc, 10.7.2005: +OptionPanel.separator.undo=Desegin +OptionPanel.undo_levels=Desegin Mailak +OptionPanel.undo_levels.tooltip="Desegin"-en bitartez desegin daitezkeen gordeko diren pausu kopuruaren zenbatekoa finkatzen du. +# fc, 13.8.2005 +OptionPanel.lt=Lt +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_fr.properties freemind-0.9.0RC7/Resources_fr.properties --- freemind-0.9.0RC6/Resources_fr.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_fr.properties 2010-02-27 21:47:59.000000000 +0000 @@ -8,8 +8,8 @@ #add=&Add add=&Ajouter -#about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: -about_text = FreeMind - Logiciel libre de cartes mentales et d'\u00e9laboration de connaissances.\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others. Tous droits r\u00e9serv\u00e9s\nCe programme est un logiciel libre (GPL)\nAller sur http\://freemind.sourceforge.net/\nVersion\: +#about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: +about_text = FreeMind - Logiciel libre de cartes mentales et d'\u00e9laboration de connaissances.\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others. Tous droits r\u00e9serv\u00e9s\nCe programme est un logiciel libre (GPL)\nAller sur http\://freemind.sourceforge.net/\nVersion\: #antialias_all = Antialias All antialias_all = Tout lisser #antialias_edges = Antialias Edges @@ -191,7 +191,7 @@ join_nodes = Fusionner les n\u0153uds #license = License license = &Licence -#license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +#license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. license_text=FreeMind - Une application pour cr\u00e9er et visualiser des Cartes Mentales\nTous droits r\u00e9serv\u00e9s \u00a9 2000 Joerg Mueller \nPour plus de d\u00e9tails, se reporter au fichier COPYING\n\nCe logiciel est un logiciel libre. Vous pouvez le redistribuer et/ou\nle modifier en respectant les termes de la GNU General Public License\ntelle qu'elle est publi\u00e9e par la Free Software Foundation; soit avec la version 2\nde la License, ou (selon votre choix) toute version ult\u00e9rieure.\n\nCe logiciel est distribu\u00e9 dans l'espoir qu'il vous soit utile,\nmais SANS AUCUNE GARANTIE ; sans m\u00eame la garantie implicite d'une VALEUR MARCHANDE ou\nl'AD\u00c9QUATION \u00c0 UN BESOIN SP\u00c9CIFIQUE.\nReportez-vous \u00e0 la Licence Publique G\u00e9n\u00e9rale GNU pour de plus amples informations.\n\nVous devriez avoir re\u00e7u une copie de la Licence Publique G\u00e9n\u00e9rale GNU\navec ce logiciel. Si tel n'est pas le cas, \u00e9crivez \u00e0 \:\nFree Software Foundation, Inc.\n59 Temple Place\nSuite 330,\nBoston, MA 02111-1307, USA. #linear = Linear linear = Rectiligne @@ -2610,3 +2610,8 @@ # new, fc, 20.12.2008 OptionPanel.ro=Roumain + +#really_convert_to_current_version2=La carte que vous essayez d'ouvrir a \u00e9t\u00e9 cr\u00e9\u00e9e avec une ancienne version de FreeMind, enregistr\u00e9e dans un ancien format.
FreeMind s'appr\u00eate \u00e0 la convertir dans le format actuel.
Lorsque la carte aura \u00e9t\u00e9 convertie et enregistr\u00e9e avec cette version de FreeMind, elle ne pourra plus \u00eatre ouverte avec les anciennes version de FreeMind.
FreeMind doit il convertir et ouvrir cette carte? +really_convert_to_current_version2=La carte heuristique que vous voulez ouvrir a \u00e9t\u00e9 cr\u00e9\u00e9e avec une ancienne version de FreeMind et enregistr\u00e9e dans un ancien format.
FreeMind va convertir cette carte dans son nouveau format.
Une fois que la conversion sera effectu\u00e9e et que la carte sera sauv\u00e9e, il ne sera plus possible d'ouvrir de l'ouvrir avec d'anciennes versions de FreeMind.
Voulez-vous que FreeMind convertisse et ouvre cette carte ? + +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_gl.properties freemind-0.9.0RC7/Resources_gl.properties --- freemind-0.9.0RC6/Resources_gl.properties 2009-08-19 20:57:33.000000000 +0100 +++ freemind-0.9.0RC7/Resources_gl.properties 2010-02-27 21:48:00.000000000 +0000 @@ -2,8 +2,8 @@ # Thanks very much to roebek by the scripts and advices about = Acerca de add=&Engade -#about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2001 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: -about_text = FreeMind - aplicaci\u00F3n libre para a elaboraci\u00F3n de mapas mentais e conceptuais\nCopyright (C) 2000-2006 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev e outros.\nEsta aplicaci\u00F3n \u00E9 libre, distribu\u00EDda baixo a licenza GNU/GPL.\n\nP\u00E1xina do proxecto: http://freemind.sourceforge.net/\nVersi\u00F3n: +#about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: +about_text = FreeMind - aplicaci\u00F3n libre para a elaboraci\u00F3n de mapas mentais e conceptuais\nCopyright (C) 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev e outros.\nEsta aplicaci\u00F3n \u00E9 libre, distribu\u00EDda baixo a licenza GNU/GPL.\n\nP\u00E1xina do proxecto: http://freemind.sourceforge.net/\nVersi\u00F3n: antialias_all = Suavizar todo antialias_edges = Suavizar p\u00F3la antialias_none = Non suavizar @@ -97,7 +97,7 @@ italicise_branch = Por en cursiva join_nodes = Unir n\u00F3s license = Licenza -license_text = FreeMind - Aplicaci\u00F3n para a creaci\u00F3n e visualizaci\u00F3n de mapas mentais\nCopyright (C) 2000-2001 Joerg Mueller \nLea COPIA para m\u00E1is pormenores\n\nEsta \u00E9 unha aplicaci\u00F3n libre; vostede pode redistribu\u00EDla e/ou\nmodificala respectando as condici\u00F3ns da licenza GNU GPL\n, nos termos publicados pola Free Software Foundation, tanto na versi\u00F3n 2\nda Licenza como (\u00E1 s\u00FAa escolla) en calquera versi\u00F3n posterior.\n\nEsta aplicaci\u00F3n \u00E9 distribu\u00EDda co desexo de que resulte \u00FAtil,\nmais SEN NINGUNHA GARANT\u00CDA; nin garant\u00EDa impl\u00EDcita de\nCALIDADE COMERCIAL ou de IDONEIDADE PARA UN PROP\u00D3SITO PARTICULAR. Vexa a\nGNU GPL para m\u00E1is pormenores.\n\nDebeu recebir unha copia da GNU GPL\nxunto con esta aplicaci\u00F3n; en caso contrario, dir\u00EDxase \u00E1 Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Aplicaci\u00F3n para a creaci\u00F3n e visualizaci\u00F3n de mapas mentais\nCopyright (C) 2000-2010 Joerg Mueller \nLea COPIA para m\u00E1is pormenores\n\nEsta \u00E9 unha aplicaci\u00F3n libre; vostede pode redistribu\u00EDla e/ou\nmodificala respectando as condici\u00F3ns da licenza GNU GPL\n, nos termos publicados pola Free Software Foundation, tanto na versi\u00F3n 2\nda Licenza como (\u00E1 s\u00FAa escolla) en calquera versi\u00F3n posterior.\n\nEsta aplicaci\u00F3n \u00E9 distribu\u00EDda co desexo de que resulte \u00FAtil,\nmais SEN NINGUNHA GARANT\u00CDA; nin garant\u00EDa impl\u00EDcita de\nCALIDADE COMERCIAL ou de IDONEIDADE PARA UN PROP\u00D3SITO PARTICULAR. Vexa a\nGNU GPL para m\u00E1is pormenores.\n\nDebeu recebir unha copia da GNU GPL\nxunto con esta aplicaci\u00F3n; en caso contrario, dir\u00EDxase \u00E1 Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Lineal load = &Cargar locking_failed_by_open = Fallou o bloqueo do mapa $1. \u00C1brese s\u00F3 para lectura. @@ -476,7 +476,7 @@ OptionPanel.hu=Hu OptionPanel.it=It OptionPanel.ja=Ja -OptionPanel.kr=Kr +OptionPanel.ko=Ko OptionPanel.nl=Ni OptionPanel.pl=Pl OptionPanel.pt_BR=Pt BR @@ -1364,6 +1364,10 @@ icon_edit = Millorar icon_stop-sign = Stop icon_closed = Non Entrar + +# new, fc, 11.12.2009: +really_convert_to_current_version2= O mapa mental que est\u00E1 a piques de abrir, foi feito nunha versi\u00F3n anterior de Freemind e gardado nun formato antigo.
Freemind est\u00E1 tentando unha conversi\u00F3n deste mapa mental ao formato actual.
Toda vez que o mapa sexa convertido e gardado nesta versi\u00F3n de Freemind, xa non se poder\u00E1 traballar nel nas versi\u00F3ns anteriores do programa.
Quere realmente que Freemind converta e abra este mapa mental? + # changed: icon_flag = Bandeira Rubia @@ -1425,3 +1429,4 @@ OptionPanel.separator.icon_properties=Iconas OptionPanel.ro=Ro +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_hr.properties freemind-0.9.0RC7/Resources_hr.properties --- freemind-0.9.0RC6/Resources_hr.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_hr.properties 2010-02-27 21:44:28.000000000 +0000 @@ -1,1418 +1,1423 @@ -#Croatian translation by Predrag, e-mail: pcuklin@gmail.com -about = O programu - -add=&Dodaj -about_text = FreeMind - program za izradu mentalnih mapa i nadogradnju znanja\nCopyright (C) 2000-2009 Joerg Mueller,Daniel Polansky, Christian Foltin, Dimitry Polivaev i ostali.\nOvaj program je besplatan (GPL)\nHome: http://freemind.sourceforge.net/\nZabavite se!\nVerzija: -antialias_all = Zagla\u0111ivanje svega -antialias_edges = Zagla\u0111ivanje rubova -antialias_none = Bez zagla\u0111ivanja -apply=&Primijeni -background = Pozadina -bezier = Bezier -blend_color = Pomije\u0161aj boje -bold = Podebljano -boldify_branch = Podebljaj -branch = Grana -bubble = &Mjehuri\u0107 -cancel =&Odustani -cannot_join_nodes_with_children =Nije mogu\u0107e povezati \u010dvorove koji imaju Djecu -center = Sredina -cloud = Obla\u010di\u0107 -cloud_color = Boja obla\u010di\u0107a... -close = &Zatvori -copy = Kopiraj -copy_single = Kopiraj pojedina\u010dno -cut = Izre\u017ei -decrease_branch_font_size = Manja slova -decrease_node_font_size = Manja slova -delete=&Obri\u0161i -documentation = Dokumentacija -edge = Rub -edge_color = Boja ruba... -edge_width_parent = Roditelj -edge_width_thin = Tanko -edit = &Ure\u0111ivanje -edit_link_manually = Ru\u010dno uredi vezu ( hipervezu )... -edit_long_node = Detaljno uredi \u010dvor... -enter_base_url = Bit \u0107e zalijepljene relativne adrese. Molim unesite osnovni URL. -enter_confirms = Tipka &Enter kao potvrda -error = Gre\u0161ka -#export_branch = Grane... -export_branch_to_html = Izvoz grane kao HTML -export_to_html = Kao HTML -extension_menu = Oblik &stila -file = &Datoteka -file_not_found = Datoteka $1 nije na\u0111ena -find = Tra\u017ei... -find_what = Tra\u017ei \u0161to? -find_next = Tra\u017ei slijede\u0107e -fold = Zatvori -font = Slova -fork = Ra&\u010dva -help = Pomo\u0107 -html_export_based_on_headings = HTML Izvoz - prema naslovima -html_export_no_folding = HTML Izvoz - Bez otvorenih \u010dvorova -html_export_fold_currently_folded = HTML Izvoz - Sa trenutno otvorenim \u010dvorovima -html_export_fold_all = HTML Izvoz - Svi \u010dvorovi otvoreni -# Daniel Polansky: This way of maintaining icon text -# will ultimately lead to unbearable overheads. -icon_menu = Ikone -icon_help = Pitanje -icon_messagebox_warning = Upozorenje -icon_idea = Ideja -icon_button_ok = U redu -icon_button_cancel = Nije uredu -icon_back = Natrag -icon_forward = Naprijed -icon_attach = Pogledaj tu -icon_ksmiletris = Sretan sam -icon_clanbomber = Opasno -icon_desktop_new = Ne zaboravi -icon_gohome = Dom -icon_kaddressbook = Telefon -icon_knotify = Muzika -icon_korn = Po\u0161tanski sandu\u010di\u0107 -icon_Mail = Po\u0161ta -icon_password = Klju\u010d -icon_pencil = Pobolj\u0161anje -icon_stop = Stop -icon_wizard = \u010carolija -icon_xmag = Rasprava -icon_bell = Zapamti -icon_bookmark = Izvrsno -icon_penguin = Linux -icon_licq = Lijepo -import = Uvoz -import_branch = Grane... -import_explorer_favorites = Explorer favorita... -import_folder_structure = Strukture direktorija... -import_linked_branch = Povezana grana -import_linked_branch_without_root = (Povezana grana) bez korijena... -increase_branch_font_size = Ve\u0107a slova -increase_node_font_size = Ve\u0107a slova -italic = Uko\u0161eno -italicise_branch = Ukosi -join_nodes = Pove\u017ei \u010dvorove -license = Licenca -license_text = FreeMind - Program za stvaranje i pregledavanje Mentalnih Mapa\nCopyright (C) 2000-2009 Joerg Mueller \nVidi COPYING za detalje\n\nOvaj program je besplatan; mo\u017eete ga dijeliti i/ili\nmijenjati pod uvjetima kako stoji u GNU General Public License\nobjavljenoj od Free Software Foundation; ili verziji 2\nLicence ili (kao va\u0161a opcija) bilo koja kasnija verzija.\n\nOvaj program je napravljen u nadi da \u0107e biti koristan ,\nali BEZ IKAKVE GARANCIJE; \u010dak i bez implicirane garancije \nTRGOVA\u010cKE ili POGODNOSTI ZA ODRE\u0110ENE NAMJENE. Vidi\nGNU General Public License za vi\u0161e detalja.\n\nTrebali ste dobiti primjerak GNU General Public License\nzajedno sa ovim programom; ako niste, pi\u0161ite na Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -linear = Linearno -load =&U\u010ditaj -locking_failed_by_open = Zaklju\u010davanje mape $1 nije uspjelo. Otvaranje datoteke samo za \u010ditanje. -locking_failed_by_save_as = Zaklju\u010davanje mape $1 nije uspjelo. Radnja Spremi kao je prekinuta. -locking_old_lock_removed = Mapa $1 je zaklju\u010dana kod korisnika $2. Zaklju\u010davanje mape je maknuto, zato jer je mapa starija. -map_already_exists = Mapa ve\u0107 postoji. \u017delite li prepisati preko postoje\u0107e mape? -map_corrupted = Mapa je o\u0161te\u0107ena. \u017delite li pogledati pojedinosti? -map_locked_by_open = Mapa $1 se ure\u0111uje kod korisnika $2. Otvaranje datoteke samo za \u010ditanje. -map_locked_by_save_as = Mapa $1 se ure\u0111uje kod korisnika $2. Radnja Spremi kao je prekinuta. -mindmap = Mapa -mindmaps = Mape -mindmaps_desc = Mape (*.mm) -mindmaps_filter_desc = Filteri (*.mmfilter) -mode_na = Oblik nije dostupan -modes = Oblici -move_to_root = Povratak na korijenski \u010dvoru -new = Nova -new_child = Novi \u010dvor - Dijete -new_mindmap = Nova Mentalna mapa -new_node = Novi \u010dvor -new_sibling_before = Novi prethodni \u010dvor - Brat -new_sibling_behind = Novi \u010dvor - Brat -next_map = Slijede\u0107a mapa -no = Ne -node = \u010cvor -node_changed_discard_changes = Promijenili ste \u010dvor. \u017delite li odbaciti promjene? -long_node_changed_submit =Promijenili ste \u010dvor. \u017delite li snimiti promjene? -long_node_changed_cancel =Promijenili ste \u010dvor. \u017delite li odbaciti promjene? -node_color = Boja teksta \u010dvora... -node_down = \u010cvor prema dolje -node_up = \u010cvor prema gore -nonboldify_branch = Poni\u0161ti podebljanje -nonitalicise_branch = Poni\u0161ti uko\u0161enost -normal = Uobi\u010dajen -no_found_from = Nije $1 mogu\u0107e na\u0107i u $2. -no_more_found_from = Nijedan $1 vi\u0161e nije na\u0111en u $2. -no_previous_find = Nema prethodnog pogotka. -not_saved_for_link_error = Mapa mora biti snimljena prije umetanja hiperveze. -open = Otvori... -page = Pode\u0161avanje &stranice... -paste = Zalijepi -new_node_as_sibling_not_possible_for_the_root = Novi bratski \u010dvor nije mogu\u0107e kreirati kao korijenski \u010dvor. -preferences = Postavke -previous_map = Prethodna mapa -print =Ispis -print_dialog =Ispis... -print_preview = &Pregled ispisa... -print_preview_title =Pregled ispisa -quit = Izlaz -read_only = Samo za \u010ditanje -remove_node = Ukloni \u010dvor -rename=&Preimenuj -repair_link = Popravi vezu -repair_link_question = Ne mogu u\u010ditati povezanu mapu. \u017delite li popraviti vezu ru\u010dno? -replace=Zamijeni -save = &Spremi -save_as = Spremi kao... -save_failed = Poku\u0161aj snimanja mape $1 nije uspjelo. -save_unsaved = \u017delite li snimiti slijede\u0107u Mentalnu mapu?: -saved = Snimljeno -scheme_evaluate = Ocijeniti! -select_favorites_folder = Ozna\u010dite mapu gdje se nalaze va\u0161i favoriti -select_folder_for_importing = Ozna\u010dite mapu za uvoz -set_image_by_filechooser = Slike (Pretra\u017eiva\u010d datoteka ili veza)... -set_link_by_filechooser = Hiperveze (Pretra\u017eiva\u010d datoteka)... -set_link_by_textfield = Hiperveze (Polje s tekstom)... -sharp_bezier = Grubo bezier -sharp_linear = Grubo linearno -split = &Razdijeli -style = Stil -#toggle_bold_branch = Toggle Bold -toggle_children_folded = Rasklopi/ Sklopi \u010dvor (Djeca) -toggle_folded = Rasklopi/ Sklopi ozna\u010dene \u010dvorove -#toggle_italic_branch = Toggle Italic -underline = Podcrtano -unfold = Otvori \u010dvor -url_error = Ovaj URL je nepravilno oblikovan! -width = \u0160irina -yes = &Da -zoom_in = Pove\u0107aj -zoom_out = Umanji -remove_last_icon = Ukloni posljednju ikonu -remove_all_icons = Ukloni sve ikone -lots_of_links_warning = Napraviti \u0107ete previ\u0161e veza na istom \u010dvor. Da li zaista \u017eelite kreirati toliko veza? -remove_arrow_link = Ukloni vezu sa strelicom -arrow_link_color = Boja veze sa strelicom... -# removed: follow_link = Idi na : -user_defined_zoom = Korisni\u010dki definirano. -user_defined_zoom_status_bar = Izmjena pove\u0107anja na korisni\u010dki definiranu vrijednost {0}%. -# new from 14.12.2003, fc -FAQ = \u010cesto postavljena pitanja -# new from 09.12.2006, Dimitri -webDocu = Web dokumentacija -# new from 20.12.2003, fc -printing_settings = Skaliranje ispisa -fit_to_page = Prilagodi veli\u010dini jedne stranice -user_zoom = Faktor pove\u0107anja ispisa (0.0 - 2.0): -ok = &U redu -# changed from 23.1.2004, fc. -selection_method_by_click = Jednostruki klik za ozna\u010davanje -selection_method_direct = Prika\u017ei ozna\u010deno -#new from 30.08.2004, Dimitri -combined = kombinirano -as_parent = kao Roditelj -# added at 2.5.2004, fc: -undo = Poni\u0161ti -redo = Ponovi -delete_child = Obri\u0161i \u010dvor -# added at 22.5.2004, fc: -most_recent_files = &\u010cesto otvarane datoteke -menu_view = P&ogled -menu_navigate = &Navigacija -menu_format = O&blikovanje -menu_extras = &Alati -menu_insert = Um&etanje -menu_attributes = Obilje&\u017eja -# Beware: "Edge Width " and "Edge Style " must end with space. -edge_style = Stil ruba -edge_width = \u0160irina ruba -menu_file_import = U&voz -menu_file_export = I&zvoz -edit_node = Uredi \u010dvor -# added at 5.6.2004, fc: -node_background_color = &Pozadinska boja \u010dvora... -# added at 25.8.2004, fc: -choose_edge_color = Odaberi boju ruba -# added at 27.8.2004, fc: -underlined = Podcrtano -font_size = Veli\u010dina slova -font_family =Oblik slova -# add at 16.9.2004, fc: -import_linked_branch_no_link = Odabrani \u010dvor nema nikakvu vezu za uvoz. -# added at 09.10.2004 -add_link = Dodaj vezu sa strelicom -less_than_two_selected_nodes = Morate ozna\u010diti barem dva \u010dvora -choose_node_background_color = Izaberite boju pozadine \u010dvora: -choose_node_color = Izaberite boju teksta \u010dvora: -choose_background_color = Izaberite boju pozadine mape: -choose_cloud_color = Izaberite boju obla\u010di\u0107a: -change_arrows_in_arrow_link = Promjeni strelice ili oblik veze sa strelicom -add_local_link = Dodaj internu vezu izme\u0111u \u010dvorova -link_not_available_any_more = Veza nije valjana. U me\u0111uvremenu je \u010dvor obrisan. -file_already_exists = Datoteka {0} ve\u0107 postoji. \u017delite li snimiti preko postoje\u0107e datoteke? -error_creating_directory = Nije mogu\u0107e kreirati Mapu za izvoz. -export_svg_text = Scalable Vector Graphic (SVG) -export_pdf_text = Portable Document Format (PDF) -goto_link_node_action = Idi na vezu -#fc, 14.11.2004: -undefined_error = Do\u0161lo je do neo\u010dekivane gre\u0161ke. Molim poku\u0161ajte poslati poruku o gre\u0161ci. -cannot_add_parent_to_root = Korijenski \u010dvor nije mogu\u0107e dodati novom Roditelju -cannot_delete_root =Korijenski \u010dvor nije mogu\u0107e obrisati ili izrezati -cannot_add_parent_diff_parents = Svi \u010dvorovi moraju imati istog Roditelja za kori\u0161tenje ove funkcije. -no_format_copy_before_format_paste = Ne mo\u017eete zalijepiti oblik ako ga prethodno niste kopirali. -#fc, 15.11.2004: -accessories/plugins/AutomaticLayout.properties_documentation = Izmjeni oblik mentalne mape.
Prvi stupanj je crni, drugi plavi, it.d. -accessories/plugins/AutomaticLayout.properties_name = &Automatski oblikuj izgled -accessories/plugins/BlinkingNodeHook.properties_documentation = Ovom funkcijom \u010dvor postaje trep\u010du\u0107i.
Budite oprezni.Ne povezujte ga s previ\u0161e \u010dvorova i ne sa ostalim automatskim oblikovanjima u istom \u010dvoru. -accessories/plugins/BlinkingNodeHook.properties_name = Treperu\u0107i \u010dvor -accessories/plugins/CreationModificationPlugin.properties_documentation=Ova funkcija bilje\u017ei vrijema stvaranja \u010dvora i vrijeme promjena \u010dvora. -accessories/plugins/CreationModificationPlugin.properties_name = Prika\u017ei &vrijeme promjene -accessories/plugins/ExportToImage_PNG.properties_documentation = Izvoz trenutnog prikaza mentalne mape u PNG sliku. -accessories/plugins/ExportToImage_PNG.properties_name = Kao PNG... -accessories/plugins/ExportToImage_JPEG.properties_documentation = Izvoz trenutnog prikaza mentalne mape u PNG sliku. -accessories/plugins/ExportToImage_JPEG.properties_name = Kao JPEG... -accessories/plugins/ExportWithXSLT.properties_documentation = To je ujedna\u010dena metoda izvoza s upotrebom XSLT skripte. -accessories/plugins/ExportWithXSLT.properties_name = Koristi XSLT... -accessories/plugins/ExportWithXSLT_HTML.properties_documentation= -accessories/plugins/ExportWithXSLT_HTML.properties_name = Kao XHTML (JavaScript verzija)... -accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= -accessories/plugins/ExportWithXSLT_HTML3.properties_name = Kao XHTML (verzija kliktaju\u0107e mentalne mape)... -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =Kao MindManager datoteka... -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= -accessories/plugins/FitToPage.properties_documentation = Prilagodi pove\u0107anje tako da se cijela Mentalna mapa smjesti u trenutni prozor. -accessories/plugins/FitToPage.properties_name = Prilagodi pove\u0107anje na &veli\u010dinu stranice. -accessories/plugins/FormatCopy.properties_documentation = Kopira oblik \u010dvora. -accessories/plugins/FormatCopy.properties_name = Kopiraj oblik -accessories/plugins/FormatPaste.properties_documentation = Zalijepi oblik prethodno kopiranog oblika \u010dvora. -accessories/plugins/FormatPaste.properties_name = Zalijepi oblik -accessories/plugins/FormularEditor.properties_documentation = Povezuje jednostavni ure\u0111iva\u010d formulara s trenutnim \u010dvorom. -accessories/plugins/FormularEditor.properties_name = Ure\u0111iva\u010d formulara -accessories/plugins/IconSelectionPlugin.properties_documentation = Ovdje mo\u017eete odabrati ikonu s upotrebom dijaloga. -accessories/plugins/IconSelectionPlugin.properties_name = Odaberi ikonu... -accessories/plugins/NewParentNode.properties_documentation = Svi ozna\u010deni \u010dvorovi poslani su k novom \u010dvoru Roditelju. -accessories/plugins/NewParentNode.properties_name = Novi \u010dvor - Roditelj -accessories/plugins/NodeNote.properties_documentation = Povezuje jednostavni ure\u0111iva\u010d bilje\u0161ki sa trenutnom bilje\u0161kom. -accessories/plugins/NodeNote.properties_name = Bilje\u0161ka -accessories/plugins/PMCalculation.properties_documentation = Izra\u010dunava optere\u0107enja za razli\u010dite zada\u0107e. -accessories/plugins/PMCalculation.properties_name = Izra\u010dun optere\u010denja -accessories/plugins/RemoveNote.properties_documentation = Obri\u0161i sadr\u017eaj bilje\u0161ke -accessories/plugins/RemoveNote.properties_name =Obri\u0161i bilje\u0161ke -accessories/plugins/RevisionPlugin.properties_documentation = Mijenja pozadinu svakog promjenjenog \u010dvora u \u017eutu boju. -accessories/plugins/RevisionPlugin.properties_name = Prika\u017ei promijenjen \u010dvor u &\u017eutoj boji -accessories/plugins/SplitNode.properties_documentation = \u010dvor je podijeljen -accessories/plugins/SplitNode.properties_name = &Podijeli \u010dvor -accessories/plugins/UnfoldAll.properties_documentation = Rasklopi sve ozna\u010dene \u010dvorove i njihovu Djecu. -accessories/plugins/UnfoldAll.properties_name = Rasklopi sve -accessories/plugins/FoldAll.properties_documentation = Sklopi sve ozna\u010dene \u010dvorove i njihovu Djecu. -accessories/plugins/FoldAll.properties_name = Sklopi sve -accessories/plugins/UnfoldOneLevel.properties_documentation = Rasklapa ozna\u010dene \u010dvorove za jedanu razinu. -accessories/plugins/UnfoldOneLevel.properties_name = Rasklopi jednu razinu -accessories/plugins/FoldOneLevel.properties_documentation = Sklopi ozna\u010dene \u010dvorove za jednu razinu. -accessories/plugins/FoldOneLevel.properties_name = Sklopi jednu razinu -plugins/FreemindHelp.xml_documentation = Pro\u0161irena pomo\u0107 FreeMind-a -plugins/FreemindHelp.xml_name = Pomo\u0107... -plugins/ExportPdf.xml_documentation = Izvoz u PDF -plugins/ExportPdf.xml_name = Kao PDF... -plugins/ExportSvg.xml_documentation = Izvoz u SVG -plugins/ExportSvg.xml_name = Kao SVG... - -# fc, 28.11.2004: -cannot_move_to_child = \u010cvor nije mogu\u0107e pomaknuti prema \u010dvoru njegove Djece. -# fc, 14.12.2004: -accessories/plugins/EnterPassword.properties_name = &Otklju\u010daj/ Zaklju\u010daj \u010dvor -accessories/plugins/EnterPassword.properties_documentation= -accessories/plugins/EncryptNode.properties_name = Umetni &\u0161ifrirani \u010dvor ... -accessories/plugins/EncryptNode.properties_documentation = Umetanje novog \u0161ifriranog \u010dvora ( \u010cvor Djete postaje tako\u0111er \u0161ifriran ). -accessories/plugins/EncryptNode.properties_0 = Odaberi lozinku za \u0161ifrirani \u010dvor. -accessories/plugins/EncryptNode.properties_1 = Lozinka nije ujedna\u010dena ili je prekratka. -accessories/plugins/EncryptNode.properties_2 = Upi\u0161i lozinku: -accessories/plugins/EncryptNode.properties_3 = Ponovno upi\u0161i lozinku: -accessories/plugins/EncryptNode.properties_4 = Upis lozinke. -accessories/plugins/EncryptNode.properties_5 = Upamtite, mo\u0107 \u0161ifriranja
uvijek ovisi o kvaliteti va\u0161e lozinke. -accessories/plugins/EncryptNode.properties_6 = U redu -accessories/plugins/EncryptNode.properties_7 = Odustani -accessories/plugins/EncryptNode.properties_wrong_password = Neispravna lozinka. -accessories/plugins/NewEncryptedMap.properties_documentation = Kreiraj novu \u0161ifriranu mentalnu mapu -accessories/plugins/NewEncryptedMap.properties_name = Kreiraj \u0161ifriranu mentalnu mapu ... -accessories/plugins/EncryptNode.properties_select_me = Ozna\u010di za nastavak! -accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Mo\u017eete uklju\u010diti ili isklju\u010diti stanje \u0161ifriranja samo na \u0161ifriranom \u010dvoru. -# fc, 2.2.05: -selection_method_delayed=Zaka\u0161njela automatska metoda ozna\u010davanja -# fc, 4.2.05: -plugins/TimeManagement.xml_documentation= Prika\u017ei kalendarski modul autora Kai Toedter-a. -plugins/TimeManagement.xml_name= Prika\u017ei kalendar... -plugins/TimeManagement.xml_appendButton= Dodaj datum na kraj ozna\u010denog \u010dvora -plugins/TimeManagement.xml_reminderButton= Sjeti me na taj dan -plugins/TimeManagement.xml_cancelButton=Odustani -plugins/TimeManagementReminder.xml_documentation=Interna zaka\u010dka za vremensko planiranje zada\u0107a ponovnog po\u0161iljanja. -plugins/TimeManagementReminder.xml_name=Interna zaka\u010dka za vremensko planiranje zada\u0107a ponovnog po\u0161iljanja. -plugins/TimeManagement.xml_reminderNode_tooltip=Podsjetnik zadatka pode\u0161en na {0,date} {0,time}. -plugins/TimeManagement.xml_reminderNode_showNode=Proteklo je vrijeme za \u010dvor " {0} ". \u017delite li ponoviti alarm za 10 minuta? -plugins/TimeManagement.xml_reminderNode_onlyOneDate=Trenutno je mogu\u0107 jedan podsjetnik po \u010dvoru.
Trenutni podsjetnik je pode\u0161en je na {0,date} {0,time}, va\u0161 izbor je bio {1,date} {1,time}.

\u017delite li promijeniti vrijeme aktiviranja podsjetnika (Da)
ili \u017eelite zadr\u017eati staro vrijeme (Ne)? -plugins/TimeManagement.xml_removeReminderButton = Ukloni podsjetnik -plugins/TimeManagement.xml_removeReminderButton_tooltip = Ukloni sve podsjetnike koji su povezani sa ozna\u010denim \u010dvorovima. -plugins/TimeManagement.xml_minute= Minuta: -plugins/TimeManagement.xml_hour= Sat: -plugins/TimeManagement.xml_WindowTitle= Upravljanje kalendarom - -plugins/latex/LatexNodeHook.properties_documentation = Latex formula -plugins/latex/LatexNodeHook.properties_name =&LATEX -plugins/latex/LatexNodeHook.editorTitle =Ure\u0111iva\u010d, zatvaranje sa potvrdom postavki - -# fc, 18.2.2005: -accessories/plugins/HierarchicalIcons.properties_documentation=Ako jedan od \u010dvora ( Dijete/ Unuk ) ima ikonu, ikona \u0107e biti prikazana tako\u0111er u malom obliku u roditeljskom \u010dvoru. -accessories/plugins/HierarchicalIcons.properties_name=Prika\u017ei ikone &hijerarhijski -# fc, 1.3.2005: -icon_full-1 = Prioritet 1 -icon_full-2 = Prioritet 2 -icon_full-3 = Prioritet 3 -icon_full-4 = Prioritet 4 -icon_full-5 = Prioritet 5 -icon_full-6 = Prioritet 6 -icon_full-7 = Prioritet 7 -# fc, 11.3.2005: -RevertAction=O&tvori ponovno -# the prefix for the reconstructed map (revert + undo). -freemind_reverted=Freemind_Preokrenuto_ -# fc, 5.4.2005 -plugins/TimeManagement.xml_todayButton=Danas -plugins/TimeList.xml_documentation=Prikazuje sve vremenske podsjetnike i pripadaju\u0107e \u010dvorove. -plugins/TimeList.xml_name=Prika\u017ei &popis vremenskih podsjetnika ... -remove_node_background_color = &Ukloni pozadinsku boju \u010dvora -#plugins/NodeList.xml_documentation= Prikazuje sve \u010dvorove sa kreiranim/ izmijenjenim datumima. -#plugins/NodeList.xml_name=Prika\u017ei kronologiju Mentalne mape ... -plugins/TimeList.xml_Modified=Izmijenjeno -plugins/TimeList.xml_Created=Kreirano -plugins/TimeList.xml_Date=Datum -plugins/TimeList.xml_Text=Tekst -plugins/TimeList.xml_Icons=Ikone -#fc, 26.4.2005: -select_branch=Ozna\u010di granu -select_all=Ozna\u010di sve -change_link_arrows=promijeni_strelice_veza -# fc, 27.4.2005: -reset_node_position=Vrati &izvorni polo\u017eaj -# fc, 2.5.2005: -plugins/RemoveReminder.xml_documentation= Ukloni podsjetnik s \u010dvora. -plugins/RemoveReminder.xml_name= Ukloni podsjetnik -# fc, 3.5.2005: -plugins/TimeManagement.xml_reminderButton_tooltip=Nakon klika zapo\u010dinje vremensko odbrojavanje prema dodijeljenom datumu. Nakon isteka vremena treperu\u0107a ikona daje znak o isteku.
Ako zatvorite Mentalnu mapu, odbrojavanje se ponovno aktivira kod otvaranja Mentalne mape. -# dimitri, 8.05.05 -filter_toolbar=Filtar -filter_dialog=Upravitelj filtara -filter_no_filtering=Bez filtriranja -filter_selected_node_view=Trenutno ozna\u010deni \u010dvorovi -filter_conditions = Filtri -filter_edit=Uredi -filter_edit_description=Uredi popis filtra -filter_unfold_ancestors=Otvoreni filtrirani \u010dvorovi -filter_icon=Ikona -filter_node=Tekst \u010dvora -filter_exist=Postoji -filter_does_not_exist=Ne postoji -filter_contains=Sadr\u017eava -filter_is_equal_to=Jednako je -filter_is_not_equal_to=Nije jednako -filter_ignore_case=Zanemari veli\u010dinu slova -filter_enter_value=Unos vrijednost -filter_add=&Dodaj -filter_delete=&Obri\u0161i -filter_select=O&zna\u010di -filter_not=&Ne -filter_and=&I -filter_or=I&li -filter_show_ancestors=Prika\u017ei pretke (prethodnike) -filter_show_descendants=Prika\u017ei potomke (nasljednike) -# dimitri, 10.07.2005 -attributes_all=Sva obilje\u017eja -attributes_attribute=Obilje\u017eja -attributes_close=Zatvori -attribute_delete=Obri\u0161i sve vrijednosti -attribute_delete_value=Obri\u0161i ovu vrijednost -attributes_edit=Uredi -attributes_edit_in_place=Dodaj obilje\u017eja -attributes_edit_tooltip=Dodijeli skup obilje\u017eja -attribute_font_size_tooltip=Veli\u010dina slova obilje\u017eja -attributes_dialog=Upravljanje o&bilje\u017ejima -attributes_dialog_title=Upravljanje obilje\u017ejima -attributes_import=Uvoz -attributes_import_tooltip=Uvoz obilje\u017eja iz drugih u\u010ditanih mapa -attributes_assign_dialog=Do&djeljivanje obilje\u017eja... -attributes_visible=Prikaz obilje\u017eja -attributes_visible_tooltip=Ozna\u010di ako \u017eeli\u0161 da obilje\u017eje bude vidljivo -attributes_refresh=Osvje\u017ei -attribute_replace=Zamijeni sa -attributes_restriction=Ograni\u010den skup -attributes_restricted_attributes_tooltip=Ograni\u010deni skup obilje\u017eja -attributes_restricted_values_tooltip=Ograni\u010deni skup vrijednosti za trenutno ozna\u010deno obilje\u017eje -attributes_select_all=Sve -attributes_select_all_tooltip=Stavi / Makni oznaku na sva obilje\u017eja -attributes_for_selected=Ozna\u010deni \u010dvorovi -attributes_for_visible=Sve vidljive \u010dvorove -attributes_deselect_all=Ni\u0161ta -attribute_list_box_label_text=Postoje\u0107e vrijednosti -attributes_popup_edit=Uredi -attributes_popup_optimal_width=Optimalna \u0161irina -attributes_popup_hide=Sakrij -attributes_popup_new=Novo obilje\u017eje -attributes_popup_delete=Obri\u0161i -attributes_popup_up=Gore -attributes_popup_down=Dolje -attributes_show=Prika\u017ei -attributes_show_all = Prika\u017ei sva obilje\u017eja -attributes_show_selected = Prika\u017ei ozna\u010dena obilje\u017eja -attributes_hide_all = Sakrij sva obilje\u017eja -attribute_top=Sva poznata obilje\u017eja za u\u010ditane mape -attributes_skip_root=Presko\u010di korijenski \u010dvor -attributes_no_import_candidates_found=Nisu prona\u0111ena nova obilje\u017eja -attributes_adding_empty_attribute_error=Ne mo\u017eete koristiti prazni niz za ime obilje\u017eja -# fc, 10.5.2005: -property_dialog=Postavke ... -OptionPanel.automatic=automatski -OptionPanel.de=njema\u010dki -OptionPanel.dk=danski -OptionPanel.en=engleski -OptionPanel.es=\u0161panjolski -OptionPanel.fr=francuski -OptionPanel.gl=grendladski -OptionPanel.hu=ma\u0111arski -OptionPanel.it=talijanski -OptionPanel.ja=japanski -OptionPanel.ko=korejski -OptionPanel.nl=nizozemski -OptionPanel.pl=poljski -OptionPanel.pt_BR=portugalski BR -OptionPanel.pt_PT=portugalski PT -OptionPanel.ru=ruski -OptionPanel.sl=slovenski -OptionPanel.zh_TW=tajvanski -OptionPanel.zh_CN=kineski CN -OptionPanel.fork=Ra\u010dva -OptionPanel.bubble=Obla\u010di\u0107 -OptionPanel.as_parent=Kao Roditelj -OptionPanel.combined=Kombinirano -OptionPanel.bezier=Bezier -OptionPanel.linear=Linearno -OptionPanel.default=Zadano -OptionPanel.metal=Metal -OptionPanel.windows=Windows -OptionPanel.motif=Motiv -OptionPanel.gtk=Gtk -OptionPanel.nothing=Ni\u0161ta -OptionPanel.relative=Relativne -OptionPanel.absolute=Absolutne -OptionPanel.first=Kao prvu -OptionPanel.last=Kao posljednju -OptionPanel.selection_method_direct=Direktno -OptionPanel.selection_method_delayed=Zaka\u0161njelo -OptionPanel.selection_method_by_click=Sa klikom -OptionPanel.html_export_no_folding=Bez sklapanja \u010dvora -OptionPanel.html_export_fold_currently_folded=Sklopi trenutno otvorene \u010dvorove -OptionPanel.html_export_fold_all=Sklopi sve -OptionPanel.html_export_based_on_headings= Prema naslovima -OptionPanel.Environment=Okru\u017eenje -OptionPanel.Files=Datoteke -OptionPanel.language=Jezik -OptionPanel.language.tooltip=Ovo je jezik koji \u0107e biti upotrebljen u programu. 'automatsko' poku\u0161ava u\u010ditati trenutni korisni\u010dki jezik. -OptionPanel.experimental_file_locking_on=Probno zatvaranje datoteke -OptionPanel.experimental_file_locking_on.tooltip= Probne mogu\u0107nosti -OptionPanel.draganddrop= Povuci i ispusti -OptionPanel.draganddrop.tooltip=Ako je funkcija povuci i ispusti omogu\u0107ena. -OptionPanel.userproperties=Datoteka korisni\u010dkih postavki -OptionPanel.patternsfile=Datoteka uzoraka -OptionPanel.docmapurl_since_version_0_7_0=URL dokumenata Mentalne mape -OptionPanel.browsemode_initial_map= Po\u010detna Mentalna mapa pregledni\u010dkog na\u010dina (Browse). -OptionPanel.browsemode_initial_map.tooltip=URL Mentalne mape koja je u\u010ditana kada je pokrenut pregledni\u010dki na\u010din -OptionPanel.last_opened_list_length=Lista zadnje otvaranih datoteka -OptionPanel.time_for_automatic_save=Vrijeme automatskog snimanja ( msec. ) -OptionPanel.time_for_automatic_save.tooltip= vrijeme izme\u0111u dva uzastopna automatska snimanja (u msec): za onemogu\u0107avanje automatskog snimanja potrebno je ovu vrijednost staviti na 2000000000. -OptionPanel.delete_automatic_saves_at_exit= Kod izlaza obri\u0161i automatski snimljene datoteke. -OptionPanel.delete_automatic_saves_at_exit.tooltip= Ako \u017eelite obrisati automatski snimljene datoteke kod normalnog zatvaranja programa FreeMind, stavite kva\u010dicu u potvrdnom okviru -OptionPanel.number_of_different_files_for_automatic_save=Broj datoteka koje \u0107e biti automatski snimljene -OptionPanel.number_of_different_files_for_automatic_save.tooltip= Brojka n razli\u010ditih datoteka u koje se snimaju Mentalne mape. Prvo automatsko snimanje se izvodi u prvu datoteku it.dalje do n+1 snimanja koje se opet izvodi u prvu datoteku ( kru\u017eno ) -OptionPanel.path_to_automatic_saves= Mapa u koju \u0107e se izvoditi automatska snimanja -OptionPanel.path_to_automatic_saves.tooltip= za promjenu zadanog mjesta ( staze ) (to je 'java.io.tmpdir' u javi), unesite put do mape snimanja: Druge mogu\u0107nosti: * freemind_home ozna\u010dava mapu, gdje se nalazi auto.properties . * zadano pokazuje u java.io.tmpdir -OptionPanel.Defaults=Zadano -OptionPanel.standardnodestyle=Stil \u010dvora -OptionPanel.standardnodestyle.tooltip=Zadani stil novog \u010dvora. Podr\u017eani su 'ra\u010dva', 'mjehuri\u0107' 'kao_roditelj' i 'kombiniran' -OptionPanel.standardrootnodestyle=Stil korijenskog \u010dvora -OptionPanel.standardrootnodestyle.tooltip=Stil korijenskog \u010dvora, ako nije naveden nijedan drugi, podr\u017eani su 'ra\u010dva' , 'mjehuri\u0107' i 'kombiniran' -OptionPanel.standardnodetextcolor=Boja teksta \u010dvora -OptionPanel.standardnodetextcolor.tooltip=Boja teksta \u010dvora. U html zapisu (#RRGGBB u hexsadecimalnoj vrijednosti) -OptionPanel.standardselectednodecolor=Boja ozna\u010denog \u010dvora -OptionPanel.standardselectednodecolor.tooltip=Standardna boja ozna\u010denog \u010dvora. U html zapisu (#RRGGBB u hexsadecimalnoj vrijednosti) -OptionPanel.standardselectednoderectanglecolor=Boja okvira ozna\u010davanja \u010dvora -OptionPanel.standardselectednoderectanglecolor.tooltip=Standardna boja okvira ozna\u010denog \u010dvora. U html zapisu (#RRGGBB u hexsadecimalnoj vrijednosti) -OptionPanel.standarddrawrectangleforselection=Prika\u017ei okvir za ozna\u010davanje \u010dvora. -OptionPanel.standarddrawrectangleforselection.tooltip=\u010cvor \u0107e biti ozna\u010den okvirom. -OptionPanel.standardedgecolor=Boja ruba -OptionPanel.standardedgecolor.tooltip= Standardna boja ruba u html zapisu -OptionPanel.standardlinkcolor=Boja veze sa strelicom -OptionPanel.standardlinkcolor.tooltip=Standardna boja veze sa strelicom u html zapisu -OptionPanel.standardbackgroundcolor=Boja pozadine mape -OptionPanel.standardbackgroundcolor.tooltip=Standardna boja pozadine mape u html zapisu -OptionPanel.printonwhitebackground=Bijela pozadina kod ispisa -OptionPanel.printonwhitebackground.tooltip=Uvijek koristi bijelu pozadinu kod ispisa - -OptionPanel.standardcloudcolor=Boja obla\u010di\u0107a -OptionPanel.standardcloudcolor.tooltip=Standardna boja obla\u010di\u0107a u html zapisu -OptionPanel.defaultfont=Zadani oblik slova -OptionPanel.defaultfont.tooltip=Zadani oblik slova \u010dvora. Ovo djeluje samo ako se oblik slova (TrueTypeFont) nalazi u sustavu -OptionPanel.defaultfontstyle=Zadani stil slova -OptionPanel.defaultfontsize=Zadana veli\u010dina slova -OptionPanel.max_node_width=Maksimalna \u0161irina \u010dvora (pixeli) -OptionPanel.max_node_width.tooltip=Zadana maksimalna \u0161irina \u010dvora u pikselima -OptionPanel.standardedgestyle=Stil ruba -OptionPanel.standardedgestyle.tooltip=Standardni stil ruba. Trenutno su podr\u017eani 'linearno' i 'bezier' -OptionPanel.standardcloudestyle=Stil obla\u010di\u0107a -OptionPanel.standardcloudestyle.tooltip=Standardni stil obla\u010di\u0107a. Trenutno je podr\u017ean samo 'bezier' -OptionPanel.standardlinkestyle=Stil veze -OptionPanel.standardlinkestyle.tooltip=Standardni stil veze. Trenutno je podr\u017ean samo 'bezier' -OptionPanel.Appearance=Izgled -OptionPanel.lookandfeel=Izgled i ugo\u0111aj -OptionPanel.lookandfeel.tooltip='Izgled i ugo\u0111aj' koji \u0107e biti upotrebljen. Podr\u017eani su 'metal','windows','motiv', 'gtk' , 'mac' je dostupan samo za MacOS. zadano zna\u010di, da je upotrebljen zadani Izgled i ugo\u0111aj. \u017delite li umetnuti svoj vlastiti Izgled i ugo\u0111aj, molimo upi\u0161ite ime razreda ovdje i osigurajte da odgovaraju\u0107a datoteka /datoteke .jar bude u\u010ditana. Ako postoje problemi sa Izgled i ugo\u0111aj postavkama odaberite ovdje 'ni\u0161ta'. Ovo djeluje na programe. -OptionPanel.mapxsize=Veli\u010dina mape po osi x ( \u0161irina ) -OptionPanel.mapxsize.tooltip=Po\u010detna veli\u010dina svake Mentalne mape -OptionPanel.mapysize=Veli\u010dina mape po osi y (visina ) -OptionPanel.links=Veze -OptionPanel.links.tooltip=Postavavljanje veza kao relativne ili apsolutne -OptionPanel.el__buttons_position=Pozicija gumba -OptionPanel.el__buttons_position.tooltip= above=iznad / below=ispod -OptionPanel.el__position_window_below_node=Pozicioniraj prozor ispod \u010dvora -OptionPanel.el__min_default_window_height=Zadana minimalna visina prozora -OptionPanel.el__max_default_window_height=Zadana maksimalna visina prozora -OptionPanel.el__min_default_window_width=Zadana minimalna \u0161irina prozora -OptionPanel.el__max_default_window_width=Zadana maksimalna \u0161irina prozora -OptionPanel.el__enter_confirms_by_default=Tipka Enter kao potvrda ( izlaz iz prozora ) -OptionPanel.el__show_icon_for_attributes=Prika\u017ei ikone obilje\u017eja -OptionPanel.Keystrokes=Tipkovni\u010dke kratice -OptionPanel.keystroke_newMap=Nova Mentalna mapa -OptionPanel.keystroke_open=Otvori -OptionPanel.keystroke_save=Spremi -OptionPanel.keystroke_saveAs=Spremi kao -OptionPanel.keystroke_print=Ispi\u0161i -OptionPanel.keystroke_close=Zatvori -OptionPanel.keystroke_quit=Izlaz -OptionPanel.keystroke_export_to_html=Izvoz u HTML -OptionPanel.keystroke_export_branch_to_html=Izvoz grane u HTML -OptionPanel.keystroke_open_first_in_history=Otvori prvu mapu iz Povijesti -OptionPanel.keystroke_previousMap=Predhodna mapa -OptionPanel.keystroke_nextMap=Slijede\u0107a mapa -OptionPanel.keystroke_mode_MindMap=Na\u010din Mentalne mape -OptionPanel.keystroke_mode_Browse=Pregledni\u010dki na\u010din -OptionPanel.keystroke_mode_File=Datote\u010dni na\u010din -OptionPanel.keystroke_node_toggle_italic=Uko\u0161eno -OptionPanel.keystroke_node_toggle_boldface=Podebljano -OptionPanel.keystroke_node_toggle_underlined=Podcrtano -OptionPanel.keystroke_node_toggle_cloud=Aktiviraj obla\u010di\u0107 -OptionPanel.keystroke_undo=Poni\u0161titi -OptionPanel.keystroke_redo=Ponovi -OptionPanel.keystroke_delete_child=Obri\u0161i \u010dvor Dijete -OptionPanel.keystroke_select_all=Ozna\u010di sve -OptionPanel.keystroke_select_branch=Ozna\u010di granu -OptionPanel.keystroke_zoom_out=Umanji -OptionPanel.keystroke_zoom_in=Pove\u0107aj -OptionPanel.keystroke_cut=Izre\u017ei -OptionPanel.keystroke_copy=Kopiraj -OptionPanel.keystroke_copy_single=Pojedina\u010dno kopiranje -OptionPanel.keystroke_paste=Zalijepi -OptionPanel.keystroke_remove=Ukloni -OptionPanel.keystroke_add_arrow_link_action=Dodaj vezu sa strelicom -OptionPanel.keystroke_add_local_link_action=Dodaj lokalnu vezu -OptionPanel.keystroke_moveToRoot=Pomakni u korijenski \u010dvor -OptionPanel.keystroke_move_up=Pomakni gore -OptionPanel.keystroke_move_down=Pomakni dolje -OptionPanel.keystroke_move_left=Pomakni lijevo -OptionPanel.keystroke_move_right=Pomakni desno -OptionPanel.keystroke_follow_link=Otvori hipervezu ( link ) -OptionPanel.keystroke_add=Dodaj bratski \u010dvor -OptionPanel.keystroke_add_child=Dodaj \u010dvor Dijete -OptionPanel.keystroke_add_child_mac=Dodaj \u010dvor Dijete MacOS -OptionPanel.keystroke_add_sibling_before=Dodaj bratski \u010dvor ispred aktualnog \u010dvora -OptionPanel.keystroke_edit=Uredi -OptionPanel.keystroke_edit_long_node=Detaljno uredi \u010dvor -OptionPanel.keystroke_join_nodes=Spoji \u010dvorove -OptionPanel.keystroke_toggle_folded=Rasklopi / Sklopi -OptionPanel.keystroke_toggle_children_folded=Rasklopi / Sklopi Djecu -OptionPanel.keystroke_set_link_by_filechooser=Postavi hipervezu pomo\u0107u preglednika datoteka -OptionPanel.keystroke_set_link_by_textfield=Postavi hipervezu pomo\u0107u unosa u tekstualno polje -OptionPanel.keystroke_set_image_by_filechooser=Umetni sliku pomo\u0107u preglednika datoteka -OptionPanel.keystroke_node_up=\u010cvor gore -OptionPanel.keystroke_node_down=\u010cvor dolje -OptionPanel.keystroke_node_increase_font_size=Pove\u0107aj veli\u010dinu slova \u010dvora -OptionPanel.keystroke_node_decrease_font_size=Smanji veli\u010dinu slova \u010dvora -OptionPanel.keystroke_export_branch=Izvoz grane -OptionPanel.keystroke_node_color=Boja teksta \u010dvora -OptionPanel.keystroke_node_color_blend=Mije\u0161anje boja \u010dvora -OptionPanel.keystroke_edge_color=Boja ruba -OptionPanel.keystroke_find=Tra\u017ei -OptionPanel.keystroke_find_next=Tra\u017ei slijede\u0107e -OptionPanel.keystroke_apply_pattern_1=Primjeni uzorak 1 -OptionPanel.keystroke_apply_pattern_2=Primjeni uzorak 2 -OptionPanel.keystroke_apply_pattern_3=Primjeni uzorak 3 -OptionPanel.keystroke_apply_pattern_4=Primjeni uzorak 4 -OptionPanel.keystroke_apply_pattern_5=Primjeni uzorak 5 -OptionPanel.keystroke_apply_pattern_6=Primjeni uzorak 6 -OptionPanel.keystroke_apply_pattern_7=Primjeni uzorak 7 -OptionPanel.keystroke_apply_pattern_8=Primjeni uzorak 8 -OptionPanel.keystroke_apply_pattern_9=Primjeni uzorak 9 -OptionPanel.keystroke_apply_pattern_10=Primjeni uzorak 10 -OptionPanel.keystroke_apply_pattern_11=Primjeni uzorak 11 -OptionPanel.keystroke_apply_pattern_12=Primjeni uzorak 12 -OptionPanel.keystroke_apply_pattern_13=Primjeni uzorak 13 -OptionPanel.keystroke_apply_pattern_14=Primjeni uzorak 14 -OptionPanel.keystroke_apply_pattern_15=Primjeni uzorak 15 -OptionPanel.keystroke_apply_pattern_16=Primjeni uzorak 16 -OptionPanel.keystroke_apply_pattern_17=Primjeni uzorak 17 -OptionPanel.keystroke_apply_pattern_18=Primjeni uzorak 18 -OptionPanel.Behaviour=Karakteristika -OptionPanel.placenewbranches=Postavi novu granu -OptionPanel.placenewbranches.tooltip=Odre\u0111uje polo\u017eaj nove grane. Valjane vrijednosti su 'prva' i 'posljednja' -OptionPanel.disable_cursor_move_paper=Onemogu\u0107i pomicanje podloge sa pokaziva\u010dem -OptionPanel.disable_cursor_move_paper.tooltip=Ne prikazuj pokaziva\u010d 'pomakni' prilikom povla\u010denja podloge -OptionPanel.enable_leaves_folding=Omogu\u0107i sklapanje stabla -OptionPanel.enable_leaves_folding.tooltip=Omogu\u0107i sklapanje stabla = izmjena stila \u010dvora mjehuri\u0107/ ra\u010dva kod sklapanja: iako nije potvr\u0111eno, mo\u017eete promijeniti stil \u010dvora -OptionPanel.foldingsymbolwidth=Veli\u010dina simbola ( kru\u017ei\u0107a ) sklopljenog \u010dvora. -OptionPanel.foldingsymbolwidth.tooltip=Veli\u010dna kruga koji ozna\u010dava sklapanje stabla -OptionPanel.disable_key_type=Omogu\u0107i tipkanje -OptionPanel.disable_key_type.tooltip=Tipkanje: ako je omogu\u0107eno dozvoljava ure\u0111ivanje \u010dvora -OptionPanel.key_type_adds_new=Tipkanje dodaje novi sadr\u017eaj -OptionPanel.key_type_adds_new.tooltip=Tipkanje: prepisuje sadr\u017eaj \u010dvora (neistina - ako nije ozna\u010deno) / kreira novi bratski \u010dvor (istina -ako je ozna\u010deno ) (zahtjeva se: disable_key_type = false) -OptionPanel.selection_method=Na\u010din ozna\u010davanja -OptionPanel.selection_method.tooltip= sa slijede\u0107im preklopnikom mo\u017eete omogu\u0107iti/ onemogu\u0107iti shemu ozna\u010davanja sa zaka\u0161njenjem. Automatske mogu\u0107nosti. Ovo ne mijenjajte ionako \u0107e postavke biti snimljene u auto.properties. -OptionPanel.time_for_delayed_selection=Vrijeme ka\u0161njenja ozna\u010davanja -OptionPanel.time_for_delayed_selection.tooltip= Vremensko zaka\u0161njenje ozna\u010davanja \u010dvora kada je pokaziva\u010d mi\u0161a iznad \u010dvora (u milisekundama).Promijenite ovaj iznos na 1ako \u017eelite direktno ozna\u010diti \u010dvor kad je pokaziva\u010d mi\u0161a iznad. -OptionPanel.HTML=HTML -OptionPanel.default_browser_command_windows_nt=Zadani naredbeni preglednik Windows Nt -OptionPanel.default_browser_command_windows_nt.tooltip=Za Windows NT (znaci "" su obavezni zbog veza,koji imaju "=" u svojem URL-u). -OptionPanel.default_browser_command_windows_9x=Zadani naredbeni preglednik Windows 98 -OptionPanel.default_browser_command_windows_9x.tooltip=Za Windows 98 (znaci "" su obavezni zbog veza,koji imaju "=" u svojem URL-u). -OptionPanel.default_browser_command_other_os=Zadani naredbeni preglednik za ostale OS -OptionPanel.default_browser_command_other_os.tooltip= Ovo je tipi\u010dno za LInux: -OptionPanel.default_browser_command_mac=Zadani naredbeni preglednik za MacOS -OptionPanel.default_browser_command_mac.tooltip= i MAC: (hvala, Nick!) -OptionPanel.html_export_folding=Prikaz \u010dvorova pri izvozu u HTML -OptionPanel.export_icons_in_html=Izvoz ikona u HTML -OptionPanel.export_icons_in_html.tooltip= Tell if HTML exported from FreeMind should contain icons. The trouble with icons is that quite often the links to icons will not be found in the exported HTML. -OptionPanel.Cancel=Odustani -OptionPanel.OK=Spremi -option_changes_may_require_restart=Da bi vidjeli u\u010dinak promjena postavka, morate ponovno pokrenuti FreeMind. -# fc, 12.5.2005: -GrabKeyDialog.grab-key.title=Upi\u0161i novu tipku -GrabKeyDialog.grab-key.caption= -GrabKeyDialog.grab-key.clear=O\u010disti -GrabKeyDialog.grab-key.assigned-to.none=Trenutno nije dodijeljeno -GrabKeyDialog.grab-key.assigned-to=Dodijeljeno je prema -GrabKeyDialog.common.ok=U redu -GrabKeyDialog.grab-key.remove=Ukloni -GrabKeyDialog.common.cancel=Odustani -GrabKeyDialog.grab-key.remove-ask=Da li ste sigurni da \u017eelite ukloniti akciju tipke? -OptionPanel.separator.language=Jezik -OptionPanel.separator.files=Datoteke -OptionPanel.separator.automatic_save=Automatsko snimanje -OptionPanel.separator.default_styles=Zadani stilovi -OptionPanel.separator.default_colors=Zadane boje -OptionPanel.separator.selection_colors=Boje ozna\u010davanja -OptionPanel.separator.default_fonts=Zadani oblik slova -OptionPanel.separator.other_defaults=Ostale zadane vrijednosti -OptionPanel.separator.look_and_feel=Izgled i ugo\u0111aj -OptionPanel.separator.anti_alias=Zagla\u0111ivanje -OptionPanel.separator.initial_map_size=Po\u010detna veli\u010dina Mentalne mape -OptionPanel.separator.hyperlink_types=Vrste hiperveza -OptionPanel.separator.edit_long_node_window= Postavke prozora za bolje oblikovanje teksta \u010dvora -OptionPanel.separator.commands_for_the_program=Naredbe programa -OptionPanel.separator.node_editing_commands=Naredbe ure\u0111ivanja \u010dvora -OptionPanel.separator.node_navigation_commands=Naredbe navigacije \u010dvora -OptionPanel.separator.new_node_commands=Naredbe novog \u010dvora -OptionPanel.separator.patterns= Uzorci -OptionPanel.separator.behaviour= Karakteristika -OptionPanel.separator.key_typing=Tipkanje -OptionPanel.separator.selection_method= Na\u010din ozna\u010davanja -OptionPanel.separator.browser= Preglednik -OptionPanel.separator.html_export=HTML izvoz -OptionPanel.separator.attributes=Svojstva -OptionPanel.separator.icons=Ikone u "Odaberi Ikonu..." -OptionPanel.keystroke_edit_attributes=Uredi obilje\u017eja -OptionPanel.keystroke_show_all_attributes=Prika\u017ei sva obilje\u017eja -OptionPanel.keystroke_show_selected_attributes=Prika\u017ei ozna\u010dena obilje\u017eja -OptionPanel.keystroke_hide_all_attributes=Sakrij sva obilje\u017eja -OptionPanel.keystroke_show_attribute_manager=Prika\u017ei upravitelj obilje\u017eja -OptionPanel.keystroke_assign_attributes=Dodijeljivanje obilje\u017eja ... -# fc, 2.6.2005: -OptionPanel.antialias.tooltip=Odre\u0111ivanje grafi\u010dke kvalitete mentalne mape. Vi\u0161e zagla\u0111ivanja zahtjeva vi\u0161e vremena. -OptionPanel.antialias=Zagla\u0111ivanje -OptionPanel.antialias_edges=Zagla\u0111ivanje ruba -OptionPanel.antialias_all=Zagladi sve -OptionPanel.antialias_none=Bez zagla\u0111ivanja -OptionPanel.cs=\u010de\u0161ki -OptionPanel.nb=norve\u0161ki -# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above -follow_link = Otvori hipervezu ( link ) -OptionPanel.ColorProperty.ResetColor=Vrati boju -# fc, 16.6.2005: -OptionPanel.keystroke_option_dialog=Postavke -format_menu_edge_styles=Stil &ruba -format_menu_edge_widths=&\u0160irine ruba -# fc, 3.7.2005: -accessories/plugins/ImportMindmanagerFiles.properties_name=MindManager X5 mape... -# fc, 5.7.2005: -accessories/plugins/ExportToOoWriter.properties_documentation=Vidljiva struktura mape (svi rasklopljeni \u010dvorovi) napraviti \u0107e poglavlja dokumenta.
Skriveni \u010dvorovi (svi sklopljeni \u010dvorovi) biti \u0107e umetnuti unutar tih poglavlja u obliku liste ili paragrafa. -accessories/plugins/ExportToOoWriter.properties_name= Kao Open Office Write dokument... -# fc, 10.7.2005: -OptionPanel.separator.undo=Poni\u0161ti -OptionPanel.undo_levels=Broj poni\u0161tenja -OptionPanel.undo_levels.tooltip=Odre\u0111ivanje broja snimljenih koraka koji \u0107e se mo\u0107i vratiti funkcijom "Poni\u0161ti". -# fc, 13.8.2005 -OptionPanel.lt=litvanjki -# fc, 12.1.2006: don't translate this unless you create a translation of the documentation file (see german) -browsemode_initial_map = ./doc/freemind.mm -# fc, 1.2.06 -link_not_found = Veza $1 nije na\u0111ena. -# fc, 15.2.06 -icon_smily_bad = Nezadovoljan sam -OptionPanel.hr=hrvatski -OptionPanel.nn=norve\u0161ki -OptionPanel.se=\u0161vedski - -OptionPanel.unfold_on_paste=Rasklopi \u010dvor kad ga zalijepi\u0161 -OptionPanel.unfold_on_paste.tooltip=Rasklopi \u010dvor kad ga zalijepi\u0161 ili kad povu\u010de\u0161 i ispusti\u0161 \u010dvor - -# fc, 16.2.06 -accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Izvoz mape kao java browser applet. -accessories/plugins/ExportWithXSLT_Applet.properties_name=Kao Java Applet... -accessories/plugins/ExportWithXSLT_Applet.properties_webpage=WEB stranica -accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Izvoz mape kao flash aplikacija. -accessories/plugins/ExportWithXSLT_Flash.properties_name=Kao Flash... -# fc, 21.2.06 -accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=Lijevo od korijena \u010dvor/ovi je/su pomaknut/i prema dolje. \u010cvor/ovi je/su postali djeca od bratskih \u010dvorova. Desno od korijena \u010dvor/ovi je/su pomaknut/i prema gore.Direktno na korijenu \u010dvor/ovi mijena/ju strane. -accessories/plugins/ChangeNodeLevelAction_left.properties_name=\u010cvor ulijevo -accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=Desno od korijena \u010dvor/ovi je/su pomaknut/i prema dolje. \u010cvor/ovi je/su postali djeca od bratskih \u010dvorova. Lijevo od korijena \u010dvor/ovi je/su pomaknut/i prema gore.Direktno na korijenu \u010dvor/ovi mijena/ju strane. -accessories/plugins/ChangeNodeLevelAction_right.properties_name=\u010cvor udesno -# fc, 27.2.06: -PatternDialog.ColorProperty.ResetColor=Vrati boju na izvornu -PatternDialog.EdgeWidth_1=1 -PatternDialog.EdgeWidth_2=2 -PatternDialog.EdgeWidth_4=4 -PatternDialog.EdgeWidth_8=8 -PatternDialog.EdgeWidth_parent=kao Roditelj -PatternDialog.EdgeWidth_thin=Tanko -PatternDialog.as_parent=kao Roditelj -PatternDialog.bezier=Bezier -PatternDialog.bubble=Mjehuri\u0107 -PatternDialog.combined=Kombiniran -PatternDialog.edgecolor.tooltip=Svojstvo ruba roditeljskog \u010dvora ( primijeniti \u0107e se na sve \u010dvorove Djecu) -PatternDialog.edgecolor=Boja ruba -PatternDialog.edgestyle.tooltip=Svojstvo ruba roditeljskog \u010dvora ( primijeniti \u0107e se na sve \u010dvorove Djecu) -PatternDialog.edgestyle=Stil ruba -PatternDialog.edgewidth.tooltip=Svojstvo ruba roditeljskog \u010dvora ( primijeniti \u0107e se na sve \u010dvorove Djecu) -PatternDialog.edgewidth=\u0160irina ruba -PatternDialog.fork=Ra\u010dva -PatternDialog.linear=Linearno -PatternDialog.nodebackgroundcolor=Boja pozadine \u010dvora -PatternDialog.nodecolor=Boja teksta \u010dvora -PatternDialog.nodestyle=Stil \u010dvora -PatternDialog.nodetext=Tekst \u010dvora -PatternDialog.separator.EdgeControls=Rub -PatternDialog.separator.NodeColors=Boje teksta \u010dvora -PatternDialog.separator.NodeStyles=Stil \u010dvora -PatternDialog.sharp_bezier=Grubo bezier -PatternDialog.sharp_linear=Grubo linearno -PatternDialog.undefined_font=Nedefiniran oblik slova -accessories/plugins/ApplyFormatPlugin.properties_documentation=Prikazuje dijalog u kojem osobine \u010dvora i ruba mogu biti promijenjene odmah. -accessories/plugins/ApplyFormatPlugin.properties_name=Promijeni &oblik \u010dvora... -accessories/plugins/ApplyFormatPlugin.dialog.title=Promjena oblik svih \u010dvorova - -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Pomakni lijevo -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Pomakni desno -OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Kopiraj oblik -OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Zalijepi oblik -OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Umetni ikonu -OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Razmak \u010dvorova -OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Podijeli \u010dvor -# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Zatvori jednu razinu -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Otvori jednu razinu -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Zatvori sve -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Otvori sve -OptionPanel.separator.others=Ostale tipkovni\u010dke veze - -PatternDialog.separator.General=Op\u0107enito -PatternDialog.clear_all_setters=Uklju\u010di sve -PatternDialog.clear_all_setters.tooltip=Omogu\u0107uje ili onemogu\u0107uje sve pokazatelje promjena. -# fc, 1.3.06: -accessories/plugins/ManagePatterns.dialog.title=Upravljanje uzorcima... -accessories/plugins/ManagePatterns.not_found=Datoteka s uzorkom nemo\u017ee biti u\u010ditana. -accessories/plugins/ManagePatterns.properties_documentation=Mijenja uzorke definirane u paterns.xml u ure\u0111iva\u010du. Rezultat je automatski snimljen. -accessories/plugins/ManagePatterns.properties_name=Upravljane uzorcima... -# fc, 14.3.06: -PatternDialog.nodefontbold=Podebljan oblik slova -PatternDialog.nodefontitalic=Uko\u0161en oblik slova -PatternDialog.separator.NodeFont=Oblik slova \u010dvora -# fc, 19.3.06: -ManagePatternsPopupDialog.remove=Makni uzorak -ManagePatternsPopupDialog.add=Dodaj novi uzorak -PatternDialog.patternname=Ime -PatternDialog.patternname.tooltip=Jedinstveno ime uzorka -PatternNewNameProperty=Novi uzorak -ManagePatternsPopupDialog.DuplicateNameMessage=Odabrali ste ime koje ve\u0107 postoji. Promijenite ime prije napu\u0161tanja ovog dijaloga. -PatternDialog.childpattern.tooltip=Odabrani uzorak je primijenjen na sve \u010dvorove Djece. -PatternDialog.childpattern=Uzorak \u010dvora Dijete -ManagePatternsPopupDialog.Save=Spremi i varati se -PatternDialog.icon.tooltip=Ako se primijeni, \u010dvor \u0107e imati to\u010dno tu ikonu. -PatternDialog.icon=Ikona -PatternDialog.set_property_text=Promijeni -PatternDialog.set_property_text.tooltip=Prazan: Ne dirati; Minus=Makni osobine ( postavi zadane vrijednosti ); Plus=Promijeni osobine -accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Promijeni uzorak -OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automatski ure\u0111eni uzorci -OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Uzorci -PatternToString.color=Boje -PatternToString.backgroundColor=Boja pozadine -#OptionPanel.automaticFormat_level1=Oblik korijenskog \u010dvora -#OptionPanel.automaticFormat_level2=1. Razina oblika \u010dvora -PatternToString.NodeFontSize=Veli\u010dina slova -OptionPanel.level1=Oblik korijenskog \u010dvora -OptionPanel.level2=1. Razina oblika \u010dvorova -OptionPanel.level3=2. Razina oblika \u010dvorova -OptionPanel.level4=3. Razina oblika \u010dvorova -OptionPanel.level5=Ostali oblici \u010dvorova -OptionPanel.automaticFormat_level=Stilovi automatskog izgleda -# fc, 13.4.06: -ManagePatternsPopupDialog.duplicate=Dupliciraj uzorak -ManagePatternsPopupDialog.from_nodes=Napravi uzorak iz ozna\u010denih \u010dvorova -# fc, 25.5.2006: -accessories/plugins/SaveAll.properties_documentation=Spremi sve otvorene mape. -accessories/plugins/SaveAll.properties_name=Spremi &sve -accessories/plugins/SaveAll.properties_save_all_cancelled=Operacija nije uspje\u0161no dovr\u0161ena. -# fc, 23.7.06 -OptionPanel.loadLastMap=Automatski otvori zadnju datoteku -OptionPanel.loadLastMap.tooltip=Ako je ozna\u010deno, FreeMind kad se pokre\u0107e otvara automatski zadnje otvorenu mapu. -# dan, whenever -use_rich_formatting = Koristi bolje oblikovani tekst -use_plain_text = Koristi jednostavan tekst -# fc, 30.7.06: -FreeMind.progress.gettingPreferenceDirectories=Pribavljanje direktorija Svojstava... -FreeMind.progress.gettingPreferences=Pribavljanje Svojstava... -FreeMind.progress.updateLookAndFeel=Osvje\u017eavanje izgleda i ugo\u0111aja... -FreeMind.progress.createController=Stvaranje Kontrolora... -FreeMind.progress.settingPreferences=Namje\u0161tanje Postavki... -FreeMind.progress.propageteLookAndFeel=Izvo\u0111enje izgleda i ugo\u0111aja... -FreeMind.progress.createInitialMode=Stvaranje Po\u010detnog na\u010dina... -FreeMind.progress.startCreateController=Zapo\u010dinjanje stvaranja Kontrolora... -FreeMind.progress.loadMaps=U\u010ditavanje mapa... -FreeMind.progress.buildScreen=Gradnja Prikaza... -FreeMind.progress.endStartup=Zavr\u0161etak pokretanja. -OptionPanel.tr=turski -OptionPanel.level=Razina -# fc, 13.8.06: -map_not_saved=Mapa nije prije snimljena. -# fc, 27.8.06: -plugins/TimeManagement.xml_Find=Prona\u0111i -plugins/TimeManagement.xml_Replace=Zamijeni -plugins/TimeManagement.xml_Select=Ozna\u010di -plugins/TimeManagement.xml_Export=Izvoz odabranih \u010dvorova -plugins/TimeManagement.xml_Replace_All=Zamijeni sve -plugins/TimeManagement.xml_Replace_Selected=Zamijeni ozna\u010deno -plugins/TimeManagement.xml_Goto=Idi na -plugins/TimeManagement.xml_Cancel=Odustani -# fc, 2.9.06 : -automatically_save_message=Mapa je automatski snimljena (koriste\u0107i ime datoteke {0}) ... -plugins/ScriptingEngine.xml_documentation=Izvo\u0111enje svih sadr\u017eanih skripti . -plugins/ScriptingEngine.xml_name=Izvo\u0111enje skripti -# fc, 4.9.06 -OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Procjena -# fc, 6.9.06: -error_applying_template=Gre\u0161ka prilikom primjene XSL predlo\u017eka. -# fc, 11.10.06: -accessories/plugins/NodeNote_jumpto.properties_documentation=Prebaci iz bilje\u0161ke u \u010dvor -accessories/plugins/NodeNote_jumpto.properties_name=Prelazak iz bilje\u0161ke u \u010dvor -#accessories/plugins/NodeNote_jumpfrom.properties_documentation=Prebaci natrag iz bilje\u0161ke u \u010dvor -#accessories/plugins/NodeNote_jumpfrom.properties_name=Napusti bilje\u0161ku -# fc, 12.10.06 -OptionPanel.max_tooltip_width=\u0160irina opisa alata -OptionPanel.max_tooltip_width.tooltip=Zadana \u0161irina opisa alata u pikselima. -# fc, 13.10.06: renamed: -plugins/NodeList.xml_documentation=Poka\u017ei sve \u010dvorove kao pretra\u017eivi popis sa svojstvima filtra. -# fc, 10.11.2006: -OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Prebacivanje Bilje\u0161ke/ Ure\u0111ivanje \u010dvora -OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Uklju\u010di/ Isklju\u010di bilje\u0161ke -# Dimitry 25.10 -OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=Obri\u0161i bilje\u0161ke -# aki 19.10.06: (TJI support) -accessories/plugins/ExportWithXSLT_Applet.properties_tji= Datoteke koje su sastavni dio Task Juggler -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Izvozi zadataka iz \u010dvora Zadaci u Taskjuggler modul. -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Zadaci iz \u010dvora Zadaci u TaskJuggler datoteku... -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Izvozi resursa iz \u010dvora Resursa u Taskjuggler modul. -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Resursi iz \u010dvora Resursi u TaskJuggler datoteku... -# fc, 14.12.2006: renamed: -plugins/NodeList.xml_name=Prona\u0111i i zamijeni... -plugins/TimeManagement.xml_menu_actions=Akcije -# fc, 23.12.06: -plugins/TimeList.xml_Notes=Bilje\u0161ke -# fc, 30.12.06: -accessories/plugins/SortNodes.properties_documentation=Razvrstavanje svih \u010dvora Djece abecednim redom. -accessories/plugins/SortNodes.properties_name=Ra&zvrstavanje Djece abecednim redom -# fc, 3.1.07: -OptionPanel.ar=arapski -# fc, 10.1.07: -plugins/TimeManagement.xml_WindowTitle_All_Nodes=Pretra\u017ei i zamijeni -plugins/ScriptEditor.xml_documentation=Omogu\u0107ava pisanje velikih skripti unutar FreeMind-a. -plugins/ScriptEditor.xml_name=U&re\u0111iva\u010d skripti... -# fc, 24.1.07: -plugins/ScriptEditor/window.title=Ure\u0111iva\u010d skripti -plugins/ScriptEditor.menu_actions=&Akcije -plugins/ScriptEditor.run=&Izvodi -plugins/ScriptEditor/window.Result=Rezultat: - -# SimplyHTML.properties -# -# resource bundle with strings for application SimplyHTML -# - English Language (default) - -# edit menu definition -simplyhtml.editLabel=Uredi - -# edit menu items -simplyhtml.undoLabel=Poni\u0161ti -simplyhtml.undoTip=Poni\u0161ti -simplyhtml.redoLabel=Ponovi -simplyhtml.redoTip=Ponovi -simplyhtml.cutLabel=Izre\u017ei -simplyhtml.cutTip=Izre\u017ei -simplyhtml.copyLabel=Kopiraj -simplyhtml.copyTip=Kopiraj -simplyhtml.pasteLabel=Zalijepi -simplyhtml.pasteTip=Zalijepi -simplyhtml.selectAllLabel=Ozna\u010di sve -simplyhtml.findReplaceLabel=Tra\u017ei i zamijeni -simplyhtml.findReplaceTip=Tra\u017ei i zamijeni - -#insert menu definition -simplyhtml.insertTableLabel=Tabela... -# format menu definition -simplyhtml.formatLabel=Oblikovanje - -# format menu items -simplyhtml.fontLabel=Slova... -simplyhtml.fontTip=Oblik slova... -simplyhtml.clearFormatLabel=Ukloni oblikovanje -simplyhtml.clearFormatTip=Ukloni oblikovanje -simplyhtml.fontBoldLabel=Podebljano -simplyhtml.fontBoldImage=resources/bold.gif -simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif -simplyhtml.fontBoldTip=Uklju\u010di/ Isklju\u010di podebljano -simplyhtml.fontColorTip=Boja teksta -simplyhtml.fontColorLabel=Boja teksta -simplyhtml.fontColorImage=resources/fontColor.gif -simplyhtml.fontItalicLabel=Uko\u0161eno -simplyhtml.fontItalicImage=resources/italic.gif -simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif -simplyhtml.fontItalicTip=Isklju\u010di/ uklju\u010di uko\u0161eno -simplyhtml.fontUnderlineLabel=Podcrtano -simplyhtml.fontUnderlineImage=resources/uline.gif -simplyhtml.fontUnderlineTip=Uklju\u010di/ Isklju\u010di podcrtano -simplyhtml.formatTableLabel=Tabela... -simplyhtml.formatTableTip=Oblikovanje tabele -simplyhtml.toggleBulletsLabel=Uklju\u010di/ Isklju\u010di ozna\u010deni popis -simplyhtml.toggleBulletsTip=Uklju\u010di/ Isklju\u010di ozna\u010deni popis -simplyhtml.toggleNumbersLabel=Uklju\u010di/ Isklju\u010di numerirani popis -simplyhtml.toggleNumbersTip=Uklju\u010di/ Isklju\u010di numerirani popis -simplyhtml.formatListLabel=Popis... -simplyhtml.formatListTip=Promijeni oblik popisa -simplyhtml.formatParaLabel=Odlomak... -simplyhtml.formatParaTip=Promjeni oblik odlomka -simplyhtml.paraAlignLeftLabel=Poravnaj lijevo -simplyhtml.paraAlignLeftTip=Poravnavanje odlomka ulijevo -simplyhtml.paraAlignCenterLabel=Poravnaj u sredinu -simplyhtml.paraAlignCenterTip=Poravnavanje odlomka u sredinu -simplyhtml.paraAlignRightLabel=Poravnaj desno -simplyhtml.paraAlignRightTip=Poravnavanje odlomka udesno - -# table menu definition -# table menu items -simplyhtml.tableLabel=Tabela -simplyhtml.nextTableCellLabel=Slijede\u0107a \u0107elija -simplyhtml.prevTableCellLabel=Predhodna \u0107elija -simplyhtml.insertTableRowLabel=Umetni red -simplyhtml.insertTableColLabel=Umetni stupac -simplyhtml.appendTableRowLabel=Dodaj red ispod -simplyhtml.appendTableColLabel=Dodaj stupac pokraj -simplyhtml.deleteTableRowLabel=Obri\u0161i red -simplyhtml.deleteTableColLabel=Obri\u0161i stupac - -# help menu items -simplyhtml.helpLabel=Pomo\u0107 -simplyhtml.aboutLabel=O SimplyHTML... - -# About frame -simplyhtml.aboutFrameTitle=O programu - -# Font Dialog -simplyhtml.fontDialogTitle=Oblik slova - -# Font panel -simplyhtml.uLineLabel=Podcrtano -simplyhtml.strikeLabel=Precrtano -simplyhtml.previewLabel=Pretpregled -simplyhtml.previewText=Tekst predpregleda -simplyhtml.familyLabel=Oblik -simplyhtml.sizeLabel=Veli\u010dina -simplyhtml.plainName=Obi\u010dan -simplyhtml.boldName=Podebljano -simplyhtml.italicName=Uko\u0161eno -simplyhtml.boldItalicName=Uko\u0161/Pode -simplyhtml.styleLabel=Stil -simplyhtml.effectLabel=Efekti -simplyhtml.colorLabel=Boja -simplyhtml.foregroundLabel=Boja fonta: -simplyhtml.backgroundLabel=Boja pozadine: -simplyhtml.noLineLabel=Ni\u0161ta - -# Paragraph style panel -simplyhtml.textIndentLabel=Uvlaka: -simplyhtml.alignLabel=Poravnavanje: -simplyhtml.alignLeft=Lijevo -simplyhtml.alignCenter=Sredina -simplyhtml.alignRight=Desno -simplyhtml.valignLabel=Okom.poravn.: -simplyhtml.valignTop=Gore -simplyhtml.valignMiddle=Sredina -simplyhtml.valignBottom=Dolje -simplyhtml.valignBaseline=Osnovna crta - -# Margin panel -simplyhtml.marginLabel=Izvana -simplyhtml.paddingLabel=Unutra - -# Table dialog -simplyhtml.tableDialogTitle=Oblik tabele -simplyhtml.tablePanelTitle=Oblik tabele -simplyhtml.cellPanelTitle=Oblik \u0107elije -simplyhtml.tableWidthLabel=\u0160irina: -simplyhtml.tableBgColLabel=Pozadinska boja: -simplyhtml.cellMarginTabLabel=Margine -simplyhtml.cellBorderTabLabel=Obrub -simplyhtml.borderWidthLabel=\u0160irine -simplyhtml.borderColorLabel=Boja: -simplyhtml.thisCellRangeLabel=aktiv.\u0107elija -simplyhtml.thisColRangeLabel=aktiv.stupac -simplyhtml.thisRowRangeLabel=aktiv.red -simplyhtml.allCellsRangeLabel=sve \u0107elije -simplyhtml.applyCellAttrLabel=Primijeni na -simplyhtml.cellGenTabLabel=Op\u0107enito - -# Paragraph style dialog -simplyhtml.paraStyleDialogTitle=Stil odlomka -simplyhtml.fontTabLabel=Slova -simplyhtml.paraTabLabel=Odlomak - -# Tag names -simplyhtml.cTagNamePara=Odlomak -simplyhtml.cTagNameHead1=Naslov 1 -simplyhtml.cTagNameHead2=Naslov 2 -simplyhtml.cTagNameHead3=Naslov 3 -simplyhtml.cTagNameHead4=Naslov 4 -simplyhtml.cTagNameHead5=Naslov 5 -simplyhtml.cTagNameHead6=Naslov 6 -simplyhtml.cTagNameLink=Veza -simplyhtml.cTagNameUL=Neure\u0111en popis -simplyhtml.cTagNameOL=Ure\u0111en popis - -# List dialog -simplyhtml.listDialogTitle=Oblik popisa -simplyhtml.listTypeLabel=Tip: -simplyhtml.listPositionLabel=Pozicija: -simplyhtml.listIndentTitle=Uvlaka: -simplyhtml.listTypeNone=Ni\u0161ta -simplyhtml.listTypeDecimal=1.,2.,3.,4. -simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. -simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. -simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. -simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. -simplyhtml.listTypeDisc=simbol datoteke kao graf.oznake -simplyhtml.listTypeCircle=Kru\u017ei\u0107 -simplyhtml.listTypeSquare=Kvadrat -simplyhtml.listPosInside=Iznutra -simplyhtml.listPosOutside=Izvana - -# Find & replace dialog -simplyhtml.findReplaceDialogTitle=Tra\u017ei i zamijeni -simplyhtml.findNext=Tra\u017ei slijede\u0107e... -simplyhtml.searchFromStart=Tra\u017ei od po\u010detka -simplyhtml.searchDown=Tra\u017ei prema dolje -simplyhtml.wholeWordsOnly=Samo cijele rije\u010di -simplyhtml.searchUp=Tra\u017ei prema gore -simplyhtml.matchCase=Razlikuj velika i mala slova -simplyhtml.replaceWith=Zamijeni sa: -simplyhtml.textToFind=Tra\u017ei ovo: -simplyhtml.replace=Zamijeni... -simplyhtml.noMoreOccurrencesFound=nema vi\u0161e podudarnosti -simplyhtml.allOccurrencesReplaced=Sve podudarnosti su zamijenjene -simplyhtml.replaceThisQuery=Zamijeniti podudarnost s obzirom na -simplyhtml.replaceYes=Da -simplyhtml.replaceNo=Ne -simplyhtml.replaceAll=Sve -simplyhtml.replaceDone=Gotovo - -# Error messages -simplyhtml.unableToUndoError=Nemogu poni\u0161titi: -simplyhtml.unableToRedoError=Nemogu ponoviti: -simplyhtml.unableToOpenFileError=Datoteka se ne mo\u017ee otvoriti - -# Miscellaneous text -simplyhtml.imageFileDesc=Slikovne datoteke -simplyhtml.defaultDocName=Bez naslova -simplyhtml.cancelBtnName=Odustani -simplyhtml.closeBtnName=Zatvori -simplyhtml.okBtnName=Uredu -simplyhtml.leftLabel=Lijevo: -simplyhtml.rightLabel=Desno: -simplyhtml.topLabel=Gore: -simplyhtml.bottomLabel=Dolje: -simplyhtml.insertTableTitle=Umetni tabelu -simplyhtml.insertTableMsg=Broj kolona -simplyhtml.close=Zatvori -simplyhtml.standardStyleName=Standardno -simplyhtml.styleNameInputTitle=Spremi stil -simplyhtml.styleNameInputText=Naziv novog stila? -simplyhtml.newStyleDefaultName=Novi stil -simplyhtml.docTitleTitle=Uredi naslov dokumenta -simplyhtml.docTitleQuery=Postavi naslov kao: -simplyhtml.layoutTabTitle=Osnovni prikaz -simplyhtml.htmlTabTitle=HTML prikaz - -#fc, 14.2.07: -ScriptEditorPanel.changed_cancel=Skripta je promijenjena. Da li stvarno \u017eelite otkazati promjene? - -# fc, 2.3.07: -OptionPanel.separator.mouse_wheel=Kota\u010di\u0107 mi\u0161a -OptionPanel.wheel_velocity=Brzina -OptionPanel.wheel_velocity.tooltip=Ve\u0107a vrijednost rezultira kod pomaka kota\u010di\u0107a mi\u0161a br\u017ee u\u010dinke na mapi. - -# fc, 15.5.07: -accessories/plugins/NodeHistoryBack.properties_name=Nazad -accessories/plugins/NodeHistoryBack.properties_documentation=Skok unazad na ozna\u010denom nizu -accessories/plugins/NodeHistoryForward.properties_name=Naprijed -accessories/plugins/NodeHistoryForward.properties_documentation=Skok unaprijed na ozna\u010denom nizu - -# fc, 25.5.07: -OptionPanel.use_tabbed_pane.tooltip=Ako je ozna\u010deno mape \u0107e se prikazivati u tabovima ( kao u FireFox-u :-) ) -OptionPanel.use_tabbed_pane=Koristi tabove - -# fc, 11.6.07: -accessories/plugins/ExportWithTWiki.properties_name=Kao TWiki... -accessories/plugins/ExportWithTWiki.properties_documentation= Izvozi Mentalnu mapu kao Twiki dokument. -accessories/plugins/ExportWithTWiki.properties=TWiki datoteka (*.twi) - -# fc, 31.7.07 -really_remove_node=\u017deli\u0161 li stvarno obrisati \u010dvor(ove)? -confirmation=Potvrda -OptionalDontShowMeAgainDialog.dontShowAgain=Ne &pitaj me ponovno. -OptionalDontShowMeAgainDialog.rememberMyDescision=&Zapamti odluku. -OptionalDontShowMeAgainDialog.cancel=&Ne -OptionalDontShowMeAgainDialog.ok=&Da -OptionPanel.separator.resources_notifications=Potvrde -OptionPanel.delete_nodes_without_question=Obri\u0161i \u010dvor(ove) bez potvrde. -OptionPanel.delete_nodes_without_question.tooltip=Ako je polje odabrano \u010dvorovi \u0107e biti obrisani bez potvrde. Ovo mo\u017ee prouzro\u010diti gubitak informacija ukoliko nismo pa\u017eljivi kod brisanja. - -edit.decision=HTML Ure\u0111iva\u010d -edit.edit_rich_text=\u017deli\u0161 li koristiti oblikovanja kao podebljano ili uko\u0161eno? -OptionPanel.remind_type_of_new_nodes.tooltip="Pitanje" Prikazati \u0107e se pitanje za bolje oblikovanje \u010dvora ( koristi ako si u dvojbi ).
"Da" \u0107e prikazati ure\u0111iva\u010d za bolje oblikovanje teksta.
"Ne" \u0107e prikazati jednostavan ure\u0111iva\u010d teksta. -OptionPanel.ask=Pitanje - -OptionPanel.standardselectednodetextcolor.tooltip= -# fc, 4.9.07: -really_execute_script=\u017delite li stvarno izvoditi skripte uklju\u010dene u ovoj mapi? Postoji opasnost nastanka \u0161tete na ra\u010dunalu? -OptionPanel.resources_execute_scripts_without_asking=\u017delite li izv\u0161iti skripte bez potvrde? -OptionPanel.execute_scripts_without_asking.tooltip=U principu FreeMind skrpite mogu izvesti bilo kakvu akciju na va\u0161emu ra\u010dunalu.
Zato ne bi trebali pokretati skripte za koje ne znate dali su sigurne. - -#fc, 13.9.07: -PatternToString.EdgeStyle=Stil ruba -PatternToString.EdgeColor=Boja ruba -PatternToString.EdgeWidth=\u0160irina ruba -PatternToString.FontBold=Podebljano -PatternToString.FontItalic=Uko\u0161eno -PatternToString.FontName=Ime oblika slova -PatternToString.Icon=Ikona -PatternToString.Child=Stil \u010dvora Dijete -ManagePatternsPopupDialog.Actions=&Akcije - -#Dimitry 19.10.07: -node_location_help=Povla\u010denje mjenja poziciju \u010dvora, ctrl+povla\u010denje mjenja razmak, dvostruki klik i ctrl+dvostruki klik vra\u0107a \u0107vor u prvobitnu poziciju - -#fc, 19.10.07: -really_convert_to_current_version=Mapa je kreirana sa starijom verzijom programa Freemind.
\u017delite li ih prevesti na novu verziju ( preporu\u010da se )?
(U suprotnom treba uzeti kakvo je, bez ikakve garancije.) -OptionPanel.resources_convert_to_current_version=\u017delite li automatsko pretvaranje mapa starih verzija Freemind-a
u trenutnu verziju? -OptionPanel.resources_convert_to_current_version.tooltip=Samo za vrlo velike mape za koje nije potrebno pretvaranje
( a za to je potrebno stru\u010dno znanje), mo\u017eete otvarati bez pretvaranja. - -#Dimitry 25.10.07 -OptionPanel.separator.root_node_appearance=Izgled korijenskog \u010dvora -OptionPanel.use_common_out_point_for_root_node=Rubovi zapo\u010dinju iz jedne to\u010dke na korijenskom \u010dvoru -OptionPanel.use_common_out_point_for_root_node.tooltip=Rubovi zapo\u010dinju iz jedne to\u010dke na korijenskom \u010dvoru======= - -#fc, 9.11.07: -ManagePatternsPopupDialog.apply=Primijeni -PatternDialog.setscript=Promijeniti? -PatternDialog.setscript.tooltip=Skripta mo\u017ee biti pridru\u017eena stilu. -PatternDialog.script=Skripta -PatternDialog.script.tooltip=Skripta u obliku Groovy koda - -#fc, 12.11.07: -OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Upravljanje uzorcima - -#fc, 4.1.2008 changed: -toggle_menubar = &Izborna traka -toggle_toolbar = &Alatna traka -toggle_left_toolbar =&Traka s ikonama -accessories/plugins/NodeNote_hide_show.properties_name=Bilje\u0161ke -selection_as_rectangle=Prika\u017ei okvir za ozna\u010davanje \u010dvora - -# fc, 8.1.2008 -really_cut_node=\u017deli\u0161 li stvarno izrezati \u010dvor(ove)? -OptionPanel.resources_cut_nodes_without_question=Izre\u017ei \u010dvor(ove) bez potvrde. -OptionPanel.cut_nodes_without_question.tooltip=Ako je polje odabrano \u010dvorovi \u0107e biti izrezani bez potvrde. Ovo mo\u017ee prouzro\u010diti gubitak informacija ukoliko nismo pa\u017eljivi kod brisanja. - -# fc, 9.1.2008: -follow_graphical_link=Idi na: - -#fc 10.1.2008: changed: -accessories/plugins/NodeNote_hide_show.properties_documentation=Uklju\u010divanje ili isklju\u010divanje prozora s bilje\u0161kama - -#fc, 16.1.2008 -plugins/ScriptEditor.new_script=Nova skripta - -#fc, 20.2.2008: -OptionPanel.separator.save=Spremi -OptionPanel.save_only_intrisically_needed_ids=Spremi samo kori\u0161tene indetifikacijske brojeve \u010dvorova -OptionPanel.save_only_intrisically_needed_ids.tooltip=Kada je ozna\u010deno, indetifikacijski brojevi \u010dvora izostavljeni su i nisu kori\u0161teni unutar mape. Znajte, ne mo\u017eete povezati ("linkati") \u010dvor unutarnje mape sa \u010dvorom vanjske mape bez indetifikacijskog broja. - -# fc, 10.3.2008: -OptionPanel.plugins/scripting/tab_name=Pisanje skripti -OptionPanel.separator.plugins/scripting/separatorPropertyName=Potvrde -OptionPanel.resources_execute_scripts_without_file_restriction=Omogu\u0107i upravljanje nad datotekama ( NIJE preporu\u010deno ) -OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=Ukoliko Groovy skripte trebaju upravljati izvr\u0161avanjem datoteka ( npr. otvoriti, zatvoriti, \u010ditati, zapisati, snimiti, obrisati (!),
morate omogu\u0107iti ovu opciju.
Ali koristite pa\u017eljivo, zlonamjerne skripte mogu nanjeti \u0161tetu va\u0161em ra\u010dunalu! -OptionPanel.resources_execute_scripts_without_network_restriction=Omogu\u0107i upravljanje mre\u017enim resursima ( NIJE preporu\u010deno ) -OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=Ukoliko Groovy skripte trebaju upravljati izvr\u0161avanjem mre\u017enih akcija,
morate omogu\u0107iti ovu opciju.
Ali koristite pa\u017eljivo, zlonamjerne skripte mogu otkriti va\u0161e tajne ! -OptionPanel.resources_execute_scripts_without_exec_restriction=Omogu\u0107i izvr\u0161enje ostalih Aplikacija ( NIJE preporu\u010deno ) -OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=Ukoliko Groovy skripte trebaju upravljati izvr\u0161avanjem ostalih aplikacija ( npr. internet pretra\u017eiva\u010d ) bez pitanja(!),
morate omogu\u0107iti ovu opciju.
Ali koristite pa\u017eljivo, zlonamjerne skripte mogu nanjeti \u0161tetu va\u0161em ra\u010dunalu! -plugins/ScriptEditor.FORBIDDEN_ACTION=Izvr\u0161avanje FreeMind groovy skripta je zaustavljeno. Zabranjene su {0,choice,0#File|1#Network|2#Exec} slijede\u0107e operacije: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. - - -# changed, fc, 11.3.2008: -plugins/ScriptEditor.cancel=&Otka\u017ei promjene i iza\u0111i -plugins/ScriptEditor.exit=&Spremi i iza\u0111i - -# changed, fc, 26.3.2008: -plugins/TimeManagement.xml_closeButton=Zatvori - -# changed, fc, 7.4.2008: -PatternDialog.nodebackgroundcolor.tooltip=Pozadinska boja \u010dvora kada nije odabran. -PatternDialog.nodecolor.tooltip=Boja prednjeg plana \u010dvora kada nije odabran. -PatternDialog.nodestyle.tooltip=Stil opisuje vanjski oblik \u010dvora.
Mogu\u0107e vrijednosti:
fork: without surrounding box,
bubble: node with a surrounding rectangle,
As parent: take the style from the parent node
or the default root node style for the root node,
Combined: Bubble when node is folded, fork otherwise.
-PatternDialog.nodetext.tooltip=Ovdje mo\u017eete definirati tekst \u010dvorova. Kori\u0161tenjem uzorka predhodni tekst je odba\u010den. -PatternDialog.nodefontname=Oblik slova \u010dvorova -PatternDialog.nodefontsize=Veli\u010dina slova \u010dvorova -PatternDialog.nodefontname.tooltip= -PatternDialog.nodefontsize.tooltip= -PatternDialog.nodefontbold.tooltip= -PatternDialog.nodefontitalic.tooltip= - -# new, fc, 8.4.2008: -PatternDialog.separator.ScriptingControl=Pisanje skripti - -# new, fc, 10.4.2008: -OptionPanel.resources_don_t_show_note_icons=Ne prikazuj ikone bilje\u017eaka - -#new, fc, 11.4.2008: -FreeMind=Web stranica Freemind - -# new, fc, 12.4.2008: -really_remove_notes=Stvarno \u017eelite obrisati bilje\u0161ku(e)? -OptionPanel.resources_remove_notes_without_question=Obri\u0161i bilje\u0161ke bez upita. -OptionPanel.remove_notes_without_question.tooltip=Ako je polje odabrano pripadaju\u0107e bilje\u0161ke odabranog \u010dvora biti \u0107e obrisane bez potvrde.Ovo mo\u017ee prouzro\u010diti gubitak informacija ukoliko nismo pa\u017eljivi kod brisanja. -OptionPanel.resources_save_folding_state=Uvijek spremi promjene polo\u017eaja sklopljenih i rasklopljenih \u010dvorova. -OptionPanel.resources_save_folding_state.tooltip=Ako je polje odabrano, svaka promjena pozicije sklopljenih i rasklopljenih \u010dvorova biti \u0107e spremjen prilikom izlaska iz programa. - -# new, fc, 17.4.2008: -plugins/ScriptEditor.sign=Potpisivanje skripte... - -#new, fc, 18.4.2008: -OptionPanel.resources_script_user_key_name_for_signing=Neobavezni korisni\u010dki klju\u010d ( pseudonim ) za potpisivanje -OptionPanel.resources_script_user_key_name_for_signing.tooltip=\u017delite li potpisati svoju skriptu, unesite pseudonim ( izmi\u0161ljeni klju\u010d) ovdje.
Lozinka je pohranjena u bazu klju\u010deva.
Lozinaka klju\u010dnog tajnog klju\u010da mora se podudarati sa lozinkom u bazi klju\u010deva (to je zadano). -OptionPanel.resources_signed_script_are_trusted=Omogu\u0107i izvo\u0111enje potpisanih skripti ( preporu\u010deno ) -OptionPanel.resources_signed_script_are_trusted.tooltip=Ako skripte imaju povjerljiv potpis (npr. autora Freeminda ili su vlastite), izvoditi \u0107e se bez ograni\u010denja. - -# changed, fc, 24.4.2008: -# this is still the old "export_branch", but as many users didn't find this feature, we -# have to describe it better. Moreover, it is put into the node context menu. -export_branch_new =Grane kao nove Mape - -# new, fc, 28.4.2008: -icon_yes =Va\u017eno -icon_folder =Direktorij -icon_up =Gore -icon_down =Dolje -icon_smiley-neutral =Ravnodu\u0161an -icon_smiley-oh =Iznena\u0111en -icon_smiley-angry =Ljut -icon_encrypted =Zaklju\u010dano -icon_decrypted =Otklju\u010dano -icon_broken-line =Prekinuto -icon_flag-black =Crna zastavica -icon_flag-blue =Plava zastavica -icon_flag-green =Zelena zastavica -icon_flag-orange =Naran\u010dasta zastavica -icon_flag-pink =Ru\u017ei\u010dasta zastavica -icon_flag-yellow =\u017duta zastavica -icon_clock =Vrijeme -icon_hourglass =\u010cekanje -icon_calendar =Datum -icon_kmail =E-mail -icon_edit =Pro\u010distiti -icon_stop-sign =Znak Stop -icon_closed =Zabranjen ulaz -# changed: -icon_flag =Crvena zastavica - -#changed: -OptionPanel.remind_use_rich_text_in_new_long_nodes=Koristi bolje oblikovanje za sve \u010dvorove - -# new, fc, 21.5.2008: -icon_freemind_butterfly =FreeMind -icon_full-8 = Prioritet 8 -icon_full-9 = Prioritet 9 - -# new, fc, 25.5.2008: -node_is_write_protected=Ciljni \u010dvor je za\u0161ti\u0107en od pisanja. - -# new, fc, 6.7.2008: -KeyDoc=Raspored tipkovni\u010dkih kratica PDF dokument -# translate only, when you have an own translation of this doc. -pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide_hr.pdf - -icon_info=Informacija -icon_full-0=Bez prioriteta -icon_prepare=Pripremi -icon_go=Idi -icon_list=Lista -icon_launch=Pokreni -icon_family=Obitelj -icon_female1=\u017dena1 -icon_female2=\u017dena2 -icon_male1=Mu\u0161karac1 -icon_male2=Mu\u0161karac2 -icon_fema=Par -icon_group=Grupa - -OptionPanel.separator.icon_properties=Ikone -OptionPanel.icons.list=Popis prikazanih standardnih ikona -OptionPanel.icon_order_description=Ovdje mo\u017eete napraviti vlastiti raspored ikona ili onemogu\u0107iti prikaz ikona. Ikone trebaju biti odvojene znakom " ; ". - -# new, fc, 16.7.2008: -OptionPanel.sk=slova\u010dki -OptionPanel.el=estonski -OptionPanel.et=etiopiski -OptionPanel.id=indonezijski -OptionPanel.uk_UA=ukrajinski -OptionPanel.vi=vijetnamski - -# new, fc, 22.7.2008 -select_icon=Ozna\u010di ikonu -mode_MindMap=Mentalne mape -mode_Browse=Preglednik -mode_File=Preglednik datoteka -# changed -mode_status =Oblik promijenjen u {0} -mode_title =FreeMind - {0} - -# new, fc, 25.8.2008 -OptionPanel.defaultfontsize.tooltip=Zadana veli\u010dina slova novog \u010dvora - -# new, fc, 20.12.2008 -OptionPanel.ro=rumunjski +#! +#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) +#! encoding:ISO-8859-1 +#Croatian translation by Predrag, e-mail: pcuklin@gmail.com +about = O programu + +add=&Dodaj +about_text = FreeMind - program za izradu mentalnih mapa i nadogradnju znanja\nCopyright (C) 2000-2010 Joerg Mueller,Daniel Polansky, Christian Foltin, Dimitry Polivaev i ostali.\nOvaj program je besplatan (GPL)\nHome: http://freemind.sourceforge.net/\nZabavite se!\nVerzija: +antialias_all = Zagla\u0111ivanje svega +antialias_edges = Zagla\u0111ivanje rubova +antialias_none = Bez zagla\u0111ivanja +apply=&Primijeni +background = Pozadina +bezier = Bezier +blend_color = Pomije\u0161aj boje +bold = Podebljano +boldify_branch = Podebljaj +branch = Grana +bubble = &Mjehuri\u0107 +cancel =&Odustani +cannot_join_nodes_with_children =Nije mogu\u0107e povezati \u010dvorove koji imaju Djecu +center = Sredina +cloud = Obla\u010di\u0107 +cloud_color = Boja obla\u010di\u0107a... +close = &Zatvori +copy = Kopiraj +copy_single = Kopiraj pojedina\u010dno +cut = Izre\u017ei +decrease_branch_font_size = Manja slova +decrease_node_font_size = Manja slova +delete=&Obri\u0161i +documentation = Dokumentacija +edge = Rub +edge_color = Boja ruba... +edge_width_parent = Roditelj +edge_width_thin = Tanko +edit = &Ure\u0111ivanje +edit_link_manually = Ru\u010dno uredi vezu (hipervezu)... +edit_long_node = Detaljno uredi \u010dvor... +enter_base_url = Bit \u0107e zalijepljene relativne adrese. Molim unesite osnovni URL. +enter_confirms = Tipka &Enter kao potvrda +error = Gre\u0161ka +#export_branch = Grane... +export_branch_to_html = Izvoz grane kao HTML +export_to_html = Kao HTML +extension_menu = Oblik &stila +file = &Datoteka +file_not_found = Datoteka $1 nije na\u0111ena +find = Tra\u017ei... +find_what = Tra\u017ei \u0161to? +find_next = Tra\u017ei sljede\u0107e +fold = Zatvori +font = Slova +fork = Ra&\u010dva +help = Pomo\u0107 +html_export_based_on_headings = HTML Izvoz - prema naslovima +html_export_no_folding = HTML Izvoz - Bez otvorenih \u010dvorova +html_export_fold_currently_folded = HTML Izvoz - S trenutno otvorenim \u010dvorovima +html_export_fold_all = HTML Izvoz - Svi \u010dvorovi otvoreni +# Daniel Polansky: This way of maintaining icon text +# will ultimately lead to unbearable overheads. +icon_menu = Ikone +icon_help = Pitanje +icon_messagebox_warning = Upozorenje +icon_idea = Ideja +icon_button_ok = U redu +icon_button_cancel = Nije uredu +icon_back = Natrag +icon_forward = Naprijed +icon_attach = Pogledaj tu +icon_ksmiletris = Sretan sam +icon_clanbomber = Opasno +icon_desktop_new = Ne zaboravi +icon_gohome = Dom +icon_kaddressbook = Telefon +icon_knotify = Muzika +icon_korn = Po\u0161tanski sandu\u010di\u0107 +icon_Mail = Po\u0161ta +icon_password = Klju\u010d +icon_pencil = Pobolj\u0161anje +icon_stop = Stop +icon_wizard = \u010carolija +icon_xmag = Rasprava +icon_bell = Zapamti +icon_bookmark = Izvrsno +icon_penguin = Linux +icon_licq = Lijepo +import = Uvoz +import_branch = Grane... +import_explorer_favorites = Explorer favorita... +import_folder_structure = Strukture direktorija... +import_linked_branch = Povezana grana +import_linked_branch_without_root = (Povezana grana) bez korijena... +increase_branch_font_size = Ve\u0107a slova +increase_node_font_size = Ve\u0107a slova +italic = Uko\u0161eno +italicise_branch = Ukosi +join_nodes = Pove\u017ei \u010dvorove +license = Licenca +license_text = FreeMind - Program za stvaranje i pregledavanje Mentalnih Mapa\nCopyright (C) 2000-2010 Joerg Mueller \nVidi COPYING za detalje\n\nOvaj program je besplatan; mo\u017eete ga dijeliti i/ili\nmijenjati pod uvjetima kako stoji u GNU General Public License\nkoju je objavio Free Software Foundation; ili verziji 2\nLicence ili (kao va\u0161a opcija) bilo koja kasnija verzija.\n\nOvaj program je napravljen u nadi da \u0107e biti koristan,\nali BEZ IKAKVOG JAMSTVA; \u010dak i bez impliciranog jamstva \nTRGOVA\u010cKE ili POGODNOSTI ZA ODRE\u0110ENE NAMJENE. Vidi\nGNU General Public License za vi\u0161e detalja.\n\nTrebali ste dobiti primjerak GNU General Public License\nzajedno s ovim programom; ako niste, pi\u0161ite na Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +linear = Linearno +load =&U\u010ditaj +locking_failed_by_open = Zaklju\u010davanje mape $1 nije uspjelo. Otvaranje datoteke samo za \u010ditanje. +locking_failed_by_save_as = Zaklju\u010davanje mape $1 nije uspjelo. Radnja Spremi kao je prekinuta. +locking_old_lock_removed = Mapa $1 je zaklju\u010dana kod korisnika $2. Zaklju\u010davanje mape je maknuto, zato jer je mapa starija. +map_already_exists = Mapa ve\u0107 postoji. \u017delite li prepisati preko postoje\u0107e mape? +map_corrupted = Mapa je o\u0161te\u0107ena. \u017delite li pogledati pojedinosti? +map_locked_by_open = Mapa $1 se ure\u0111uje kod korisnika $2. Otvaranje datoteke samo za \u010ditanje. +map_locked_by_save_as = Mapa $1 se ure\u0111uje kod korisnika $2. Radnja Spremi kao je prekinuta. +mindmap = Mapa +mindmaps = Mape +mindmaps_desc = Mape (*.mm) +mindmaps_filter_desc = Filteri (*.mmfilter) +mode_na = Oblik nije dostupan +modes = Oblici +move_to_root = Povratak na korijenski \u010dvor +new = Nova +new_child = Novi \u010dvor - Dijete +new_mindmap = Nova Mentalna mapa +new_node = Novi \u010dvor +new_sibling_before = Novi prethodni \u010dvor - Brat +new_sibling_behind = Novi \u010dvor - Brat +next_map = Sljede\u0107a mapa +no = Ne +node = \u010cvor +node_changed_discard_changes = Promijenili ste \u010dvor. \u017delite li odbaciti promjene? +long_node_changed_submit =Promijenili ste \u010dvor. \u017delite li snimiti promjene? +long_node_changed_cancel =Promijenili ste \u010dvor. \u017delite li odbaciti promjene? +node_color = Boja teksta \u010dvora... +node_down = \u010cvor prema dolje +node_up = \u010cvor prema gore +nonboldify_branch = Poni\u0161ti podebljanje +nonitalicise_branch = Poni\u0161ti uko\u0161enost +normal = Uobi\u010dajen +no_found_from = Nije $1 mogu\u0107e na\u0107i u $2. +no_more_found_from = Nijedan $1 vi\u0161e nije na\u0111en u $2. +no_previous_find = Nema prethodnog pogotka. +not_saved_for_link_error = Mapa mora biti snimljena prije umetanja hiperveze. +open = Otvori... +page = Pode\u0161avanje &stranice... +paste = Zalijepi +new_node_as_sibling_not_possible_for_the_root = Novi bratski \u010dvor nije mogu\u0107e kreirati kao korijenski \u010dvor. +preferences = Postavke +previous_map = Prethodna mapa +print =Ispis +print_dialog =Ispis... +print_preview = &Pregled ispisa... +print_preview_title =Pregled ispisa +quit = Izlaz +read_only = Samo za \u010ditanje +remove_node = Ukloni \u010dvor +rename=&Preimenuj +repair_link = Popravi vezu +repair_link_question = Ne mogu u\u010ditati povezanu mapu. \u017delite li popraviti vezu ru\u010dno? +replace=Zamijeni +save = &Spremi +save_as = Spremi kao... +save_failed = Poku\u0161aj snimanja mape $1 nije uspjelo. +save_unsaved = \u017delite li snimiti sljede\u0107u Mentalnu mapu?: +saved = Snimljeno +scheme_evaluate = Ocijeniti! +select_favorites_folder = Ozna\u010dite mapu gdje se nalaze va\u0161i favoriti +select_folder_for_importing = Ozna\u010dite mapu za uvoz +set_image_by_filechooser = Slike (Pretra\u017eiva\u010d datoteka ili veza)... +set_link_by_filechooser = Hiperveze (Pretra\u017eiva\u010d datoteka)... +set_link_by_textfield = Hiperveze (Polje s tekstom)... +sharp_bezier = Grubo bezier +sharp_linear = Grubo linearno +split = &Razdijeli +style = Stil +#toggle_bold_branch = Toggle Bold +toggle_children_folded = Rasklopi/Sklopi \u010dvor (Djeca) +toggle_folded = Rasklopi/Sklopi ozna\u010dene \u010dvorove +#toggle_italic_branch = Toggle Italic +underline = Potcrtano +unfold = Otvori \u010dvor +url_error = Ovaj URL je nepravilno oblikovan! +width = \u0160irina +yes = &Da +zoom_in = Pove\u0107aj +zoom_out = Umanji +remove_last_icon = Ukloni posljednju ikonu +remove_all_icons = Ukloni sve ikone +lots_of_links_warning = Napravit \u0107ete previ\u0161e veza na istom \u010dvor. Zaista \u017eelite kreirati toliko veza? +remove_arrow_link = Ukloni vezu sa strelicom +arrow_link_color = Boja veze sa strelicom... +# removed: follow_link = Idi na : +user_defined_zoom = Korisni\u010dki definirano. +user_defined_zoom_status_bar = Izmjena pove\u0107anja na korisni\u010dki definiranu vrijednost {0}%. +# new from 14.12.2003, fc +FAQ = \u010cesto postavljena pitanja +# new from 09.12.2006, Dimitri +webDocu = Web dokumentacija +# new from 20.12.2003, fc +printing_settings = Skaliranje ispisa +fit_to_page = Prilagodi veli\u010dini jedne stranice +user_zoom = Faktor pove\u0107anja ispisa (0.0 - 2.0): +ok = &U redu +# changed from 23.1.2004, fc. +selection_method_by_click = Jednostruki klik za ozna\u010davanje +selection_method_direct = Prika\u017ei ozna\u010deno +#new from 30.08.2004, Dimitri +combined = kombinirano +as_parent = kao Roditelj +# added at 2.5.2004, fc: +undo = Poni\u0161ti +redo = Ponovi +delete_child = Obri\u0161i \u010dvor +# added at 22.5.2004, fc: +most_recent_files = Ne&davno otvarane datoteke +menu_view = P&ogled +menu_navigate = &Navigacija +menu_format = O&blikovanje +menu_extras = &Alati +menu_insert = Um&etanje +menu_attributes = Obilje&\u017eja +# Beware: "Edge Width " and "Edge Style " must end with space. +edge_style = Stil ruba +edge_width = \u0160irina ruba +menu_file_import = U&voz +menu_file_export = I&zvoz +edit_node = Uredi \u010dvor +# added at 5.6.2004, fc: +node_background_color = &Pozadinska boja \u010dvora... +# added at 25.8.2004, fc: +choose_edge_color = Odaberi boju ruba +# added at 27.8.2004, fc: +underlined = Potcrtano +font_size = Veli\u010dina slova +font_family =Oblik slova +# add at 16.9.2004, fc: +import_linked_branch_no_link = Odabrani \u010dvor nema nikakvu vezu za uvoz. +# added at 09.10.2004 +add_link = Dodaj vezu sa strelicom +less_than_two_selected_nodes = Morate ozna\u010diti barem dva \u010dvora +choose_node_background_color = Izaberite boju pozadine \u010dvora: +choose_node_color = Izaberite boju teksta \u010dvora: +choose_background_color = Izaberite boju pozadine mape: +choose_cloud_color = Izaberite boju obla\u010di\u0107a: +change_arrows_in_arrow_link = Promijeni strelice ili oblik veze sa strelicom +add_local_link = Dodaj internu vezu izme\u0111u \u010dvorova +link_not_available_any_more = Veza nije valjana. U me\u0111uvremenu je \u010dvor obrisan. +file_already_exists = Datoteka {0} ve\u0107 postoji. \u017delite li snimiti preko postoje\u0107e datoteke? +error_creating_directory = Nije mogu\u0107e kreirati Mapu za izvoz. +export_svg_text = Scalable Vector Graphic (SVG) +export_pdf_text = Portable Document Format (PDF) +goto_link_node_action = Idi na vezu +#fc, 14.11.2004: +undefined_error = Do\u0161lo je do neo\u010dekivane gre\u0161ke. Molim poku\u0161ajte poslati poruku o gre\u0161ci. +cannot_add_parent_to_root = Korijenski \u010dvor nije mogu\u0107e dodati novom Roditelju +cannot_delete_root =Korijenski \u010dvor nije mogu\u0107e obrisati ili izrezati +cannot_add_parent_diff_parents = Svi \u010dvorovi moraju imati istog Roditelja za kori\u0161tenje ove funkcije. +no_format_copy_before_format_paste = Ne mo\u017eete zalijepiti oblik ako ga prethodno niste kopirali. +#fc, 15.11.2004: +accessories/plugins/AutomaticLayout.properties_documentation = Izmijeni oblik mentalne mape.
Prvi stupanj je crni, drugi plavi, itd +accessories/plugins/AutomaticLayout.properties_name = &Automatski oblikuj izgled +accessories/plugins/BlinkingNodeHook.properties_documentation = Ovom funkcijom \u010dvor postaje trep\u0107u\u0107i.
Budite oprezni.Ne povezujte ga s previ\u0161e \u010dvorova i ne sa ostalim automatskim oblikovanjima u istom \u010dvoru. +accessories/plugins/BlinkingNodeHook.properties_name = Trepere\u0107i \u010dvor +accessories/plugins/CreationModificationPlugin.properties_documentation=Ova funkcija bilje\u017ei vrijema stvaranja \u010dvora i vrijeme promjena \u010dvora. +accessories/plugins/CreationModificationPlugin.properties_name = Prika\u017ei &vrijeme promjene +accessories/plugins/ExportToImage_PNG.properties_documentation = Izvoz trenutnog prikaza mentalne mape u PNG sliku. +accessories/plugins/ExportToImage_PNG.properties_name = Kao PNG... +accessories/plugins/ExportToImage_JPEG.properties_documentation = Izvoz trenutnog prikaza mentalne mape u PNG sliku. +accessories/plugins/ExportToImage_JPEG.properties_name = Kao JPEG... +accessories/plugins/ExportWithXSLT.properties_documentation = To je ujedna\u010dena metoda izvoza s upotrebom XSLT skripte. +accessories/plugins/ExportWithXSLT.properties_name = Koristi XSLT... +accessories/plugins/ExportWithXSLT_HTML.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML.properties_name = Kao XHTML (JavaScript verzija)... +accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML3.properties_name = Kao XHTML (verzija kliktaju\u0107e mentalne mape)... +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =Kao MindManager datoteka... +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= +accessories/plugins/FitToPage.properties_documentation = Prilagodi pove\u0107anje tako da se cijela Mentalna mapa smjesti u trenutni prozor. +accessories/plugins/FitToPage.properties_name = Prilagodi pove\u0107anje na &veli\u010dinu stranice. +accessories/plugins/FormatCopy.properties_documentation = Kopira oblik \u010dvora. +accessories/plugins/FormatCopy.properties_name = Kopiraj oblik +accessories/plugins/FormatPaste.properties_documentation = Zalijepi oblik prethodno kopiranog oblika \u010dvora. +accessories/plugins/FormatPaste.properties_name = Zalijepi oblik +accessories/plugins/FormularEditor.properties_documentation = Povezuje jednostavni ure\u0111iva\u010d formulara s trenutnim \u010dvorom. +accessories/plugins/FormularEditor.properties_name = Ure\u0111iva\u010d formulara +accessories/plugins/IconSelectionPlugin.properties_documentation = Ovdje mo\u017eete odabrati ikonu s upotrebom dijaloga. +accessories/plugins/IconSelectionPlugin.properties_name = Odaberi ikonu... +accessories/plugins/NewParentNode.properties_documentation = Svi ozna\u010deni \u010dvorovi poslani su k novom \u010dvoru Roditelju. +accessories/plugins/NewParentNode.properties_name = Novi \u010dvor - Roditelj +accessories/plugins/NodeNote.properties_documentation = Povezuje jednostavni ure\u0111iva\u010d bilje\u0161ki s trenutnom bilje\u0161kom. +accessories/plugins/NodeNote.properties_name = Bilje\u0161ka +accessories/plugins/PMCalculation.properties_documentation = Izra\u010dunava optere\u0107enja za razli\u010dite zada\u0107e. +accessories/plugins/PMCalculation.properties_name = Izra\u010dun optere\u010denja +accessories/plugins/RemoveNote.properties_documentation = Obri\u0161i sadr\u017eaj bilje\u0161ke +accessories/plugins/RemoveNote.properties_name =Obri\u0161i bilje\u0161ke +accessories/plugins/RevisionPlugin.properties_documentation = Mijenja pozadinu svakog promijenjenog \u010dvora u \u017eutu boju. +accessories/plugins/RevisionPlugin.properties_name = Prika\u017ei promijenjeni \u010dvor u &\u017eutoj boji +accessories/plugins/SplitNode.properties_documentation = \u010dvor je podijeljen +accessories/plugins/SplitNode.properties_name = &Podijeli \u010dvor +accessories/plugins/UnfoldAll.properties_documentation = Rasklopi sve ozna\u010dene \u010dvorove i njihovu Djecu. +accessories/plugins/UnfoldAll.properties_name = Rasklopi sve +accessories/plugins/FoldAll.properties_documentation = Sklopi sve ozna\u010dene \u010dvorove i njihovu Djecu. +accessories/plugins/FoldAll.properties_name = Sklopi sve +accessories/plugins/UnfoldOneLevel.properties_documentation = Rasklapa ozna\u010dene \u010dvorove za jedanu razinu. +accessories/plugins/UnfoldOneLevel.properties_name = Rasklopi jednu razinu +accessories/plugins/FoldOneLevel.properties_documentation = Sklopi ozna\u010dene \u010dvorove za jednu razinu. +accessories/plugins/FoldOneLevel.properties_name = Sklopi jednu razinu +plugins/FreemindHelp.xml_documentation = Pro\u0161irena pomo\u0107 FreeMinda +plugins/FreemindHelp.xml_name = Pomo\u0107... +plugins/ExportPdf.xml_documentation = Izvoz u PDF +plugins/ExportPdf.xml_name = Kao PDF... +plugins/ExportSvg.xml_documentation = Izvoz u SVG +plugins/ExportSvg.xml_name = Kao SVG... + +# fc, 28.11.2004: +cannot_move_to_child = \u010cvor nije mogu\u0107e pomaknuti prema \u010dvoru njegove Djece. +# fc, 14.12.2004: +accessories/plugins/EnterPassword.properties_name = &Otklju\u010daj/Zaklju\u010daj \u010dvor +accessories/plugins/EnterPassword.properties_documentation= +accessories/plugins/EncryptNode.properties_name = Umetni &\u0161ifrirani \u010dvor ... +accessories/plugins/EncryptNode.properties_documentation = Umetanje novog \u0161ifriranog \u010dvora (\u010cvor Dijete postaje tako\u0111er \u0161ifriran). +accessories/plugins/EncryptNode.properties_0 = Odaberi lozinku za \u0161ifrirani \u010dvor. +accessories/plugins/EncryptNode.properties_1 = Lozinka nije ujedna\u010dena ili je prekratka. +accessories/plugins/EncryptNode.properties_2 = Upi\u0161i lozinku: +accessories/plugins/EncryptNode.properties_3 = Ponovno upi\u0161i lozinku: +accessories/plugins/EncryptNode.properties_4 = Upis lozinke. +accessories/plugins/EncryptNode.properties_5 = Upamtite, mo\u0107 \u0161ifriranja
uvijek ovisi o kvaliteti va\u0161e lozinke. +accessories/plugins/EncryptNode.properties_6 = U redu +accessories/plugins/EncryptNode.properties_7 = Odustani +accessories/plugins/EncryptNode.properties_wrong_password = Neispravna lozinka. +accessories/plugins/NewEncryptedMap.properties_documentation = Kreiraj novu \u0161ifriranu mentalnu mapu +accessories/plugins/NewEncryptedMap.properties_name = Kreiraj \u0161ifriranu mentalnu mapu ... +accessories/plugins/EncryptNode.properties_select_me = Ozna\u010di za nastavak! +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Mo\u017eete uklju\u010diti ili isklju\u010diti stanje \u0161ifriranja samo na \u0161ifriranom \u010dvoru. +# fc, 2.2.05: +selection_method_delayed=Zaka\u0161njela automatska metoda ozna\u010davanja +# fc, 4.2.05: +plugins/TimeManagement.xml_documentation= Prika\u017ei kalendarski modul (autora je Kai Toedter). +plugins/TimeManagement.xml_name= Prika\u017ei kalendar... +plugins/TimeManagement.xml_appendButton= Dodaj datum na kraj ozna\u010denog \u010dvora +plugins/TimeManagement.xml_reminderButton= Sjeti me na taj dan +plugins/TimeManagement.xml_cancelButton=Odustani +plugins/TimeManagementReminder.xml_documentation=Interna zaka\u010dka za vremensko planiranje zada\u0107a ponovnog po\u0161iljanja. +plugins/TimeManagementReminder.xml_name=Interna zaka\u010dka za vremensko planiranje zada\u0107a ponovnog po\u0161iljanja. +plugins/TimeManagement.xml_reminderNode_tooltip=Podsjetnik zadatka pode\u0161en na {0,date} {0,time}. +plugins/TimeManagement.xml_reminderNode_showNode=Proteklo je vrijeme za \u010dvor " {0} ". \u017delite li ponoviti alarm za 10 minuta? +plugins/TimeManagement.xml_reminderNode_onlyOneDate=Trenutno je mogu\u0107 jedan podsjetnik po \u010dvoru.
Trenutni podsjetnik je pode\u0161en je na {0,date} {0,time}, va\u0161 izbor je bio {1,date} {1,time}.

\u017delite li promijeniti vrijeme aktiviranja podsjetnika (Da)
ili \u017eelite zadr\u017eati staro vrijeme (Ne)? +plugins/TimeManagement.xml_removeReminderButton = Ukloni podsjetnik +plugins/TimeManagement.xml_removeReminderButton_tooltip = Ukloni sve podsjetnike koji su povezani s ozna\u010denim \u010dvorovima. +plugins/TimeManagement.xml_minute= Minuta: +plugins/TimeManagement.xml_hour= Sat: +plugins/TimeManagement.xml_WindowTitle= Upravljanje kalendarom + +plugins/latex/LatexNodeHook.properties_documentation = Latex formula +plugins/latex/LatexNodeHook.properties_name =&LATEX +plugins/latex/LatexNodeHook.editorTitle =Ure\u0111iva\u010d, zatvaranje s potvrdom postavki + +# fc, 18.2.2005: +accessories/plugins/HierarchicalIcons.properties_documentation=Ako jedan od \u010dvora (Dijete/Unuk) ima ikonu, ikona \u0107e biti prikazana tako\u0111er u malom obliku u roditeljskom \u010dvoru. +accessories/plugins/HierarchicalIcons.properties_name=Prika\u017ei ikone &hijerarhijski +# fc, 1.3.2005: +icon_full-1 = Prioritet 1 +icon_full-2 = Prioritet 2 +icon_full-3 = Prioritet 3 +icon_full-4 = Prioritet 4 +icon_full-5 = Prioritet 5 +icon_full-6 = Prioritet 6 +icon_full-7 = Prioritet 7 +# fc, 11.3.2005: +RevertAction=O&tvori ponovno +# the prefix for the reconstructed map (revert + undo). +freemind_reverted=Freemind_Preokrenuto_ +# fc, 5.4.2005 +plugins/TimeManagement.xml_todayButton=Danas +plugins/TimeList.xml_documentation=Prikazuje sve vremenske podsjetnike i pripadaju\u0107e \u010dvorove. +plugins/TimeList.xml_name=Prika\u017ei &popis vremenskih podsjetnika ... +remove_node_background_color = &Ukloni pozadinsku boju \u010dvora +#plugins/NodeList.xml_documentation= Prikazuje sve \u010dvorove sa kreiranim/ izmijenjenim datumima. +#plugins/NodeList.xml_name=Prika\u017ei kronologiju Mentalne mape ... +plugins/TimeList.xml_Modified=Izmijenjeno +plugins/TimeList.xml_Created=Kreirano +plugins/TimeList.xml_Date=Datum +plugins/TimeList.xml_Text=Tekst +plugins/TimeList.xml_Icons=Ikone +#fc, 26.4.2005: +select_branch=Ozna\u010di granu +select_all=Ozna\u010di sve +change_link_arrows=promijeni_strelice_veza +# fc, 27.4.2005: +reset_node_position=Vrati &izvorni polo\u017eaj +# fc, 2.5.2005: +plugins/RemoveReminder.xml_documentation= Ukloni podsjetnik s \u010dvora. +plugins/RemoveReminder.xml_name= Ukloni podsjetnik +# fc, 3.5.2005: +plugins/TimeManagement.xml_reminderButton_tooltip=Nakon klika zapo\u010dinje vremensko odbrojavanje prema dodijeljenom datumu. Nakon isteka vremena treperu\u0107a ikona daje znak o isteku.
Ako zatvorite Mentalnu mapu, odbrojavanje se ponovno aktivira kod otvaranja Mentalne mape. +# dimitri, 8.05.05 +filter_toolbar=Filtar +filter_dialog=Upravitelj filtara +filter_no_filtering=Bez filtriranja +filter_selected_node_view=Trenutno ozna\u010deni \u010dvorovi +filter_conditions = Filtri +filter_edit=Uredi +filter_edit_description=Uredi popis filtra +filter_unfold_ancestors=Otvoreni filtrirani \u010dvorovi +filter_icon=Ikona +filter_node=Tekst \u010dvora +filter_exist=Postoji +filter_does_not_exist=Ne postoji +filter_contains=Sadr\u017eava +filter_is_equal_to=Jednako je +filter_is_not_equal_to=Nije jednako +filter_ignore_case=Zanemari veli\u010dinu slova +filter_enter_value=Unos vrijednost +filter_add=&Dodaj +filter_delete=&Obri\u0161i +filter_select=O&zna\u010di +filter_not=&Ne +filter_and=&I +filter_or=I&li +filter_show_ancestors=Prika\u017ei pretke (prethodnike) +filter_show_descendants=Prika\u017ei potomke (nasljednike) +# dimitri, 10.07.2005 +attributes_all=Sva obilje\u017eja +attributes_attribute=Obilje\u017eja +attributes_close=Zatvori +attribute_delete=Obri\u0161i sve vrijednosti +attribute_delete_value=Obri\u0161i ovu vrijednost +attributes_edit=Uredi +attributes_edit_in_place=Dodaj obilje\u017eja +attributes_edit_tooltip=Dodijeli skup obilje\u017eja +attribute_font_size_tooltip=Veli\u010dina slova obilje\u017eja +attributes_dialog=Upravljanje o&bilje\u017ejima +attributes_dialog_title=Upravljanje obilje\u017ejima +attributes_import=Uvoz +attributes_import_tooltip=Uvoz obilje\u017eja iz drugih u\u010ditanih mapa +attributes_assign_dialog=Do&dijeljivanje obilje\u017eja... +attributes_visible=Prikaz obilje\u017eja +attributes_visible_tooltip=Ozna\u010di ako \u017eeli\u0161 da obilje\u017eje bude vidljivo +attributes_refresh=Osvje\u017ei +attribute_replace=Zamijeni sa +attributes_restriction=Ograni\u010den skup +attributes_restricted_attributes_tooltip=Ograni\u010deni skup obilje\u017eja +attributes_restricted_values_tooltip=Ograni\u010deni skup vrijednosti za trenutno ozna\u010deno obilje\u017eje +attributes_select_all=Sve +attributes_select_all_tooltip=Stavi / Makni oznaku na sva obilje\u017eja +attributes_for_selected=Ozna\u010deni \u010dvorovi +attributes_for_visible=Sve vidljive \u010dvorove +attributes_deselect_all=Ni\u0161ta +attribute_list_box_label_text=Postoje\u0107e vrijednosti +attributes_popup_edit=Uredi +attributes_popup_optimal_width=Optimalna \u0161irina +attributes_popup_hide=Sakrij +attributes_popup_new=Novo obilje\u017eje +attributes_popup_delete=Obri\u0161i +attributes_popup_up=Gore +attributes_popup_down=Dolje +attributes_show=Prika\u017ei +attributes_show_all = Prika\u017ei sva obilje\u017eja +attributes_show_selected = Prika\u017ei ozna\u010dena obilje\u017eja +attributes_hide_all = Sakrij sva obilje\u017eja +attribute_top=Sva poznata obilje\u017eja za u\u010ditane mape +attributes_skip_root=Presko\u010di korijenski \u010dvor +attributes_no_import_candidates_found=Nisu prona\u0111ena nova obilje\u017eja +attributes_adding_empty_attribute_error=Ne mo\u017eete koristiti prazni niz za ime obilje\u017eja +# fc, 10.5.2005: +property_dialog=Postavke ... +OptionPanel.automatic=automatski +OptionPanel.de=njema\u010dki +OptionPanel.dk=danski +OptionPanel.en=engleski +OptionPanel.es=\u0161panjolski +OptionPanel.fr=francuski +OptionPanel.gl=grendladski +OptionPanel.hu=ma\u0111arski +OptionPanel.it=talijanski +OptionPanel.ja=japanski +OptionPanel.ko=korejski +OptionPanel.nl=nizozemski +OptionPanel.pl=poljski +OptionPanel.pt_BR=portugalski BR +OptionPanel.pt_PT=portugalski PT +OptionPanel.ru=ruski +OptionPanel.sl=slovenski +OptionPanel.zh_TW=tajvanski +OptionPanel.zh_CN=kineski CN +OptionPanel.fork=Ra\u010dva +OptionPanel.bubble=Obla\u010di\u0107 +OptionPanel.as_parent=Kao Roditelj +OptionPanel.combined=Kombinirano +OptionPanel.bezier=Bezier +OptionPanel.linear=Linearno +OptionPanel.default=Zadano +OptionPanel.metal=Metal +OptionPanel.windows=Windows +OptionPanel.motif=Motif +OptionPanel.gtk=Gtk +OptionPanel.nothing=Ni\u0161ta +OptionPanel.relative=Relativne +OptionPanel.absolute=Apsolutne +OptionPanel.first=Kao prvu +OptionPanel.last=Kao posljednju +OptionPanel.selection_method_direct=Direktno +OptionPanel.selection_method_delayed=Zaka\u0161njelo +OptionPanel.selection_method_by_click=S klikom +OptionPanel.html_export_no_folding=Bez sklapanja \u010dvora +OptionPanel.html_export_fold_currently_folded=Sklopi trenutno otvorene \u010dvorove +OptionPanel.html_export_fold_all=Sklopi sve +OptionPanel.html_export_based_on_headings= Prema naslovima +OptionPanel.Environment=Okru\u017eenje +OptionPanel.Files=Datoteke +OptionPanel.language=Jezik +OptionPanel.language.tooltip=Ovo je jezik koji \u0107e biti upotrebljen u programu. Postavka 'automatsko' poku\u0161ava u\u010ditati trenutni korisni\u010dki jezik. +OptionPanel.experimental_file_locking_on=Probno zatvaranje datoteke +OptionPanel.experimental_file_locking_on.tooltip= Probne mogu\u0107nosti +OptionPanel.draganddrop= Povuci i ispusti +OptionPanel.draganddrop.tooltip=Ako je funkcija povuci i ispusti omogu\u0107ena. +OptionPanel.userproperties=Datoteka korisni\u010dkih postavki +OptionPanel.patternsfile=Datoteka uzoraka +OptionPanel.docmapurl_since_version_0_7_0=URL dokumenata Mentalne mape +OptionPanel.browsemode_initial_map= Po\u010detna Mentalna mapa pregledni\u010dkog na\u010dina (Browse). +OptionPanel.browsemode_initial_map.tooltip=URL Mentalne mape koja je u\u010ditana kada je pokrenut pregledni\u010dki na\u010din +OptionPanel.last_opened_list_length=Lista zadnje otvaranih datoteka +OptionPanel.time_for_automatic_save=Vrijeme automatskog snimanja (msec.) +OptionPanel.time_for_automatic_save.tooltip= vrijeme izme\u0111u dva uzastopna automatska snimanja (u msec): za onemogu\u0107avanje automatskog snimanja potrebno je ovu vrijednost staviti na 2000000000. +OptionPanel.delete_automatic_saves_at_exit= Kod izlaza obri\u0161i automatski snimljene datoteke. +OptionPanel.delete_automatic_saves_at_exit.tooltip= Ako \u017eelite obrisati automatski snimljene datoteke kod normalnog zatvaranja programa FreeMind, stavite kva\u010dicu u potvrdnom okviru +OptionPanel.number_of_different_files_for_automatic_save=Broj datoteka koje \u0107e biti automatski snimljene +OptionPanel.number_of_different_files_for_automatic_save.tooltip= Brojka n razli\u010ditih datoteka u koje se snimaju Mentalne mape. Prvo automatsko snimanje se izvodi u prvu datoteku itd do n+1 snimanja koje se opet izvodi u prvu datoteku (kru\u017eno) +OptionPanel.path_to_automatic_saves= Mapa u koju \u0107e se izvoditi automatska snimanja +OptionPanel.path_to_automatic_saves.tooltip= za promjenu zadanog mjesta (staze) -- to je 'java.io.tmpdir' u Javi, unesite put do mape snimanja: Druge mogu\u0107nosti: * freemind_home ozna\u010dava mapu, gdje se nalazi auto.properties . * zadano pokazuje u java.io.tmpdir +OptionPanel.Defaults=Zadano +OptionPanel.standardnodestyle=Stil \u010dvora +OptionPanel.standardnodestyle.tooltip=Zadani stil novog \u010dvora. Podr\u017eani su 'ra\u010dva', 'mjehuri\u0107' 'kao_roditelj' i 'kombiniran' +OptionPanel.standardrootnodestyle=Stil korijenskog \u010dvora +OptionPanel.standardrootnodestyle.tooltip=Stil korijenskog \u010dvora, ako nije naveden nijedan drugi, podr\u017eani su 'ra\u010dva' , 'mjehuri\u0107' i 'kombiniran' +OptionPanel.standardnodetextcolor=Boja teksta \u010dvora +OptionPanel.standardnodetextcolor.tooltip=Boja teksta \u010dvora. U HTML zapisu (#RRGGBB u heksadecimalnoj vrijednosti) +OptionPanel.standardselectednodecolor=Boja ozna\u010denog \u010dvora +OptionPanel.standardselectednodecolor.tooltip=Standardna boja ozna\u010denog \u010dvora. U HTML zapisu (#RRGGBB u heksadecimalnoj vrijednosti) +OptionPanel.standardselectednoderectanglecolor=Boja okvira ozna\u010davanja \u010dvora +OptionPanel.standardselectednoderectanglecolor.tooltip=Standardna boja okvira ozna\u010denog \u010dvora. U HTML zapisu (#RRGGBB u heksadecimalnoj vrijednosti) +OptionPanel.standarddrawrectangleforselection=Prika\u017ei okvir za ozna\u010davanje \u010dvora. +OptionPanel.standarddrawrectangleforselection.tooltip=\u010cvor \u0107e biti ozna\u010den okvirom. +OptionPanel.standardedgecolor=Boja ruba +OptionPanel.standardedgecolor.tooltip= Standardna boja ruba u HTML zapisu +OptionPanel.standardlinkcolor=Boja veze sa strelicom +OptionPanel.standardlinkcolor.tooltip=Standardna boja veze sa strelicom u HTML zapisu +OptionPanel.standardbackgroundcolor=Boja pozadine mape +OptionPanel.standardbackgroundcolor.tooltip=Standardna boja pozadine mape u HTML zapisu +OptionPanel.printonwhitebackground=Bijela pozadina kod ispisa +OptionPanel.printonwhitebackground.tooltip=Uvijek koristi bijelu pozadinu kod ispisa + +OptionPanel.standardcloudcolor=Boja obla\u010di\u0107a +OptionPanel.standardcloudcolor.tooltip=Standardna boja obla\u010di\u0107a u HTML zapisu +OptionPanel.defaultfont=Zadani oblik slova +OptionPanel.defaultfont.tooltip=Zadani oblik slova \u010dvora. Ovo djeluje samo ako se oblik slova (TrueTypeFont) nalazi u sustavu +OptionPanel.defaultfontstyle=Zadani stil slova +OptionPanel.defaultfontsize=Zadana veli\u010dina slova +OptionPanel.max_node_width=Maksimalna \u0161irina \u010dvora (pikseli) +OptionPanel.max_node_width.tooltip=Zadana maksimalna \u0161irina \u010dvora u pikselima +OptionPanel.standardedgestyle=Stil ruba +OptionPanel.standardedgestyle.tooltip=Standardni stil ruba. Trenutno su podr\u017eani 'linearno' i 'bezier' +OptionPanel.standardcloudestyle=Stil obla\u010di\u0107a +OptionPanel.standardcloudestyle.tooltip=Standardni stil obla\u010di\u0107a. Trenutno je podr\u017ean samo 'bezier' +OptionPanel.standardlinkestyle=Stil veze +OptionPanel.standardlinkestyle.tooltip=Standardni stil veze. Trenutno je podr\u017ean samo 'bezier' +OptionPanel.Appearance=Izgled +OptionPanel.lookandfeel=Izgled i ugo\u0111aj +OptionPanel.lookandfeel.tooltip='Izgled i ugo\u0111aj' koji \u0107e biti upotrebljen. Podr\u017eani su 'metal','windows','motif', 'gtk' , 'mac' je dostupan samo za MacOS. zadano zna\u010di da je upotrebljen zadani Izgled i ugo\u0111aj. \u017delite li umetnuti svoj vlastiti Izgled i ugo\u0111aj, molimo upi\u0161ite ime Java klase ovdje i osigurajte da odgovaraju\u0107a datoteka (.jar) bude u\u010ditana. Ako postoje problemi s postavkama za Izgled i ugo\u0111aj odaberite ovdje 'ni\u0161ta'. Ovo djeluje na programe. +OptionPanel.mapxsize=Veli\u010dina mape po osi x (\u0161irina) +OptionPanel.mapxsize.tooltip=Po\u010detna veli\u010dina svake Mentalne mape +OptionPanel.mapysize=Veli\u010dina mape po osi y (visina) +OptionPanel.links=Veze +OptionPanel.links.tooltip=Postavljanje veze kao relativne ili apsolutne +OptionPanel.el__buttons_position=Pozicija gumba +OptionPanel.el__buttons_position.tooltip= above=iznad / below=ispod +OptionPanel.el__position_window_below_node=Pozicioniraj prozor ispod \u010dvora +OptionPanel.el__min_default_window_height=Zadana minimalna visina prozora +OptionPanel.el__max_default_window_height=Zadana maksimalna visina prozora +OptionPanel.el__min_default_window_width=Zadana minimalna \u0161irina prozora +OptionPanel.el__max_default_window_width=Zadana maksimalna \u0161irina prozora +OptionPanel.el__enter_confirms_by_default=Tipka Enter kao potvrda (izlaz iz prozora) +OptionPanel.el__show_icon_for_attributes=Prika\u017ei ikone obilje\u017eja +OptionPanel.Keystrokes=Tipkovni\u010dke kratice +OptionPanel.keystroke_newMap=Nova Mentalna mapa +OptionPanel.keystroke_open=Otvori +OptionPanel.keystroke_save=Spremi +OptionPanel.keystroke_saveAs=Spremi kao +OptionPanel.keystroke_print=Ispi\u0161i +OptionPanel.keystroke_close=Zatvori +OptionPanel.keystroke_quit=Izlaz +OptionPanel.keystroke_export_to_html=Izvoz u HTML +OptionPanel.keystroke_export_branch_to_html=Izvoz grane u HTML +OptionPanel.keystroke_open_first_in_history=Otvori prvu mapu iz Povijesti +OptionPanel.keystroke_previousMap=Predhodna mapa +OptionPanel.keystroke_nextMap=Sljede\u0107a mapa +OptionPanel.keystroke_mode_MindMap=Na\u010din Mentalne mape +OptionPanel.keystroke_mode_Browse=Pregledni\u010dki na\u010din +OptionPanel.keystroke_mode_File=Datote\u010dni na\u010din +OptionPanel.keystroke_node_toggle_italic=Uko\u0161eno +OptionPanel.keystroke_node_toggle_boldface=Podebljano +OptionPanel.keystroke_node_toggle_underlined=Podcrtano +OptionPanel.keystroke_node_toggle_cloud=Aktiviraj obla\u010di\u0107 +OptionPanel.keystroke_undo=Poni\u0161titi +OptionPanel.keystroke_redo=Ponovi +OptionPanel.keystroke_delete_child=Obri\u0161i \u010dvor Dijete +OptionPanel.keystroke_select_all=Ozna\u010di sve +OptionPanel.keystroke_select_branch=Ozna\u010di granu +OptionPanel.keystroke_zoom_out=Umanji +OptionPanel.keystroke_zoom_in=Pove\u0107aj +OptionPanel.keystroke_cut=Izre\u017ei +OptionPanel.keystroke_copy=Kopiraj +OptionPanel.keystroke_copy_single=Pojedina\u010dno kopiranje +OptionPanel.keystroke_paste=Zalijepi +OptionPanel.keystroke_remove=Ukloni +OptionPanel.keystroke_add_arrow_link_action=Dodaj vezu sa strelicom +OptionPanel.keystroke_add_local_link_action=Dodaj lokalnu vezu +OptionPanel.keystroke_moveToRoot=Pomakni u korijenski \u010dvor +OptionPanel.keystroke_move_up=Pomakni gore +OptionPanel.keystroke_move_down=Pomakni dolje +OptionPanel.keystroke_move_left=Pomakni lijevo +OptionPanel.keystroke_move_right=Pomakni desno +OptionPanel.keystroke_follow_link=Otvori hipervezu (link) +OptionPanel.keystroke_add=Dodaj bratski \u010dvor +OptionPanel.keystroke_add_child=Dodaj \u010dvor Dijete +OptionPanel.keystroke_add_child_mac=Dodaj \u010dvor Dijete MacOS +OptionPanel.keystroke_add_sibling_before=Dodaj bratski \u010dvor ispred aktualnog \u010dvora +OptionPanel.keystroke_edit=Uredi +OptionPanel.keystroke_edit_long_node=Detaljno uredi \u010dvor +OptionPanel.keystroke_join_nodes=Spoji \u010dvorove +OptionPanel.keystroke_toggle_folded=Rasklopi / Sklopi +OptionPanel.keystroke_toggle_children_folded=Rasklopi / Sklopi Djecu +OptionPanel.keystroke_set_link_by_filechooser=Postavi hipervezu pomo\u0107u preglednika datoteka +OptionPanel.keystroke_set_link_by_textfield=Postavi hipervezu pomo\u0107u unosa u tekstualno polje +OptionPanel.keystroke_set_image_by_filechooser=Umetni sliku pomo\u0107u preglednika datoteka +OptionPanel.keystroke_node_up=\u010cvor gore +OptionPanel.keystroke_node_down=\u010cvor dolje +OptionPanel.keystroke_node_increase_font_size=Pove\u0107aj veli\u010dinu slova \u010dvora +OptionPanel.keystroke_node_decrease_font_size=Smanji veli\u010dinu slova \u010dvora +OptionPanel.keystroke_export_branch=Izvoz grane +OptionPanel.keystroke_node_color=Boja teksta \u010dvora +OptionPanel.keystroke_node_color_blend=Mije\u0161anje boja \u010dvora +OptionPanel.keystroke_edge_color=Boja ruba +OptionPanel.keystroke_find=Tra\u017ei +OptionPanel.keystroke_find_next=Tra\u017ei sljede\u0107e +OptionPanel.keystroke_apply_pattern_1=Primijeni uzorak 1 +OptionPanel.keystroke_apply_pattern_2=Primijeni uzorak 2 +OptionPanel.keystroke_apply_pattern_3=Primijeni uzorak 3 +OptionPanel.keystroke_apply_pattern_4=Primijeni uzorak 4 +OptionPanel.keystroke_apply_pattern_5=Primijeni uzorak 5 +OptionPanel.keystroke_apply_pattern_6=Primijeni uzorak 6 +OptionPanel.keystroke_apply_pattern_7=Primijeni uzorak 7 +OptionPanel.keystroke_apply_pattern_8=Primijeni uzorak 8 +OptionPanel.keystroke_apply_pattern_9=Primijeni uzorak 9 +OptionPanel.keystroke_apply_pattern_10=Primijeni uzorak 10 +OptionPanel.keystroke_apply_pattern_11=Primijeni uzorak 11 +OptionPanel.keystroke_apply_pattern_12=Primijeni uzorak 12 +OptionPanel.keystroke_apply_pattern_13=Primijeni uzorak 13 +OptionPanel.keystroke_apply_pattern_14=Primijeni uzorak 14 +OptionPanel.keystroke_apply_pattern_15=Primijeni uzorak 15 +OptionPanel.keystroke_apply_pattern_16=Primijeni uzorak 16 +OptionPanel.keystroke_apply_pattern_17=Primijeni uzorak 17 +OptionPanel.keystroke_apply_pattern_18=Primijeni uzorak 18 +OptionPanel.Behaviour=Karakteristika +OptionPanel.placenewbranches=Postavi novu granu +OptionPanel.placenewbranches.tooltip=Odre\u0111uje polo\u017eaj nove grane. Valjane vrijednosti su 'prva' i 'posljednja' +OptionPanel.disable_cursor_move_paper=Onemogu\u0107i pomicanje podloge pokaziva\u010dem +OptionPanel.disable_cursor_move_paper.tooltip=Ne prikazuj pokaziva\u010d 'pomakni' prilikom povla\u010denja podloge +OptionPanel.enable_leaves_folding=Omogu\u0107i sklapanje stabla +OptionPanel.enable_leaves_folding.tooltip=Omogu\u0107i sklapanje stabla = izmjena stila \u010dvora mjehuri\u0107/ra\u010dva kod sklapanja: iako nije potvr\u0111eno, mo\u017eete promijeniti stil \u010dvora +OptionPanel.foldingsymbolwidth=Veli\u010dina simbola (kru\u017ei\u0107a) sklopljenog \u010dvora. +OptionPanel.foldingsymbolwidth.tooltip=Veli\u010dna kruga koji ozna\u010dava sklapanje stabla +OptionPanel.disable_key_type=Omogu\u0107i tipkanje +OptionPanel.disable_key_type.tooltip=Tipkanje: ako je omogu\u0107eno dozvoljava ure\u0111ivanje \u010dvora +OptionPanel.key_type_adds_new=Tipkanje dodaje novi sadr\u017eaj +OptionPanel.key_type_adds_new.tooltip=Tipkanje: prepisuje sadr\u017eaj \u010dvora (neistina - ako nije ozna\u010deno)/kreira novi bratski \u010dvor (istina - ako je ozna\u010deno) (zahtijeva se: disable_key_type = false) +OptionPanel.selection_method=Na\u010din ozna\u010davanja +OptionPanel.selection_method.tooltip= sa sljede\u0107im preklopnikom mo\u017eete omogu\u0107iti/onemogu\u0107iti shemu ozna\u010davanja sa zaka\u0161njenjem. Automatske mogu\u0107nosti. Ovo ne mijenjajte, ionako \u0107e postavke biti snimljene u auto.properties. +OptionPanel.time_for_delayed_selection=Vrijeme ka\u0161njenja ozna\u010davanja +OptionPanel.time_for_delayed_selection.tooltip= Vremensko zaka\u0161njenje ozna\u010davanja \u010dvora kada je pokaziva\u010d mi\u0161a iznad \u010dvora (u milisekundama). Promijenite ovaj iznos na 1 ako \u017eelite direktno ozna\u010diti \u010dvor kad je pokaziva\u010d mi\u0161a iznad. +OptionPanel.HTML=HTML +OptionPanel.default_browser_command_windows_nt=Zadani naredbeni preglednik Windows NT +OptionPanel.default_browser_command_windows_nt.tooltip=Za Windows NT (znaci "" su obavezni zbog veza koji imaju "=" u svojem URL-u). +OptionPanel.default_browser_command_windows_9x=Zadani naredbeni preglednik Windows 98 +OptionPanel.default_browser_command_windows_9x.tooltip=Za Windows 98 (znaci "" su obavezni zbog veza koji imaju "=" u svojem URL-u). +OptionPanel.default_browser_command_other_os=Zadani naredbeni preglednik za ostale operacijske sustave +OptionPanel.default_browser_command_other_os.tooltip= Ovo je tipi\u010dno za Linux: +OptionPanel.default_browser_command_mac=Zadani naredbeni preglednik za MacOS +OptionPanel.default_browser_command_mac.tooltip= i MAC: (hvala, Nick!) +OptionPanel.html_export_folding=Prikaz \u010dvorova pri izvozu u HTML +OptionPanel.export_icons_in_html=Izvoz ikona u HTML +OptionPanel.export_icons_in_html.tooltip= Tell if HTML exported from FreeMind should contain icons. The trouble with icons is that quite often the links to icons will not be found in the exported HTML. +OptionPanel.Cancel=Odustani +OptionPanel.OK=Spremi +option_changes_may_require_restart=Da biste vidjeli u\u010dinak promjena postavka, morate ponovno pokrenuti FreeMind. +# fc, 12.5.2005: +GrabKeyDialog.grab-key.title=Upi\u0161i novu tipku +GrabKeyDialog.grab-key.caption= +GrabKeyDialog.grab-key.clear=O\u010disti +GrabKeyDialog.grab-key.assigned-to.none=Trenutno nije dodijeljeno +GrabKeyDialog.grab-key.assigned-to=Dodijeljeno je prema +GrabKeyDialog.common.ok=U redu +GrabKeyDialog.grab-key.remove=Ukloni +GrabKeyDialog.common.cancel=Odustani +GrabKeyDialog.grab-key.remove-ask=Jeste li sigurni da \u017eelite ukloniti akciju tipke? +OptionPanel.separator.language=Jezik +OptionPanel.separator.files=Datoteke +OptionPanel.separator.automatic_save=Automatsko snimanje +OptionPanel.separator.default_styles=Zadani stilovi +OptionPanel.separator.default_colors=Zadane boje +OptionPanel.separator.selection_colors=Boje ozna\u010davanja +OptionPanel.separator.default_fonts=Zadani oblik slova +OptionPanel.separator.other_defaults=Ostale zadane vrijednosti +OptionPanel.separator.look_and_feel=Izgled i ugo\u0111aj +OptionPanel.separator.anti_alias=Zagla\u0111ivanje +OptionPanel.separator.initial_map_size=Po\u010detna veli\u010dina Mentalne mape +OptionPanel.separator.hyperlink_types=Vrste hiperveza +OptionPanel.separator.edit_long_node_window= Postavke prozora za bolje oblikovanje teksta \u010dvora +OptionPanel.separator.commands_for_the_program=Naredbe programa +OptionPanel.separator.node_editing_commands=Naredbe ure\u0111ivanja \u010dvora +OptionPanel.separator.node_navigation_commands=Naredbe navigacije \u010dvora +OptionPanel.separator.new_node_commands=Naredbe novog \u010dvora +OptionPanel.separator.patterns= Uzorci +OptionPanel.separator.behaviour= Karakteristika +OptionPanel.separator.key_typing=Tipkanje +OptionPanel.separator.selection_method= Na\u010din ozna\u010davanja +OptionPanel.separator.browser= Preglednik +OptionPanel.separator.html_export=HTML izvoz +OptionPanel.separator.attributes=Svojstva +OptionPanel.separator.icons=Ikone u "Odaberi Ikonu..." +OptionPanel.keystroke_edit_attributes=Uredi obilje\u017eja +OptionPanel.keystroke_show_all_attributes=Prika\u017ei sva obilje\u017eja +OptionPanel.keystroke_show_selected_attributes=Prika\u017ei ozna\u010dena obilje\u017eja +OptionPanel.keystroke_hide_all_attributes=Sakrij sva obilje\u017eja +OptionPanel.keystroke_show_attribute_manager=Prika\u017ei upravitelja obilje\u017eja +OptionPanel.keystroke_assign_attributes=Dodjeljivanje obilje\u017eja ... +# fc, 2.6.2005: +OptionPanel.antialias.tooltip=Odre\u0111ivanje grafi\u010dke kvalitete mentalne mape. Vi\u0161e zagla\u0111ivanja zahtijeva vi\u0161e vremena. +OptionPanel.antialias=Zagla\u0111ivanje +OptionPanel.antialias_edges=Zagla\u0111ivanje ruba +OptionPanel.antialias_all=Zagladi sve +OptionPanel.antialias_none=Bez zagla\u0111ivanja +OptionPanel.cs=\u010de\u0161ki +OptionPanel.nb=norve\u0161ki +# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above +follow_link = Otvori hipervezu (link) +OptionPanel.ColorProperty.ResetColor=Vrati boju +# fc, 16.6.2005: +OptionPanel.keystroke_option_dialog=Postavke +format_menu_edge_styles=Stil &ruba +format_menu_edge_widths=&\u0160irine ruba +# fc, 3.7.2005: +accessories/plugins/ImportMindmanagerFiles.properties_name=MindManager X5 mape... +# fc, 5.7.2005: +accessories/plugins/ExportToOoWriter.properties_documentation=Vidljiva struktura mape (svi rasklopljeni \u010dvorovi) napravit \u0107e poglavlja dokumenta.
Skriveni \u010dvorovi (svi sklopljeni \u010dvorovi) bit \u0107e umetnuti unutar tih poglavlja u obliku liste ili paragrafa. +accessories/plugins/ExportToOoWriter.properties_name= Kao Open Office Write dokument... +# fc, 10.7.2005: +OptionPanel.separator.undo=Poni\u0161ti +OptionPanel.undo_levels=Broj poni\u0161tenja +OptionPanel.undo_levels.tooltip=Odre\u0111ivanje broja snimljenih koraka koji \u0107e se mo\u0107i vratiti funkcijom "Poni\u0161ti". +# fc, 13.8.2005 +OptionPanel.lt=litvanski +# fc, 12.1.2006: don't translate this unless you create a translation of the documentation file (see german) +browsemode_initial_map = ./doc/freemind.mm +# fc, 1.2.06 +link_not_found = Veza $1 nije na\u0111ena. +# fc, 15.2.06 +icon_smily_bad = Nezadovoljan sam +OptionPanel.hr=hrvatski +OptionPanel.nn=norve\u0161ki +OptionPanel.se=\u0161vedski + +OptionPanel.unfold_on_paste=Rasklopi \u010dvor kad ga zalijepi\u0161 +OptionPanel.unfold_on_paste.tooltip=Rasklopi \u010dvor kad ga zalijepi\u0161 ili kad povu\u010de\u0161 i ispusti\u0161 \u010dvor + +# fc, 16.2.06 +accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Izvoz mape kao Java browser appleta. +accessories/plugins/ExportWithXSLT_Applet.properties_name=Kao Java Applet... +accessories/plugins/ExportWithXSLT_Applet.properties_webpage=WEB stranica +accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Izvoz mape kao flash aplikacije. +accessories/plugins/ExportWithXSLT_Flash.properties_name=Kao Flash... +# fc, 21.2.06 +accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=Lijevo od korijena \u010dvor/ovi je/su pomaknut/i prema dolje. \u010cvor/ovi je/su postali djeca bratskih \u010dvorova. Desno od korijena \u010dvor/ovi je/su pomaknut/i prema gore. Direktno na korijenu \u010dvor/ovi mijenja/ju strane. +accessories/plugins/ChangeNodeLevelAction_left.properties_name=\u010cvor ulijevo +accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=Desno od korijena \u010dvor/ovi je/su pomaknut/i prema dolje. \u010cvor/ovi je/su postali djeca bratskih \u010dvorova. Lijevo od korijena \u010dvor/ovi je/su pomaknut/i prema gore. Direktno na korijenu \u010dvor/ovi mijenja/ju strane. +accessories/plugins/ChangeNodeLevelAction_right.properties_name=\u010cvor udesno +# fc, 27.2.06: +PatternDialog.ColorProperty.ResetColor=Vrati boju na izvornu +PatternDialog.EdgeWidth_1=1 +PatternDialog.EdgeWidth_2=2 +PatternDialog.EdgeWidth_4=4 +PatternDialog.EdgeWidth_8=8 +PatternDialog.EdgeWidth_parent=kao Roditelj +PatternDialog.EdgeWidth_thin=Tanko +PatternDialog.as_parent=kao Roditelj +PatternDialog.bezier=Bezier +PatternDialog.bubble=Mjehuri\u0107 +PatternDialog.combined=Kombiniran +PatternDialog.edgecolor.tooltip=Svojstvo ruba roditeljskog \u010dvora (primijenit \u0107e se na sve \u010dvorove Djecu) +PatternDialog.edgecolor=Boja ruba +PatternDialog.edgestyle.tooltip=Svojstvo ruba roditeljskog \u010dvora (primijenit \u0107e se na sve \u010dvorove Djecu) +PatternDialog.edgestyle=Stil ruba +PatternDialog.edgewidth.tooltip=Svojstvo ruba roditeljskog \u010dvora (primijenit \u0107e se na sve \u010dvorove Djecu) +PatternDialog.edgewidth=\u0160irina ruba +PatternDialog.fork=Ra\u010dva +PatternDialog.linear=Linearno +PatternDialog.nodebackgroundcolor=Boja pozadine \u010dvora +PatternDialog.nodecolor=Boja teksta \u010dvora +PatternDialog.nodestyle=Stil \u010dvora +PatternDialog.nodetext=Tekst \u010dvora +PatternDialog.separator.EdgeControls=Rub +PatternDialog.separator.NodeColors=Boje teksta \u010dvora +PatternDialog.separator.NodeStyles=Stil \u010dvora +PatternDialog.sharp_bezier=Grubo bezier +PatternDialog.sharp_linear=Grubo linearno +PatternDialog.undefined_font=Nedefiniran oblik slova +accessories/plugins/ApplyFormatPlugin.properties_documentation=Prikazuje dijalog u kojem osobine \u010dvora i ruba mogu biti promijenjene odmah. +accessories/plugins/ApplyFormatPlugin.properties_name=Promijeni &oblik \u010dvora... +accessories/plugins/ApplyFormatPlugin.dialog.title=Promjena oblika svih \u010dvorova + +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Pomakni lijevo +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Pomakni desno +OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Kopiraj oblik +OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Zalijepi oblik +OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Umetni ikonu +OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Razmak \u010dvorova +OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Podijeli \u010dvor +# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Zatvori jednu razinu +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Otvori jednu razinu +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Zatvori sve +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Otvori sve +OptionPanel.separator.others=Ostale tipkovni\u010dke veze + +PatternDialog.separator.General=Op\u0107enito +PatternDialog.clear_all_setters=Uklju\u010di sve +PatternDialog.clear_all_setters.tooltip=Omogu\u0107uje ili onemogu\u0107uje sve pokazatelje promjena. +# fc, 1.3.06: +accessories/plugins/ManagePatterns.dialog.title=Upravljanje uzorcima... +accessories/plugins/ManagePatterns.not_found=Datoteka s uzorkom ne mo\u017ee biti u\u010ditana. +accessories/plugins/ManagePatterns.properties_documentation=Mijenja uzorke definirane u paterns.xml u ure\u0111iva\u010du. Rezultat je automatski snimljen. +accessories/plugins/ManagePatterns.properties_name=Upravljane uzorcima... +# fc, 14.3.06: +PatternDialog.nodefontbold=Podebljan oblik slova +PatternDialog.nodefontitalic=Uko\u0161en oblik slova +PatternDialog.separator.NodeFont=Oblik slova \u010dvora +# fc, 19.3.06: +ManagePatternsPopupDialog.remove=Makni uzorak +ManagePatternsPopupDialog.add=Dodaj novi uzorak +PatternDialog.patternname=Ime +PatternDialog.patternname.tooltip=Jedinstveno ime uzorka +PatternNewNameProperty=Novi uzorak +ManagePatternsPopupDialog.DuplicateNameMessage=Odabrali ste ime koje ve\u0107 postoji. Promijenite ime prije napu\u0161tanja ovog dijaloga. +PatternDialog.childpattern.tooltip=Odabrani uzorak je primijenjen na sve \u010dvorove Djece. +PatternDialog.childpattern=Uzorak \u010dvora Dijete +ManagePatternsPopupDialog.Save=Spremi i vrati se +PatternDialog.icon.tooltip=Ako se primijeni, \u010dvor \u0107e imati to\u010dno tu ikonu. +PatternDialog.icon=Ikona +PatternDialog.set_property_text=Promijeni +PatternDialog.set_property_text.tooltip=Prazan: Ne dirati; Minus=Makni osobine (postavi zadane vrijednosti); Plus=Promijeni osobine +accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Promijeni uzorak +OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automatski ure\u0111eni uzorci +OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Uzorci +PatternToString.color=Boje +PatternToString.backgroundColor=Boja pozadine +#OptionPanel.automaticFormat_level1=Oblik korijenskog \u010dvora +#OptionPanel.automaticFormat_level2=1. Razina oblika \u010dvora +PatternToString.NodeFontSize=Veli\u010dina slova +OptionPanel.level1=Oblik korijenskog \u010dvora +OptionPanel.level2=1. Razina oblika \u010dvorova +OptionPanel.level3=2. Razina oblika \u010dvorova +OptionPanel.level4=3. Razina oblika \u010dvorova +OptionPanel.level5=Ostali oblici \u010dvorova +OptionPanel.automaticFormat_level=Stilovi automatskog izgleda +# fc, 13.4.06: +ManagePatternsPopupDialog.duplicate=Dupliciraj uzorak +ManagePatternsPopupDialog.from_nodes=Napravi uzorak iz ozna\u010denih \u010dvorova +# fc, 25.5.2006: +accessories/plugins/SaveAll.properties_documentation=Spremi sve otvorene mape. +accessories/plugins/SaveAll.properties_name=Spremi &sve +accessories/plugins/SaveAll.properties_save_all_cancelled=Operacija nije uspje\u0161no dovr\u0161ena. +# fc, 23.7.06 +OptionPanel.loadLastMap=Automatski otvori zadnju datoteku +OptionPanel.loadLastMap.tooltip=Ako je ozna\u010deno, FreeMind kad se pokre\u0107e otvara automatski zadnje otvorenu mapu. +# dan, whenever +use_rich_formatting = Koristi bolje oblikovani tekst +use_plain_text = Koristi jednostavan tekst +# fc, 30.7.06: +FreeMind.progress.gettingPreferenceDirectories=Pribavljanje direktorija Svojstava... +FreeMind.progress.gettingPreferences=Pribavljanje Svojstava... +FreeMind.progress.updateLookAndFeel=Osvje\u017eavanje izgleda i ugo\u0111aja... +FreeMind.progress.createController=Stvaranje Kontrolora... +FreeMind.progress.settingPreferences=Namje\u0161tanje Postavki... +FreeMind.progress.propageteLookAndFeel=Izvo\u0111enje izgleda i ugo\u0111aja... +FreeMind.progress.createInitialMode=Stvaranje Po\u010detnog na\u010dina... +FreeMind.progress.startCreateController=Zapo\u010dinjanje stvaranja Kontrolora... +FreeMind.progress.loadMaps=U\u010ditavanje mapa... +FreeMind.progress.buildScreen=Gradnja Prikaza... +FreeMind.progress.endStartup=Zavr\u0161etak pokretanja. +OptionPanel.tr=turski +OptionPanel.level=Razina +# fc, 13.8.06: +map_not_saved=Mapa nije prije snimljena. +# fc, 27.8.06: +plugins/TimeManagement.xml_Find=Prona\u0111i +plugins/TimeManagement.xml_Replace=Zamijeni +plugins/TimeManagement.xml_Select=Ozna\u010di +plugins/TimeManagement.xml_Export=Izvoz odabranih \u010dvorova +plugins/TimeManagement.xml_Replace_All=Zamijeni sve +plugins/TimeManagement.xml_Replace_Selected=Zamijeni ozna\u010deno +plugins/TimeManagement.xml_Goto=Idi na +plugins/TimeManagement.xml_Cancel=Odustani +# fc, 2.9.06 : +automatically_save_message=Mapa je automatski snimljena (koriste\u0107i ime datoteke {0})... +plugins/ScriptingEngine.xml_documentation=Izvo\u0111enje svih sadr\u017eanih skripti. +plugins/ScriptingEngine.xml_name=Izvo\u0111enje skripti +# fc, 4.9.06 +OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Procjena +# fc, 6.9.06: +error_applying_template=Gre\u0161ka prilikom primjene XSL predlo\u017eka. +# fc, 11.10.06: +accessories/plugins/NodeNote_jumpto.properties_documentation=Prebaci iz bilje\u0161ke u \u010dvor +accessories/plugins/NodeNote_jumpto.properties_name=Prelazak iz bilje\u0161ke u \u010dvor +#accessories/plugins/NodeNote_jumpfrom.properties_documentation=Prebaci natrag iz bilje\u0161ke u \u010dvor +#accessories/plugins/NodeNote_jumpfrom.properties_name=Napusti bilje\u0161ku +# fc, 12.10.06 +OptionPanel.max_tooltip_width=\u0160irina opisa alata +OptionPanel.max_tooltip_width.tooltip=Zadana \u0161irina opisa alata u pikselima. +# fc, 13.10.06: renamed: +plugins/NodeList.xml_documentation=Poka\u017ei sve \u010dvorove kao pretra\u017eivi popis sa svojstvima filtra. +# fc, 10.11.2006: +OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Prebacivanje Bilje\u0161ke/Ure\u0111ivanje \u010dvora +OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Uklju\u010di/Isklju\u010di bilje\u0161ke +# Dimitry 25.10 +OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=Obri\u0161i bilje\u0161ke +# aki 19.10.06: (TJI support) +accessories/plugins/ExportWithXSLT_Applet.properties_tji= Datoteke koje su sastavni dio TaskJugglera +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Izvozi zadataka iz \u010dvora Zadaci u TaskJuggler modul. +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Zadaci iz \u010dvora Zadaci u TaskJuggler datoteku... +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Izvozi resursa iz \u010dvora Resursa u TaskJuggler modul. +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Resursi iz \u010dvora Resursi u TaskJuggler datoteku... +# fc, 14.12.2006: renamed: +plugins/NodeList.xml_name=Prona\u0111i i zamijeni... +plugins/TimeManagement.xml_menu_actions=Akcije +# fc, 23.12.06: +plugins/TimeList.xml_Notes=Bilje\u0161ke +# fc, 30.12.06: +accessories/plugins/SortNodes.properties_documentation=Razvrstavanje svih \u010dvora Djece abecednim redom. +accessories/plugins/SortNodes.properties_name=Ra&zvrstavanje Djece abecednim redom +# fc, 3.1.07: +OptionPanel.ar=arapski +# fc, 10.1.07: +plugins/TimeManagement.xml_WindowTitle_All_Nodes=Pretra\u017ei i zamijeni +plugins/ScriptEditor.xml_documentation=Omogu\u0107ava pisanje velikih skripti unutar FreeMinda. +plugins/ScriptEditor.xml_name=U&re\u0111iva\u010d skripti... +# fc, 24.1.07: +plugins/ScriptEditor/window.title=Ure\u0111iva\u010d skripti +plugins/ScriptEditor.menu_actions=&Akcije +plugins/ScriptEditor.run=&Izvodi +plugins/ScriptEditor/window.Result=Rezultat: + +# SimplyHTML.properties +# +# resource bundle with strings for application SimplyHTML +# - English Language (default) - +# edit menu definition +simplyhtml.editLabel=Uredi + +# edit menu items +simplyhtml.undoLabel=Poni\u0161ti +simplyhtml.undoTip=Poni\u0161ti +simplyhtml.redoLabel=Ponovi +simplyhtml.redoTip=Ponovi +simplyhtml.cutLabel=Izre\u017ei +simplyhtml.cutTip=Izre\u017ei +simplyhtml.copyLabel=Kopiraj +simplyhtml.copyTip=Kopiraj +simplyhtml.pasteLabel=Zalijepi +simplyhtml.pasteTip=Zalijepi +simplyhtml.selectAllLabel=Ozna\u010di sve +simplyhtml.findReplaceLabel=Tra\u017ei i zamijeni +simplyhtml.findReplaceTip=Tra\u017ei i zamijeni + +#insert menu definition +simplyhtml.insertTableLabel=Tabela... +# format menu definition +simplyhtml.formatLabel=Oblikovanje + +# format menu items +simplyhtml.fontLabel=Slova... +simplyhtml.fontTip=Oblik slova... +simplyhtml.clearFormatLabel=Ukloni oblikovanje +simplyhtml.clearFormatTip=Ukloni oblikovanje +simplyhtml.fontBoldLabel=Podebljano +simplyhtml.fontBoldImage=resources/bold.gif +simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif +simplyhtml.fontBoldTip=Uklju\u010di/Isklju\u010di podebljano +simplyhtml.fontColorTip=Boja teksta +simplyhtml.fontColorLabel=Boja teksta +simplyhtml.fontColorImage=resources/fontColor.gif +simplyhtml.fontItalicLabel=Uko\u0161eno +simplyhtml.fontItalicImage=resources/italic.gif +simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif +simplyhtml.fontItalicTip=Isklju\u010di/uklju\u010di uko\u0161eno +simplyhtml.fontUnderlineLabel=Podcrtano +simplyhtml.fontUnderlineImage=resources/uline.gif +simplyhtml.fontUnderlineTip=Uklju\u010di/Isklju\u010di podcrtano +simplyhtml.formatTableLabel=Tabela... +simplyhtml.formatTableTip=Oblikovanje tabele +simplyhtml.toggleBulletsLabel=Uklju\u010di/Isklju\u010di ozna\u010deni popis +simplyhtml.toggleBulletsTip=Uklju\u010di/Isklju\u010di ozna\u010deni popis +simplyhtml.toggleNumbersLabel=Uklju\u010di/Isklju\u010di numerirani popis +simplyhtml.toggleNumbersTip=Uklju\u010di/Isklju\u010di numerirani popis +simplyhtml.formatListLabel=Popis... +simplyhtml.formatListTip=Promijeni oblik popisa +simplyhtml.formatParaLabel=Odlomak... +simplyhtml.formatParaTip=Promijeni oblik odlomka +simplyhtml.paraAlignLeftLabel=Poravnaj lijevo +simplyhtml.paraAlignLeftTip=Poravnavanje odlomka ulijevo +simplyhtml.paraAlignCenterLabel=Poravnaj u sredinu +simplyhtml.paraAlignCenterTip=Poravnavanje odlomka u sredinu +simplyhtml.paraAlignRightLabel=Poravnaj desno +simplyhtml.paraAlignRightTip=Poravnavanje odlomka udesno + +# table menu definition +# table menu items +simplyhtml.tableLabel=Tabela +simplyhtml.nextTableCellLabel=Sljede\u0107a \u0107elija +simplyhtml.prevTableCellLabel=Predhodna \u0107elija +simplyhtml.insertTableRowLabel=Umetni red +simplyhtml.insertTableColLabel=Umetni stupac +simplyhtml.appendTableRowLabel=Dodaj red ispod +simplyhtml.appendTableColLabel=Dodaj stupac pokraj +simplyhtml.deleteTableRowLabel=Obri\u0161i red +simplyhtml.deleteTableColLabel=Obri\u0161i stupac + +# help menu items +simplyhtml.helpLabel=Pomo\u0107 +simplyhtml.aboutLabel=O SimplyHTML... + +# About frame +simplyhtml.aboutFrameTitle=O programu + +# Font Dialog +simplyhtml.fontDialogTitle=Oblik slova + +# Font panel +simplyhtml.uLineLabel=Potcrtano +simplyhtml.strikeLabel=Precrtano +simplyhtml.previewLabel=Pretpregled +simplyhtml.previewText=Tekst pretpregleda +simplyhtml.familyLabel=Oblik +simplyhtml.sizeLabel=Veli\u010dina +simplyhtml.plainName=Obi\u010dan +simplyhtml.boldName=Podebljano +simplyhtml.italicName=Uko\u0161eno +simplyhtml.boldItalicName=Uko\u0161/Podebljano +simplyhtml.styleLabel=Stil +simplyhtml.effectLabel=Efekti +simplyhtml.colorLabel=Boja +simplyhtml.foregroundLabel=Boja fonta: +simplyhtml.backgroundLabel=Boja pozadine: +simplyhtml.noLineLabel=Ni\u0161ta + +# Paragraph style panel +simplyhtml.textIndentLabel=Uvlaka: +simplyhtml.alignLabel=Poravnavanje: +simplyhtml.alignLeft=Lijevo +simplyhtml.alignCenter=Sredina +simplyhtml.alignRight=Desno +simplyhtml.valignLabel=Okom.poravn.: +simplyhtml.valignTop=Gore +simplyhtml.valignMiddle=Sredina +simplyhtml.valignBottom=Dolje +simplyhtml.valignBaseline=Osnovna crta + +# Margin panel +simplyhtml.marginLabel=Izvana +simplyhtml.paddingLabel=Unutra + +# Table dialog +simplyhtml.tableDialogTitle=Oblik tabele +simplyhtml.tablePanelTitle=Oblik tabele +simplyhtml.cellPanelTitle=Oblik \u0107elije +simplyhtml.tableWidthLabel=\u0160irina: +simplyhtml.tableBgColLabel=Pozadinska boja: +simplyhtml.cellMarginTabLabel=Margine +simplyhtml.cellBorderTabLabel=Obrub +simplyhtml.borderWidthLabel=\u0160irine +simplyhtml.borderColorLabel=Boja: +simplyhtml.thisCellRangeLabel=aktiv.\u0107elija +simplyhtml.thisColRangeLabel=aktiv.stupac +simplyhtml.thisRowRangeLabel=aktiv.red +simplyhtml.allCellsRangeLabel=sve \u0107elije +simplyhtml.applyCellAttrLabel=Primijeni na +simplyhtml.cellGenTabLabel=Op\u0107enito + +# Paragraph style dialog +simplyhtml.paraStyleDialogTitle=Stil odlomka +simplyhtml.fontTabLabel=Slova +simplyhtml.paraTabLabel=Odlomak + +# Tag names +simplyhtml.cTagNamePara=Odlomak +simplyhtml.cTagNameHead1=Naslov 1 +simplyhtml.cTagNameHead2=Naslov 2 +simplyhtml.cTagNameHead3=Naslov 3 +simplyhtml.cTagNameHead4=Naslov 4 +simplyhtml.cTagNameHead5=Naslov 5 +simplyhtml.cTagNameHead6=Naslov 6 +simplyhtml.cTagNameLink=Veza +simplyhtml.cTagNameUL=Neure\u0111en popis +simplyhtml.cTagNameOL=Ure\u0111en popis + +# List dialog +simplyhtml.listDialogTitle=Oblik popisa +simplyhtml.listTypeLabel=Tip: +simplyhtml.listPositionLabel=Pozicija: +simplyhtml.listIndentTitle=Uvlaka: +simplyhtml.listTypeNone=Ni\u0161ta +simplyhtml.listTypeDecimal=1.,2.,3.,4. +simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. +simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. +simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. +simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. +simplyhtml.listTypeDisc=simbol datoteke kao graf.oznake +simplyhtml.listTypeCircle=Kru\u017ei\u0107 +simplyhtml.listTypeSquare=Kvadrat +simplyhtml.listPosInside=Iznutra +simplyhtml.listPosOutside=Izvana + +# Find & replace dialog +simplyhtml.findReplaceDialogTitle=Tra\u017ei i zamijeni +simplyhtml.findNext=Tra\u017ei sljede\u0107e... +simplyhtml.searchFromStart=Tra\u017ei od po\u010detka +simplyhtml.searchDown=Tra\u017ei prema dolje +simplyhtml.wholeWordsOnly=Samo cijele rije\u010di +simplyhtml.searchUp=Tra\u017ei prema gore +simplyhtml.matchCase=Razlikuj velika i mala slova +simplyhtml.replaceWith=Zamijeni s: +simplyhtml.textToFind=Tra\u017ei ovo: +simplyhtml.replace=Zamijeni... +simplyhtml.noMoreOccurrencesFound=nema vi\u0161e podudarnosti +simplyhtml.allOccurrencesReplaced=Sve podudarnosti su zamijenjene +simplyhtml.replaceThisQuery=Zamijeniti podudarnost s obzirom na +simplyhtml.replaceYes=Da +simplyhtml.replaceNo=Ne +simplyhtml.replaceAll=Sve +simplyhtml.replaceDone=Gotovo + +# Error messages +simplyhtml.unableToUndoError=Ne mogu poni\u0161titi: +simplyhtml.unableToRedoError=Ne mogu ponoviti: +simplyhtml.unableToOpenFileError=Datoteka se ne mo\u017ee otvoriti + +# Miscellaneous text +simplyhtml.imageFileDesc=Slikovne datoteke +simplyhtml.defaultDocName=Bez naslova +simplyhtml.cancelBtnName=Odustani +simplyhtml.closeBtnName=Zatvori +simplyhtml.okBtnName=Uredu +simplyhtml.leftLabel=Lijevo: +simplyhtml.rightLabel=Desno: +simplyhtml.topLabel=Gore: +simplyhtml.bottomLabel=Dolje: +simplyhtml.insertTableTitle=Umetni tabelu +simplyhtml.insertTableMsg=Broj kolona +simplyhtml.close=Zatvori +simplyhtml.standardStyleName=Standardno +simplyhtml.styleNameInputTitle=Spremi stil +simplyhtml.styleNameInputText=Naziv novog stila? +simplyhtml.newStyleDefaultName=Novi stil +simplyhtml.docTitleTitle=Uredi naslov dokumenta +simplyhtml.docTitleQuery=Postavi naslov kao: +simplyhtml.layoutTabTitle=Osnovni prikaz +simplyhtml.htmlTabTitle=HTML prikaz + +#fc, 14.2.07: +ScriptEditorPanel.changed_cancel=Skripta je promijenjena. Stvarno \u017eelite otkazati promjene? + +# fc, 2.3.07: +OptionPanel.separator.mouse_wheel=Kota\u010di\u0107 mi\u0161a +OptionPanel.wheel_velocity=Brzina +OptionPanel.wheel_velocity.tooltip=Ve\u0107a vrijednost rezultira kod pomaka kota\u010di\u0107a mi\u0161a br\u017ee u\u010dinke na mapi. + +# fc, 15.5.07: +accessories/plugins/NodeHistoryBack.properties_name=Nazad +accessories/plugins/NodeHistoryBack.properties_documentation=Skok unazad na ozna\u010denom nizu +accessories/plugins/NodeHistoryForward.properties_name=Naprijed +accessories/plugins/NodeHistoryForward.properties_documentation=Skok unaprijed na ozna\u010denom nizu + +# fc, 25.5.07: +OptionPanel.use_tabbed_pane.tooltip=Ako je ozna\u010deno mape \u0107e se prikazivati u tabovima (kao u FireFox-u :-) ) +OptionPanel.use_tabbed_pane=Koristi tabove + +# fc, 11.6.07: +accessories/plugins/ExportWithTWiki.properties_name=Kao TWiki... +accessories/plugins/ExportWithTWiki.properties_documentation= Izvozi Mentalnu mapu kao Twiki dokument. +accessories/plugins/ExportWithTWiki.properties=TWiki datoteka (*.twi) + +# fc, 31.7.07 +really_remove_node=\u017deli\u0161 li stvarno obrisati \u010dvor(ove)? +confirmation=Potvrda +OptionalDontShowMeAgainDialog.dontShowAgain=Ne &pitaj me ponovno. +OptionalDontShowMeAgainDialog.rememberMyDescision=&Zapamti odluku. +OptionalDontShowMeAgainDialog.cancel=&Ne +OptionalDontShowMeAgainDialog.ok=&Da +OptionPanel.separator.resources_notifications=Potvrde +OptionPanel.delete_nodes_without_question=Obri\u0161i \u010dvor(ove) bez potvrde. +OptionPanel.delete_nodes_without_question.tooltip=Ako je polje odabrano \u010dvorovi \u0107e biti obrisani bez potvrde. Ovo mo\u017ee prouzro\u010diti gubitak informacija ukoliko nismo pa\u017eljivi kod brisanja. + +edit.decision=HTML Ure\u0111iva\u010d +edit.edit_rich_text=\u017deli\u0161 li koristiti oblikovanja kao podebljano ili uko\u0161eno? +OptionPanel.remind_type_of_new_nodes.tooltip="Pitanje" Prikazat \u0107e se pitanje za bolje oblikovanje \u010dvora (koristi ako si u dvojbi).
"Da" \u0107e prikazati ure\u0111iva\u010d za bolje oblikovanje teksta.
"Ne" \u0107e prikazati jednostavan ure\u0111iva\u010d teksta. +OptionPanel.ask=Pitanje + +OptionPanel.standardselectednodetextcolor.tooltip= +# fc, 4.9.07: +really_execute_script=\u017delite li stvarno izvoditi skripte uklju\u010dene u ovoj mapi? Postoji opasnost nastanka \u0161tete na ra\u010dunalu? +OptionPanel.resources_execute_scripts_without_asking=\u017delite li izvr\u0161iti skripte bez potvrde? +OptionPanel.execute_scripts_without_asking.tooltip=U principu FreeMind skrpite mogu izvesti bilo kakvu akciju na va\u0161emu ra\u010dunalu.
Zato ne biste trebali pokretati skripte za koje ne znate jesu li sigurne. + +#fc, 13.9.07: +PatternToString.EdgeStyle=Stil ruba +PatternToString.EdgeColor=Boja ruba +PatternToString.EdgeWidth=\u0160irina ruba +PatternToString.FontBold=Podebljano +PatternToString.FontItalic=Uko\u0161eno +PatternToString.FontName=Ime oblika slova +PatternToString.Icon=Ikona +PatternToString.Child=Stil \u010dvora Dijete +ManagePatternsPopupDialog.Actions=&Akcije + +#Dimitry 19.10.07: +node_location_help=Povla\u010denje mijenja poziciju \u010dvora, ctrl+povla\u010denje mijenja razmak, dvostruki klik i ctrl+dvostruki klik vra\u0107a \u0107vor u prvobitnu poziciju + +#fc, 19.10.07: +really_convert_to_current_version=Mapa je kreirana sa starijom verzijom programa Freemind.
\u017delite li ih prevesti na novu verziju (preporu\u010da se)?
(U suprotnom treba uzeti kakvo je, bez ikakve garancije.) +OptionPanel.resources_convert_to_current_version=\u017delite li automatsko pretvaranje mapa starih verzija Freeminda
u trenutnu verziju? +OptionPanel.resources_convert_to_current_version.tooltip=Samo za vrlo velike mape za koje nije potrebno pretvaranje
(a za to je potrebno stru\u010dno znanje), mo\u017eete otvarati bez pretvaranja. + +#Dimitry 25.10.07 +OptionPanel.separator.root_node_appearance=Izgled korijenskog \u010dvora +OptionPanel.use_common_out_point_for_root_node=Rubovi zapo\u010dinju iz jedne to\u010dke na korijenskom \u010dvoru +OptionPanel.use_common_out_point_for_root_node.tooltip=Rubovi zapo\u010dinju iz jedne to\u010dke na korijenskom \u010dvoru======= + +#fc, 9.11.07: +ManagePatternsPopupDialog.apply=Primijeni +PatternDialog.setscript=Promijeniti? +PatternDialog.setscript.tooltip=Skripta mo\u017ee biti pridru\u017eena stilu. +PatternDialog.script=Skripta +PatternDialog.script.tooltip=Skripta u obliku Groovy koda + +#fc, 12.11.07: +OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Upravljanje uzorcima + +#fc, 4.1.2008 changed: +toggle_menubar = &Izborna traka +toggle_toolbar = &Alatna traka +toggle_left_toolbar =&Traka s ikonama +accessories/plugins/NodeNote_hide_show.properties_name=Bilje\u0161ke +selection_as_rectangle=Prika\u017ei okvir za ozna\u010davanje \u010dvora + +# fc, 8.1.2008 +really_cut_node=\u017deli\u0161 li stvarno izrezati \u010dvor(ove)? +OptionPanel.resources_cut_nodes_without_question=Izre\u017ei \u010dvor(ove) bez potvrde. +OptionPanel.cut_nodes_without_question.tooltip=Ako je polje odabrano \u010dvorovi \u0107e biti izrezani bez potvrde. Ovo mo\u017ee prouzro\u010diti gubitak informacija ukoliko nismo pa\u017eljivi kod brisanja. + +# fc, 9.1.2008: +follow_graphical_link=Idi na: + +#fc 10.1.2008: changed: +accessories/plugins/NodeNote_hide_show.properties_documentation=Uklju\u010divanje ili isklju\u010divanje prozora s bilje\u0161kama + +#fc, 16.1.2008 +plugins/ScriptEditor.new_script=Nova skripta + +#fc, 20.2.2008: +OptionPanel.separator.save=Spremi +OptionPanel.save_only_intrisically_needed_ids=Spremi samo kori\u0161tene identifikacijske brojeve \u010dvorova +OptionPanel.save_only_intrisically_needed_ids.tooltip=Kada je ozna\u010deno, identifikacijski brojevi \u010dvora izostavljeni su i nisu kori\u0161teni unutar mape. Znajte, ne mo\u017eete povezati ("linkati") \u010dvor unutarnje mape s \u010dvorom vanjske mape bez identifikacijskog broja. + +# fc, 10.3.2008: +OptionPanel.plugins/scripting/tab_name=Pisanje skripti +OptionPanel.separator.plugins/scripting/separatorPropertyName=Potvrde +OptionPanel.resources_execute_scripts_without_file_restriction=Omogu\u0107i upravljanje nad datotekama (NIJE preporu\u010deno) +OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=Ukoliko Groovy skripte trebaju upravljati izvr\u0161avanjem datoteka (npr. otvoriti, zatvoriti, \u010ditati, zapisati, snimiti, obrisati (!),
morate omogu\u0107iti ovu opciju.
Ali koristite pa\u017eljivo, zlonamjerne skripte mogu nanijeti \u0161tetu va\u0161em ra\u010dunalu! +OptionPanel.resources_execute_scripts_without_network_restriction=Omogu\u0107i upravljanje mre\u017enim resursima (NIJE preporu\u010deno) +OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=Ukoliko Groovy skripte trebaju upravljati izvr\u0161avanjem mre\u017enih akcija,
morate omogu\u0107iti ovu opciju.
Ali koristite pa\u017eljivo, zlonamjerne skripte mogu otkriti va\u0161e tajne ! +OptionPanel.resources_execute_scripts_without_exec_restriction=Omogu\u0107i izvr\u0161enje ostalih aplikacija (NIJE preporu\u010deno) +OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=Ukoliko Groovy skripte trebaju upravljati izvr\u0161avanjem ostalih aplikacija (npr. internet pretra\u017eiva\u010d) bez pitanja(!),
morate omogu\u0107iti ovu opciju.
Ali koristite pa\u017eljivo, zlonamjerne skripte mogu nanijeti \u0161tetu va\u0161em ra\u010dunalu! +plugins/ScriptEditor.FORBIDDEN_ACTION=Izvr\u0161avanje FreeMind groovy skripta je zaustavljeno. Zabranjene su {0,choice,0#File|1#Network|2#Exec} sljede\u0107e operacije: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. + + +# changed, fc, 11.3.2008: +plugins/ScriptEditor.cancel=&Otka\u017ei promjene i iza\u0111i +plugins/ScriptEditor.exit=&Spremi i iza\u0111i + +# changed, fc, 26.3.2008: +plugins/TimeManagement.xml_closeButton=Zatvori + +# changed, fc, 7.4.2008: +PatternDialog.nodebackgroundcolor.tooltip=Pozadinska boja \u010dvora kad nije odabran. +PatternDialog.nodecolor.tooltip=Boja prednjeg plana \u010dvora kad nije odabran. +PatternDialog.nodestyle.tooltip=Stil opisuje vanjski oblik \u010dvora.
Mogu\u0107e vrijednosti:
fork: without surrounding box,
bubble: node with a surrounding rectangle,
As parent: take the style from the parent node
or the default root node style for the root node,
Combined: Bubble when node is folded, fork otherwise.
+PatternDialog.nodetext.tooltip=Ovdje mo\u017eete definirati tekst \u010dvorova. Kori\u0161tenjem uzorka predhodni tekst je odba\u010den. +PatternDialog.nodefontname=Oblik slova \u010dvorova +PatternDialog.nodefontsize=Veli\u010dina slova \u010dvorova +PatternDialog.nodefontname.tooltip= +PatternDialog.nodefontsize.tooltip= +PatternDialog.nodefontbold.tooltip= +PatternDialog.nodefontitalic.tooltip= + +# new, fc, 8.4.2008: +PatternDialog.separator.ScriptingControl=Pisanje skripti + +# new, fc, 10.4.2008: +OptionPanel.resources_don_t_show_note_icons=Ne prikazuj ikone bilje\u0161ki + +#new, fc, 11.4.2008: +FreeMind=Web stranica Freemind + +# new, fc, 12.4.2008: +really_remove_notes=Stvarno \u017eelite obrisati bilje\u0161ku(e)? +OptionPanel.resources_remove_notes_without_question=Obri\u0161i bilje\u0161ke bez upita. +OptionPanel.remove_notes_without_question.tooltip=Ako je polje odabrano pripadaju\u0107e bilje\u0161ke odabranog \u010dvora bit \u0107e obrisane bez potvrde. Ovo mo\u017ee prouzro\u010diti gubitak informacija ukoliko nismo pa\u017eljivi kod brisanja. +OptionPanel.resources_save_folding_state=Uvijek spremi promjene polo\u017eaja sklopljenih i rasklopljenih \u010dvorova. +OptionPanel.resources_save_folding_state.tooltip=Ako je polje odabrano, svaka promjena pozicije sklopljenih i rasklopljenih \u010dvorova bit \u0107e spremljena prilikom izlaska iz programa. + +# new, fc, 17.4.2008: +plugins/ScriptEditor.sign=Potpisivanje skripte... + +#new, fc, 18.4.2008: +OptionPanel.resources_script_user_key_name_for_signing=Neobavezni korisni\u010dki klju\u010d (pseudonim) za potpisivanje +OptionPanel.resources_script_user_key_name_for_signing.tooltip=\u017delite li potpisati svoju skriptu, unesite pseudonim (izmi\u0161ljeni klju\u010d) ovdje.
Lozinka je pohranjena u bazu klju\u010deva.
Lozinka klju\u010dnog tajnog klju\u010da mora se podudarati s lozinkom u bazi klju\u010deva (to je zadano). +OptionPanel.resources_signed_script_are_trusted=Omogu\u0107i izvo\u0111enje potpisanih skripti (preporu\u010deno) +OptionPanel.resources_signed_script_are_trusted.tooltip=Ako skripte imaju povjerljiv potpis (npr. autora Freeminda ili su vlastite), izvodit \u0107e se bez ograni\u010denja. + +# changed, fc, 24.4.2008: +# this is still the old "export_branch", but as many users didn't find this feature, we +# have to describe it better. Moreover, it is put into the node context menu. +export_branch_new =Grane kao nove Mape + +# new, fc, 28.4.2008: +icon_yes =Va\u017eno +icon_folder =Direktorij +icon_up =Gore +icon_down =Dolje +icon_smiley-neutral =Ravnodu\u0161an +icon_smiley-oh =Iznena\u0111en +icon_smiley-angry =Ljut +icon_encrypted =Zaklju\u010dano +icon_decrypted =Otklju\u010dano +icon_broken-line =Prekinuto +icon_flag-black =Crna zastavica +icon_flag-blue =Plava zastavica +icon_flag-green =Zelena zastavica +icon_flag-orange =Narand\u017easta zastavica +icon_flag-pink =Ru\u017ei\u010dasta zastavica +icon_flag-yellow =\u017duta zastavica +icon_clock =Vrijeme +icon_hourglass =\u010cekanje +icon_calendar =Datum +icon_kmail =E-mail +icon_edit =Pro\u010distiti +icon_stop-sign =Znak Stop +icon_closed =Zabranjen ulaz +# changed: +icon_flag =Crvena zastavica + +#changed: +OptionPanel.remind_use_rich_text_in_new_long_nodes=Koristi bolje oblikovanje za sve \u010dvorove + +# new, fc, 21.5.2008: +icon_freemind_butterfly =FreeMind +icon_full-8 = Prioritet 8 +icon_full-9 = Prioritet 9 + +# new, fc, 25.5.2008: +node_is_write_protected=Ciljni \u010dvor je za\u0161ti\u0107en od pisanja. + +# new, fc, 6.7.2008: +KeyDoc=Raspored tipkovni\u010dkih kratica PDF dokument +# translate only, when you have an own translation of this doc. +pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide_hr.pdf + +icon_info=Informacija +icon_full-0=Bez prioriteta +icon_prepare=Pripremi +icon_go=Idi +icon_list=Lista +icon_launch=Pokreni +icon_family=Obitelj +icon_female1=\u017dena1 +icon_female2=\u017dena2 +icon_male1=Mu\u0161karac1 +icon_male2=Mu\u0161karac2 +icon_fema=Par +icon_group=Grupa + +OptionPanel.separator.icon_properties=Ikone +OptionPanel.icons.list=Popis prikazanih standardnih ikona +OptionPanel.icon_order_description=Ovdje mo\u017eete napraviti vlastiti raspored ikona ili onemogu\u0107iti prikaz ikona. Ikone trebaju biti odvojene znakom " ; ". + +# new, fc, 16.7.2008: +OptionPanel.sk=slova\u010dki +OptionPanel.el=estonski +OptionPanel.et=etiopiski +OptionPanel.id=indonezijski +OptionPanel.uk_UA=ukrajinski +OptionPanel.vi=vijetnamski + +# new, fc, 22.7.2008 +select_icon=Ozna\u010di ikonu +mode_MindMap=Mentalne mape +mode_Browse=Preglednik +mode_File=Preglednik datoteka +# changed +mode_status =Oblik promijenjen u {0} +mode_title =FreeMind - {0} + +# new, fc, 25.8.2008 +OptionPanel.defaultfontsize.tooltip=Zadana veli\u010dina slova novog \u010dvora + +# new, fc, 20.12.2008 +OptionPanel.ro=rumunjski +really_convert_to_current_version2=Mentalna mapa koju poku\u0161avate otvoriti stvorena je u starijoj verziji Freeminda i pohranjena je u starom formatu.
FreeMind \u0107e pretvoriti mentalnu mapu u format trenutne verzije programa.
Nakon pretvaranja i pohrane mentalne mape sa trenutnom verzijom Freeminda, mentalnu mapu ne\u0107e biti mogu\u0107e otvoriti u starijoj verziji programa.
\u017delite li otvoriti i pretvoriti mentalnu mapu sa trenutnom verzijom Freeminda? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_hu.properties freemind-0.9.0RC7/Resources_hu.properties --- freemind-0.9.0RC6/Resources_hu.properties 2009-01-13 19:25:13.000000000 +0000 +++ freemind-0.9.0RC7/Resources_hu.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,6 +1,6 @@ # by documan about = N\u00e9vjegy -about_text = FreeMind, k\u00e9sz\u00edtette Joerg Mueller\nC\u00e9lja az \u00d6tlet-T\u00e9rk\u00e9pez\u00e9s m\u00f3dszer alkalmaz\u00e1sa a Hum\u00e1n-Komputerek vil\u00e1g\u00e1ban.\nCopyright (C) 2000-2008 Joerg Mueller \nEz a program egy ingyenes szoftver (GPL)\nHonlap: http://freemind.sourceforge.net/\nJ\u00f3 sz\u00f3rakoz\u00e1st!\nVerzi\u00f3sz\u00e1m: +about_text = FreeMind, k\u00e9sz\u00edtette Joerg Mueller\nC\u00e9lja az \u00d6tlet-T\u00e9rk\u00e9pez\u00e9s m\u00f3dszer alkalmaz\u00e1sa a Hum\u00e1n-Komputerek vil\u00e1g\u00e1ban.\nCopyright (C) 2000-2010 Joerg Mueller \nEz a program egy ingyenes szoftver (GPL)\nHonlap: http://freemind.sourceforge.net/\nJ\u00f3 sz\u00f3rakoz\u00e1st!\nVerzi\u00f3sz\u00e1m: antialias_all = Mindent sim\u00edtson antialias_edges = Sim\u00edtsa az \u00e9leket antialias_none = Ne sim\u00edtson @@ -91,7 +91,7 @@ italicise_branch = D\u0151ltt\u00e9 join_nodes = Elemek egyes\u00edt\u00e9se license = Licensz -license_text = FreeMind - Egy program az elmet\u00e9rk\u00e9pek olvas\u00e1s\u00e1hoz \u00e9s k\u00e9sz\u00edt\u00e9s\u00e9hez\nCopyright (C) 2000-2008 Joerg Mueller \nR\u00e9szletek\u00e9rt l\u00e1sd a COPYING f\u00e1jlt.\n\nEz a program egy ingyenes szoftver; a m\u00e1sodk\u00e9zbeli terjeszt\u00e9se/vagy\nm\u00f3dos\u00edt\u00e1sa a GNU General Public License alapj\u00e1n lehets\u00e9ges,\namint azt a Free Software Foundation el\u00f5\u00edrja; ak\u00e1r a licensz 2-es verzi\u00f3ja\n, ak\u00e1r b\u00e1rmelyik k\u00e9s\u00f5bbi v\u00e1ltozata.\n\nA program azzal a rem\u00e9nnyel lett kiadva, hogy j\u00f3l m\u00fbk\u00f6dik,\nazonban SEMMILYEN GARANCIA NEM J\u00c1R HOZZ\u00c1; bele\u00e9rtve a \nMERKANTILIT\u00c1SI vagy a GYAKORLATI c\u00e9l\u00fa felhaszn\u00e1l\u00e1st. L\u00e1sd a\nGNU General Public License szerz\u0151d\u00e9st a r\u00e9szletek\u00e9rt.\n\nA programmal egy\u00fctt egy p\u00e9ld\u00e1nyt kapt\u00e1l a GNU General Public License szerz\u00f5d\u00e9sb\u00f5l,\namennyiben nem, \u00edrj a Free Software\nFoundation sz\u00e1m\u00e1ra a k\u00f6v. c\u00edmre: Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Egy program az elmet\u00e9rk\u00e9pek olvas\u00e1s\u00e1hoz \u00e9s k\u00e9sz\u00edt\u00e9s\u00e9hez\nCopyright (C) 2000-2010 Joerg Mueller \nR\u00e9szletek\u00e9rt l\u00e1sd a COPYING f\u00e1jlt.\n\nEz a program egy ingyenes szoftver; a m\u00e1sodk\u00e9zbeli terjeszt\u00e9se/vagy\nm\u00f3dos\u00edt\u00e1sa a GNU General Public License alapj\u00e1n lehets\u00e9ges,\namint azt a Free Software Foundation el\u00f5\u00edrja; ak\u00e1r a licensz 2-es verzi\u00f3ja\n, ak\u00e1r b\u00e1rmelyik k\u00e9s\u00f5bbi v\u00e1ltozata.\n\nA program azzal a rem\u00e9nnyel lett kiadva, hogy j\u00f3l m\u00fbk\u00f6dik,\nazonban SEMMILYEN GARANCIA NEM J\u00c1R HOZZ\u00c1; bele\u00e9rtve a \nMERKANTILIT\u00c1SI vagy a GYAKORLATI c\u00e9l\u00fa felhaszn\u00e1l\u00e1st. L\u00e1sd a\nGNU General Public License szerz\u0151d\u00e9st a r\u00e9szletek\u00e9rt.\n\nA programmal egy\u00fctt egy p\u00e9ld\u00e1nyt kapt\u00e1l a GNU General Public License szerz\u00f5d\u00e9sb\u00f5l,\namennyiben nem, \u00edrj a Free Software\nFoundation sz\u00e1m\u00e1ra a k\u00f6v. c\u00edmre: Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = V\u00edzszintes locking_failed_by_open = A(z) $1 t\u00e9rk\u00e9p lez\u00e1r\u00e1sa sikertelen volt. Megnyitom csak-olvashat\u00f3k\u00e9nt. locking_failed_by_save_as = A(z) $1 t\u00e9rk\u00e9p lez\u00e1r\u00e1sa sikertelen volt. A Ment\u00e9s ez\u00e9rt le lett \u00e1ll\u00edtva. @@ -292,3 +292,4 @@ # fc, 28.11.2004: cannot_move_to_child=Egy elemet nem lehet a gyerekei k\u00f6z\u00e9 \u00e1thelyezni. +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_id.properties freemind-0.9.0RC7/Resources_id.properties --- freemind-0.9.0RC6/Resources_id.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_id.properties 2010-02-27 21:48:00.000000000 +0000 @@ -3,7 +3,7 @@ #! encoding:ISO-8859-1 # by Perry Harahap - permataharahap about =Tentang -about_text = FreeMind - program bebas untuk membuat Mind Map dan pengembangan pengetahuan.\nHak Cipta \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, et al.\nProgram ini adalah perangkat lunak bebas dan gratis yang dilindungi dengan Lisensi Publik Umum GNU.\n\nWeb: http://freemind.sourceforge.net/\nVersi: +about_text = FreeMind - program bebas untuk membuat Mind Map dan pengembangan pengetahuan.\nHak Cipta \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, et al.\nProgram ini adalah perangkat lunak bebas dan gratis yang dilindungi dengan Lisensi Publik Umum GNU.\n\nWeb: http://freemind.sourceforge.net/\nVersi: antialias_all =Antialias Semua antialias_edges =Antialias Tangkai antialias_none =Tanpa Antialias @@ -94,7 +94,7 @@ italicise_branch =Miringkan join_nodes =Gabung Node license =Lisensi -license_text = FreeMind - Program untuk membuat dan membaca MindMap\nHak Cipta (C) 2000-2008 Joerg Mueller \nBaca COPYING untuk info selengkapnya.\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Program untuk membuat dan membaca MindMap\nHak Cipta (C) 2000-2010 Joerg Mueller \nBaca COPYING untuk info selengkapnya.\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear =Garis Lurus load =Muat locking_failed_by_open =Penguncian peta $1 gagal. Dibuka untuk baca-saja. @@ -1125,3 +1125,4 @@ plugins/TimeManagement.xml_closeButton=Tutup # fc, 12.1.2006: don't translate this unless you create a translation of the documentation file (see german) browsemode_initial_map = ./doc/freemind_id.mm +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_it.properties freemind-0.9.0RC7/Resources_it.properties --- freemind-0.9.0RC6/Resources_it.properties 2009-09-13 20:56:35.000000000 +0100 +++ freemind-0.9.0RC7/Resources_it.properties 2010-02-27 21:44:28.000000000 +0000 @@ -1,12 +1,11 @@ -# Submitted: Valter Mura ( valtermura ) - 2009-01-21 00:13 -# updated by: Luca Fulchir ( luca_fulchir) - 2009-09-13 11:00 -about= Informazioni su FreeMind +#Submitted: Valter Mura ( valtermura ) - 2010-01-02 20:55 +about= Informazioni su add=&Aggiungi -about_text= FreeMind - Programma per la mappatura mentale gratuita e la costruzione della conoscenza\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, e altri.\nQuesto programma \u00e8 un software libero, rilasciato sotto licenza GNU General Public Licence.\n\nPagina web: http://freemind.sourceforge.net/\nVersione: +about_text= FreeMind - Programma per la mappatura mentale gratuita e la costruzione della conoscenza\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, e altri.\nQuesto programma \u00e8 un software libero, rilasciato sotto licenza GNU General Public Licence.\n\nPagina web: http://freemind.sourceforge.net/\nVersione: antialias_all= Antialias su tutti -antialias_edges= Antialias sugli archi -antialias_none= Nessun antialias +antialias_edges= Antialias sui bordi +antialias_none= No antialias apply=&Applica background= Sfondo bezier= Bezier @@ -28,10 +27,10 @@ decrease_node_font_size= Diminuisci carattere delete=&Elimina documentation= Documentazione -edge= Arco -edge_color= Colore arco... +edge= Bordo +edge_color= Colore bordo... edge_width_parent= Genitore -edge_width_thin= Fino +edge_width_thin= Fine edit= &Modifica edit_link_manually= Modifica manualmente il collegamento edit_long_node= Modifica nodo lungo @@ -49,7 +48,7 @@ find_next= Trova successivo fold= Contrai font= Carattere -fork= B&iforcazione +fork= &Biforcazione help= Aiuto html_export_based_on_headings= Esportazione a HTML - Basata su intestazioni html_export_no_folding= Esportazione a HTML - Nessun collasso @@ -94,14 +93,14 @@ italic= Corsivo italicise_branch= Trasforma in corsivo join_nodes= Collega nodi -license= Licenza -license_text= FreeMind - Un programma per creare e visualizzare mappe mentali\nCopyright (C) 2000-2008 Joerg Mueller \nVedere COPYING per dettagli\n\nQuesto \u00e8 un programma libero; \u00e8 possibile ridistribuire e/o\nmodifficarlo sotto i termini della GNU General Public License\ncome rilasciata dalla Free Software Foundation, o dalla versione 2\ndella licenza, o (a propria scelta) da qualsiasi altra versione successiva.\n\nQuesto programma \u00e8 distribuito nella speranza che sia utile,\nma SENZA ALCUNA GARANZIA; senza neanche la garanzia implicita della\nCOMMERCIABILIT\u00c0 o la IDONEIT\u00c0 AD UNO SCOPO PARTICOLARE. Vedere la\nGNU General Public License per ulteriori dettagli.\n\nSi dovrebbe aver ricevuto una copia della GNU General Public License\ninsieme con il programma; se cos\u00ec non fosse, scrivere alla Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license= Licenza di FreeMind +license_text= FreeMind - Un programma per creare e visualizzare mappe mentali\nCopyright \u00a9 2000-2010 Joerg Mueller e altri.\nVedere COPYING per dettagli\n\nQuesto \u00e8 un programma libero; \u00e8 possibile ridistribuire e/o\nmodifficarlo sotto i termini della GNU General Public License\ncome rilasciata dalla Free Software Foundation, o dalla versione 2\ndella licenza, o (a propria scelta) da qualsiasi altra versione successiva.\n\nQuesto programma \u00e8 distribuito nella speranza che sia utile,\nma SENZA ALCUNA GARANZIA; senza neanche la garanzia implicita della\nCOMMERCIABILIT\u00c0 o la IDONEIT\u00c0 AD UNO SCOPO PARTICOLARE. Vedere la\nGNU General Public License per ulteriori dettagli.\n\nSi dovrebbe aver ricevuto una copia della GNU General Public License\ninsieme con il programma; se cos\u00ec non fosse, scrivere alla Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear= Lineare load= &Carica locking_failed_by_open= Blocco della mappa $1 non riuscito. Apertura in sola lettura. locking_failed_by_save_as= Blocco della mappa $1 non riuscito. Azione "Salva come" annullata. locking_old_lock_removed= La mappa $1 era in uso dall'utente $2. Il blocco \u00e8 stato rimosso in quanto vecchio. -map_already_exists= La mappa esiste gi\u00e0. Vuoi sovrascriverla? +map_already_exists= La mappa esiste gi\u00e0. Vuoi sovrascriverlo? map_corrupted= Mappa corrotta. Vedere dettagli? map_locked_by_open= La mappa $1 \u00e8 stata gi\u00e0 modificata dall'utente $2. Apertura in sola lettura. map_locked_by_save_as= La mappa $1 \u00e8 stata modificata dall'utente $2. Azione "Salva come" annullata. @@ -159,11 +158,11 @@ scheme_evaluate= Valuta! select_favorites_folder= Seleziona la cartella dei Preferiti select_folder_for_importing= Seleziona la cartella da importare -set_image_by_filechooser= Immagine (seleziona file o collegamento)... -set_link_by_filechooser= Collegamento ipertestuale (seleziona file)... +set_image_by_filechooser= Immagine (selettore file o collegamento)... +set_link_by_filechooser= Collegamento ipertestuale (selettore file)... set_link_by_textfield= Collegamento ipertestuale (campo di testo)..... -sharp_bezier= Bezier marcato -sharp_linear= Lineare marcato +sharp_bezier= bezier marcato +sharp_linear= lineare marcato split= &Dividi style= Stile #toggle_bold_branch = Toggle Bold @@ -213,15 +212,15 @@ menu_insert= &Inserisci menu_attributes= &Attributi # Beware: "Edge Width " and "Edge Style " must end with space. -edge_style= Stile arco -edge_width= Larghezza arco +edge_style= Stile bordo +edge_width= Larghezza bordo menu_file_import= I&mporta menu_file_export= &Esporta edit_node= Modifica nodo # added at 5.6.2004, fc: node_background_color= Colore sfondo del &nodo... # added at 25.8.2004, fc: -choose_edge_color= Scegli colore dell'arco +choose_edge_color= Scegli colore del bordo # added at 27.8.2004, fc: underlined= Sottolineato font_size= dimensione carattere @@ -244,14 +243,14 @@ export_pdf_text= Portable Document Format (PDF) goto_link_node_action= Collegamento Vai a #fc, 14.11.2004: -undefined_error= Si \u00e8 verificato un errore inaspettato. Per favore riportare il bug. +undefined_error= Si \u00e8 verificato un errore inaspettato. Prova a creare un rapporto di errore. cannot_add_parent_to_root= Il nodo radice non pu\u00f2 essere aggiunto a un nuovo genitore. cannot_delete_root= Il nodo radice non pu\u00f2 essere eliminato o tagliato. cannot_add_parent_diff_parents= Tutti i nodi devono avere lo stesso genitore per usare questa funzione. no_format_copy_before_format_paste= Non puoi incollare un formato se non ne hai copiato uno. #fc, 15.11.2004: accessories/plugins/AutomaticLayout.properties_documentation= Regola la formattazione della mappa.
Il primo livello \u00e8 nero, il secondo blu, etc. -accessories/plugins/AutomaticLayout.properties_name= &Formattazione automatica +accessories/plugins/AutomaticLayout.properties_name= Formattazione &automatica accessories/plugins/BlinkingNodeHook.properties_documentation= Questo fa lampeggiare il nodo. Stai attento: non associarlo a molti nodi e ad altre formattazioni automatiche sullo stesso nodo accessories/plugins/BlinkingNodeHook.properties_name= Nodo lampeggiante accessories/plugins/CreationModificationPlugin.properties_documentation=Questa funzione tiene traccia dei tempi di modifica e creazione dei nodi. @@ -313,7 +312,7 @@ accessories/plugins/EncryptNode.properties_name= Inserisci nodo &cifrato... accessories/plugins/EncryptNode.properties_documentation= Inserisce un nuovo nodo i cui figli sono memorizzati cifrati. accessories/plugins/EncryptNode.properties_0= Scegli la password per il nodo cifrato -accessories/plugins/EncryptNode.properties_1= Le password non corrispondono. +accessories/plugins/EncryptNode.properties_1= Le password non corrispondono o sono troppo corte. accessories/plugins/EncryptNode.properties_2= Digita password: accessories/plugins/EncryptNode.properties_3= Ridigita password: accessories/plugins/EncryptNode.properties_4= Digita la tua password. @@ -449,7 +448,7 @@ attributes_popup_down=Gi\u00f9 attributes_show=Mostra attributes_show_all= Mostra tutti gli attributi -attributes_show_selected= Mostra gli attributi selezionati +attributes_show_selected= Mostra gli attributij selezionati attributes_hide_all= Nascondi tutti gli attributi attribute_top=Tutti gli attributi conosciuti per le mappe caricate attributes_skip_root=Salta nodo radice @@ -505,7 +504,7 @@ OptionPanel.language.tooltip=Questa \u00e8 la lingua che verr\u00e0 utilizzata nel programma. 'automatico' prova a caricare il modulo linguistico scelto dall'utente. OptionPanel.experimental_file_locking_on=Blocco file sperimentale OptionPanel.experimental_file_locking_on.tooltip= Funzionalit\u00e0 sperimentale -OptionPanel.draganddrop=Drag and Drop +OptionPanel.draganddrop=Drag & Drop OptionPanel.draganddrop.tooltip=Se il d&d \u00e8 abilitato. OptionPanel.userproperties=Propriet\u00e0 utente OptionPanel.patternsfile=File del modello @@ -534,8 +533,8 @@ OptionPanel.standardselectednoderectanglecolor.tooltip=Il colore della bolla che contrassegna i nodi selezionati. In notazione html (#RRGGBB in esadecimale) OptionPanel.standarddrawrectangleforselection=Mostra nodi selezionati in bolle OptionPanel.standarddrawrectangleforselection.tooltip=I nodi selezionati sono contrassegnati da una bolla intorno. -OptionPanel.standardedgecolor=Colore predefinito arco -OptionPanel.standardedgecolor.tooltip=Il colore predefinito degli archi in notazione Html +OptionPanel.standardedgecolor=Colore bordo predefinito +OptionPanel.standardedgecolor.tooltip=Il colore predefinito dei bordi in notazione Html OptionPanel.standardlinkcolor=Colore predefinito collegamento OptionPanel.standardlinkcolor.tooltip=Il colore predefinito dei collegamenti in notazione Html OptionPanel.standardbackgroundcolor=Colore predefinito sfondo @@ -551,15 +550,15 @@ OptionPanel.defaultfontsize=Dimensione carattere predefinito OptionPanel.max_node_width=Larghezza max nodo OptionPanel.max_node_width.tooltip=La larghezza predefinita massima del nodo in pixel -OptionPanel.standardedgestyle=Stile predefinito arco -OptionPanel.standardedgestyle.tooltip=Lo stile predefinito dell'arco. Sono supportati 'lineare' e 'bezier' +OptionPanel.standardedgestyle=Stile predefinito bordo +OptionPanel.standardedgestyle.tooltip=Lo stile predefinito del bordo. Sono supportati 'lineare' e 'bezier' OptionPanel.standardcloudestyle=Stile predefinito nuvola OptionPanel.standardcloudestyle.tooltip=<Lo stile predefinito delle nuvole. Al momento \u00e8 supportato solo 'bezier' OptionPanel.standardlinkestyle=Stile predefinito collegamento OptionPanel.standardlinkestyle.tooltip=Lo stile predefinito dei collegamenti. Al momento \u00e8 supportato solo 'bezier' OptionPanel.Appearance=Aspetto -OptionPanel.lookandfeel=Look and Feel -OptionPanel.lookandfeel.tooltip=Il tipo di Look and Feel da usare. Sono supportati 'metallo','windows','motivo' e 'gtk', mentre 'mac' \u00e8 disponibile solo su MacOS. Predefinito significa che viene utilizzato il tipo Look and Feel predefinito. Se desideri utilizzare un L&F personale, digita il nome della classe qui e assicurati che siano caricati i corrispondenti file jar. Se riscontri problemi con Look and Feel, allora scegli 'nulla' qui. Questo funziona per gli applet. +OptionPanel.lookandfeel=Look & Feel +OptionPanel.lookandfeel.tooltip=Il tipo Look&Feel da usare. Sono supportati 'metallo','windows','motivo' e 'gtk', mentre 'mac' \u00e8 disponibile solo su MacOS. Predefinito significa che viene utilizzato il tipo Look & Feel predefinito. Se desideri utilizzare un L&F personale, digita il nome della classe qui e assicurati che siano caricati i corrispondenti file jar. Se riscontri problemi con Look & Feel, allora scegli 'nulla' qui. Questo funziona per gli applet. OptionPanel.mapxsize=Dimensione-X-Mappa OptionPanel.mapxsize.tooltip=La dimensione iniziale di ogni mappa OptionPanel.mapysize=Dimensione-Y-Mappa @@ -633,7 +632,7 @@ OptionPanel.keystroke_export_branch=Esporta ramo OptionPanel.keystroke_node_color=Colore del nodo OptionPanel.keystroke_node_color_blend=Unisci colori nodo -OptionPanel.keystroke_edge_color=Colore arco +OptionPanel.keystroke_edge_color=Colore bordo OptionPanel.keystroke_find=Cerca OptionPanel.keystroke_find_next=Trova successivo OptionPanel.keystroke_apply_pattern_1=Applica modello 1 @@ -704,7 +703,7 @@ OptionPanel.separator.selection_colors=Colori per la selezione OptionPanel.separator.default_fonts=Caratteri predefiniti OptionPanel.separator.other_defaults=Altre opzioni predefinite -OptionPanel.separator.look_and_feel=Look and Feel +OptionPanel.separator.look_and_feel=Look & Feel OptionPanel.separator.anti_alias=Antialias OptionPanel.separator.initial_map_size=Dimensione iniziale mappa OptionPanel.separator.hyperlink_types=Tipi di collegamento @@ -730,7 +729,7 @@ # fc, 2.6.2005: OptionPanel.antialias.tooltip=Determina la qualit\u00e0 della mappa. Pi\u00f9 antialias necessita di pi\u00f9 tempo. OptionPanel.antialias=Antialias -OptionPanel.antialias_edges=Antialias sugli archi +OptionPanel.antialias_edges=Antialias sui bordi OptionPanel.antialias_all=Antialias su tutti OptionPanel.antialias_none=No Antialias OptionPanel.cs=Cs @@ -740,8 +739,8 @@ OptionPanel.ColorProperty.ResetColor=Azzera colore # fc, 16.6.2005: OptionPanel.keystroke_option_dialog=Preferenze -format_menu_edge_styles=Stile &arco -format_menu_edge_widths=&Larghezza arco +format_menu_edge_styles=Stile &bordo +format_menu_edge_widths=&Larghezza bordo # fc, 3.7.2005: accessories/plugins/ImportMindmanagerFiles.properties_name=Mappa MindManager X5... # fc, 5.7.2005: @@ -784,30 +783,30 @@ PatternDialog.EdgeWidth_4=4 PatternDialog.EdgeWidth_8=8 PatternDialog.EdgeWidth_parent=Come genitore -PatternDialog.EdgeWidth_thin=fino +PatternDialog.EdgeWidth_thin=fine PatternDialog.as_parent=Come genitore PatternDialog.bezier=bezier PatternDialog.bubble=Bolla PatternDialog.combined=Combinato -PatternDialog.edgecolor.tooltip=Propriet\u00e0 dell'arco al nodo genitore (\u00e8 applicato anche a tutti i nodi figli) -PatternDialog.edgecolor=Colore arco -PatternDialog.edgestyle.tooltip=Propriet\u00e0 dell'arco al nodo genitore (\u00e8 applicato anche a tutti i nodi figli) -PatternDialog.edgestyle=Stile arco -PatternDialog.edgewidth.tooltip=Propriet\u00e0 dell'arco al nodo genitore (\u00e8 applicato anche a tutti i nodi figli) -PatternDialog.edgewidth=Larghezza arco +PatternDialog.edgecolor.tooltip=Propriet\u00e0 del bordo al nodo genitore (\u00e8 applicato anche a tutti i nodi figli) +PatternDialog.edgecolor=Colore bordo +PatternDialog.edgestyle.tooltip=Propriet\u00e0 del bordo al nodo genitore (\u00e8 applicato anche a tutti i nodi figli) +PatternDialog.edgestyle=Stile bordo +PatternDialog.edgewidth.tooltip=Propriet\u00e0 del bordo al nodo genitore (\u00e8 applicato anche a tutti i nodi figli) +PatternDialog.edgewidth=Larghezza bordo PatternDialog.fork=Biforcazione PatternDialog.linear=lineare PatternDialog.nodebackgroundcolor=Colore sfondo del nodo PatternDialog.nodecolor=Colore del nodo PatternDialog.nodestyle=Stile del nodo PatternDialog.nodetext=Testo del nodo -PatternDialog.separator.EdgeControls=Arco +PatternDialog.separator.EdgeControls=Bordi PatternDialog.separator.NodeColors=Colori dei nodi PatternDialog.separator.NodeStyles=Stili dei nodi PatternDialog.sharp_bezier=bezier marcato PatternDialog.sharp_linear=lineare marcato PatternDialog.undefined_font=Carattere non definito -accessories/plugins/ApplyFormatPlugin.properties_documentation=Visualizza una finestra tramite cui si possono cambiare insieme gli attributi del nodo e dell'arco. +accessories/plugins/ApplyFormatPlugin.properties_documentation=Visualizza una finestra tramite cui si possono cambiare insieme gli attributi del nodo e del bordo. accessories/plugins/ApplyFormatPlugin.properties_name=&Cambia formato... accessories/plugins/ApplyFormatPlugin.dialog.title=Cambia il formato dei nodi @@ -881,15 +880,15 @@ # fc, 30.7.06: FreeMind.progress.gettingPreferenceDirectories=Recupero directory delle preferenze... FreeMind.progress.gettingPreferences=Recupero preferenze in corso... -FreeMind.progress.updateLookAndFeel=Aggiorna Look and Feel... +FreeMind.progress.updateLookAndFeel=Aggiorna Look & Feel... FreeMind.progress.createController=Crea Controllore... FreeMind.progress.settingPreferences=Imposta preferenze... -FreeMind.progress.propageteLookAndFeel=Propaga Look and Feel... +FreeMind.progress.propageteLookAndFeel=Propaga Look & Feel... FreeMind.progress.createInitialMode=Crea modalit\u00e0 iniziale... FreeMind.progress.startCreateController=Avvia creazione Controllore... FreeMind.progress.loadMaps=Carica mappe... FreeMind.progress.buildScreen=Costruisci schermo... -FreeMind.progress.endStartup=Avvio terminato. +FreeMind.progress.endStartup=Termina avvio. OptionPanel.tr=Tr OptionPanel.level=Livello # fc, 13.8.06: @@ -945,7 +944,7 @@ # fc, 10.1.07: plugins/TimeManagement.xml_WindowTitle_All_Nodes=Cerca e sostituisci plugins/ScriptEditor.xml_documentation=Abilita a scrivere script pi\u00f9 estesi con FreeMind. -plugins/ScriptEditor.xml_name=&Editor degli script... +plugins/ScriptEditor.xml_name=Editor degli s&cript... # fc, 24.1.07: plugins/ScriptEditor/window.title=Editor degli script plugins/ScriptEditor.menu_actions=&Azioni @@ -988,23 +987,23 @@ simplyhtml.fontBoldLabel=Grassetto simplyhtml.fontBoldImage=resources/bold.gif simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif -simplyhtml.fontBoldTip=grassetto on/off +simplyhtml.fontBoldTip=grassetto s\u00ec/no simplyhtml.fontColorTip=Colore del testo simplyhtml.fontColorLabel=Colore del testo simplyhtml.fontColorImage=resources/fontColor.gif simplyhtml.fontItalicLabel=Corsivo simplyhtml.fontItalicImage=resources/italic.gif simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif -simplyhtml.fontItalicTip=corsivo on/off +simplyhtml.fontItalicTip=corsivo s\u00ec/no simplyhtml.fontUnderlineLabel=Sottolineato simplyhtml.fontUnderlineImage=resources/uline.gif -simplyhtml.fontUnderlineTip=sottolineato on/off +simplyhtml.fontUnderlineTip=sottolineato s\u00ec/no simplyhtml.formatTableLabel=Tabella... simplyhtml.formatTableTip=Formatta tabella -simplyhtml.toggleBulletsLabel=Elenco puntato on/off -simplyhtml.toggleBulletsTip=elenco puntato on/off -simplyhtml.toggleNumbersLabel=Elenco numerato on/off -simplyhtml.toggleNumbersTip=elenco numerato on/off +simplyhtml.toggleBulletsLabel=Elenco puntato s\u00ec/no +simplyhtml.toggleBulletsTip=elenco puntato s\u00ec/no +simplyhtml.toggleNumbersLabel=Elenco numerato s\u00ec/no +simplyhtml.toggleNumbersTip=elenco numerato s\u00ec/no simplyhtml.formatListLabel=Elenco... simplyhtml.formatListTip=cambia il formato elenco simplyhtml.formatParaLabel=Paragrafo... @@ -1080,7 +1079,7 @@ simplyhtml.tableWidthLabel=Larghezza: simplyhtml.tableBgColLabel=Colore di sfondo: simplyhtml.cellMarginTabLabel=Margine -simplyhtml.cellBorderTabLabel=Archi +simplyhtml.cellBorderTabLabel=Bordi simplyhtml.borderWidthLabel=Larghezza simplyhtml.borderColorLabel=Colore: simplyhtml.thisCellRangeLabel=questa cella @@ -1216,9 +1215,9 @@ OptionPanel.execute_scripts_without_asking.tooltip=Gli script di FreeMind sono in grado, principalmente, di eseguire qualsiasi azione sul computer.
Non dovresti eseguire script se non sei sicuro della loro affidabilit\u00e0. #fc, 13.9.07: -PatternToString.EdgeStyle=Stile arco -PatternToString.EdgeColor=Colore arco -PatternToString.EdgeWidth=Larghezza arco +PatternToString.EdgeStyle=Stile bordo +PatternToString.EdgeColor=Colore bordo +PatternToString.EdgeWidth=Larghezza bordo PatternToString.FontBold=Grassetto PatternToString.FontItalic=Corsivo PatternToString.FontName=Nome carattere @@ -1419,3 +1418,9 @@ # new, fc, 20.12.2008 OptionPanel.ro=Ro + +#new, fc, 6.12.2009: +really_convert_to_current_version2=La mappa mentale che stai tentando di aprire \u00e8 stata creata con una versione precedente di FreeMind e memorizzata in un formato vecchio.
FreeMind sta per convertire questa mappa mentale nel suo formato attuale.
La mappa mentale non potr\u00e0 pi\u00f9 essere aperta dalle versioni precedenti di FreeMind, una volta convertita e salvata in questa versione.
Convertire e aprire la mappa mentale? + + +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_ja.properties freemind-0.9.0RC7/Resources_ja.properties --- freemind-0.9.0RC6/Resources_ja.properties 2009-08-30 12:03:58.000000000 +0100 +++ freemind-0.9.0RC7/Resources_ja.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,10 +1,13 @@ #! #! created/edited by Popeye version 0.54 (popeye.sourceforge.net) #! encoding:ISO-8859-1 -# Japanese Translation for FreeMind 0.8.0 by Kohichi Aoki ( http://code.google.com/p/freemind-ja-localization/ ) -# Updated for FreeMind 0.9.0 by Tomohiro Sembongi - tomophy ( http://code.google.com/p/freemind-ja-localization/ ) -# Reviewed by Masakata Yamaguchi - masataka55 ( http://code.google.com/p/freemind-ja-localization/ ) +# Japanese Translation for FreeMind 0.8.0 by Kohichi Aoki +# Updated for FreeMind 0.9.0 by Tomohiro Sembongi - tomophy +# Reviewed by Masakata Yamaguchi - masataka55 # +# v1.8 - Corrected mistranslation. +# v1.7 - Corrected mistranslation. +# v1.6 - Added translation for the new key # v1.5 - Corrected mistranslation and fixed acceleration key problems. # v1.4 - Corrected mistranslation. # v1.3 - Corrected mistranslation. @@ -15,7 +18,7 @@ about = FreeMind\u306b\u3064\u3044\u3066 add=\u8ffd\u52a0(&A) -about_text = FreeMind - \u7121\u6599\u306e\u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d4\u30f3\u30b0\u3068\u30ca\u30ec\u30c3\u30b8\u30d3\u30eb\u30c7\u30a3\u30f3\u30b0\u306e\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2 \nCopyright \u00a9 2000-2009 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev, and others.\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u3001GNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8\u306b\u57fa\u3065\u3044\u3066\u4f7f\u7528\u8a31\u8afe\u3055\u308c\u305f\u7121\u6599\u306e\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3067\u3059\u3002\n\nHome: http://freemind.sourceforge.net/\nVersion: +about_text = FreeMind - \u7121\u6599\u306e\u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d4\u30f3\u30b0\u3068\u30ca\u30ec\u30c3\u30b8\u30d3\u30eb\u30c7\u30a3\u30f3\u30b0\u306e\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2 \nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev, and others.\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u3001GNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8\u306b\u57fa\u3065\u3044\u3066\u4f7f\u7528\u8a31\u8afe\u3055\u308c\u305f\u7121\u6599\u306e\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3067\u3059\u3002\n\nHome: http://freemind.sourceforge.net/\nVersion: antialias_all = \u3059\u3079\u3066\u306b\u30a2\u30f3\u30c1\u30a8\u30a4\u30ea\u30a2\u30b9 antialias_edges = \u7dda\u306e\u30a2\u30f3\u30c1\u30a8\u30a4\u30ea\u30a2\u30b9 antialias_none = \u30a2\u30f3\u30c1\u30a8\u30a4\u30ea\u30a2\u30b9\u306a\u3057 @@ -109,7 +112,7 @@ italicise_branch = \u659c\u4f53\u5316 join_nodes = \u30ce\u30fc\u30c9\u3092\u7d71\u5408 license = \u30e9\u30a4\u30bb\u30f3\u30b9 -license_text = FreeMind - \u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d7\u4f5c\u6210\u30fb\u8868\u793a\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\nCopyright (C) 2000-2008 Joerg Mueller \n\u8a73\u3057\u304f\u306f COPYING \u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002\n\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u3067\u3059\u3002\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u8ca1\u56e3\n \u767a\u884c\u306eGNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8(GPL)\n\u30d0\u30fc\u30b8\u30e7\u30f32\u307e\u305f\u306f\u305d\u308c\u4ee5\u964d\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\n\u898f\u5b9a\u306b\u57fa\u3065\u304d\u3001\u518d\u9812\u5e03\u3001\u6539\u5909\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u3001\u307f\u306a\u3055\u3093\u306e\u304a\u5f79\u306b\u7acb\u3064\u3088\u3046\u306b\u9812\u5e03\u3059\u308b\u3082\u306e\u3067\u3001\n\u5546\u54c1\u9069\u5408\u6027\u307e\u305f\u306f\u7279\u5b9a\u76ee\u7684\u9069\u5408\u6027\u306e\u4fdd\u8a3c\u3092\u542b\u3081\u3066\u3001\n\u3044\u304b\u306a\u308b\u4fdd\u8a3c\u3082\u514d\u8cac\u3055\u308c\u307e\u3059\u3002\u8a73\u3057\u304f\u306f\u3001\nGNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8(GPL)\u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002\n\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3068\u3082\u306b\u3001GNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8(GPL)\u306e\u8907\u88fd\u3092\n\u304a\u6301\u3061\u304f\u3060\u3055\u3044\u3002\u304a\u6301\u3061\u3067\u306a\u3044\u5834\u5408\u306f\u3001\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u8ca1\u56e3\u307e\u3067\u3054\u9023\u7d61\u3092\u3002\n59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - \u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d7\u4f5c\u6210\u30fb\u8868\u793a\u7528\u30d7\u30ed\u30b0\u30e9\u30e0\nCopyright (C) 2000-2010 Joerg Mueller \n\u8a73\u3057\u304f\u306f COPYING \u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002\n\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u3067\u3059\u3002\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u8ca1\u56e3\n \u767a\u884c\u306eGNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8(GPL)\n\u30d0\u30fc\u30b8\u30e7\u30f32\u307e\u305f\u306f\u305d\u308c\u4ee5\u964d\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\n\u898f\u5b9a\u306b\u57fa\u3065\u304d\u3001\u518d\u9812\u5e03\u3001\u6539\u5909\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\n\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u306f\u3001\u307f\u306a\u3055\u3093\u306e\u304a\u5f79\u306b\u7acb\u3064\u3088\u3046\u306b\u9812\u5e03\u3059\u308b\u3082\u306e\u3067\u3001\n\u5546\u54c1\u9069\u5408\u6027\u307e\u305f\u306f\u7279\u5b9a\u76ee\u7684\u9069\u5408\u6027\u306e\u4fdd\u8a3c\u3092\u542b\u3081\u3066\u3001\n\u3044\u304b\u306a\u308b\u4fdd\u8a3c\u3082\u514d\u8cac\u3055\u308c\u307e\u3059\u3002\u8a73\u3057\u304f\u306f\u3001\nGNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8(GPL)\u3092\u3054\u53c2\u7167\u304f\u3060\u3055\u3044\u3002\n\n\u3053\u306e\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3068\u3082\u306b\u3001GNU \u4e00\u822c\u516c\u8846\u5229\u7528\u8a31\u8afe\u5951\u7d04\u66f8(GPL)\u306e\u8907\u88fd\u3092\n\u304a\u6301\u3061\u304f\u3060\u3055\u3044\u3002\u304a\u6301\u3061\u3067\u306a\u3044\u5834\u5408\u306f\u3001\u30d5\u30ea\u30fc\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u8ca1\u56e3\u307e\u3067\u3054\u9023\u7d61\u3092\u3002\n59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = \u76f4\u7dda load = \u8aad\u307f\u8fbc\u307f(&L) locking_failed_by_open = \u30de\u30c3\u30d7 $1 \u306e\u30ed\u30c3\u30af\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u8aad\u8fbc\u5c02\u7528\u3067\u958b\u304d\u307e\u3059\u3002 @@ -161,7 +164,7 @@ quit = \u7d42\u4e86 read_only = \u8aad\u8fbc\u5c02\u7528 remove_node = \u30ce\u30fc\u30c9\u3092\u524a\u9664 -rename=\u540d\u524d\u3092\u5909\u3048\u308b(&R) +rename=\u4fee\u6b63(&R) repair_link = \u30ea\u30f3\u30af\u3092\u4fee\u5fa9 repair_link_question = \u30ea\u30f3\u30af\u3055\u308c\u305f\u30de\u30c3\u30d7\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u30ea\u30f3\u30af\u3092\u624b\u52d5\u3067\u4fee\u6b63\u3057\u307e\u3059\u304b\uff1f replace=\u7f6e\u63db @@ -181,10 +184,10 @@ split = \u5206\u5272(&S) style = \u30b9\u30bf\u30a4\u30eb toggle_children_folded = \u5b50\u30ce\u30fc\u30c9\u306e\u6298\u308a\u7573\u307f/\u5c55\u958b -toggle_folded = \u6298\u308a\u7573\u3080 +toggle_folded = \u6298\u308a\u7573\u307f/\u5c55\u958b underline = \u4e0b\u7dda unfold = \u5c55\u958b -url_error = \u3053\u306eURL\u306f\u30a8\u30e9\u30fc\u3067\u3059 +url_error = \u3053\u306eURL\u306b\u306f\u8aa4\u308a\u304c\u3042\u308a\u307e\u3059! url_load_error = \u30de\u30c3\u30d7\u3092\u8aad\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002URL: width = \u5e45 yes = \u306f\u3044 @@ -321,30 +324,30 @@ # fc, 28.11.2004: cannot_move_to_child = \u30ce\u30fc\u30c9\u3092\u305d\u306e\u5b50\u30ce\u30fc\u30c9\u306b\u79fb\u52d5\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002 # fc, 14.12.2004: -accessories/plugins/EnterPassword.properties_name = \u6697\u53f7\u5316\u30ce\u30fc\u30c9\u306e\u72b6\u614b\u3092\u5207\u308a\u66ff\u3048(&T) -accessories/plugins/EnterPassword.properties_documentation= \u6697\u53f7\u5316\u30ce\u30fc\u30c9\u306e\u72b6\u614b\u3092\u5207\u308a\u66ff\u3048\u307e\u3059\u3002 -accessories/plugins/EncryptNode.properties_name = \u6697\u53f7\u5316\u30ce\u30fc\u30c9\u3092\u633f\u5165(&E) -accessories/plugins/EncryptNode.properties_documentation = \u65b0\u898f\u30ce\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059\u3002\u3053\u306e\u30ce\u30fc\u30c9\u306e\u5b50\u30ce\u30fc\u30c9\u306f\u6697\u53f7\u5316\u3055\u308c\u307e\u3059\u3002 -accessories/plugins/EncryptNode.properties_0 = \u6697\u53f7\u5316\u30ce\u30fc\u30c9\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b +accessories/plugins/EnterPassword.properties_name = \u6697\u8a3c\u30ce\u30fc\u30c9\u306e\u8868\u793a/\u975e\u8868\u793a(&T) +accessories/plugins/EnterPassword.properties_documentation= \u6697\u8a3c\u30ce\u30fc\u30c9\u306e\u8868\u793a/\u975e\u8868\u793a\u3092\u5207\u308a\u66ff\u3048\u307e\u3059\u3002 +accessories/plugins/EncryptNode.properties_name =\u6697\u8a3c\u30ce\u30fc\u30c9\u3092\u633f\u5165(&E) +accessories/plugins/EncryptNode.properties_documentation = \u5b50\u30ce\u30fc\u30c9\u306e\u8868\u793a\u306b\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u5fc5\u8981\u306a\u65b0\u898f\u30ce\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059\u3002 +accessories/plugins/EncryptNode.properties_0 = \u6697\u8a3c\u30ce\u30fc\u30c9\u7528\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u8a2d\u5b9a accessories/plugins/EncryptNode.properties_1 = \u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u540c\u3058\u3067\u306a\u3044\u304b\u77ed\u3059\u304e\u307e\u3059\u3002 accessories/plugins/EncryptNode.properties_2 = \u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b: -accessories/plugins/EncryptNode.properties_3 = \u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b: -accessories/plugins/EncryptNode.properties_4 = \u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b -accessories/plugins/EncryptNode.properties_5 = \u6ce8\u610f\uff1a\u79d8\u533f\u6027\u306f\u3001\u307b\u307c\u5b8c\u5168\u306b\u30d1\u30b9\u30ef\u30fc\u30c9\u306e
\u54c1\u8cea\u3067\u6c7a\u307e\u308a\u307e\u3059\u3002 +accessories/plugins/EncryptNode.properties_3 = \u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u518d\u5165\u529b: +accessories/plugins/EncryptNode.properties_4 = \u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +accessories/plugins/EncryptNode.properties_5 = \u6ce8\u610f\uff1a\u6697\u8a3c\u5f37\u5ea6\u306f\u3001\u307b\u307c\u5b8c\u5168\u306b
\u3042\u306a\u305f\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u54c1\u8cea\u3067\u6c7a\u307e\u308a\u307e\u3059\u3002 accessories/plugins/EncryptNode.properties_6 = OK accessories/plugins/EncryptNode.properties_7 = \u30ad\u30e3\u30f3\u30bb\u30eb accessories/plugins/EncryptNode.properties_wrong_password = \u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002 -accessories/plugins/NewEncryptedMap.properties_documentation = \u65b0\u898f\u306e\u6697\u53f7\u5316\u30de\u30c3\u30d7\u3092\u4f5c\u6210 -accessories/plugins/NewEncryptedMap.properties_name = \u6697\u53f7\u5316\u30de\u30c3\u30d7\u3092\u4f5c\u6210... -accessories/plugins/EncryptNode.properties_select_me = \u3053\u3053\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044 -accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = \u6697\u53f7\u5316\u30ce\u30fc\u30c9\u306e\u8868\u793a/\u975e\u8868\u793a\u306e\u5207\u308a\u66ff\u3048\u306e\u307f\u53ef\u80fd\u3067\u3059\u3002\u3053\u306e\u3088\u3046\u306a\u30ce\u30fc\u30c9\u3092\u633f\u5165\u3059\u308b\u306b\u306f\u30c4\u30fc\u30eb\u30e1\u30cb\u30e5\u30fc\u3092\u304a\u4f7f\u3044\u304f\u3060\u3055\u3044\u3002 +accessories/plugins/NewEncryptedMap.properties_documentation = \u65b0\u3057\u3044\u6697\u8a3c\u30de\u30c3\u30d7\u3092\u4f5c\u6210 +accessories/plugins/NewEncryptedMap.properties_name = \u6697\u8a3c\u30de\u30c3\u30d7\u3092\u4f5c\u6210... +accessories/plugins/EncryptNode.properties_select_me = \u3053\u3053\u3092\u9078\u629e\u3057\u3066\u7d99\u7d9a! +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = \u6697\u8a3c\u30ce\u30fc\u30c9\u306e\u8868\u793a/\u975e\u8868\u793a\u306e\u5207\u308a\u66ff\u3048\u306e\u307f\u53ef\u80fd\u3067\u3059\u3002\u6697\u8a3c\u30ce\u30fc\u30c9\u3092\u633f\u5165\u3059\u308b\u306b\u306f\u30c4\u30fc\u30eb\u30e1\u30cb\u30e5\u30fc\u3092\u304a\u4f7f\u3044\u304f\u3060\u3055\u3044\u3002 # fc, 2.2.05: selection_method_delayed=\u5c11\u3057\u9045\u308c\u3066\u81ea\u52d5\u9078\u629e # fc, 4.2.05: -plugins/TimeManagement.xml_documentation= \u30ab\u30ec\u30f3\u30c0\u30fc\u8868\u793a\u30e2\u30b8\u30e5\u30fc\u30eb by Kai Toedter. +plugins/TimeManagement.xml_documentation= \u30ab\u30ec\u30f3\u30c0\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb(by Kai Toedter)\u3092\u8868\u793a\u3057\u307e\u3059\u3002 plugins/TimeManagement.xml_name= \u30ab\u30ec\u30f3\u30c0\u30fc\u3092\u958b\u304f... -plugins/TimeManagement.xml_appendButton= \u30ce\u30fc\u30c9\u306b\u65e5\u4ed8\u3092\u8ffd\u52a0 -plugins/TimeManagement.xml_reminderButton= \u30ea\u30de\u30a4\u30f3\u30c9\u3092\u8ffd\u52a0 +plugins/TimeManagement.xml_appendButton= \u9078\u629e\u30ce\u30fc\u30c9\u306b\u65e5\u4ed8\u3092\u8ffd\u52a0 +plugins/TimeManagement.xml_reminderButton= \u3053\u306e\u65e5\u306b\u30ea\u30de\u30a4\u30f3\u30c9 plugins/TimeManagement.xml_cancelButton=\u30ad\u30e3\u30f3\u30bb\u30eb plugins/TimeManagementReminder.xml_documentation=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u518d\u5b9f\u884c\u30bf\u30b9\u30af\u7528\u5185\u90e8\u30d5\u30c3\u30af plugins/TimeManagementReminder.xml_name=\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u518d\u5b9f\u884c\u30bf\u30b9\u30af\u7528\u5185\u90e8\u30d5\u30c3\u30af @@ -361,7 +364,7 @@ plugins/latex/LatexNodeHook.editorTitle = LaTeX\u6570\u5f0f\u30a8\u30c7\u30a3\u30bf(\u9589\u3058\u3066\u78ba\u5b9a) # fc, 18.2.2005: accessories/plugins/HierarchicalIcons.properties_documentation=\u3082\u3057\u5b50\u30ce\u30fc\u30c9\u306b\u30a2\u30a4\u30b3\u30f3\u304c\u3042\u308c\u3070\u3001\u89aa\u306b\u3082\u305d\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u8868\u793a\u3057\u307e\u3059\u3002 -accessories/plugins/HierarchicalIcons.properties_name=\u30a2\u30a4\u30b3\u30f3\u3092\u968e\u5c64\u7684\u306b\u8868\u793a(&H) +accessories/plugins/HierarchicalIcons.properties_name=\u5b50\u30ce\u30fc\u30c9\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u89aa\u306b\u3082\u8868\u793a(&H) # fc, 1.3.2005: icon_full-1 = [\u512a\u5148\u5ea6 1] icon_full-2 = [\u512a\u5148\u5ea6 2] @@ -427,8 +430,8 @@ attributes_all=\u5168\u3066\u306e\u5c5e\u6027 attributes_attribute=\u5c5e\u6027 attributes_close=\u9589\u3058\u308b -attribute_delete=\u5168\u3066\u306e\u6570\u5024\u3092\u524a\u9664 -attribute_delete_value=\u3053\u306e\u6570\u5024\u3092\u524a\u9664 +attribute_delete=\u5168\u3066\u306e\u5c5e\u6027\u5024\u3092\u524a\u9664 +attribute_delete_value=\u3053\u306e\u5c5e\u6027\u5024\u3092\u524a\u9664 attributes_edit=\u7de8\u96c6 attributes_edit_in_place=\u5c5e\u6027\u306e\u7de8\u96c6 attributes_edit_tooltip=\u30bb\u30c3\u30c8\u306e\u7de8\u96c6 @@ -438,19 +441,19 @@ attributes_import=\u30a4\u30f3\u30dd\u30fc\u30c8(&I) attributes_import_tooltip=\u5225\u306e\u8aad\u307f\u8fbc\u307f\u6e08\u307f\u30de\u30c3\u30d7\u304b\u3089\u5c5e\u6027\u3092\u30a4\u30f3\u30dd\u30fc\u30c8 attributes_assign_dialog=\u5c5e\u6027\u306e\u5272\u308a\u5f53\u3066(&G)... -attributes_visible=\u9078\u629e\u3057\u305f\u5c5e\u6027\u3092\u8868\u793a -attributes_visible_tooltip=\u9078\u629e\u3057\u305f\u5c5e\u6027\u3092\u8868\u793a +attributes_visible=\u8868\u793a\u5bfe\u8c61\u306e\u9078\u629e +attributes_visible_tooltip=\u8868\u793a\u5bfe\u8c61\u3092\u9078\u629e attributes_refresh=\u66f4\u65b0 attribute_replace=\u4ee5\u4e0b\u3067\u7f6e\u63db\uff1a attributes_restriction=\u5236\u9650\u30bb\u30c3\u30c8 -attributes_restricted_attributes_tooltip=\u5c5e\u6027\u30bb\u30c3\u30c8\u3092\u5236\u9650\u3057\u307e\u3059\u3002 -attributes_restricted_values_tooltip=\u73fe\u5728\u306e\u5c5e\u6027\u5024\u306e\u30bb\u30c3\u30c8\u3092\u5236\u9650\u3057\u307e\u3059\u3002 +attributes_restricted_attributes_tooltip=\u5c5e\u6027\u30bb\u30c3\u30c8\u3092\u5236\u9650 +attributes_restricted_values_tooltip=\u73fe\u5728\u306e\u5c5e\u6027\u5024\u306e\u30bb\u30c3\u30c8\u3092\u5236\u9650 attributes_select_all=\u5168\u3066 attributes_select_all_tooltip=\u5168\u3066\u9078\u629e / \u5168\u3066\u9078\u629e\u89e3\u9664 attributes_for_selected=\u9078\u629e\u4e2d\u306e\u30ce\u30fc\u30c9 attributes_for_visible=\u5168\u3066\u306e\u53ef\u8996\u30ce\u30fc\u30c9 attributes_deselect_all=\u306a\u3057 -attribute_list_box_label_text=\u65e2\u5b58\u306e\u5024 +attribute_list_box_label_text=\u65e2\u5b58\u306e\u5c5e\u6027\u5024 attributes_popup_edit=\u7de8\u96c6 attributes_popup_optimal_width=\u6700\u9069\u5e45 attributes_popup_hide=\u96a0\u3059 @@ -478,7 +481,7 @@ OptionPanel.hu=\u30cf\u30f3\u30ac\u30ea\u30fc\u8a9e OptionPanel.it=\u30a4\u30bf\u30ea\u30a2\u8a9e OptionPanel.ja=\u65e5\u672c\u8a9e -OptionPanel.kr=\u97d3\u56fd\u8a9e +OptionPanel.ko=\u97d3\u56fd\u8a9e OptionPanel.nl=\u30aa\u30e9\u30f3\u30c0\u8a9e OptionPanel.pl=\u30dd\u30fc\u30e9\u30f3\u30c9\u8a9e OptionPanel.pt_BR=\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e/\u30d6\u30e9\u30b8\u30eb @@ -917,8 +920,8 @@ # fc, 6.9.06: error_applying_template=XSL\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u9069\u7528\u3067\u30a8\u30e9\u30fc\u304c\u8d77\u304d\u307e\u3057\u305f\u3002 # fc, 11.10.06: -accessories/plugins/NodeNote_jumpto.properties_documentation=\u5206\u5272\u7dda\u3068\u30ce\u30fc\u30c8\u30a6\u30a4\u30f3\u30c9\u30a6\u306e\u5207\u308a\u66ff\u3048 -accessories/plugins/NodeNote_jumpto.properties_name=\u30ce\u30fc\u30c8\u7de8\u96c6\u5207\u308a\u66ff\u3048 +accessories/plugins/NodeNote_jumpto.properties_documentation=\u30ce\u30fc\u30c8\u753b\u9762\u304b\u3089\u306e\u30ab\u30fc\u30bd\u30eb\u5fdc\u7b54\u306b\u5207\u308a\u66ff\u3048\u307e\u3059 +accessories/plugins/NodeNote_jumpto.properties_name=\u30ce\u30fc\u30c8\u7de8\u96c6\u306b\u5207\u308a\u66ff\u3048 #accessories/plugins/NodeNote_jumpfrom.properties_documentation=Switch back from notes to mindmap #accessories/plugins/NodeNote_jumpfrom.properties_name=Leave note # fc, 12.10.06 @@ -926,8 +929,8 @@ OptionPanel.max_tooltip_width.tooltip=\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30c4\u30fc\u30eb\u30c1\u30c3\u30d7\u5e45 (\u30d4\u30af\u30bb\u30eb) # fc, 13.10.06: renamed: plugins/NodeList.xml_documentation=\u3059\u3079\u3066\u306e\u30ce\u30fc\u30c9\u3092\u30d5\u30a3\u30eb\u30bf\u8a2d\u5b9a\u3067\u691c\u7d22\u53ef\u80fd\u306a\u30ea\u30b9\u30c8\u3068\u3057\u3066\u8868\u793a\u3057\u307e\u3059\u3002 -OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=\u30ce\u30fc\u30c8\u7de8\u96c6\u5207\u308a\u66ff\u3048 -OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=\u30ce\u30fc\u30c8\u30a6\u30a4\u30f3\u30c9\u30a6\u306e\u8868\u793a/\u975e\u8868\u793a +OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=\u30ce\u30fc\u30c8\u7de8\u96c6\u306b\u5207\u308a\u66ff\u3048 +OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=\u30ce\u30fc\u30c8\u753b\u9762\u306e\u8868\u793a/\u975e\u8868\u793a OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=\u30ce\u30fc\u30c8\u3092\u6d88\u53bb # aki 19.10.06: (TJI support) accessories/plugins/ExportWithXSLT_Applet.properties_tji=Task Juggler Include \u30d5\u30a1\u30a4\u30eb @@ -1007,8 +1010,8 @@ simplyhtml.toggleBulletsTip=\u7b87\u6761\u66f8\u304d on/off simplyhtml.toggleNumbersLabel=\u756a\u53f7\u30ea\u30b9\u30c8 on/off simplyhtml.toggleNumbersTip=\u756a\u53f7\u30ea\u30b9\u30c8on/off -simplyhtml.formatListLabel=\u30ea\u30b9\u30c8... -simplyhtml.formatListTip=\u30ea\u30b9\u30c8\u306e\u66f8\u5f0f\u5909\u66f4 +simplyhtml.formatListLabel=\u7b87\u6761\u66f8\u304d... +simplyhtml.formatListTip=\u7b87\u6761\u66f8\u304d\u306e\u66f8\u5f0f\u5909\u66f4 simplyhtml.formatParaLabel=\u6bb5\u843d... simplyhtml.formatParaTip=\u6bb5\u843d\u66f8\u5f0f\u306e\u5909\u66f4 simplyhtml.paraAlignLeftLabel=\u5de6\u63c3\u3048 @@ -1103,11 +1106,11 @@ simplyhtml.cTagNameHead5=\u898b\u51fa\u30575 simplyhtml.cTagNameHead6=\u898b\u51fa\u30576 simplyhtml.cTagNameLink=\u30ea\u30f3\u30af -simplyhtml.cTagNameUL=\u7b87\u6761\u66f8\u304d\u30ea\u30b9\u30c8 -simplyhtml.cTagNameOL=\u756a\u53f7\u3064\u304d\u30ea\u30b9\u30c8 +simplyhtml.cTagNameUL=\u7b87\u6761\u66f8\u304d +simplyhtml.cTagNameOL=\u756a\u53f7\u30ea\u30b9\u30c8 # List dialog -simplyhtml.listDialogTitle=\u66f8\u5f0f\u30ea\u30b9\u30c8 +simplyhtml.listDialogTitle=\u7b87\u6761\u66f8\u304d\u306e\u66f8\u5f0f\u8a2d\u5b9a simplyhtml.listTypeLabel=\u30bf\u30a4\u30d7: simplyhtml.listPositionLabel=\u4f4d\u7f6e: simplyhtml.listIndentTitle=\u30a4\u30f3\u30c7\u30f3\u30c8: @@ -1119,7 +1122,7 @@ simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeDisc=\u25cf simplyhtml.listTypeCircle=\u25cb -simplyhtml.listTypeSquare=\u25a1 +simplyhtml.listTypeSquare=\u25a0 simplyhtml.listPosInside=\u5185\u5074 simplyhtml.listPosOutside=\u5916\u5074 @@ -1231,16 +1234,16 @@ PatternDialog.script.tooltip=\u30b9\u30af\u30ea\u30d7\u30c8\u3092Groovy\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306b OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=\u64cd\u4f5c\u30b9\u30bf\u30a4\u30eb toggle_menubar = \u30e1\u30cb\u30e5\u30fc\u30d0\u30fc -toggle_toolbar = \u30c4\u30fc\u30eb\u30d0\u30fc\u8868\u793a\u306e\u5207\u66ff\u3048(&T) -toggle_left_toolbar = \u5de6\u30c4\u30fc\u30eb\u30d0\u30fc\u8868\u793a\u306e\u5207\u66ff\u3048(&S) -accessories/plugins/NodeNote_hide_show.properties_name=\u30ce\u30fc\u30c8\u30a6\u30a4\u30f3\u30c9\u30a6 +toggle_toolbar = \u30c4\u30fc\u30eb\u30d0\u30fc\u3092\u8868\u793a(&T) +toggle_left_toolbar = \u5de6\u30c4\u30fc\u30eb\u30d0\u30fc\u3092\u8868\u793a(&S) +accessories/plugins/NodeNote_hide_show.properties_name=\u30ce\u30fc\u30c8\u753b\u9762\u3092\u8868\u793a selection_as_rectangle=\u9078\u629e\u30ce\u30fc\u30c9\u3092\u56f2\u3080 really_cut_node=\u672c\u5f53\u306b\u30ce\u30fc\u30c9\u3092\u30ab\u30c3\u30c8\u3057\u307e\u3059\u304b\uff1f OptionPanel.resources_cut_nodes_without_question=\u78ba\u8a8d\u305b\u305a\u306b\u30ce\u30fc\u30c9\u3092\u30ab\u30c3\u30c8\u3057\u307e\u3059\u304b\uff1f OptionPanel.cut_nodes_without_question.tooltip=\u3053\u306e\u30c1\u30a7\u30c3\u30af\u30dc\u30c3\u30af\u30b9\u3067\u78ba\u8a8d\u305b\u305a\u306b\u30ce\u30fc\u30c9\u3092\u30ab\u30c3\u30c8\u3059\u308b\u8a2d\u5b9a\u3092\u3057\u305f\u5834\u5408\u3001\u8aa4\u64cd\u4f5c\u306b\u3088\u308a\u60c5\u5831\u3092\u5931\u3046\u6050\u308c\u304c\u3042\u308a\u307e\u3059\u3002 follow_graphical_link=\u30ea\u30f3\u30af\u5148: # fc, 10.11.2006: -accessories/plugins/NodeNote_hide_show.properties_documentation=\u30ce\u30fc\u30c8\u30a6\u30a3\u30f3\u30c9\u30a6\u3092\u51fa\u3057\u3066\u5206\u5272\u7dda\u3092\u6d88\u3057\u307e\u3059\u3002 +accessories/plugins/NodeNote_hide_show.properties_documentation=\u30ab\u30fc\u30bd\u30eb\u5fdc\u7b54\u3092\u51fa\u3055\u305a\u306b\u30ce\u30fc\u30c8\u753b\u9762\u3092\u51fa\u3057\u307e\u3059\u3002 plugins/ScriptEditor.new_script=\u65b0\u898f\u30b9\u30af\u30ea\u30d7\u30c8 OptionPanel.separator.save=\u4fdd\u5b58 OptionPanel.save_only_intrisically_needed_ids=\u65e2\u5b58\u30ce\u30fc\u30c9ID\u306e\u307f\u4fdd\u5b58 @@ -1323,7 +1326,7 @@ icon_female2=[\u5973\u60272] icon_male1=[\u7537\u60271] icon_male2=[\u7537\u60272] -icon_fema=[\u5973\u6027\u9663] +icon_fema=[\u5973\u6027\u30b0\u30eb\u30fc\u30d7] icon_group=[\u30b0\u30eb\u30fc\u30d7] OptionPanel.separator.icon_properties=\u30a2\u30a4\u30b3\u30f3 OptionPanel.icons.list=\u6a19\u6e96\u8868\u793a\u30a2\u30a4\u30b3\u30f3\u306e\u4e00\u89a7 @@ -1342,3 +1345,6 @@ mode_title =FreeMind - {0} OptionPanel.defaultfontsize.tooltip=\u65b0\u3057\u3044\u30ce\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u6587\u5b57\u30b5\u30a4\u30ba OptionPanel.ro=\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e +OptionPanel.ko=\u97d3\u56fd\u8a9e +really_convert_to_current_version2=\u3044\u307e\u958b\u3053\u3046\u3068\u3057\u3066\u3044\u308b\u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d7\u306f\u3001\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306eFreeMind\u3067\u4f5c\u3089\u308c\u3001\u53e4\u3044\u5f62\u5f0f\u3067\u4fdd\u5b58\u3055\u308c\u305f\u3082\u306e\u3067\u3059\u3002
\u3053\u306e\u307e\u307e\u958b\u304f\u3068\u3001\u3053\u306e\u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d7\u306f\u73fe\u884c\u30d0\u30fc\u30b8\u30e7\u30f3\u306b\u5909\u63db\u3055\u308c\u307e\u3059\u3002
\u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d7\u3092\u3053\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306eFreeMind\u3067\u5909\u63db\u3001\u4fdd\u5b58\u3057\u305f\u5f8c\u306f\u3001\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306eFreeMind\u3067\u958b\u304f\u3053\u3068\u306f\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3059\u3002
\u3053\u306e\u30de\u30a4\u30f3\u30c9\u30de\u30c3\u30d7\u3092\u5909\u63db\u3057\u3066\u958b\u3044\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3059\u304b\uff1f +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_ko.properties freemind-0.9.0RC7/Resources_ko.properties --- freemind-0.9.0RC6/Resources_ko.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_ko.properties 2010-02-27 21:48:00.000000000 +0000 @@ -7,7 +7,7 @@ about = \ud504\ub9ac\ub9c8\uc778\ub4dc\uc5d0 \ub300\ud574\uc11c add=\ucd94\uac00(&A) -about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\n\ud55c\uae00\ud654 : Goliathz\n\ud55c\uae00\ud654 \uc218\uc815 : TRUEWEB\nVersion: +about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\n\ud55c\uae00\ud654 : Goliathz\n\ud55c\uae00\ud654 \uc218\uc815 : TRUEWEB\nVersion: antialias_all = \ubaa8\ub450 \ubd80\ub4dc\ub7fd\uac8c antialias_edges = \uac00\uc7a5\uc790\ub9ac\ub9cc \ubd80\ub4dc\ub7fd\uac8c antialias_none = \ubd80\ub4dc\ub7fd\uac8c \uc0ac\uc6a9\uc548\ud568 @@ -99,7 +99,7 @@ italicise_branch = \ube0c\ub79c\uce58 \uc774\ud6c4\ub97c \uc774\ud0e4\ub9ad\uc73c\ub85c join_nodes = \ud569\uce58\uae30 license = \ub77c\uc774\uc13c\uc2a4 -license_text = FreeMind - \ub9c8\uc778\ud2b8\ub9f5 \ubb38\uc11c \uc791\uc131/\ubdf0\uc5b4\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - \ub9c8\uc778\ud2b8\ub9f5 \ubb38\uc11c \uc791\uc131/\ubdf0\uc5b4\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = \uc9c1\uc120 load = \ubd88\ub7ec\uc624\uae30(&L) locking_failed_by_open = $1 \ub9f5\ud30c\uc77c \uc7a0\uae08\uc791\uc5c5\uc744 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4. \uc77d\uae30\uc804\uc6a9\ubaa8\ub4dc\ub85c \uc5f4\ub9bd\ub2c8\ub2e4. @@ -1423,3 +1423,4 @@ # new, fc, 20.12.2008 OptionPanel.ro=Ro +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_lt.properties freemind-0.9.0RC7/Resources_lt.properties --- freemind-0.9.0RC6/Resources_lt.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_lt.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,7 +1,7 @@ # provided by the.oxiris about = Apie -about_text = Joergo Muellerio FreeMind\nConcept-Mappingo principai perkelti \u012f \u017emogaus-kompiuterio s\u0105saj\u0105.\nCopyright (C) 2000-2008 Joergas Muelleris ir kiti.\nTai yra nemokama programin\u0117 \u012franga (GPL)\nInternete: http://freemind.sourceforge.net/\nPasilinksmikite!\nVersija: +about_text = Joergo Muellerio FreeMind\nConcept-Mappingo principai perkelti \u012f \u017emogaus-kompiuterio s\u0105saj\u0105.\nCopyright (C) 2000-2010 Joergas Muelleris ir kiti.\nTai yra nemokama programin\u0117 \u012franga (GPL)\nInternete: http://freemind.sourceforge.net/\nPasilinksmikite!\nVersija: antialias_all = I\u0161lyginti visk\u0105 antialias_edges = I\u0161lyginti kra\u0161tines antialias_none = Nelyginti nieko @@ -93,7 +93,7 @@ italicise_branch = Paversti join_nodes = Sujungti at\u0161akas license = Licencija -license_text = FreeMind - Programa skirta Mindmap\u0173 per\u017ei\u016brai ir k\u016brimui\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Programa skirta Mindmap\u0173 per\u017ei\u016brai ir k\u016brimui\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linijinis locking_failed_by_open = Nepavyko u\u017erakinti \u017eem\u0117lapio $1. Atidarau kaip read-only. locking_failed_by_save_as = Nepavyko u\u017erakinti \u017eem\u0117lapio $1. 'I\u0161saugoti kaip' sustabdoma. @@ -673,3 +673,4 @@ accessories/plugins/ExportToOoWriter.properties_name= \u012e Open Office Writer dokument\u0105... # fc, 13.8.2005 OptionPanel.lt=Lt +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_nb.properties freemind-0.9.0RC7/Resources_nb.properties --- freemind-0.9.0RC6/Resources_nb.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_nb.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,7 +1,7 @@ # from Larsa - larslem #about = Om -#about_text = Joerg Muellers FreeMind\nTar konseptmapping-tiln\u00e6rmelsen til Menneske-Computer brukergrensesnitt-design.\nCopyright (C) 2000-2008 Joerg Mueller \nDette programmet er gratis (GPL)\nHome: http://freemind.sourceforge.net/\nHa det moro!\nVersion: -about_text = FreeMind - gratis program for mind-mapping og kunnskapsbygging\nCopyright \u00a9 2000-2006 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev, og andre.\nDette programmet er gratis, og lisensiert under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: +#about_text = Joerg Muellers FreeMind\nTar konseptmapping-tiln\u00e6rmelsen til Menneske-Computer brukergrensesnitt-design.\nCopyright (C) 2000-2010 Joerg Mueller \nDette programmet er gratis (GPL)\nHome: http://freemind.sourceforge.net/\nHa det moro!\nVersion: +about_text = FreeMind - gratis program for mind-mapping og kunnskapsbygging\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev, og andre.\nDette programmet er gratis, og lisensiert under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: antialias_all = Antialias alt antialias_edges = Antialias kanter antialias_none = Ingen antialiasing @@ -94,7 +94,7 @@ italicise_branch = Kursiver join_nodes = Knyt sammen noder license = Lisens -license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Line\u00e6r locking_failed_by_open = L\u00e5sing av map $1 mislykkes. \u00c5pner den read-only. locking_failed_by_save_as = L\u00e5sing av map $1 mislykkes. Kan ikke Lagre Som... @@ -1177,3 +1177,4 @@ # Dimitry, 17.07.07 background_color=Kartets bakgrunnsfarge... +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_nl.properties freemind-0.9.0RC7/Resources_nl.properties --- freemind-0.9.0RC6/Resources_nl.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_nl.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,7 +1,7 @@ # by Koen Roggemans, Patrick Holthuizen, Walter Huwels about = Info add= Voeg toe -about_text = FreeMind - gratis mind map software \n\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, en anderen.\nDit programma is gratis software, onder de GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: +about_text = FreeMind - gratis mind map software \n\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, en anderen.\nDit programma is gratis software, onder de GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: antialias_all = Alles verzachten antialias_edges = Randen verzachten antialias_none = Niets verzachten @@ -93,7 +93,7 @@ italicise_branch = Zet cursief join_nodes = Knopen samenvoegen license = Licentie -license_text = FreeMind - Een programma om mindmaps te maken en te bekijken\nCopyright (C) 2000-2008 Joerg Mueller \nBekijk COPYING voor details\n\nDit programma is gratis software; U kunt het opnieuw distribueren en- of\naanpassen onder de voorwaarden van de GNU General Public License\nzoals gepubliceerd door de Free Software Foundation; versie 2\nvan de licentie, of (naar eigen keuze) een latere versie.\n\nDit programma is verstrekt in de hoop dat het bruikbaar is ,\nmaar zonder enige garantie te geven over de\nverhandelbaarheid of geschiktheid voor een specifiek doel. Zie de \nGNU General Public License voor meer details.\n\nU moet een kopie van de GNU General Public License\nhebben ontvangen bij dit programma; Als dat niet zo is, schrijf naar de Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Een programma om mindmaps te maken en te bekijken\nCopyright (C) 2000-2010 Joerg Mueller \nBekijk COPYING voor details\n\nDit programma is gratis software; U kunt het opnieuw distribueren en- of\naanpassen onder de voorwaarden van de GNU General Public License\nzoals gepubliceerd door de Free Software Foundation; versie 2\nvan de licentie, of (naar eigen keuze) een latere versie.\n\nDit programma is verstrekt in de hoop dat het bruikbaar is ,\nmaar zonder enige garantie te geven over de\nverhandelbaarheid of geschiktheid voor een specifiek doel. Zie de \nGNU General Public License voor meer details.\n\nU moet een kopie van de GNU General Public License\nhebben ontvangen bij dit programma; Als dat niet zo is, schrijf naar de Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Lijn load = laden locking_failed_by_open = De mindmap $1 is in gebruik en wordt daarom als alleen-lezen geopend. @@ -1417,3 +1417,8 @@ # new, fc, 20.12.2008 OptionPanel.ro=Ro + +#new, fc, 6.12.2009: +really_convert_to_current_version2=De mindmap die je probeert te openen is gemaakt met een oudere versie van FreeMind en opgeslagen in een oud formaat.
FreeMind staat op het punt om de mindmap te converteren naar het huidige nieuwe formaat.
Nadat de mindmap is geconverteerd en opgeslagen met deze versie van FreeMind zal deze niet langer geopend kunnen worden met oudere versies van FreeMind.
Wil je dat FreeMind de mindmap converteert en opent? + +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_nn.properties freemind-0.9.0RC7/Resources_nn.properties --- freemind-0.9.0RC6/Resources_nn.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_nn.properties 2010-02-27 21:48:00.000000000 +0000 @@ -2,7 +2,7 @@ # [ 1356222 ] Norwegian (nynorsk) translation \ufeff\ufeffabout = Om -about_text = Joerg Mueller's FreeMind\nBruker id\u00e9karttiln\u00e6rming i formgjevinga av menneske-maskin-grensesnittet.\nCopyright (C) 2000-2008 Joerg Mueller and others.\nDette programmet er fri programvare (GPL)\nHeim: http://freemind.sourceforge.net/\nHa det kjekt!\nVersjon: +about_text = Joerg Mueller's FreeMind\nBruker id\u00e9karttiln\u00e6rming i formgjevinga av menneske-maskin-grensesnittet.\nCopyright (C) 2000-2010 Joerg Mueller and others.\nDette programmet er fri programvare (GPL)\nHeim: http://freemind.sourceforge.net/\nHa det kjekt!\nVersjon: antialias_all = Kantutjamning p\u00e5 alt antialias_edges = Kantutjamning (berre p\u00e5 kantar) antialias_none = Ingen kantutjamning @@ -94,7 +94,7 @@ italicise_branch = Kursiver join_nodes = Sl\u00e5 saman nodar license = Lisens -license_text = FreeMind - eit program for \u00e5 laga og sj\u00e5 p\u00e5 tankekart\nCopyright (C) 2000-2008 Joerg Mueller \nFila COPYING gjev n\u00e6rare detaljer\n\nDette programmet er fri programvare; du kan vidareformidla og/eller\nendra det i samsvar med vilk\u00e5ra i GNU General Public License\nslik dei er offentleggjorde av Free Software Foundation; anten versjon 2\nav lisensen eller (det er ditt val) kva seinare versjon som helst.\n\nProgrammet blir distribuert med von om at det kan vera nyttig,\nmen UTAN NOKON GARANTI; til og med utan garanti for at det er\nBRUKBART eller KAN NYTTAST TIL EIT SPESIELT FORM\u00c5L. Fila\nGNU General Public License gjev fleire detaljar.\n\nDersom det ikkje f\u00f8lgjer med ein kopi av GNU General Public License\nsaman med dette programmet kan du skriva til Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - eit program for \u00e5 laga og sj\u00e5 p\u00e5 tankekart\nCopyright (C) 2000-2010 Joerg Mueller \nFila COPYING gjev n\u00e6rare detaljer\n\nDette programmet er fri programvare; du kan vidareformidla og/eller\nendra det i samsvar med vilk\u00e5ra i GNU General Public License\nslik dei er offentleggjorde av Free Software Foundation; anten versjon 2\nav lisensen eller (det er ditt val) kva seinare versjon som helst.\n\nProgrammet blir distribuert med von om at det kan vera nyttig,\nmen UTAN NOKON GARANTI; til og med utan garanti for at det er\nBRUKBART eller KAN NYTTAST TIL EIT SPESIELT FORM\u00c5L. Fila\nGNU General Public License gjev fleire detaljar.\n\nDersom det ikkje f\u00f8lgjer med ein kopi av GNU General Public License\nsaman med dette programmet kan du skriva til Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linjeforma locking_failed_by_open = Klarte ikkje \u00e5 l\u00e5sa kartet $1. Blir opna som skrivebeskytta. locking_failed_by_save_as = Klarte ikkje \u00e5 l\u00e5sa kartet $1. Handlinga "Lagra som" avbroten. @@ -682,3 +682,4 @@ OptionPanel.undo_levels.tooltip=Bestemmer kor mange lagra handlingar som kan gjerast om via "Angra". # fc, 13.8.2005 OptionPanel.lt=LT +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_pl.properties freemind-0.9.0RC7/Resources_pl.properties --- freemind-0.9.0RC6/Resources_pl.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_pl.properties 2010-02-27 21:48:00.000000000 +0000 @@ -2,7 +2,7 @@ #! created/edited by Popeye version 0.54 (popeye.sourceforge.net) #! encoding:ISO-8859-1 #! by kfoltman@users.sourceforge.net -about_text=Joerg Mueller's FreeMind\nTworzenie mindmap przy pomocy komputera.\nCopyright (C) 2000-2008 Joerg Mueller i inni.\nTen program jest darmowy (GPL)\nStrona domowa: http://freemind.sourceforge.net/\nMi\u0142ej zabawy!\nWersja: +about_text=Joerg Mueller's FreeMind\nTworzenie mindmap przy pomocy komputera.\nCopyright (C) 2000-2010 Joerg Mueller i inni.\nTen program jest darmowy (GPL)\nStrona domowa: http://freemind.sourceforge.net/\nMi\u0142ej zabawy!\nWersja: accessories/plugins/ApplyFormatPlugin.dialog.title=Zmien format w\u0119z\u0142a accessories/plugins/ApplyFormatPlugin.properties_documentation=Wy\u015bwietla okno, w kt\u00f3rym w\u0142a\u015bciwo\u015bci w\u0119z\u0142a i ga\u0142\u0119zi mog\u0105 zosta\u0107 zmienione jednorazowo. accessories/plugins/ApplyFormatPlugin.properties_name=Zmie\u0144 format... @@ -347,7 +347,7 @@ join_nodes=Po\u0142\u0105cz w\u0119z\u0142y less_than_two_selected_nodes= Wybierz co najmniej dwa w\u0119z\u0142y, aby utworzy\u0107 po\u0142\u0105czenie. license=Licencja -license_text=FreeMind - program do tworzenia i przegl\u0105dania mindmap.\nWszelkie prawa zastrze\u017cone (C) 2000-2008 Joerg Mueller \n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text=FreeMind - program do tworzenia i przegl\u0105dania mindmap.\nWszelkie prawa zastrze\u017cone (C) 2000-2010 Joerg Mueller \n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear=Linia link_not_available_any_more=Po\u0142\u0105czenie jest nieaktualne. Jeden z w\u0119z\u0142\u00f3w zosta\u0142 usuni\u0119ty. # fc, 1.2.06 @@ -1107,3 +1107,4 @@ repair_link_question=Nie uda\u0142o si\u0119 wczyta\u0107 powi\u0105zanej mapy. Czy chcesz poprawi\u0107 r\u0119cznie? save_failed=Nie uda\u0142o si\u0119 zapisa\u0107 mapy $1. save_unsaved=Zapisa\u0107 nast\u0119puj\u0105c\u0105 map\u0119? : +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_pt_BR.properties freemind-0.9.0RC7/Resources_pt_BR.properties --- freemind-0.9.0RC6/Resources_pt_BR.properties 2009-07-02 19:03:29.000000000 +0100 +++ freemind-0.9.0RC7/Resources_pt_BR.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,1362 +1,1368 @@ -#! -#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) -#! encoding:ISO-8859-1 -about =Sobre -add=&Adicionar -#Translated by Laercio Lameira de Oliveira -# by nonducor, patched by Emerson Cargnin - echofloripa -#about = Sobre - -about_text = FreeMind - ferramenta gratuita de cria\u00e7\u00e3o de mapas mentais\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, e outros.\nEste programa \u00e9 software livre, distribu\u00eddo com sob a licensa p\u00fablica geral da GNU.\n\nHome: http://freemind.sourceforge.net/\nVers\u00e3o: -antialias_all = Suaviza tudo -antialias_edges = Suaviza bordas -antialias_none = Sem suaviza\u00e7\u00e3o -apply= Aplicar -background = Fundo -bezier = Curva Bezier -blend_color = Cor da mistura -bold = Negrito -boldify_branch = Ramo em negrito -branch = Ramo -bubble = Bolha -cancel = Cancelar -cannot_join_nodes_with_children = N\u00e3o pode unir n\u00f3 com seus filhos -center = Centralizar -cloud = Nuvem -cloud_color = Cor da nuvem... -close = Fechar -copy = Copiar -copy_single = Copiar Simples -cut = Recortar -decrease_branch_font_size = Reduzir Fonte -decrease_node_font_size = Reduzir Fonte -delete= Apagar -documentation = Documenta\u00e7\u00e3o -edge = Borda -edge_color = Cor da borda... -edge_width_parent = Igual ao pai -edge_width_thin = Fina -edit = Editar -edit_link_manually = Editar n\u00f3 -edit_long_node = Editar n\u00f3 com texto longo... -enter_base_url = Link de destino -enter_confirms = Enter Confirma -error = Erro -#export_branch = Galho... -export_branch_to_html = Exportar ramo para HTML -export_to_html = Como HTML -extension_menu = Estilo -file = Arquivo -file_not_found = Arquivo n\u00e3o encontrado -find = Procurar... -find_what = Procurar por -find_next = Procurar pr\u00f3ximo -fold = Exibir/Ocultar -font = Fonte -fork = Ramificar -help = Ajuda -html_export_based_on_headings = Exportar HTML - Baseado nos cabe\u00e7alhos -html_export_no_folding = Exportar HTML - Sem enlace -html_export_fold_currently_folded = Exportar HTML - Sem expandir os enlaces -html_export_fold_all = Exportar HTML - Todos os enlaces -# Daniel Polansky: This way of maintaining icon text -# will ultimately lead to unbearable overheads. -icon_menu = \u00cdcones -icon_help = Ajuda -icon_messagebox_warning = Aten\u00e7\u00e3o -icon_idea = Id\u00e9ia -icon_button_ok = Confirmar -icon_button_cancel = Cancelar -icon_back = Voltar -icon_forward = Encaminhar -icon_attach = Anexo -icon_ksmiletris = Feliz -icon_clanbomber = Perigoso -icon_desktop_new = Novo -icon_gohome = In\u00edcio -icon_kaddressbook = Contatos -icon_knotify = Alerta -icon_korn = Caixa de correio -icon_Mail = Correio -icon_password = Senha -icon_pencil = Anota\u00e7\u00e3o -icon_stop = Pare -icon_wizard = Ajuda autom\u00e1tica -icon_xmag = Investigar -icon_bell = Lembrar -icon_bookmark = Marcador -icon_penguin = Pinguim -icon_licq = Mensagem -import = Importar -import_branch = Ramo... -import_explorer_favorites = Favoritos IE... -import_folder_structure = Estrutura de pastas... -import_linked_branch = Ramos relacionados -import_linked_branch_without_root = (Ramos relacionados) Sem ra\u00edz... -increase_branch_font_size = Fonte maior -increase_node_font_size = Fonte maior -italic = It\u00e1lico -italicise_branch = It\u00e1lico -join_nodes = Unir n\u00f3s -license = Licen\u00e7a -license_text = FreeMind - Um programa para criar e visualizar mapas da mente\nCopyright (C) 2000-2008 Joerg Mueller \nVeja COPYING para detalhes\n\nEste \u00e9 um software de livre distribui\u00e7\u00e3o; voc\u00ea pode redistribu\u00ed-lo e/ou\nmodific\u00e1-lo sobre os termos da GNU Licen\u00e7a P\u00fablica Geral\ncomo publicado pela Funda\u00e7\u00e3o do Software Livre; tanto a vers\u00e3o 2\nda Licen\u00e7a, ou (por sua op\u00e7\u00e3o) qualquer vers\u00e3o mais recente.\n\nEste programa \u00e9 distribu\u00eddo na esperan\u00e7a de ser \u00fatil,\nmas SEM QUALQUER GARANTIA; sem mesmo a garantia que implica\nCOMERCIALIZA\u00c7\u00c3O ou ADAPTA\u00c7\u00c3O PARA USO PARTICULAR. Veja a\nGNU Licen\u00e7a P\u00fablica Geral para maiores detalhes.\n\nVoc\u00ea deve ter recebido uma c\u00f3pia da GNU Licen\u00e7a P\u00fablica Geral\ncom esse programa; caso contr\u00e1rio, escreve para a Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -linear = Linear -load =&Carregar -locking_failed_by_open = Travamento falhou por estar aberto -locking_failed_by_save_as = Travamento falhour por estar salvando -locking_old_lock_removed =O mapa $1 estava travado pelo usu\u00e1rio $2. O travamento foi removido por ser antigo -map_already_exists = Esse mapa j\u00e1 existe. Voc\u00ea gostaria de sobrescrev\u00ea-lo? -map_corrupted = Mapa corrompido. Ver detalhes? -map_locked_by_open = Travamento falhou por estar aberto -map_locked_by_save_as = Travamento falhou por estar salvando -mindmap = Mapa mental -mindmaps = Mapas mentais -mindmaps_desc = Mapas (*.mm) -mindmaps_filter_desc = Filtros (*.mmfilter) -mode_na = Modo n\u00e3o dispon\u00edvel -modes = Modos -move_to_root = Mover para raiz -new = Novo -new_child = Novo n\u00f3 filho -new_mindmap = Novo mapa mental -new_node = Novo n\u00f3 -new_sibling_before = Novo n\u00f3 irm\u00e3o acima -new_sibling_behind = Novo n\u00f3 irm\u00e3o abaixo -next_map = Pr\u00f3ximo mapa -no = N\u00e3o -node = N\u00f3 -node_changed_discard_changes = N\u00f3 alterado. Descartar mudan\u00e7as? -long_node_changed_submit = N\u00f3 alterado. Salvar mudan\u00e7as? -long_node_changed_cancel = N\u00f3 alterado. Descartar mudan\u00e7as? -node_color = Cor do n\u00f3... -node_down = Descer o n\u00f3 -node_up = Subir o n\u00f3 -nonboldify_branch = Retirar o negrito -nonitalicise_branch = Retirar o it\u00e1lico -normal = Normal -no_found_from = N\u00e3o encontrado -no_more_found_from = N\u00e3o mais encontrado -no_previous_find = Sem busca anterior -not_saved_for_link_error = Falha no link. N\u00e3o pode ser salvo. -open = Abrir... -page = Configurar p\u00e1gina... -paste = Colar -new_node_as_sibling_not_possible_for_the_root = Novo n\u00f3 irm\u00e3o, n\u00e3o \u00e9 poss\u00edvel para o n\u00f3 ra\u00edz. -preferences = Prefer\u00eancias -previous_map = Mapa anterior -print = Imprimir -print_dialog = Di\u00e1logo de impress\u00e3o... -print_preview = Ver impress\u00e3o... -print_preview_title =Ver impress\u00e3o -quit = Sair -read_only = Apenas para leitura -remove_node = Remover n\u00f3 -rename=&Renomear -repair_link = Restaurar link -repair_link_question = N\u00e3o foi possivel carregar o mapa solicitado. Corrigir a refer\u00eancia manualmente? -replace= Substituir -save = Salvar -save_as = Salvar como... -save_failed = Falha ao salvar -save_unsaved = Salvar altera\u00e7\u00e3o -saved = Salvo -scheme_evaluate = Avaliar! -select_favorites_folder = Favoritos -select_folder_for_importing = Importar -set_image_by_filechooser = Selecionar Imagem... -set_link_by_filechooser = Escolher caminho pelo navegador... -set_link_by_textfield = Entrar caminho... -sharp_bezier = Ajuste por Bezier -sharp_linear = Ajuste Linear -split = Dividir -style = Estilo -toggle_children_folded = Ocultar/exibir filhos -toggle_folded = Ocultar -underline = Sublinhado -unfold = Fechar -url_error = Erro na URL! -width = Largura -yes = Sim -zoom_in = Ampliar -zoom_out = Reduzir -remove_last_icon = Remover \u00faltimo \u00edcone -remove_all_icons = Remover todos os \u00edcones -lots_of_links_warning = Muitas refer\u00eancias para o mesmo n\u00f3. Voc\u00ea realmente precisa criar essas refer\u00eancias? -remove_arrow_link = Remove a refer\u00eancia gr\u00e1fica -arrow_link_color = Mudar a cor da refer\u00eancia gr\u00e1fica... -# removed: follow_link = Goto: -user_defined_zoom = Amplia\u00e7\u00e3o escolhida -user_defined_zoom_status_bar = Ampliar para o valor selecionado % -# new from 14.12.2003, fc -FAQ = FAQ -# new from 09.12.2006, Dimitri -webDocu = Documenta\u00e7\u00e3o na internet -# new from 20.12.2003, fc -printing_settings = Configura\u00e7\u00e3o da impress\u00e3o -fit_to_page = Ajustar para a p\u00e1gina -user_zoom = Ampliar: -ok = OK -# changed from 23.1.2004, fc. -selection_method_by_click = Sele\u00e7\u00e3o pelo mouse -selection_method_direct = Sele\u00e7\u00e3o direta -#new from 30.08.2004, Dimitri -combined = Combinado -as_parent = Como o n\u00f3 pai -# added at 2.5.2004, fc: -undo = Desfazer -redo = Refazer -delete_child = Apagar n\u00f3 filho -# added at 22.5.2004, fc: -most_recent_files = Arquivos mais recentes -menu_view = Visualizar -menu_navigate = Navegar -menu_format = Formatar -menu_extras = Extras -menu_insert = Inserir -menu_attributes = Atributos -# Beware: "largura da borda " and "Estilo da borda " must end with space. -edge_style = Estilo da borda -edge_width = Largura da borda -menu_file_import = Importar -menu_file_export = Exportar -edit_node = Editar n\u00f3 -# added at 5.6.2004, fc: -node_background_color = Cor de fundo do n\u00f3... -# added at 25.8.2004, fc: -choose_edge_color = Escolha a cor da borda -# added at 27.8.2004, fc: -underlined = Sublinhado -font_size = Tamanho da fonte -font_family = Fam\u00edlia da fonte -# add at 16.9.2004, fc: -import_linked_branch_no_link = O ramo selecionado n\u00e3o tem nenhum link para ser importado. -# added at 09.10.2004 -add_link = Adiciona link gr\u00e1fico -less_than_two_selected_nodes = \u00c9 preciso selecionar ao menos dois n\u00f3s para estabelecer um link. -choose_node_background_color = Cor de fundo do n\u00f3 -choose_node_color = Cor do n\u00f3 -choose_background_color = Cor de fundo -choose_cloud_color = Cor da nuvem -change_arrows_in_arrow_link = Mudar as setas de um link -add_local_link = Adiciona um link local -link_not_available_any_more = O link n\u00e3o \u00e9 mais v\u00e1lido. Um dos n\u00f3s foi apagado. -file_already_exists = O arquivo j\u00e1 existe. Voc\u00ea quer sobrescrev\u00ea-lo? -error_creating_directory = N\u00e3o foi poss\u00edvel criar o diret\u00f3rio para exportar. -export_svg_text = Gr\u00e1fico Vetorial (SVG) -export_pdf_text = Portable Document Format (PDF) -goto_link_node_action = Vai para o link -#fc, 14.11.2004: -undefined_error = Um erro inesperado ocorreu. Por favor tente reportar um erro. -cannot_add_parent_to_root = O n\u00f3 raiz n\u00e3o pode ser adicionado a um novo pai -cannot_delete_root = O n\u00f3 raiz n\u00e3o pode ser deletado ou recortado -cannot_add_parent_diff_parents = Todos os n\u00f3s precisam ter o mesmo pai para usar esta fun\u00e7\u00e3o. -no_format_copy_before_format_paste = Voc\u00ea n\u00e3o pode copiar uma formata\u00e7\u00e3o antes de t\u00ea-la copiado antes. -#fc, 15.11.2004: -accessories/plugins/AutomaticLayout.properties_documentation = Corrige o layout do mapa.
O primeiro n\u00edvel \u00e9 preto, o segundo azul, etc. -accessories/plugins/AutomaticLayout.properties_name = &Layout autom\u00e1tico -accessories/plugins/BlinkingNodeHook.properties_documentation = Torna o n\u00f3 piscante. Mas seja cuidadoso. N\u00e3o aplique isto a muitos n\u00f3s, e n\u00e3o com outras formata\u00e7\u00f5es autom\u00e1ticas ao mesmo n\u00f3 -accessories/plugins/BlinkingNodeHook.properties_name = N\u00f3 piscante -accessories/plugins/CreationModificationPlugin.properties_documentation=Esta fun\u00e7\u00e3o controla os tempos de cria\u00e7\u00e3o e modifica\u00e7\u00e3o dos n\u00f3s. -accessories/plugins/CreationModificationPlugin.properties_name = Mostra as datas de modifica\u00e7\u00e3o -accessories/plugins/ExportToImage_PNG.properties_documentation = Exporta o mapa na configura\u00e7\u00e3o atual como uma imagem PNG. -accessories/plugins/ExportToImage_PNG.properties_name = Como PNG... -accessories/plugins/ExportToImage_JPEG.properties_documentation = Exporta o mapa na configura\u00e7\u00e3o atual como um imagem JPEG. -accessories/plugins/ExportToImage_JPEG.properties_name = Como JPEG... -accessories/plugins/ExportWithXSLT.properties_documentation = Este \u00e9 um m\u00e9todo uniforme de exportar utilizando scripts XSLT. -accessories/plugins/ExportWithXSLT.properties_name = Usando XSLT... -accessories/plugins/ExportWithXSLT_HTML.properties_documentation= Propriedades XHTML -accessories/plugins/ExportWithXSLT_HTML.properties_name = Como XHTML (vers\u00e3o JavaScript)... -accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= Propriedades XHTML 3 -accessories/plugins/ExportWithXSLT_HTML3.properties_name = Como XHTML (Vers\u00e3o com uma imagem clic\u00e1vel)... -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =Como MindManager MindMap... -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= -accessories/plugins/FitToPage.properties_documentation = Ajusta a amplia\u00e7\u00e3o de modo que o mapa todo caiba na janela atual. -accessories/plugins/FitToPage.properties_name = Amplia para caber na p\u00e1gina -accessories/plugins/FormatCopy.properties_documentation = Copia a formata\u00e7\u00e3o de um n\u00f3. -accessories/plugins/FormatCopy.properties_name = Copia a formata\u00e7\u00e3o -accessories/plugins/FormatPaste.properties_documentation = Cola a formata\u00e7\u00e3o de um n\u00f3. -accessories/plugins/FormatPaste.properties_name = Cola formata\u00e7\u00e3o -accessories/plugins/FormularEditor.properties_documentation = Associa um editor de f\u00f3rmulas simples ao n\u00f3 atual. -accessories/plugins/FormularEditor.properties_name = Editor de f\u00f3rmula -accessories/plugins/IconSelectionPlugin.properties_documentation = Aqui voc\u00ea pode selecionar um \u00edcone usando uma janela. -accessories/plugins/IconSelectionPlugin.properties_name = Selecionar \u00edcone... -accessories/plugins/NewParentNode.properties_documentation = Todos os selecionados s\u00e3o enviados para um novo pai. -accessories/plugins/NewParentNode.properties_name = Novo n\u00f3 pai -accessories/plugins/NodeNote.properties_documentation = Associa um editor de notas simples ao n\u00f3 atual. -accessories/plugins/NodeNote.properties_name = Nota -accessories/plugins/PMCalculation.properties_documentation = Calcula os esfor\u00e7os para diferentes tarefas. -accessories/plugins/PMCalculation.properties_name = C\u00e1lculo PM -accessories/plugins/RemoveNote.properties_documentation =Remove a nota de conte\u00fado de provelmente v\u00e1rios notas -accessories/plugins/RemoveNote.properties_name =Remove notas -accessories/plugins/RevisionPlugin.properties_documentation = Marca o fundo de cada n\u00f3 alterado. -accessories/plugins/RevisionPlugin.properties_name = Mostra revis\u00f5es em amarelo -accessories/plugins/SplitNode.properties_documentation = N\u00f3 est\u00e1 dividido -accessories/plugins/SplitNode.properties_name = Divide n\u00f3 -accessories/plugins/UnfoldAll.properties_documentation = Exibe o n\u00f3 atual e todos os seus filhos. -accessories/plugins/UnfoldAll.properties_name = Exibe todos -accessories/plugins/FoldAll.properties_documentation = Oculta o n\u00f3 selecionado e todos os seus filhos. -accessories/plugins/FoldAll.properties_name = Oculta todos -accessories/plugins/UnfoldOneLevel.properties_documentation = Exibe um n\u00edvel dos n\u00f3s selecionados. -accessories/plugins/UnfoldOneLevel.properties_name = Exibe um n\u00edvel -accessories/plugins/FoldOneLevel.properties_documentation = Oculta um n\u00edvel dos n\u00f3s selecionados. -accessories/plugins/FoldOneLevel.properties_name = Oculta um n\u00edvel -plugins/FreemindHelp.xml_documentation = Ajuda ampliada do FreeMind -plugins/FreemindHelp.xml_name = Ajuda... -plugins/ExportPdf.xml_documentation = Exportar para PDF -plugins/ExportPdf.xml_name = Como PDF... -plugins/ExportSvg.xml_documentation = Exportar para SVG -plugins/ExportSvg.xml_name = Como SVG... - -# fc, 28.11.2004: -cannot_move_to_child = N\u00e3o posso mover o n\u00f3 para um de seus filhos. -# fc, 14.12.2004: -accessories/plugins/EnterPassword.properties_name = (Des)criptografa n\u00f3 -accessories/plugins/EnterPassword.properties_documentation= -accessories/plugins/EncryptNode.properties_name = Insere n\u00f3 criptografado ... -accessories/plugins/EncryptNode.properties_documentation = Insere um novo n\u00f3 cujos filhos s\u00e3o armazenados criptografados. -accessories/plugins/EncryptNode.properties_0 = Escolha uma senha para o n\u00f3 criptografado -accessories/plugins/EncryptNode.properties_1 = Senhas s\u00e3o diferentes ou muito curtas. -accessories/plugins/EncryptNode.properties_2 = Digite a senha: -accessories/plugins/EncryptNode.properties_3 = Redigite a senha: -accessories/plugins/EncryptNode.properties_4 = Digite a sua senha. -accessories/plugins/EncryptNode.properties_5 = Lembre-se que a qualidade da criptografia
depende quase completamente da qualidade da sua senha
. -accessories/plugins/EncryptNode.properties_6 = OK -accessories/plugins/EncryptNode.properties_7 = Cancelar -accessories/plugins/EncryptNode.properties_wrong_password = A senha est\u00e1 incorreta. -accessories/plugins/NewEncryptedMap.properties_documentation = Criar um novo mapa criptografado -accessories/plugins/NewEncryptedMap.properties_name = Criar mapa criptografado ... -accessories/plugins/EncryptNode.properties_select_me = Me selecione para continuar! -accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Voc\u00ea s\u00f3 pode ativar ou desativar a criptografia de um n\u00f3 criptografado. Por favor insira um n\u00f3 desse tipo usando o menu Ferramentas. -# fc, 2.2.05: -selection_method_delayed= Sele\u00e7\u00e3o autom\u00e1tica com atraso -# fc, 4.2.05: -plugins/TimeManagement.xml_documentation= Mostra o m\u00f3dulo calend\u00e1rio feito por Kai Toedter. -plugins/TimeManagement.xml_name= Mostra calend\u00e1rio... -plugins/TimeManagement.xml_appendButton= Anexa a data ao n\u00f3 selecionado -plugins/TimeManagement.xml_reminderButton= Lembre-me nesta data -plugins/TimeManagement.xml_cancelButton= Cancelar -plugins/TimeManagementReminder.xml_documentation= Atalho interno para agendar o reenvio de tarefas. -plugins/TimeManagementReminder.xml_name= Atalho interno para agendar o reenvio de tarefas. -plugins/TimeManagement.xml_reminderNode_tooltip= Alarme agendado para {0,date} {0,time}. -plugins/TimeManagement.xml_reminderNode_showNode= A hora marcada para o n\u00f3 " {0} " passou. Voc\u00ea quer adiar por 10 minutos ? -plugins/TimeManagement.xml_reminderNode_onlyOneDate= Atualmente, s\u00f3 pode haver um lembrete por n\u00f3.
O lembrete atual est\u00e1 probramado para {0,date} {0,time}, sua escolha foi {1,date} {1,time}.

Voc\u00ea quer alterar o lembrete de hor\u00e1rio do n\u00f3 (SIM)
ou voc\u00ea quer manter o existente (N\u00c3O)? -plugins/TimeManagement.xml_removeReminderButton = Remove alarme -plugins/TimeManagement.xml_removeReminderButton_tooltip = Remove todos os alarmes associados aos n\u00f3s selecionados. -plugins/TimeManagement.xml_minute= Minuto: -plugins/TimeManagement.xml_hour= Hora: -plugins/TimeManagement.xml_WindowTitle= Gerenciamento de tempo -plugins/latex/LatexNodeHook.properties_documentation =F\u00f3rmula Latex -plugins/latex/LatexNodeHook.properties_name =&Latex -plugins/latex/LatexNodeHook.editorTitle =Editor, feche para aceitar -# fc, 18.2.2005: -accessories/plugins/HierarchicalIcons.properties_documentation= Se um dos meus filhos (netos) tem um \u00edcone, eu mostrarei este \u00edcone pequeno tamb\u00e9m. -accessories/plugins/HierarchicalIcons.properties_name= Mostra os \u00edcones hierarquicamente -# fc, 1.3.2005: -icon_full-1 = Prioridade 1 -icon_full-2 = Prioridade 2 -icon_full-3 = Prioridade 3 -icon_full-4 = Prioridade 4 -icon_full-5 = Prioridade 5 -icon_full-6 = Prioridade 6 -icon_full-7 = Prioridade 7 -# fc, 11.3.2005: -RevertAction= Reverter -# the prefix for the reconstructed map (revert + undo). -freemind_reverted= Freemind revertido -# fc, 5.4.2005 -plugins/TimeManagement.xml_todayButton= Hoje -plugins/TimeList.xml_documentation= Mostra todos os tempos agendados e os n\u00f3s correspondentes. -plugins/TimeList.xml_name= Mostra a lista da agenda ... -remove_node_background_color = Remove a cor de fundo dos n\u00f3s -#plugins/NodeList.xml_documentation=Shows all nodes with its creation/modification dates. -#plugins/NodeList.xml_name=Show Map History ... -plugins/TimeList.xml_Modified= Modificado -plugins/TimeList.xml_Created= Criado -plugins/TimeList.xml_Date= Data -plugins/TimeList.xml_Text= Texto -plugins/TimeList.xml_Icons= \u00cdcones -#fc, 26.4.2005: -select_branch= Selecionar ramos vis\u00edveis -select_all= Selecionar todos os ramos visiveis -change_link_arrows= Mudar as setas dos links -# fc, 27.4.2005: -reset_node_position= Redefinir posi\u00e7\u00e3o -# fc, 2.5.2005: -plugins/RemoveReminder.xml_documentation= Remove o alarme de um n\u00f3. -plugins/RemoveReminder.xml_name= Remove alarme -# fc, 3.5.2005: -plugins/TimeManagement.xml_reminderButton_tooltip=Quando pressionado um temporizador \u00e9 programado para da data fornecida. Ent\u00e3o, \u00edcones piscantes chama sua aten\u00e7\u00e3o.
Se voc\u00ea fechar o mapa, os temporizadores ser\u00e3o reativados na pr\u00f3xima vez que o mapa for aberto. -# dimitri, 8.05.05 -filter_toolbar= Filtro -filter_dialog=Tipos de filtros -filter_no_filtering= Sem filtragem -filter_selected_node_view= Ver n\u00f3 para filtro selecionado -filter_conditions = Filtros -filter_edit= Editar -filter_edit_description= Editar lista de filtros -filter_unfold_ancestors= Desdobrar n\u00f3s filtrados -filter_icon= \u00cdcone -filter_node= N\u00f3 de texto -filter_exist= Existe -filter_does_not_exist= N\u00e3o existe -filter_contains= Cont\u00e9m -filter_is_equal_to= \u00c9 igual a -filter_is_not_equal_to= N\u00e3o \u00e9 igual a -filter_ignore_case= Ignora mai\u00fasculas/min\u00fasculas -filter_enter_value= Entre valor -filter_add= Adicionar -filter_delete= Deletar -filter_select= Selecionar -filter_not= N\u00e3o -filter_and= E -filter_or= Ou -filter_show_ancestors= Mostra ancestrais -filter_show_descendants= Mostra descendentes -# dimitri, 10.07.2005 -attributes_all= Todos os atributos -attributes_attribute= Atributos -attributes_close= Fechar -attribute_delete= Apaga todos os valores -attribute_delete_value= Apaga este valor -attributes_edit= Editar -attributes_edit_in_place= Editar atributos -attributes_edit_tooltip= Editar conjunto -attribute_font_size_tooltip= Tamanho de fonte do atributo -attributes_dialog= Gerenciador de atributos -attributes_dialog_title= Gerenciador de Atributos -attributes_import= Importar -attributes_import_tooltip= Importar atributos de outros mapas abertos -attributes_assign_dialog= Atribuir atributos... -attributes_visible= Selecionar vis\u00edveis -attributes_visible_tooltip= Sele\u00e7\u00e3o para Ver->Atributo->Mostrar Tributos Selecionados -attributes_refresh= Reiniciar -attribute_replace= Substituir por -attributes_restriction= Restri\u00e7\u00f5es -attributes_restricted_attributes_tooltip= Restrinje conjunto de atributos -attributes_restricted_values_tooltip= Restrinje conjunto de valores para o atributo atual -attributes_select_all= Todos -attributes_select_all_tooltip= Seleciona / Desseleciona tudo -attributes_for_selected= N\u00f3s selecionados -attributes_for_visible= Todos os n\u00f3s vis\u00edveis -attributes_deselect_all= Nenhum -attribute_list_box_label_text= Valores existentes -attributes_popup_edit= Editar -attributes_popup_optimal_width= Largura \u00f3tima -attributes_popup_hide= Esconder -attributes_popup_new= Novo atributo -attributes_popup_delete= Apagar -attributes_popup_up= Acima -attributes_popup_down= Abaixo -attributes_show= Exibir -attributes_show_all = Exibir todos os atributos -attributes_show_selected = Exibir n\u00f3s selecionadoos -attributes_hide_all = Esconder todos os atributos -attribute_top= Todos os atributos conhecidos para os n\u00f3s selecionados -attributes_skip_root= Exclui n\u00f3 raiz -attributes_no_import_candidates_found= Nenhum atributo novo encontrado -attributes_adding_empty_attribute_error= Erro atributo vazio -# fc, 10.5.2005: -property_dialog= Prefer\u00eancias ... -OptionPanel.automatic= Autom\u00e1tico -OptionPanel.de=De -OptionPanel.dk=Dk -OptionPanel.en=En -OptionPanel.es=Es -OptionPanel.fr=Fr -OptionPanel.gl=Gl -OptionPanel.hu=Hu -OptionPanel.it=It -OptionPanel.ja=Ja -OptionPanel.ko=Ko -OptionPanel.nl=Nl -OptionPanel.pl=Pl -OptionPanel.pt_BR=Pt BR -OptionPanel.pt_PT=Pt PT -OptionPanel.ru=Ru -OptionPanel.sl=Sl -OptionPanel.zh_TW=Zh -OptionPanel.zh_CN=Zh CN -OptionPanel.fork= Fork -OptionPanel.bubble= Bolha -OptionPanel.as_parent= Como o pai -OptionPanel.combined= Combinado -OptionPanel.bezier= Bezier -OptionPanel.linear= Linear -OptionPanel.default= Padr\u00e3o -OptionPanel.metal= Metal -OptionPanel.windows= Windows -OptionPanel.motif= Motif -OptionPanel.gtk= Gtk -OptionPanel.nothing= Nada -OptionPanel.relative= Relativo -OptionPanel.absolute= Absoluto -OptionPanel.first= Primeiro -OptionPanel.last= \u00daltimo -OptionPanel.selection_method_direct= Direto -OptionPanel.selection_method_delayed= Atrasado -OptionPanel.selection_method_by_click= Por clique -OptionPanel.html_export_no_folding= Sem desdobramento -OptionPanel.html_export_fold_currently_folded= Exporta como visto -OptionPanel.html_export_fold_all= N\u00e3o exibe todos -OptionPanel.html_export_based_on_headings= Baseado nos cabe\u00e7alhos -OptionPanel.Environment= Ambiente -OptionPanel.Files= Arquivos -OptionPanel.language= Idioma -OptionPanel.language.tooltip=Este \u00e9 o idioma que ser\u00e1 utilizado no programa. 'automatico' tenta carregar a linguagem atual do usu\u00e1rio. -OptionPanel.experimental_file_locking_on= Travamento experimental de arquivo -OptionPanel.experimental_file_locking_on.tooltip= Recurso experimental -OptionPanel.draganddrop= Arrastar e soltar -OptionPanel.draganddrop.tooltip=Se arrastar e soltar est\u00e1 ativado. -OptionPanel.userproperties= Propriedades do usu\u00e1rio -OptionPanel.patternsfile= Configura\u00e7\u00e3o do arquivo -OptionPanel.docmapurl_since_version_0_7_0= Docmapurl -OptionPanel.browsemode_initial_map= Mapa inicial do modo browse -OptionPanel.browsemode_initial_map.tooltip=A URL do mapa que ser\u00e1 carregado quando o modo browse iniciar. -OptionPanel.last_opened_list_length= Comprimento da lista de arquivos abertos recentemente -OptionPanel.time_for_automatic_save= Tempo para salvamento autom\u00e1tico -OptionPanel.time_for_automatic_save.tooltip= tempo entre duas grava\u00e7\u00f5es autom\u00e1ticas consectivas (em ms). Para desativar a grava\u00e7\u00e3o autom\u00e1tica, defina este n\u00famero como 2000000000. -OptionPanel.delete_automatic_saves_at_exit= Apaga grava\u00e7\u00f5es autom\u00e1ticas quando sair -OptionPanel.delete_automatic_saves_at_exit.tooltip= Caso voc\u00ea deseje que as grava\u00e7\u00f5es autom\u00e1ticas sejam apagadas quando o Freemind for desligado normalmente, selecione esta caixa de di\u00e1logo. -OptionPanel.number_of_different_files_for_automatic_save= N\u00famero de arquivos diferentes para salvamento autom\u00e1tico -OptionPanel.number_of_different_files_for_automatic_save.tooltip= N\u00famero de arquivos diferentes para armazenar os mapas. Quando for realizado este n\u00famero de grava\u00e7\u00f5es autom\u00e1ticas o primeiro arquivo gravada ser\u00e1 regravado com o mapa mais recente e o ciclo se reinicia. -OptionPanel.path_to_automatic_saves= Diret\u00f3rio para salvamento autom\u00e1tico -OptionPanel.path_to_automatic_saves.tooltip= para alterar o caminho padr\u00e3o, entre o caminho padr\u00e3o aqui. Outras possibilidades: * freemind_home \u00e9 o diret\u00f3rio onde auto.properties est\u00e1 localizado. * default aponta para java.io.tmpdir -OptionPanel.Defaults= Padr\u00f5es -OptionPanel.standardnodestyle= Estilo padr\u00e3o do n\u00f3 -OptionPanel.standardnodestyle.tooltip=O estilo padr\u00e3o para os novos n\u00f3s. Pode ser: 'bifurcar', 'bolha' 'como o pai' e 'combinado' -OptionPanel.standardrootnodestyle= Estilo padr\u00e3o do n\u00f3 raiz -OptionPanel.standardrootnodestyle.tooltip=O estilo padr\u00e3o do n\u00f3 raiz. S\u00e3o permitidos os valores 'bifurcar', 'bolha' e 'combinado' -OptionPanel.standardnodetextcolor= Cor padr\u00e3o do n\u00f3 -OptionPanel.standardnodetextcolor.tooltip=A cor padr\u00e3o do n\u00f3. Em nota\u00e7\u00e3o HTML (#RRGGBB em valores hexadecimais) -OptionPanel.standardselectednodecolor= Cor padr\u00e3o do n\u00f3 selecionado -OptionPanel.standardselectednodecolor.tooltip=A cor padr\u00e3o dos n\u00f3s selecionados. Em nota\u00e7\u00e3o HTML (#RRGGBB em valores hexadecimais) -OptionPanel.standardselectednoderectanglecolor=Selecione a cor da bolha -OptionPanel.standardselectednoderectanglecolor.tooltip= A cor da bolha que marca os n\u00f3s selecionados. Em anota\u00e7\u00e3o html (#RRGGBB em hexadecimal) -OptionPanel.standarddrawrectangleforselection=Mostra os nos selecionados em bolhas -OptionPanel.standarddrawrectangleforselection.tooltip=Marca os n\u00f3s selecionados com uma bolha ao redor -OptionPanel.standardedgecolor= Cor padr\u00e3o da borda -OptionPanel.standardedgecolor.tooltip=A cor padr\u00e3o da borda em nota\u00e7\u00e3o HTML -OptionPanel.standardlinkcolor= Cor padr\u00e3o do link -OptionPanel.standardlinkcolor.tooltip=A cor padr\u00e3o do link em nota\u00e7\u00e3o HTML -OptionPanel.standardbackgroundcolor= Cor padr\u00e3o do fundo -OptionPanel.standardbackgroundcolor.tooltip=A cor padr\u00e3o do fundo em nota\u00e7\u00e3o HTML -OptionPanel.printonwhitebackground=Fundo branco para impress\u00e3o -OptionPanel.printonwhitebackground.tooltip=Sempre use fundo branco para impress\u00e3o -OptionPanel.standardcloudcolor= Cor padr\u00e3o da nuvem -OptionPanel.standardcloudcolor.tooltip=A cor padr\u00e3o da nuvem em nota\u00e7\u00e3o HTML -OptionPanel.defaultfont= Fonte padr\u00e3o -OptionPanel.defaultfont.tooltip=A fonte padr\u00e3o do n\u00f3. Funcionar\u00e1 apenas se a fonte escolhida estiver dispon\u00edvel no sistema -OptionPanel.defaultfontstyle= Estilo de fonte padr\u00e3o -OptionPanel.defaultfontsize= Tamanho de fonte padr\u00e3o -OptionPanel.max_node_width= Largura m\u00e1xima do n\u00f3 -OptionPanel.max_node_width.tooltip=A largura m\u00e1xima do n\u00f3 em pixels -OptionPanel.standardedgestyle= Estilo padr\u00e3o da borda -OptionPanel.standardedgestyle.tooltip=O estilo padr\u00e3o da borda. S\u00e3o suportados 'linear' e 'bezier' -OptionPanel.standardcloudestyle= Estilo padr\u00e3o da nuvem -OptionPanel.standardcloudestyle.tooltip=O estilo padr\u00e3o da nuvem. No momento apenas 'bezier' \u00e9 suportado -OptionPanel.standardlinkestyle= Estilo padr\u00e3o do link -OptionPanel.standardlinkestyle.tooltip=O estilo padr\u00e3o do link. No momento apenas 'bezier' \u00e9 suportado -OptionPanel.Appearance= Apar\u00eancia -OptionPanel.lookandfeel= Estilo -OptionPanel.lookandfeel.tooltip= O Estilo a usar. "metal", "windows", "motf", "gtk" s\u00e3o suportados, "mac" fica dispon\u00edvel somente para MacOS. Padr\u00e3o significa que o estilo padr\u00e3o \u00e9 usado. Se voc\u00ea quiser colocar seu pr\u00f3rpio estilo, favpr entrar o nome da classe e assegure que os arquivos .jar correspondente est\u00e3o carregados. Se houver problemas com o estilo, n\u00e3o escolha nada aqui. Funciona para applets -OptionPanel.mapxsize= Tamanho X do mapa -OptionPanel.mapxsize.tooltip=O tamanho inicial de cada mapa -OptionPanel.mapysize= Tamanho Y do mapa -OptionPanel.links= Links -OptionPanel.links.tooltip=Define os links como relativos ou absolutos -OptionPanel.el__buttons_position= Posi\u00e7\u00e3o dos bot\u00f5es -OptionPanel.el__buttons_position.tooltip= acima / abaixo -OptionPanel.el__position_window_below_node= Posiciona janela abaixo do n\u00f3 -OptionPanel.el__min_default_window_height= Altura padr\u00e3o m\u00ednima da janela -OptionPanel.el__max_default_window_height= Altura padr\u00e3o m\u00e1xima da janela -OptionPanel.el__min_default_window_width= Largura padr\u00e3o m\u00ednima da janela -OptionPanel.el__max_default_window_width= Largura padr\u00e3o m\u00e1xima da janela -OptionPanel.el__enter_confirms_by_default= Enter confirma por padr\u00e3o -OptionPanel.el__show_icon_for_attributes= Mostra \u00edcones para atributos -OptionPanel.Keystrokes= Teclas de atalho -OptionPanel.keystroke_newMap= NovoMapa -OptionPanel.keystroke_open= Abrir -OptionPanel.keystroke_save= Salvar -OptionPanel.keystroke_saveAs= SalvarComo -OptionPanel.keystroke_print= Imprimir -OptionPanel.keystroke_close= Fechar -OptionPanel.keystroke_quit= Sair -OptionPanel.keystroke_export_to_html= Exportar para HTML -OptionPanel.keystroke_export_branch_to_html= Exportar ramo para HTML -OptionPanel.keystroke_open_first_in_history= Abre o primeiro no hist\u00f3rico -OptionPanel.keystroke_previousMap= Mapa Anterior -OptionPanel.keystroke_nextMap= Pr\u00f3ximo Mapa -OptionPanel.keystroke_mode_MindMap= Modo MindMap -OptionPanel.keystroke_mode_Browse= Modo Browse -OptionPanel.keystroke_mode_File= Modo Arquivo -OptionPanel.keystroke_node_toggle_italic= Inverte it\u00e1lico do n\u00f3 -OptionPanel.keystroke_node_toggle_boldface= Inverte negrito do n\u00f3 -OptionPanel.keystroke_node_toggle_underlined= Inverte sublinhado do n\u00f3 -OptionPanel.keystroke_node_toggle_cloud= Inverte nuvem do n\u00f3 -OptionPanel.keystroke_undo= Desfazer -OptionPanel.keystroke_redo= Refazer -OptionPanel.keystroke_delete_child= Apaga filho -OptionPanel.keystroke_select_all= Selecionar todos -OptionPanel.keystroke_select_branch= Selecionar ramos -OptionPanel.keystroke_zoom_out= Reduzir -OptionPanel.keystroke_zoom_in= Ampliar -OptionPanel.keystroke_cut= Cortar -OptionPanel.keystroke_copy= Copiar -OptionPanel.keystroke_copy_single= C\u00f3pia simples -OptionPanel.keystroke_paste= Colar -OptionPanel.keystroke_remove= Remover -OptionPanel.keystroke_add_arrow_link_action= Adiciona uma a\u00e7\u00e3o \u00e0 seta -OptionPanel.keystroke_add_local_link_action= Adiciona uma a\u00e7\u00e3o \u00e0 seta -OptionPanel.keystroke_moveToRoot= Mover Para Raiz -OptionPanel.keystroke_move_up= Mover Acima -OptionPanel.keystroke_move_down= Mover Abaixo -OptionPanel.keystroke_move_left= Mover \u00e0 Esquerda -OptionPanel.keystroke_move_right= Mover \u00e0 Direita -OptionPanel.keystroke_follow_link= Seguir link -OptionPanel.keystroke_add= Adicionar -OptionPanel.keystroke_add_child= Adicionar Filho -OptionPanel.keystroke_add_child_mac= Adicionar Filho Mac -OptionPanel.keystroke_add_sibling_before= Adicionar Irm\u00e3o Antes -OptionPanel.keystroke_edit= Editar -OptionPanel.keystroke_edit_long_node= Editar n\u00f3 com texto longo -OptionPanel.keystroke_join_nodes= Unir n\u00f3s -OptionPanel.keystroke_toggle_folded= Oculta/exibe -OptionPanel.keystroke_toggle_children_folded= Oculta/exibe ramos filhos -OptionPanel.keystroke_set_link_by_filechooser= Definir link pelo seletor de arquivos -OptionPanel.keystroke_set_link_by_textfield= Definir link pelo campo de texto -OptionPanel.keystroke_set_image_by_filechooser= Definir imagem pelo seletor de arquivos -OptionPanel.keystroke_node_up= Sobe n\u00f3 -OptionPanel.keystroke_node_down= Desce n\u00f3 -OptionPanel.keystroke_node_increase_font_size= Aumenta Fonte -OptionPanel.keystroke_node_decrease_font_size= Reduz Fonte -OptionPanel.keystroke_export_branch= Exportar galho -OptionPanel.keystroke_node_color= Cor do n\u00f3 -OptionPanel.keystroke_node_color_blend= Mistura da cor do n\u00f3 -OptionPanel.keystroke_edge_color= Cor da borda -OptionPanel.keystroke_find= Procurar -OptionPanel.keystroke_find_next= Procurar pr\u00f3ximo -OptionPanel.keystroke_apply_pattern_1=Aplica Estilo 1 -OptionPanel.keystroke_apply_pattern_2=Aplica Estilo 2 -OptionPanel.keystroke_apply_pattern_3=Aplica Estilo 3 -OptionPanel.keystroke_apply_pattern_4=Aplica Estilo 4 -OptionPanel.keystroke_apply_pattern_5=Aplica Estilo 5 -OptionPanel.keystroke_apply_pattern_6=Aplica Estilo 6 -OptionPanel.keystroke_apply_pattern_7=Aplica Estilo 7 -OptionPanel.keystroke_apply_pattern_8=Aplica Estilo 8 -OptionPanel.keystroke_apply_pattern_9=Aplica Estilo 9 -OptionPanel.keystroke_apply_pattern_10=Aplica Estilo 10 -OptionPanel.keystroke_apply_pattern_11=Aplica Estilo 11 -OptionPanel.keystroke_apply_pattern_12=Aplica Estilo 12 -OptionPanel.keystroke_apply_pattern_13=Aplica Estilo 13 -OptionPanel.keystroke_apply_pattern_14=Aplica Estilo 14 -OptionPanel.keystroke_apply_pattern_15=Aplica Estilo 15 -OptionPanel.keystroke_apply_pattern_16=Aplica Estilo 16 -OptionPanel.keystroke_apply_pattern_17=Aplica Estilo 17 -OptionPanel.keystroke_apply_pattern_18=Aplica Estilo 18 -OptionPanel.Behaviour=Comportamento -OptionPanel.placenewbranches=Posiciona os novos ramos -OptionPanel.placenewbranches.tooltip=Onde posicionar os novos ramos. Valores v\u00e1lidos s\u00e3o 'primeiro' e '\u00faltimo' -OptionPanel.disable_cursor_move_paper=Desabilita cursor de movimenta\u00e7\u00e3o da tela -OptionPanel.disable_cursor_move_paper.tooltip=N\u00e3o mostra o cursor de 'mover' enquanto est\u00e1 movendo a figura -OptionPanel.enable_leaves_folding=Habilita oculta\u00e7\u00e3o das folhas -# FIXME: Needs improvement -OptionPanel.enable_leaves_folding.tooltip=Habilita oculta\u00e7\u00e3o das folhas = altera\u00e7\u00e3o do formato bolha/bifurca\u00e7\u00e3o quando ocultado (mesmo quando falso voc\u00ea sempre pode alterar o estilo do n\u00f3) -OptionPanel.foldingsymbolwidth=Largura do s\u00edmbolo de oculta\u00e7\u00e3o -OptionPanel.foldingsymbolwidth.tooltip=Largura do s\u00edmbolo de marca\u00e7\u00e3o de ramo oculto -OptionPanel.disable_key_type= Desabilita edi\u00e7\u00e3o autom\u00e1tica -OptionPanel.disable_key_type.tooltip=Edi\u00e7\u00e3o autom\u00e1tica: se atividado a digita\u00e7\u00e3o de uma tecla inicia a edi\u00e7\u00e3o do n\u00f3 -OptionPanel.key_type_adds_new= Edi\u00e7\u00e3o autom\u00e1tica cria novo n\u00f3 -OptionPanel.key_type_adds_new.tooltip=Edi\u00e7\u00e3o autom\u00e1tica: sobrescreve conte\u00fado (falso) / cria novo n\u00f3 (verdadeiro) (necessita: Desabilita edi\u00e7\u00e3o autom\u00e1tica = verdadeiro) -OptionPanel.selection_method= M\u00e9todo de sele\u00e7\u00e3o -# FIXME: Needs translation -OptionPanel.selection_method.tooltip= Com a esta chave voc\u00ea pode habilitar/desabilitar o esquema de sele\u00e7\u00e3o atrasado. A op\u00e7\u00e3o Auto n\u00e3o modifica isto j\u00e1 que ele est\u00e3r salvos no auto.properties de qualquer maneira. -OptionPanel.time_for_delayed_selection=Tempo para sele\u00e7\u00e3o retardada -OptionPanel.time_for_delayed_selection.tooltip= Tempo at\u00e9 que o n\u00f3 sobre o qual o mouse est\u00e1 seja selecionado automaticamente (em milisegundos). Altere este valor para um caso se deseje sele\u00e7\u00e3o instantanea. -OptionPanel.HTML=HTML -OptionPanel.default_browser_command_windows_nt=Comando padr\u00e3o para o browser no Windows NT -OptionPanel.default_browser_command_windows_nt.tooltip=Para o Windows (as aspas ("") s\u00e3o necess\u00e1rias para links que tem "=" em suas URLs). -OptionPanel.default_browser_command_windows_9x=Comando padr\u00e3o para o browser no Windows 9x -OptionPanel.default_browser_command_windows_9x.tooltip=Para o Windows (as aspas ("") s\u00e3o necess\u00e1rias para links que tem "=" em suas URLs). -OptionPanel.default_browser_command_other_os=Comando padr\u00e3o para o browser em outros sistemas operacionais -OptionPanel.default_browser_command_other_os.tooltip= Este \u00e9 o que deve ser usado para o Linux: -OptionPanel.default_browser_command_mac=Comando padr\u00e3o para o browser no MacOS -OptionPanel.default_browser_command_mac.tooltip= e para o MAC: (gra\u00e7as ao Nick!) -OptionPanel.html_export_folding=Exporta os contra\u00eddos para HTML -OptionPanel.export_icons_in_html=Exporta \u00edcones para HTML -OptionPanel.export_icons_in_html.tooltip= Informa se o HTML exportado pelo FreeMind deve conter \u00edcones. O problema com \u00edcones \u00e9 que muito frequentemente os links para os \u00edcones podem n\u00e3o ser encontrados no HTML exportado. -OptionPanel.Cancel=Cancelar -OptionPanel.OK=Salvar -option_changes_may_require_restart=Para ver os efeitos das mudan\u00e7as de configura\u00e7\u00e3o o FreeMind provavelmente dever\u00e1 ser reiniciado. -# fc, 12.5.2005: -GrabKeyDialog.grab-key.title=Digite nova tecla -GrabKeyDialog.grab-key.caption= -GrabKeyDialog.grab-key.clear=Limpar -GrabKeyDialog.grab-key.assigned-to.none=Atualmente n\u00e3o atribu\u00eddo -GrabKeyDialog.grab-key.assigned-to=Atribu\u00eddo para -GrabKeyDialog.common.ok=OK -GrabKeyDialog.grab-key.remove=Remove -GrabKeyDialog.common.cancel=Cancela -GrabKeyDialog.grab-key.remove-ask=Voc\u00ea est\u00e1 seguro que deseja remover esta tecla de atalho? -OptionPanel.separator.language=Idioma -OptionPanel.separator.files=Arquivos -OptionPanel.separator.automatic_save=Salvar autom\u00e1tico -OptionPanel.separator.default_styles=Estilos padr\u00e3o -OptionPanel.separator.default_colors=Cores padr\u00e3o -OptionPanel.separator.selection_colors=Sele\u00e7\u00e3o de Cores -OptionPanel.separator.default_fonts=Fontes padr\u00e3o -OptionPanel.separator.other_defaults=Outros padr\u00e3o -OptionPanel.separator.look_and_feel= Apar\u00eancia -OptionPanel.separator.anti_alias= Suaviza\u00e7\u00e3o -OptionPanel.separator.initial_map_size= Tamanho inicial do mapa -OptionPanel.separator.hyperlink_types= Tipos de links -OptionPanel.separator.edit_long_node_window= Janela de edi\u00e7\u00e3o de n\u00f3s com texto longo -OptionPanel.separator.commands_for_the_program= Comandos para o programa -OptionPanel.separator.node_editing_commands= Comandos de edi\u00e7\u00e3o de n\u00f3s -OptionPanel.separator.node_navigation_commands= Comandos de navega\u00e7\u00e3o nos n\u00f3s -OptionPanel.separator.new_node_commands= Comandos de cria\u00e7\u00e3o de n\u00f3s -OptionPanel.separator.patterns=Modelos -OptionPanel.separator.behaviour= Comportamento -OptionPanel.separator.key_typing= Digita\u00e7\u00e3o -OptionPanel.separator.selection_method= M\u00e9todo de sele\u00e7\u00e3o -OptionPanel.separator.browser= Browser -OptionPanel.separator.html_export= Exportar para HTML -OptionPanel.separator.attributes= Atributos -OptionPanel.separator.icons= \u00cdcones em "Selecione \u00cdcone..." -OptionPanel.keystroke_edit_attributes= Editar atributos -OptionPanel.keystroke_show_all_attributes= Mostrar todos os atributos -OptionPanel.keystroke_show_selected_attributes= Mostrar os atributos selecionados -OptionPanel.keystroke_hide_all_attributes= Esconder todos os atributos -OptionPanel.keystroke_show_attribute_manager= Mostrar o gerenciador de atributos -OptionPanel.keystroke_assign_attributes= Atribuir atributos ... -# fc, 2.6.2005: -OptionPanel.antialias.tooltip=Determina a qualidade visual do mapa. Mais suaviza\u00e7\u00e3o precisa de mais tempo. -OptionPanel.antialias= Suaviza\u00e7\u00e3o -OptionPanel.antialias_edges= Suaviza bordas -OptionPanel.antialias_all= Suaviza tudo -OptionPanel.antialias_none= Sem suaviza\u00e7\u00e3o -OptionPanel.cs= Cs -OptionPanel.nb= Nb -# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above -follow_link = Abrir link -OptionPanel.ColorProperty.ResetColor= Restaurar cor -# fc, 16.6.2005: -OptionPanel.keystroke_option_dialog= Prefer\u00eancias -format_menu_edge_styles= Estilo da bordas -format_menu_edge_widths= Largura da bordas -# fc, 3.7.2005: -accessories/plugins/ImportMindmanagerFiles.properties_name= MindManager X5 Map... -# fc, 5.7.2005: -accessories/plugins/ExportToOoWriter.properties_documentation= N\u00f3s exibidos formam a estrutura do cap\u00edtulo do documento
Os n\u00f3s ocultos s\u00e3o colocados dentro destes cap\u00edtulos como listas ou par\u00e1grafos. -accessories/plugins/ExportToOoWriter.properties_name= Como documento do OpenOffice Writer ... -# fc, 10.7.2005: -OptionPanel.separator.undo= Desfazer -OptionPanel.undo_levels= Defazer n\u00edveis -OptionPanel.undo_levels.tooltip=Determina quantos n\u00edveis podem ser defeitos com o "Desfazer". -# fc, 13.8.2005 -OptionPanel.lt=Lt -# fc, 12.1.2006: if you create a translation of the documentation file, change this value (see german translation): -browsemode_initial_map = ./doc/freemind.mm -# fc, 1.2.06 -link_not_found = Link $1 n\u00e3o encontrado. -# fc, 15.2.06 -icon_smily_bad = N\u00e3o \u00e9 engra\u00e7ado -OptionPanel.hr= Hr -OptionPanel.nn= Nn -OptionPanel.se= Se -OptionPanel.unfold_on_paste=Mostra o n\u00f3 ao colar -OptionPanel.unfold_on_paste.tooltip=Mostra o n\u00f3 ao colar ou arrastar -# fc, 16.2.06 -accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Exporta o mapa como um applet Java -accessories/plugins/ExportWithXSLT_Applet.properties_name=Como um applet Java... -accessories/plugins/ExportWithXSLT_Applet.properties_webpage=P\u00e1gina da web -accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Exporta o mapa como uma aplica\u00e7\u00e3o em Flash. -accessories/plugins/ExportWithXSLT_Flash.properties_name=Como Flash... -# fc, 21.2.06 -accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=A esquerda da raiz o(s) n\u00f3(s) \u00e9/s\u00e3o deslocado(s) para baixo. A direita da raiz, desloca para cima. Sobre a raiz, on\u00f3 muda de lado -accessories/plugins/ChangeNodeLevelAction_left.properties_name=N\u00f3 esquerdo -accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=A direita da raiz o(s) n\u00f3(s) \u00e9/s\u00e3o deslocado(s) para baixo. A esquerda da raiz, desloca para cima. Sobre a raiz, on\u00f3 muda de lado -accessories/plugins/ChangeNodeLevelAction_right.properties_name=N\u00f3 direito -# fc, 27.2.06: -PatternDialog.ColorProperty.ResetColor=Redefinir Cor -PatternDialog.EdgeWidth_1=1 -PatternDialog.EdgeWidth_2=2 -PatternDialog.EdgeWidth_4=4 -PatternDialog.EdgeWidth_8=8 -PatternDialog.EdgeWidth_parent=Como o pai -PatternDialog.EdgeWidth_thin=Fino -PatternDialog.as_parent=Como o pai -PatternDialog.bezier=Bezier -PatternDialog.bubble=Bolha -PatternDialog.combined= Combinado -PatternDialog.edgecolor.tooltip=Propriedade da borda do n\u00f3 pai (tamb\u00e9m ser\u00e1 aplicada a todos os n\u00f3s filhos) -PatternDialog.edgecolor=Cor da borda -PatternDialog.edgestyle.tooltip=Propriedade da borda do n\u00f3 pai (tamb\u00e9m ser\u00e1 aplicada a todos os n\u00f3s filhos) -PatternDialog.edgestyle=Estilo da borda -PatternDialog.edgewidth.tooltip=Propriedade da borda do n\u00f3 pai (tamb\u00e9m ser\u00e1 aplicada a todos os n\u00f3s filhos) -PatternDialog.edgewidth=Largura da borda -PatternDialog.fork=Bifurcar -PatternDialog.linear=Linear -PatternDialog.nodebackgroundcolor=Cor de fundo do n\u00f3 -PatternDialog.nodecolor=Cor do n\u00f3 -PatternDialog.nodestyle=Estilo do n\u00f3 -PatternDialog.nodetext=Texto do n\u00f3 -PatternDialog.separator.EdgeControls=Bordas -PatternDialog.separator.NodeColors=Cores do n\u00f3 -PatternDialog.separator.NodeStyles=Estilos do n\u00f3 -# FIXME: Needs improvement -PatternDialog.sharp_bezier=bezier "exato" -PatternDialog.sharp_linear=linear "exato" -PatternDialog.undefined_font=Fonte n\u00e3o definida -accessories/plugins/ApplyFormatPlugin.properties_documentation=Mostra um quadro de di\u00e1logo onde os atributos dos n\u00f3s e das bordas pode ser alterado ao mesmo tempo. -accessories/plugins/ApplyFormatPlugin.properties_name=Muda a formata\u00e7\u00e3o ... -accessories/plugins/ApplyFormatPlugin.dialog.title=Muda a formata\u00e7\u00e3o dos n\u00f3s - -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Move \u00e0 esquerda -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Move \u00e0 direita -OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Copiar formata\u00e7\u00e3o -OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Colar formata\u00e7\u00e3o -OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Inserir \u00edcone -OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Indentar n\u00f3s -OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Dividir n\u00f3 -# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Oculta um n\u00edvel -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Exibe um n\u00edvel -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Oculta tudo -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Exibe tudo -OptionPanel.separator.others= Outra tecla de atalhos - -PatternDialog.separator.General=Geral -PatternDialog.clear_all_setters=Muda todos -PatternDialog.clear_all_setters.tooltip=Ativa ou desativa todas as indica\u00e7\u00f5es de mudan\u00e7a. -# fc, 1.3.06: -accessories/plugins/ManagePatterns.dialog.title=Gerencia padr\u00f5es... -accessories/plugins/ManagePatterns.not_found=Arquivo de padr\u00f5es n\u00e3o pode ser carregado. -accessories/plugins/ManagePatterns.properties_documentation=Altera os padr\u00f5es definidos em patterns.xml em um editor. O resultado \u00e9 gravado automaticamente. -accessories/plugins/ManagePatterns.properties_name=Gerencia padr\u00f5es... -PatternDialog.nodefontbold=Negrito -PatternDialog.nodefontitalic=It\u00e1lico -PatternDialog.separator.NodeFont=Fonte do n\u00f3 -# fc, 19.3.06: -ManagePatternsPopupDialog.remove=Remove modelo -ManagePatternsPopupDialog.add=Adiciona novo modelo -PatternDialog.patternname=Nome do modelo -PatternDialog.patternname.tooltip=Nome do modelo -PatternNewNameProperty=Novo modelo -ManagePatternsPopupDialog.DuplicateNameMessage=Voc\u00ea escolheu o mesmo nome duas vezes. Por favor conserte isto antes de fechar este quadro de di\u00e1logo. -PatternDialog.childpattern.tooltip=O estilo selecionado ser\u00e1 aplicado para todos os filhos. -PatternDialog.childpattern=Estilo do filho -ManagePatternsPopupDialog.Save=Grava e retorna -PatternDialog.icon.tooltip=Se aplicado, o n\u00f3 ter\u00e1 exatamente este \u00edcone. -PatternDialog.icon=\u00cdcone -PatternDialog.set_property_text=Mudar -PatternDialog.set_property_text.tooltip=Vazio:N\u00e3o toque; Menos: Remove a propriedade (define valores padr\u00e3o); Mais:Altera propriedade -accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Altera modelo -OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Faz o layout autom\u00e1tico dos modelos -OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Estilos -PatternToString.color=Cores -PatternToString.backgroundColor=Cor de fundo -PatternToString.NodeFontSize=Tamanho da fonte -OptionPanel.level1=Formata\u00e7\u00e3o do n\u00f3 raiz -OptionPanel.level2=Formata\u00e7\u00e3o de n\u00f3s do primeiro n\u00edvel -OptionPanel.level3=Formata\u00e7\u00e3o de n\u00f3s do segundo n\u00edvel -OptionPanel.level4=Formata\u00e7\u00e3o de n\u00f3s do terceiro n\u00edvel -OptionPanel.level5=Formata\u00e7\u00e3o de n\u00f3s de outros n\u00edveis -OptionPanel.automaticFormat_level=Estilos de layout autom\u00e1tico -# fc, 13.4.06: -ManagePatternsPopupDialog.duplicate=Duplica padr\u00e3o -ManagePatternsPopupDialog.from_nodes=Cria estilo a partir dos n\u00f3s selecionados -# fc, 25.5.2006: -accessories/plugins/SaveAll.properties_documentation=Grava todos os mapas abertos. -accessories/plugins/SaveAll.properties_name=Grava tudo -accessories/plugins/SaveAll.properties_save_all_cancelled=A opera\u00e7\u00e3o n\u00e3o foi completada com sucesso. -# fc, 23.7.06 -OptionPanel.loadLastMap=Abre o \u00faltimo mapa automaticamente. -OptionPanel.loadLastMap.tooltip=Caso selecionado, quando o FreeMind inicializar ele ir\u00e1 abrir automaticamente o \u00faltimo mapa aberto. -# dan, whenever -use_rich_formatting = Usa formata\u00e7\u00e3o Rich Text -use_plain_text = Usa texto puro -# fc, 30.7.06: -FreeMind.progress.gettingPreferenceDirectories=Obtendo diret\u00f3rios de prefer\u00eancias... -FreeMind.progress.gettingPreferences=Obtendo prefer\u00eancias... -FreeMind.progress.updateLookAndFeel=Atualizando Apar\u00eancia... -FreeMind.progress.createController=Criando controlador... -FreeMind.progress.settingPreferences=Definindo prefer\u00eancias... -FreeMind.progress.propageteLookAndFeel=Propagando Apar\u00eancia... -FreeMind.progress.createInitialMode=Criando modo inicial... -FreeMind.progress.startCreateController=Inicializando controlador de cria\u00e7\u00e3o... -FreeMind.progress.loadMaps=Carregando mapas... -FreeMind.progress.buildScreen=Construindo telas... -FreeMind.progress.endStartup=Fim da inicializa\u00e7\u00e3o. -OptionPanel.tr=Tr -OptionPanel.level=N\u00edvel -# fc, 13.8.06: -map_not_saved=O mapa n\u00e3o foi salvo anteriormente. -# fc, 27.8.06: -plugins/TimeManagement.xml_Find=Buscar -plugins/TimeManagement.xml_Replace=Substituir -plugins/TimeManagement.xml_Select=Selecionar -plugins/TimeManagement.xml_Export=Exportar n\u00f3s selecionados -plugins/TimeManagement.xml_Replace_All=Substituir todos -plugins/TimeManagement.xml_Replace_Selected=Substituir selecionados -plugins/TimeManagement.xml_Goto=Ir para -plugins/TimeManagement.xml_Cancel=Cancelar -# fc, 2.9.06: -automatically_save_message=Mapa foi salvo automaticamente (no arquivo {0}) ... - -plugins/ScriptingEngine.xml_documentation=Executa todos os scripts (recursivamente, as folhas primeiro). -plugins/ScriptingEngine.xml_name=Executar -# fc, 4.9.06 -OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Executar -# fc, 6.9.06: -error_applying_template=Erro aplicando template XSL. -# fc, 11.10.06: -# FIXME: Needs translation -accessories/plugins/NodeNote_jumpto.properties_documentation=Move para resp. da janela de texto -accessories/plugins/NodeNote_jumpto.properties_name=Vai para edi\u00e7\u00e3o -#accessories/plugins/NodeNote_jumpfrom.properties_documentation=Switch back from notes to mindmap -#accessories/plugins/NodeNote_jumpfrom.properties_name=Leave note -# fc, 12.10.06 -OptionPanel.max_tooltip_width=Largura da dica de ferramenta -OptionPanel.max_tooltip_width.tooltip=A largura padr\u00e3o da dica de ferramenta em pixels. -# fc, 13.10.06: renamed: -plugins/NodeList.xml_documentation=Mostra todos os n\u00f3s como uma lista filtr\u00e1vel. -# FIXME: Needs translation -OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Alterna para anota\u00e7\u00e3o do n\u00f3 -OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Mostra/esconde janela de notas -OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key= Apaga nota -# aki 19.10.06: (TJI support) -accessories/plugins/ExportWithXSLT_Applet.properties_tji= Incluir arquivos no Task Juggler -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Exporta tarefas do n\u00f3 TASKS para o m\u00f3dulo TaskJuggler. -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Tarefas do n\u00f3 TASKS para um arquivo do TaskJuggler... -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Exporta recursos do n\u00f3 RESOURCES para o m\u00f3dulo do TaskJuggler. -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Recursos do n\u00f3 RESOURCES para um arquivo do TaskJuggler... -# fc, 14.12.2006: renamed: -plugins/NodeList.xml_name=Busca e substitui... -plugins/TimeManagement.xml_menu_actions=A\u00e7\u00f5es -# fc, 23.12.06: -plugins/TimeList.xml_Notes=Notas -# fc, 30.12.06: -accessories/plugins/SortNodes.properties_documentation=Ordena todos os filhos de um n\u00f3 alfabeticamente. -accessories/plugins/SortNodes.properties_name=Ordena filhos -# fc, 3.1.07: -OptionPanel.ar=Ar -# fc, 10.1.07: -plugins/TimeManagement.xml_WindowTitle_All_Nodes=Busca & substitui -plugins/ScriptEditor.xml_documentation=Permite escrever scripts maiores dentro do FreeMind. -plugins/ScriptEditor.xml_name=Editor de scripts... -# fc, 24.1.07: -plugins/ScriptEditor/window.title=Editor de scripts -plugins/ScriptEditor.menu_actions=A\u00e7\u00f5es -plugins/ScriptEditor.run=Executar -plugins/ScriptEditor/window.Result=Resultado: - -# SimplyHTML.properties -# -# resource bundle with strings for application SimplyHTML -# - English Language (default) - -# edit menu definition -simplyhtml.editLabel=Editar - -# edit menu items -simplyhtml.undoLabel=Desfazer -simplyhtml.undoTip=Desfaz a \u00faltima a\u00e7\u00e3o -simplyhtml.redoLabel=Refazer -simplyhtml.redoTip=Refaza \u00faltima a\u00e7\u00e3o -simplyhtml.cutLabel=Cortar -simplyhtml.cutTip=Cortar -simplyhtml.copyLabel=Copiar -simplyhtml.copyTip=Copiar -simplyhtml.pasteLabel=Colar -simplyhtml.pasteTip=Colar -simplyhtml.selectAllLabel=Seleciona tudo -simplyhtml.findReplaceLabel=Busca & substitui -simplyhtml.findReplaceTip=Busca & substitui - -#insert menu definition -simplyhtml.insertTableLabel=Tabela... -# format menu definition -simplyhtml.formatLabel=Formatar - -# format menu items -simplyhtml.fontLabel=Fonte... -simplyhtml.fontTip=Formatar fonte... -simplyhtml.clearFormatLabel=Remover formata\u00e7\u00e3o -simplyhtml.clearFormatTip=Remover formata\u00e7\u00e3o -simplyhtml.fontBoldLabel=Negrito -simplyhtml.fontBoldImage=resources/bold.gif -simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif -simplyhtml.fontBoldTip=liga/desliga negrito -simplyhtml.fontColorTip=Cor do Texto -simplyhtml.fontColorLabel=Cor do Texto -simplyhtml.fontColorImage=resources/fontColor.gif -simplyhtml.fontItalicLabel=It\u00e1lico -simplyhtml.fontItalicImage=resources/italic.gif -simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif -simplyhtml.fontItalicTip=Liga/desliga it\u00e1lico -simplyhtml.fontUnderlineLabel=Sublinhado -simplyhtml.fontUnderlineImage=resources/uline.gif -simplyhtml.fontUnderlineTip=Liga/desliga sublinhado -simplyhtml.formatTableLabel=Tabela... -simplyhtml.formatTableTip=Formatar tabela -simplyhtml.toggleBulletsLabel=Liga/desliga lista com marcadores -simplyhtml.toggleBulletsTip=Liga/desliga lista com marcadores -simplyhtml.toggleNumbersLabel=Liga/desliga lista numerada -simplyhtml.toggleNumbersTip=Liga/desliga lista numerada -simplyhtml.formatListLabel=Lista... -simplyhtml.formatListTip=Muda formata\u00e7\u00e3o da lista -simplyhtml.formatParaLabel=Par\u00e1grafo... -simplyhtml.formatParaTip=Muda formata\u00e7\u00e3o do par\u00e1grafo -simplyhtml.paraAlignLeftLabel=Alinhar \u00e0 esquerda -simplyhtml.paraAlignLeftTip=Definir alinhamento do par\u00e1grafo \u00e0 esquerda -simplyhtml.paraAlignCenterLabel=Alinhar ao centro -simplyhtml.paraAlignCenterTip=Definir alinhamento do par\u00e1grafo ao centro -simplyhtml.paraAlignRightLabel=Alinhar \u00e0 direita -simplyhtml.paraAlignRightTip=Definir alinhamento do par\u00e1grafo \u00e0 direita - -# table menu definition -# table menu items -simplyhtml.tableLabel=Tabela -simplyhtml.nextTableCellLabel=Pr\u00f3xima c\u00e9lula -simplyhtml.prevTableCellLabel=C\u00e9lula anterior -simplyhtml.insertTableRowLabel=Inserir linha -simplyhtml.insertTableColLabel=Inserir coluna -simplyhtml.appendTableRowLabel=Adicionar linha -simplyhtml.appendTableColLabel=Adicionar coluna -simplyhtml.deleteTableRowLabel=Apagar linha -simplyhtml.deleteTableColLabel=Apagar coluna -simplyhtml.helpLabel=Ajuda -simplyhtml.aboutLabel=Sobre SimplyHTML - -# About frame -simplyhtml.aboutFrameTitle=Sobre esta aplica\u00e7\u00e3o - -# Font Dialog -simplyhtml.fontDialogTitle=Formatar fonte - -# Font panel -simplyhtml.uLineLabel=Sublinhado -simplyhtml.strikeLabel=Riscado -simplyhtml.previewLabel=Visualizar -simplyhtml.previewText=Visualizar texto -simplyhtml.familyLabel=Fam\u00edlia -simplyhtml.sizeLabel=Tamanho -simplyhtml.plainName=Normal -simplyhtml.boldName=Negrito -simplyhtml.italicName=It\u00e1lico -simplyhtml.boldItalicName=Negrito it\u00e1lico -simplyhtml.styleLabel=Estilo -simplyhtml.effectLabel=Efeito -simplyhtml.colorLabel=Cor -simplyhtml.foregroundLabel=Plano de frente: -simplyhtml.backgroundLabel=Plano de fundo: -simplyhtml.noLineLabel=Nenhum - -# Paragraph style panel -simplyhtml.textIndentLabel=Indentar: -simplyhtml.alignLabel=Alinhamentoo: -simplyhtml.alignLeft=Esquerda -simplyhtml.alignCenter=Centro -simplyhtml.alignRight=Direita -simplyhtml.valignLabel=Alinhamento vertical: -simplyhtml.valignTop=Topo -simplyhtml.valignMiddle=Meio -simplyhtml.valignBottom=Base -# FIXME: Needs translation -simplyhtml.valignBaseline=Linha base - -# Margin panel -simplyhtml.marginLabel=Exterior -simplyhtml.paddingLabel=Interior - -# Table dialog -simplyhtml.tableDialogTitle=Formatar tabela -simplyhtml.tablePanelTitle=Formato da tabela -simplyhtml.cellPanelTitle=Formatar c\u00e9lula -simplyhtml.tableWidthLabel=Largura: -simplyhtml.tableBgColLabel=Cor de fundo: -simplyhtml.cellMarginTabLabel=Margem -simplyhtml.cellBorderTabLabel=Bordas -simplyhtml.borderWidthLabel=Largura -simplyhtml.borderColorLabel=Cor: -simplyhtml.thisCellRangeLabel=Esta c\u00e9lula -simplyhtml.thisColRangeLabel=Esta coluna -simplyhtml.thisRowRangeLabel=Esta linha -simplyhtml.allCellsRangeLabel=Todas as c\u00e9lulas -simplyhtml.applyCellAttrLabel=Aplicar em -simplyhtml.cellGenTabLabel=Geral - -# Paragraph style dialog -simplyhtml.paraStyleDialogTitle=Estilo do par\u00e1grafo -simplyhtml.fontTabLabel=Fonte -simplyhtml.paraTabLabel=Par\u00e1grafo - -# Tag names -simplyhtml.cTagNamePara=Par\u00e1grafo -simplyhtml.cTagNameHead1=Cabe\u00e7alho 1 -simplyhtml.cTagNameHead2=Cabe\u00e7alho 2 -simplyhtml.cTagNameHead3=Cabe\u00e7alho 3 -simplyhtml.cTagNameHead4=Cabe\u00e7alho 4 -simplyhtml.cTagNameHead5=Cabe\u00e7alho 5 -simplyhtml.cTagNameHead6=Cabe\u00e7alho 6 -simplyhtml.cTagNameLink=Link -simplyhtml.cTagNameUL=Lista n\u00e3o-ordenada -simplyhtml.cTagNameOL=Lista ordenada - -# List dialog -simplyhtml.listDialogTitle=Formatar lista -simplyhtml.listTypeLabel=Tipo: -simplyhtml.listPositionLabel=Posi\u00e7\u00e3o: -simplyhtml.listIndentTitle=Indenta\u00e7\u00e3o: -simplyhtml.listTypeNone=Nenhum -simplyhtml.listTypeDecimal=1.,2.,3.,4. -simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. -simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. -simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. -simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. -simplyhtml.listTypeDisc=S\u00edmbolo de arquivo como marcador -simplyhtml.listTypeCircle=marcador redondo -simplyhtml.listTypeSquare=marcador quadrado -simplyhtml.listPosInside=Dentro -simplyhtml.listPosOutside=Fora - -# Find & replace dialog -simplyhtml.findReplaceDialogTitle=Busca & substitui -simplyhtml.findNext=Buscar pr\u00f3xima... -simplyhtml.searchFromStart=A partir do in\u00edcio -simplyhtml.searchDown=Para baixo -simplyhtml.wholeWordsOnly=Apenas palavras inteiras -simplyhtml.searchUp=Para cima -simplyhtml.matchCase=Diferenciar mai\u00fasculas de min\u00fasculas -simplyhtml.replaceWith=Substituir com: -simplyhtml.textToFind=Buscar texto: -simplyhtml.replace=Substituir... -simplyhtml.noMoreOccurrencesFound=N\u00e3o foram encontradas (outras) ocorr\u00eancias -simplyhtml.allOccurrencesReplaced=Todas as ocorr\u00eancias foram substitu\u00eddas -simplyhtml.replaceThisQuery=Substitui esta ocorr\u00eancia de -simplyhtml.replaceYes=Sim -simplyhtml.replaceNo=N\u00e3o -simplyhtml.replaceAll=Todas -simplyhtml.replaceDone=Feito -simplyhtml.unableToUndoError=Imposs\u00edvel defazer -simplyhtml.unableToRedoError=Imposs\u00edvel refazer -simplyhtml.unableToOpenFileError=Arquivo n\u00e3o p\u00f4de ser aberto - -# Miscellaneous text -simplyhtml.imageFileDesc=Arquivos de imagem -simplyhtml.defaultDocName=Nome padr\u00e3o -simplyhtml.cancelBtnName=Cancelar -simplyhtml.closeBtnName=Fechar -simplyhtml.okBtnName=OK -simplyhtml.leftLabel=esquerda: -simplyhtml.rightLabel=direita: -simplyhtml.topLabel=acima: -simplyhtml.bottomLabel=abaixo: -simplyhtml.insertTableTitle=Inserir tabela -simplyhtml.insertTableMsg=Quantas colunas? -simplyhtml.close=Fechar -simplyhtml.standardStyleName=Padr\u00e3o -simplyhtml.styleNameInputTitle=Gravar estilo -simplyhtml.styleNameInputText=Nome do novo estilo? -simplyhtml.newStyleDefaultName=Novo estilo -simplyhtml.docTitleTitle=Editar t\u00edtulo do documento -simplyhtml.docTitleQuery=Altera t\u00edtulo para: -simplyhtml.layoutTabTitle=Ver layout -simplyhtml.htmlTabTitle=Ver c\u00f3digo HTML - -#fc, 14.2.07: -ScriptEditorPanel.changed_cancel=Os scripts foram alterados. Voc\u00ea realmente quer abandonar as altera\u00e7\u00f5es ? - -# fc, 2.3.07: -OptionPanel.separator.mouse_wheel=Roda do mouse -OptionPanel.wheel_velocity=Velocidade -OptionPanel.wheel_velocity.tooltip=Um valor mais alto resulta em um efeito mais r\u00e1pido ao se mover a roda do mouse sobre o mapa. - -# fc, 15.5.07: -accessories/plugins/NodeHistoryBack.properties_name=Voltar -accessories/plugins/NodeHistoryBack.properties_documentation=Pula de volta para cadeia selecionada -accessories/plugins/NodeHistoryForward.properties_name= Para frente -accessories/plugins/NodeHistoryForward.properties_documentation=Pula para frente para cadeia selecionada - -# fc, 25.5.07: -OptionPanel.use_tabbed_pane.tooltip=Se selecionado os mapas sao mostrados em abas (como no FireFox :-) ). -OptionPanel.use_tabbed_pane=Usar abas - -# fc, 11.6.07: -accessories/plugins/ExportWithTWiki.properties_name=Como TWiki... -accessories/plugins/ExportWithTWiki.properties_documentation=Exporta o mapa como um documento TWiki. -accessories/plugins/ExportWithTWiki.properties=Arquivo TWiki (*.twi) - -# fc, 31.7.07 -really_remove_node=Deseja mesmo remover n\u00f3(s)? -confirmation=Confirma\u00e7\u00e3o -OptionalDontShowMeAgainDialog.dontShowAgain=&Nao me pergunte novamente. -OptionalDontShowMeAgainDialog.rememberMyDescision=&Lembre da minha escolha. -OptionalDontShowMeAgainDialog.cancel=&N\u00e3o -OptionalDontShowMeAgainDialog.ok=&Sim -OptionPanel.separator.resources_notifications=Perguntar -OptionPanel.delete_nodes_without_question=Remover sem perguntar -OptionPanel.delete_nodes_without_question.tooltip=Se esta op\u00e7\u00e3o for escolhida os n\u00f3s ser\u00e3o removidos sem confirma\u00e7\u00e3o. isto pode causar perda de informa\u00e7\u00e3o se pressionada sem inten\u00e7\u00e3o. - -edit.decision=Editor HTML -edit.edit_rich_text=Deseja usar formata\u00e7\u00e3o como negrito e it\u00e1lico? -OptionPanel.remind_type_of_new_nodes.tooltip="Perguntar" ira perguntar para voc\u00ea (use se em duvida).
"Sim" mostra editor de rich text.
"N?o" mostra editor de texto puro. -OptionPanel.ask=Perguntar - -OptionPanel.standardselectednodetextcolor.tooltip=Cor padr\u00e3o -# fc, 4.9.07: -really_execute_script=Voc\u00ea deseja mesmo executar os scripts incluidos neste mapa? E possivel que eles prejudiquem seu computador. -OptionPanel.resources_execute_scripts_without_asking=Scripts devem ser executados sem confirmacao? -OptionPanel.execute_scripts_without_asking.tooltip=Scripts FreeMind sao capazes de executar qualquer acao em seu computador.
Desta forma, voc\u00ea nao deve executar scripts que voc\u00ea nao tenha certeza que sejam seguros. -PatternToString.EdgeStyle= Estilo da borda -PatternToString.EdgeColor=Cor da Borda -PatternToString.EdgeWidth= Espessura da borda -PatternToString.FontBold=Negrito -PatternToString.FontItalic=It\u00e1lico -PatternToString.FontName=Nome da Fonte -PatternToString.Icon=\u00cdcone -PatternToString.Child=Estilo do n\u00f3 filho -ManagePatternsPopupDialog.Actions=&A\u00e7\u00f5es - -#Dimitry 19.10.07: -node_location_help=Arrastar muda localizacao do n\u00f3, ctrl+arrastar muda distancia, duplo clique e ctrl+duplo clique reinicializam-os. - -#fc, 19.10.07: -really_convert_to_current_version=Este mapa foi criado com uma versao anterior do FreeMind.
Voc\u00ea deseja converter (recomendado)?
(De outra forma ele sera lido como ele esta sem garantia.) -OptionPanel.resources_convert_to_current_version=Automaticamente converta mapas de versoes antigas do FreeMind
para a versao atual? -OptionPanel.resources_convert_to_current_version.tooltip=Apenas para mapas grandes que nao precisam ser convertidos
(este e um conhecimento de expert) voc\u00ea pode abrir os mapas sem converte-los. -OptionPanel.separator.root_node_appearance=Apar\u00eancia do n\u00f3 raiz -OptionPanel.use_common_out_point_for_root_node=Bordas iniciam a partir de um ponto no n\u00f3 raiz -OptionPanel.use_common_out_point_for_root_node.tooltip=Bordas iniciam a partir de um ponto no n\u00f3 raiz====== -ManagePatternsPopupDialog.apply=Aplicar -PatternDialog.setscript=Alterar? -PatternDialog.setscript.tooltip=Um script pode estar associado ao estilo -PatternDialog.script=Script (instru\u00e7\u00e3o) -PatternDialog.script.tooltip=O script como c\u00f3digo fonte -OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Gest\u00e3o de estilos -toggle_menubar = Ativar barra de menu -toggle_toolbar = Ativar barra de ferramentas -toggle_left_toolbar = Ativar barra de ferramenta lateral -accessories/plugins/NodeNote_hide_show.properties_name=Mostra/esconde janela de notas -selection_as_rectangle=Sele\u00e7\u00e3o retangular -really_cut_node=Deseja realmente recortar n\u00f3s? -OptionPanel.resources_cut_nodes_without_question=Recortar n\u00f3s sem perguntar? -OptionPanel.cut_nodes_without_question.tooltip=Se esta caixa for selecionada, os n\u00f3s s\u00e3o recortados sem perguntar. Isto pode causar perda de informa\u00e7\u00e3o se pressionado inadivertidamente -follow_graphical_link=V\u00e1 para: -# fc, 10.11.2006: -# FIXME: Needs translation -accessories/plugins/NodeNote_hide_show.properties_documentation= \u00c9 um atalho para menu para as setas pequenas de linnhas divididas -plugins/ScriptEditor.new_script=Novo script -OptionPanel.separator.save=Salvar -OptionPanel.save_only_intrisically_needed_ids=Salve os ID\u00b4s dos n\u00f3s usados, somente -OptionPanel.save_only_intrisically_needed_ids.tooltip=Quando marcado, os ID dos n\u00f3s s\u00e3o omitidos de que n\u00e3o foram usados no mapa. Observe que voc\u00ea n\u00e3o pode fazer link de um mapa externo para um n\u00f3 espec\u00edfico dentro do mapa sem um ID de n\u00f3. -OptionPanel.plugins/scripting/tab_name=Instru\u00e7\u00e3o (scripting) -OptionPanel.separator.plugins/scripting/separatorPropertyName=Permiss\u00f5es -OptionPanel.resources_execute_scripts_without_file_restriction=Permite opera\u00e7\u00f5es de arquivos (N\u00e3o Recomendado) -OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=Se os seus Script Groovy precisarem executar a\u00e7\u00f5es especiais de arquivo (abrir, fechar, ler, escrever, deletar(!),
voc\u00ea tem que habilitar esta op\u00e7\u00e3o.
Seja cuidadoso, j\u00e1 que scripts maliciosos podem machucar seu computador! -OptionPanel.resources_execute_scripts_without_network_restriction=Permite Opera\u00e7\u00e3o de Rede (N\u00e3o Recomendado) -OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=Se os seus Scriptis Groovy precisarem executar a\u00e7\u00f5es especiais de rede,
voc\u00ea tem que habilitar esta op\u00e7\u00e3o.
Seja cuidadoso, j\u00e1 que scripts maciosos podem mostrar seus segredos -OptionPanel.resources_execute_scripts_without_exec_restriction=Permite execu\u00e7\u00e3o de outras aplica\u00e7\u00f5es (N\u00e3o Recomendado) -OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=Se os seus Scripts Groovy precisarem executar outras aplica\u00e7\u00f5es (como um browser) sem perguntar(!),
voc\u00ea tem que habilitar esta op\u00e7\u00e3o.
Seja cuidadoso, j\u00e1 que scripts maliciosos podem machucar seu computador! -plugins/ScriptEditor.FORBIDDEN_ACTION=Groovy scriptis do FreeMind s\u00e3o restritos. A seguinte opera\u00e7\u00e3o {0,choice,0#File|1#Network|2#Exec} \u00e9 proibida:{1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Voc\u00ea pode trocar isto na configura\u00e7\u00e3o do programa -plugins/ScriptEditor.cancel=&Descarta Mudan\u00e7as e Sai -plugins/ScriptEditor.exit=Sair -plugins/TimeManagement.xml_closeButton=Fechar -PatternDialog.nodebackgroundcolor.tooltip=Cor de Fundo do n\u00f3 -PatternDialog.nodecolor.tooltip=Cor do n\u00f3 -PatternDialog.nodestyle.tooltip=Estilo do n\u00f3 -PatternDialog.nodetext.tooltip=Inserir um texto -PatternDialog.nodefontname=Fonte do n\u00f3 -PatternDialog.nodefontsize=Tamanho da fonte -# fc, 14.3.06: -PatternDialog.nodefontname.tooltip=Fonte do n\u00f3 -PatternDialog.nodefontsize.tooltip=Tamanho da fonte -PatternDialog.nodefontbold.tooltip=Negrito -PatternDialog.nodefontitalic.tooltip=It\u00e1lico -PatternDialog.separator.ScriptingControl=Scripting (programa\u00e7\u00e3o) -OptionPanel.resources_don_t_show_note_icons=N\u00e3o mostre as notas dos \u00edcones -FreeMind=Homepage do FreeMind -really_remove_notes=Remover realmente as notas? -OptionPanel.resources_remove_notes_without_question=Remover as notas sem perguntar? -OptionPanel.remove_notes_without_question.tooltip=Se voc\u00ea selecionar as notas pertencentes aos n\u00f3s selecionados ser\u00e3o removidos sem confirma\u00e7\u00e3o. Isto pode causar perda de informa\u00e7\u00e3o se pressionado inadivertidamente. -OptionPanel.resources_save_folding_state=Sempre salvar mudan\u00e7a de estado dos ramos -OptionPanel.resources_save_folding_state.tooltip=Se voc\u00ea selecionar, cada a\u00e7\u00e3o de ocultar suja o mapa e lembra voc\u00ea para salvar. -plugins/ScriptEditor.sign=Script de Assinatura... -OptionPanel.resources_script_user_key_name_for_signing=Chave de usu\u00e1rio opcional para assianatura -OptionPanel.resources_script_user_key_name_for_signing.tooltip=Se voc\u00ea desejar assinar seus scripts, entre com o apelido da chave aqui.
A chave \u00e9 esperada para ser armazenada na tecla de atalho padr\u00e3o.
A senha secreta da chave deve coincidir com a senha da chave de atalho (isto \u00e9 o padr\u00e3o) -OptionPanel.resources_signed_script_are_trusted=Confiar nos scripts assinados (recomendado) -OptionPanel.resources_signed_script_are_trusted.tooltip=Se os scripts s\u00e3o assinados por uma segunda pessoa confi\u00e1vel (isto \u00e9, de um autor do FreeMind ou voc\u00ea mesmo) ele ser\u00e1 executado sem restri\u00e7\u00f5es. -export_branch_new =Ramo como um novo mapa mental... -icon_yes =Importante -icon_folder =Ocultar -icon_up =Para cima -icon_down =Para baixo -icon_smiley-neutral =Sem import\u00e2ncia -icon_smiley-oh =Surpreso -icon_smiley-angry =Zangado -icon_encrypted =Trancado -icon_decrypted =Destrancado -icon_broken-line =Quebrado -icon_flag-black =Bandeira Preta -icon_flag-blue =Bandeira Azul -icon_flag-green =Bandeira Verde -icon_flag-orange =Bandeira Laranja -icon_flag-pink =Bandeira Rosa -icon_flag-yellow =Bandeira Amarela -icon_clock =Tempo -icon_hourglass =Aguardando -icon_calendar =Data -icon_kmail =E-mail -icon_edit =Editar -icon_stop-sign =Parar -icon_closed =Fechado -icon_flag = Bandeira Vermelha -OptionPanel.remind_use_rich_text_in_new_long_nodes=Use formata\u00e7\u00e3o para todos os n\u00f3s -icon_freemind_butterfly =FreeMind -icon_full-8 =Prioridade 8 -icon_full-9 =Prioridade 9 -node_is_write_protected=N\u00f3 de destino est\u00e1 protegido contra escrita -KeyDoc=Documenta\u00e7\u00e3o Chave em PDF -pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide.pdf -icon_info=informa\u00e7\u00e3o -icon_full-0=Prioridade 0 -icon_prepare=Luz amarela -icon_go=Luz verde -icon_list=Lista -icon_launch=Lan\u00e7ar -icon_family=Fam\u00edlia -icon_female1=Mulher 1 -icon_female2=Mulher 2 -icon_male1=Homem 1 -icon_male2=Homem 2 -icon_fema=Mulheres -icon_group=Grupo -OptionPanel.separator.icon_properties=\u00cdcones -OptionPanel.icons.list=Lista de \u00edcones padr\u00e3o mostrados -OptionPanel.icon_order_description=Aqui voc\u00ea pode liberar ou dasabilitar os \u00edcones padr\u00e3o. Os \u00edcones t\u00eam que ser separados por ",". -OptionPanel.sk=Sk -OptionPanel.el=El -OptionPanel.et=Et -OptionPanel.id=Id -OptionPanel.uk_UA=Uk UA -OptionPanel.vi=Vi -select_icon=Selecione um \u00edcone -mode_MindMap=Modo Mapa Mental -mode_Browse=Modo Browser -mode_File=Modo Arquivo -mode_status = O Status mudou para {0} -mode_title =FreeMind - {0} -OptionPanel.defaultfontsize.tooltip=Tamanho de fontes padr\u00e3o para novos n\u00f3s -OptionPanel.ro=Ro -locking_old_lock_removed= Removido travamento antigo -toggle_bold_branch = Negrito -toggle_italic_branch = It\u00e1lico -url_load_error = Erro ao carregar URL -aaattributes_visible_tooltip= -OptionPanel.automaticFormat_level1=Formata\u00e7\u00e3o do n\u00f3 raiz -OptionPanel.automaticFormat_level2=Formata n\u00f3s do primeiro n\u00edvel - -# Error messages -simplyhtml.unableToDesfazerError=Imposs\u00edvel desfazer: -simplyhtml.unableToRefazerError=Imposs\u00edvel refazer: -aaaattributes_visible_tooltip= - aaaaaattributes_visible_tooltip= Seleciona vis\u00edveis +#! +#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) +#! encoding:ISO-8859-1 +about =Sobre +add=&Adicionar +#Translated by Laercio Lameira de Oliveira +# by nonducor, patched by Emerson Cargnin - echofloripa +#about = Sobre + +about_text = FreeMind - ferramenta gratuita de cria\u00e7\u00e3o de mapas mentais\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, e outros.\nEste programa \u00e9 software livre, distribu\u00eddo com sob a licensa p\u00fablica geral da GNU.\n\nHome: http://freemind.sourceforge.net/\nVers\u00e3o: +antialias_all = Suaviza tudo +antialias_edges = Suaviza bordas +antialias_none = Sem suaviza\u00e7\u00e3o +apply= Aplicar +background = Fundo +bezier = Curva Bezier +blend_color = Cor da mistura +bold = Negrito +boldify_branch = Ramo em negrito +branch = Ramo +bubble = Bolha +cancel = Cancelar +cannot_join_nodes_with_children = N\u00e3o pode unir n\u00f3 com seus filhos +center = Centralizar +cloud = Nuvem +cloud_color = Cor da nuvem... +close = Fechar +copy = Copiar +copy_single = Copiar Simples +cut = Recortar +decrease_branch_font_size = Reduzir Fonte +decrease_node_font_size = Reduzir Fonte +delete= Apagar +documentation = Documenta\u00e7\u00e3o +edge = Borda +edge_color = Cor da borda... +edge_width_parent = Igual ao pai +edge_width_thin = Fina +edit = Editar +edit_link_manually = Editar n\u00f3 +edit_long_node = Editar n\u00f3 com texto longo... +enter_base_url = Link de destino +enter_confirms = Enter Confirma +error = Erro +#export_branch = Galho... +export_branch_to_html = Exportar ramo para HTML +export_to_html = Como HTML +extension_menu = Estilo +file = Arquivo +file_not_found = Arquivo n\u00e3o encontrado +find = Procurar... +find_what = Procurar por +find_next = Procurar pr\u00f3ximo +fold = Exibir/Ocultar +font = Fonte +fork = Ramificar +help = Ajuda +html_export_based_on_headings = Exportar HTML - Baseado nos cabe\u00e7alhos +html_export_no_folding = Exportar HTML - Sem enlace +html_export_fold_currently_folded = Exportar HTML - Sem expandir os enlaces +html_export_fold_all = Exportar HTML - Todos os enlaces +# Daniel Polansky: This way of maintaining icon text +# will ultimately lead to unbearable overheads. +icon_menu = \u00cdcones +icon_help = Ajuda +icon_messagebox_warning = Aten\u00e7\u00e3o +icon_idea = Id\u00e9ia +icon_button_ok = Confirmar +icon_button_cancel = Cancelar +icon_back = Voltar +icon_forward = Encaminhar +icon_attach = Anexo +icon_ksmiletris = Feliz +icon_clanbomber = Perigoso +icon_desktop_new = Novo +icon_gohome = In\u00edcio +icon_kaddressbook = Contatos +icon_knotify = Alerta +icon_korn = Caixa de correio +icon_Mail = Correio +icon_password = Senha +icon_pencil = Anota\u00e7\u00e3o +icon_stop = Pare +icon_wizard = Ajuda autom\u00e1tica +icon_xmag = Investigar +icon_bell = Lembrar +icon_bookmark = Marcador +icon_penguin = Pinguim +icon_licq = Mensagem +import = Importar +import_branch = Ramo... +import_explorer_favorites = Favoritos IE... +import_folder_structure = Estrutura de pastas... +import_linked_branch = Ramos relacionados +import_linked_branch_without_root = (Ramos relacionados) Sem ra\u00edz... +increase_branch_font_size = Fonte maior +increase_node_font_size = Fonte maior +italic = It\u00e1lico +italicise_branch = It\u00e1lico +join_nodes = Unir n\u00f3s +license = Licen\u00e7a +license_text = FreeMind - Um programa para criar e visualizar mapas da mente\nCopyright (C) 2000-2010 Joerg Mueller \nVeja COPYING para detalhes\n\nEste \u00e9 um software de livre distribui\u00e7\u00e3o; voc\u00ea pode redistribu\u00ed-lo e/ou\nmodific\u00e1-lo sobre os termos da GNU Licen\u00e7a P\u00fablica Geral\ncomo publicado pela Funda\u00e7\u00e3o do Software Livre; tanto a vers\u00e3o 2\nda Licen\u00e7a, ou (por sua op\u00e7\u00e3o) qualquer vers\u00e3o mais recente.\n\nEste programa \u00e9 distribu\u00eddo na esperan\u00e7a de ser \u00fatil,\nmas SEM QUALQUER GARANTIA; sem mesmo a garantia que implica\nCOMERCIALIZA\u00c7\u00c3O ou ADAPTA\u00c7\u00c3O PARA USO PARTICULAR. Veja a\nGNU Licen\u00e7a P\u00fablica Geral para maiores detalhes.\n\nVoc\u00ea deve ter recebido uma c\u00f3pia da GNU Licen\u00e7a P\u00fablica Geral\ncom esse programa; caso contr\u00e1rio, escreve para a Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +linear = Linear +load =&Carregar +locking_failed_by_open = Travamento falhou por estar aberto +locking_failed_by_save_as = Travamento falhour por estar salvando +locking_old_lock_removed =O mapa $1 estava travado pelo usu\u00e1rio $2. O travamento foi removido por ser antigo +map_already_exists = Esse mapa j\u00e1 existe. Voc\u00ea gostaria de sobrescrev\u00ea-lo? +map_corrupted = Mapa corrompido. Ver detalhes? +map_locked_by_open = Travamento falhou por estar aberto +map_locked_by_save_as = Travamento falhou por estar salvando +mindmap = Mapa mental +mindmaps = Mapas mentais +mindmaps_desc = Mapas (*.mm) +mindmaps_filter_desc = Filtros (*.mmfilter) +mode_na = Modo n\u00e3o dispon\u00edvel +modes = Modos +move_to_root = Mover para raiz +new = Novo +new_child = Novo n\u00f3 filho +new_mindmap = Novo mapa mental +new_node = Novo n\u00f3 +new_sibling_before = Novo n\u00f3 irm\u00e3o acima +new_sibling_behind = Novo n\u00f3 irm\u00e3o abaixo +next_map = Pr\u00f3ximo mapa +no = N\u00e3o +node = N\u00f3 +node_changed_discard_changes = N\u00f3 alterado. Descartar mudan\u00e7as? +long_node_changed_submit = N\u00f3 alterado. Salvar mudan\u00e7as? +long_node_changed_cancel = N\u00f3 alterado. Descartar mudan\u00e7as? +node_color = Cor do n\u00f3... +node_down = Descer o n\u00f3 +node_up = Subir o n\u00f3 +nonboldify_branch = Retirar o negrito +nonitalicise_branch = Retirar o it\u00e1lico +normal = Normal +no_found_from = N\u00e3o encontrado +no_more_found_from = N\u00e3o mais encontrado +no_previous_find = Sem busca anterior +not_saved_for_link_error = Falha no link. N\u00e3o pode ser salvo. +open = Abrir... +page = Configurar p\u00e1gina... +paste = Colar +new_node_as_sibling_not_possible_for_the_root = Novo n\u00f3 irm\u00e3o, n\u00e3o \u00e9 poss\u00edvel para o n\u00f3 ra\u00edz. +preferences = Prefer\u00eancias +previous_map = Mapa anterior +print = Imprimir +print_dialog = Di\u00e1logo de impress\u00e3o... +print_preview = Ver impress\u00e3o... +print_preview_title =Ver impress\u00e3o +quit = Sair +read_only = Apenas para leitura +remove_node = Remover n\u00f3 +rename=&Renomear +repair_link = Restaurar link +repair_link_question = N\u00e3o foi possivel carregar o mapa solicitado. Corrigir a refer\u00eancia manualmente? +replace= Substituir +save = Salvar +save_as = Salvar como... +save_failed = Falha ao salvar +save_unsaved = Salvar altera\u00e7\u00e3o +saved = Salvo +scheme_evaluate = Avaliar! +select_favorites_folder = Favoritos +select_folder_for_importing = Importar +set_image_by_filechooser = Selecionar Imagem... +set_link_by_filechooser = Escolher caminho pelo navegador... +set_link_by_textfield = Entrar caminho... +sharp_bezier = Ajuste por Bezier +sharp_linear = Ajuste Linear +split = Dividir +style = Estilo +toggle_children_folded = Ocultar/exibir filhos +toggle_folded = Ocultar +underline = Sublinhado +unfold = Fechar +url_error = Erro na URL! +width = Largura +yes = Sim +zoom_in = Ampliar +zoom_out = Reduzir +remove_last_icon = Remover \u00faltimo \u00edcone +remove_all_icons = Remover todos os \u00edcones +lots_of_links_warning = Muitas refer\u00eancias para o mesmo n\u00f3. Voc\u00ea realmente precisa criar essas refer\u00eancias? +remove_arrow_link = Remove a refer\u00eancia gr\u00e1fica +arrow_link_color = Mudar a cor da refer\u00eancia gr\u00e1fica... +# removed: follow_link = Goto: +user_defined_zoom = Amplia\u00e7\u00e3o escolhida +user_defined_zoom_status_bar = Ampliar para o valor selecionado % +# new from 14.12.2003, fc +FAQ = FAQ +# new from 09.12.2006, Dimitri +webDocu = Documenta\u00e7\u00e3o na internet +# new from 20.12.2003, fc +printing_settings = Configura\u00e7\u00e3o da impress\u00e3o +fit_to_page = Ajustar para a p\u00e1gina +user_zoom = Ampliar: +ok = OK +# changed from 23.1.2004, fc. +selection_method_by_click = Sele\u00e7\u00e3o pelo mouse +selection_method_direct = Sele\u00e7\u00e3o direta +#new from 30.08.2004, Dimitri +combined = Combinado +as_parent = Como o n\u00f3 pai +# added at 2.5.2004, fc: +undo = Desfazer +redo = Refazer +delete_child = Apagar n\u00f3 filho +# added at 22.5.2004, fc: +most_recent_files = Arquivos mais recentes +menu_view = Visualizar +menu_navigate = Navegar +menu_format = Formatar +menu_extras = Extras +menu_insert = Inserir +menu_attributes = Atributos +# Beware: "largura da borda " and "Estilo da borda " must end with space. +edge_style = Estilo da borda +edge_width = Largura da borda +menu_file_import = Importar +menu_file_export = Exportar +edit_node = Editar n\u00f3 +# added at 5.6.2004, fc: +node_background_color = Cor de fundo do n\u00f3... +# added at 25.8.2004, fc: +choose_edge_color = Escolha a cor da borda +# added at 27.8.2004, fc: +underlined = Sublinhado +font_size = Tamanho da fonte +font_family = Fam\u00edlia da fonte +# add at 16.9.2004, fc: +import_linked_branch_no_link = O ramo selecionado n\u00e3o tem nenhum link para ser importado. +# added at 09.10.2004 +add_link = Adiciona link gr\u00e1fico +less_than_two_selected_nodes = \u00c9 preciso selecionar ao menos dois n\u00f3s para estabelecer um link. +choose_node_background_color = Cor de fundo do n\u00f3 +choose_node_color = Cor do n\u00f3 +choose_background_color = Cor de fundo +choose_cloud_color = Cor da nuvem +change_arrows_in_arrow_link = Mudar as setas de um link +add_local_link = Adiciona um link local +link_not_available_any_more = O link n\u00e3o \u00e9 mais v\u00e1lido. Um dos n\u00f3s foi apagado. +file_already_exists = O arquivo j\u00e1 existe. Voc\u00ea quer sobrescrev\u00ea-lo? +error_creating_directory = N\u00e3o foi poss\u00edvel criar o diret\u00f3rio para exportar. +export_svg_text = Gr\u00e1fico Vetorial (SVG) +export_pdf_text = Portable Document Format (PDF) +goto_link_node_action = Vai para o link +#fc, 14.11.2004: +undefined_error = Um erro inesperado ocorreu. Por favor tente reportar um erro. +cannot_add_parent_to_root = O n\u00f3 raiz n\u00e3o pode ser adicionado a um novo pai +cannot_delete_root = O n\u00f3 raiz n\u00e3o pode ser deletado ou recortado +cannot_add_parent_diff_parents = Todos os n\u00f3s precisam ter o mesmo pai para usar esta fun\u00e7\u00e3o. +no_format_copy_before_format_paste = Voc\u00ea n\u00e3o pode copiar uma formata\u00e7\u00e3o antes de t\u00ea-la copiado antes. +#fc, 15.11.2004: +accessories/plugins/AutomaticLayout.properties_documentation = Corrige o layout do mapa.
O primeiro n\u00edvel \u00e9 preto, o segundo azul, etc. +accessories/plugins/AutomaticLayout.properties_name = &Layout autom\u00e1tico +accessories/plugins/BlinkingNodeHook.properties_documentation = Torna o n\u00f3 piscante. Mas seja cuidadoso. N\u00e3o aplique isto a muitos n\u00f3s, e n\u00e3o com outras formata\u00e7\u00f5es autom\u00e1ticas ao mesmo n\u00f3 +accessories/plugins/BlinkingNodeHook.properties_name = N\u00f3 piscante +accessories/plugins/CreationModificationPlugin.properties_documentation=Esta fun\u00e7\u00e3o controla os tempos de cria\u00e7\u00e3o e modifica\u00e7\u00e3o dos n\u00f3s. +accessories/plugins/CreationModificationPlugin.properties_name = Mostra as datas de modifica\u00e7\u00e3o +accessories/plugins/ExportToImage_PNG.properties_documentation = Exporta o mapa na configura\u00e7\u00e3o atual como uma imagem PNG. +accessories/plugins/ExportToImage_PNG.properties_name = Como PNG... +accessories/plugins/ExportToImage_JPEG.properties_documentation = Exporta o mapa na configura\u00e7\u00e3o atual como um imagem JPEG. +accessories/plugins/ExportToImage_JPEG.properties_name = Como JPEG... +accessories/plugins/ExportWithXSLT.properties_documentation = Este \u00e9 um m\u00e9todo uniforme de exportar utilizando scripts XSLT. +accessories/plugins/ExportWithXSLT.properties_name = Usando XSLT... +accessories/plugins/ExportWithXSLT_HTML.properties_documentation= Propriedades XHTML +accessories/plugins/ExportWithXSLT_HTML.properties_name = Como XHTML (vers\u00e3o JavaScript)... +accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= Propriedades XHTML 3 +accessories/plugins/ExportWithXSLT_HTML3.properties_name = Como XHTML (Vers\u00e3o com uma imagem clic\u00e1vel)... +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =Como MindManager MindMap... +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= +accessories/plugins/FitToPage.properties_documentation = Ajusta a amplia\u00e7\u00e3o de modo que o mapa todo caiba na janela atual. +accessories/plugins/FitToPage.properties_name = Amplia para caber na p\u00e1gina +accessories/plugins/FormatCopy.properties_documentation = Copia a formata\u00e7\u00e3o de um n\u00f3. +accessories/plugins/FormatCopy.properties_name = Copia a formata\u00e7\u00e3o +accessories/plugins/FormatPaste.properties_documentation = Cola a formata\u00e7\u00e3o de um n\u00f3. +accessories/plugins/FormatPaste.properties_name = Cola formata\u00e7\u00e3o +accessories/plugins/FormularEditor.properties_documentation = Associa um editor de f\u00f3rmulas simples ao n\u00f3 atual. +accessories/plugins/FormularEditor.properties_name = Editor de f\u00f3rmula +accessories/plugins/IconSelectionPlugin.properties_documentation = Aqui voc\u00ea pode selecionar um \u00edcone usando uma janela. +accessories/plugins/IconSelectionPlugin.properties_name = Selecionar \u00edcone... +accessories/plugins/NewParentNode.properties_documentation = Todos os selecionados s\u00e3o enviados para um novo pai. +accessories/plugins/NewParentNode.properties_name = Novo n\u00f3 pai +accessories/plugins/NodeNote.properties_documentation = Associa um editor de notas simples ao n\u00f3 atual. +accessories/plugins/NodeNote.properties_name = Nota +accessories/plugins/PMCalculation.properties_documentation = Calcula os esfor\u00e7os para diferentes tarefas. +accessories/plugins/PMCalculation.properties_name = C\u00e1lculo PM +accessories/plugins/RemoveNote.properties_documentation =Remove a nota de conte\u00fado de provelmente v\u00e1rios notas +accessories/plugins/RemoveNote.properties_name =Remove notas +accessories/plugins/RevisionPlugin.properties_documentation = Marca o fundo de cada n\u00f3 alterado. +accessories/plugins/RevisionPlugin.properties_name = Mostra revis\u00f5es em amarelo +accessories/plugins/SplitNode.properties_documentation = N\u00f3 est\u00e1 dividido +accessories/plugins/SplitNode.properties_name = Divide n\u00f3 +accessories/plugins/UnfoldAll.properties_documentation = Exibe o n\u00f3 atual e todos os seus filhos. +accessories/plugins/UnfoldAll.properties_name = Exibe todos +accessories/plugins/FoldAll.properties_documentation = Oculta o n\u00f3 selecionado e todos os seus filhos. +accessories/plugins/FoldAll.properties_name = Oculta todos +accessories/plugins/UnfoldOneLevel.properties_documentation = Exibe um n\u00edvel dos n\u00f3s selecionados. +accessories/plugins/UnfoldOneLevel.properties_name = Exibe um n\u00edvel +accessories/plugins/FoldOneLevel.properties_documentation = Oculta um n\u00edvel dos n\u00f3s selecionados. +accessories/plugins/FoldOneLevel.properties_name = Oculta um n\u00edvel +plugins/FreemindHelp.xml_documentation = Ajuda ampliada do FreeMind +plugins/FreemindHelp.xml_name = Ajuda... +plugins/ExportPdf.xml_documentation = Exportar para PDF +plugins/ExportPdf.xml_name = Como PDF... +plugins/ExportSvg.xml_documentation = Exportar para SVG +plugins/ExportSvg.xml_name = Como SVG... + +# fc, 28.11.2004: +cannot_move_to_child = N\u00e3o posso mover o n\u00f3 para um de seus filhos. +# fc, 14.12.2004: +accessories/plugins/EnterPassword.properties_name = (Des)criptografa n\u00f3 +accessories/plugins/EnterPassword.properties_documentation= +accessories/plugins/EncryptNode.properties_name = Insere n\u00f3 criptografado ... +accessories/plugins/EncryptNode.properties_documentation = Insere um novo n\u00f3 cujos filhos s\u00e3o armazenados criptografados. +accessories/plugins/EncryptNode.properties_0 = Escolha uma senha para o n\u00f3 criptografado +accessories/plugins/EncryptNode.properties_1 = Senhas s\u00e3o diferentes ou muito curtas. +accessories/plugins/EncryptNode.properties_2 = Digite a senha: +accessories/plugins/EncryptNode.properties_3 = Redigite a senha: +accessories/plugins/EncryptNode.properties_4 = Digite a sua senha. +accessories/plugins/EncryptNode.properties_5 = Lembre-se que a qualidade da criptografia
depende quase completamente da qualidade da sua senha
. +accessories/plugins/EncryptNode.properties_6 = OK +accessories/plugins/EncryptNode.properties_7 = Cancelar +accessories/plugins/EncryptNode.properties_wrong_password = A senha est\u00e1 incorreta. +accessories/plugins/NewEncryptedMap.properties_documentation = Criar um novo mapa criptografado +accessories/plugins/NewEncryptedMap.properties_name = Criar mapa criptografado ... +accessories/plugins/EncryptNode.properties_select_me = Me selecione para continuar! +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Voc\u00ea s\u00f3 pode ativar ou desativar a criptografia de um n\u00f3 criptografado. Por favor insira um n\u00f3 desse tipo usando o menu Ferramentas. +# fc, 2.2.05: +selection_method_delayed= Sele\u00e7\u00e3o autom\u00e1tica com atraso +# fc, 4.2.05: +plugins/TimeManagement.xml_documentation= Mostra o m\u00f3dulo calend\u00e1rio feito por Kai Toedter. +plugins/TimeManagement.xml_name= Mostra calend\u00e1rio... +plugins/TimeManagement.xml_appendButton= Anexa a data ao n\u00f3 selecionado +plugins/TimeManagement.xml_reminderButton= Lembre-me nesta data +plugins/TimeManagement.xml_cancelButton= Cancelar +plugins/TimeManagementReminder.xml_documentation= Atalho interno para agendar o reenvio de tarefas. +plugins/TimeManagementReminder.xml_name= Atalho interno para agendar o reenvio de tarefas. +plugins/TimeManagement.xml_reminderNode_tooltip= Alarme agendado para {0,date} {0,time}. +plugins/TimeManagement.xml_reminderNode_showNode= A hora marcada para o n\u00f3 " {0} " passou. Voc\u00ea quer adiar por 10 minutos ? +plugins/TimeManagement.xml_reminderNode_onlyOneDate= Atualmente, s\u00f3 pode haver um lembrete por n\u00f3.
O lembrete atual est\u00e1 probramado para {0,date} {0,time}, sua escolha foi {1,date} {1,time}.

Voc\u00ea quer alterar o lembrete de hor\u00e1rio do n\u00f3 (SIM)
ou voc\u00ea quer manter o existente (N\u00c3O)? +plugins/TimeManagement.xml_removeReminderButton = Remove alarme +plugins/TimeManagement.xml_removeReminderButton_tooltip = Remove todos os alarmes associados aos n\u00f3s selecionados. +plugins/TimeManagement.xml_minute= Minuto: +plugins/TimeManagement.xml_hour= Hora: +plugins/TimeManagement.xml_WindowTitle= Gerenciamento de tempo +plugins/latex/LatexNodeHook.properties_documentation =F\u00f3rmula Latex +plugins/latex/LatexNodeHook.properties_name =&Latex +plugins/latex/LatexNodeHook.editorTitle =Editor, feche para aceitar +# fc, 18.2.2005: +accessories/plugins/HierarchicalIcons.properties_documentation= Se um dos meus filhos (netos) tem um \u00edcone, eu mostrarei este \u00edcone pequeno tamb\u00e9m. +accessories/plugins/HierarchicalIcons.properties_name= Mostra os \u00edcones hierarquicamente +# fc, 1.3.2005: +icon_full-1 = Prioridade 1 +icon_full-2 = Prioridade 2 +icon_full-3 = Prioridade 3 +icon_full-4 = Prioridade 4 +icon_full-5 = Prioridade 5 +icon_full-6 = Prioridade 6 +icon_full-7 = Prioridade 7 +# fc, 11.3.2005: +RevertAction= Reverter +# the prefix for the reconstructed map (revert + undo). +freemind_reverted= Freemind revertido +# fc, 5.4.2005 +plugins/TimeManagement.xml_todayButton= Hoje +plugins/TimeList.xml_documentation= Mostra todos os tempos agendados e os n\u00f3s correspondentes. +plugins/TimeList.xml_name= Mostra a lista da agenda ... +remove_node_background_color = Remove a cor de fundo dos n\u00f3s +#plugins/NodeList.xml_documentation=Shows all nodes with its creation/modification dates. +#plugins/NodeList.xml_name=Show Map History ... +plugins/TimeList.xml_Modified= Modificado +plugins/TimeList.xml_Created= Criado +plugins/TimeList.xml_Date= Data +plugins/TimeList.xml_Text= Texto +plugins/TimeList.xml_Icons= \u00cdcones +#fc, 26.4.2005: +select_branch= Selecionar ramos vis\u00edveis +select_all= Selecionar todos os ramos visiveis +change_link_arrows= Mudar as setas dos links +# fc, 27.4.2005: +reset_node_position= Redefinir posi\u00e7\u00e3o +# fc, 2.5.2005: +plugins/RemoveReminder.xml_documentation= Remove o alarme de um n\u00f3. +plugins/RemoveReminder.xml_name= Remove alarme +# fc, 3.5.2005: +plugins/TimeManagement.xml_reminderButton_tooltip=Quando pressionado um temporizador \u00e9 programado para da data fornecida. Ent\u00e3o, \u00edcones piscantes chama sua aten\u00e7\u00e3o.
Se voc\u00ea fechar o mapa, os temporizadores ser\u00e3o reativados na pr\u00f3xima vez que o mapa for aberto. +# dimitri, 8.05.05 +filter_toolbar= Filtro +filter_dialog=Tipos de filtros +filter_no_filtering= Sem filtragem +filter_selected_node_view= Ver n\u00f3 para filtro selecionado +filter_conditions = Filtros +filter_edit= Editar +filter_edit_description= Editar lista de filtros +filter_unfold_ancestors= Desdobrar n\u00f3s filtrados +filter_icon= \u00cdcone +filter_node= N\u00f3 de texto +filter_exist= Existe +filter_does_not_exist= N\u00e3o existe +filter_contains= Cont\u00e9m +filter_is_equal_to= \u00c9 igual a +filter_is_not_equal_to= N\u00e3o \u00e9 igual a +filter_ignore_case= Ignora mai\u00fasculas/min\u00fasculas +filter_enter_value= Entre valor +filter_add= Adicionar +filter_delete= Deletar +filter_select= Selecionar +filter_not= N\u00e3o +filter_and= E +filter_or= Ou +filter_show_ancestors= Mostra ancestrais +filter_show_descendants= Mostra descendentes +# dimitri, 10.07.2005 +attributes_all= Todos os atributos +attributes_attribute= Atributos +attributes_close= Fechar +attribute_delete= Apaga todos os valores +attribute_delete_value= Apaga este valor +attributes_edit= Editar +attributes_edit_in_place= Editar atributos +attributes_edit_tooltip= Editar conjunto +attribute_font_size_tooltip= Tamanho de fonte do atributo +attributes_dialog= Gerenciador de atributos +attributes_dialog_title= Gerenciador de Atributos +attributes_import= Importar +attributes_import_tooltip= Importar atributos de outros mapas abertos +attributes_assign_dialog= Atribuir atributos... +attributes_visible= Selecionar vis\u00edveis +attributes_visible_tooltip= Sele\u00e7\u00e3o para Ver->Atributo->Mostrar Tributos Selecionados +attributes_refresh= Reiniciar +attribute_replace= Substituir por +attributes_restriction= Restri\u00e7\u00f5es +attributes_restricted_attributes_tooltip= Restrinje conjunto de atributos +attributes_restricted_values_tooltip= Restrinje conjunto de valores para o atributo atual +attributes_select_all= Todos +attributes_select_all_tooltip= Seleciona / Desseleciona tudo +attributes_for_selected= N\u00f3s selecionados +attributes_for_visible= Todos os n\u00f3s vis\u00edveis +attributes_deselect_all= Nenhum +attribute_list_box_label_text= Valores existentes +attributes_popup_edit= Editar +attributes_popup_optimal_width= Largura \u00f3tima +attributes_popup_hide= Esconder +attributes_popup_new= Novo atributo +attributes_popup_delete= Apagar +attributes_popup_up= Acima +attributes_popup_down= Abaixo +attributes_show= Exibir +attributes_show_all = Exibir todos os atributos +attributes_show_selected = Exibir n\u00f3s selecionadoos +attributes_hide_all = Esconder todos os atributos +attribute_top= Todos os atributos conhecidos para os n\u00f3s selecionados +attributes_skip_root= Exclui n\u00f3 raiz +attributes_no_import_candidates_found= Nenhum atributo novo encontrado +attributes_adding_empty_attribute_error= Erro atributo vazio +# fc, 10.5.2005: +property_dialog= Prefer\u00eancias ... +OptionPanel.automatic= Autom\u00e1tico +OptionPanel.de=De +OptionPanel.dk=Dk +OptionPanel.en=En +OptionPanel.es=Es +OptionPanel.fr=Fr +OptionPanel.gl=Gl +OptionPanel.hu=Hu +OptionPanel.it=It +OptionPanel.ja=Ja +OptionPanel.ko=Ko +OptionPanel.nl=Nl +OptionPanel.pl=Pl +OptionPanel.pt_BR=Pt BR +OptionPanel.pt_PT=Pt PT +OptionPanel.ru=Ru +OptionPanel.sl=Sl +OptionPanel.zh_TW=Zh +OptionPanel.zh_CN=Zh CN +OptionPanel.fork= Fork +OptionPanel.bubble= Bolha +OptionPanel.as_parent= Como o pai +OptionPanel.combined= Combinado +OptionPanel.bezier= Bezier +OptionPanel.linear= Linear +OptionPanel.default= Padr\u00e3o +OptionPanel.metal= Metal +OptionPanel.windows= Windows +OptionPanel.motif= Motif +OptionPanel.gtk= Gtk +OptionPanel.nothing= Nada +OptionPanel.relative= Relativo +OptionPanel.absolute= Absoluto +OptionPanel.first= Primeiro +OptionPanel.last= \u00daltimo +OptionPanel.selection_method_direct= Direto +OptionPanel.selection_method_delayed= Atrasado +OptionPanel.selection_method_by_click= Por clique +OptionPanel.html_export_no_folding= Sem desdobramento +OptionPanel.html_export_fold_currently_folded= Exporta como visto +OptionPanel.html_export_fold_all= N\u00e3o exibe todos +OptionPanel.html_export_based_on_headings= Baseado nos cabe\u00e7alhos +OptionPanel.Environment= Ambiente +OptionPanel.Files= Arquivos +OptionPanel.language= Idioma +OptionPanel.language.tooltip=Este \u00e9 o idioma que ser\u00e1 utilizado no programa. 'automatico' tenta carregar a linguagem atual do usu\u00e1rio. +OptionPanel.experimental_file_locking_on= Travamento experimental de arquivo +OptionPanel.experimental_file_locking_on.tooltip= Recurso experimental +OptionPanel.draganddrop= Arrastar e soltar +OptionPanel.draganddrop.tooltip=Se arrastar e soltar est\u00e1 ativado. +OptionPanel.userproperties= Propriedades do usu\u00e1rio +OptionPanel.patternsfile= Configura\u00e7\u00e3o do arquivo +OptionPanel.docmapurl_since_version_0_7_0= Docmapurl +OptionPanel.browsemode_initial_map= Mapa inicial do modo browse +OptionPanel.browsemode_initial_map.tooltip=A URL do mapa que ser\u00e1 carregado quando o modo browse iniciar. +OptionPanel.last_opened_list_length= Comprimento da lista de arquivos abertos recentemente +OptionPanel.time_for_automatic_save= Tempo para salvamento autom\u00e1tico +OptionPanel.time_for_automatic_save.tooltip= tempo entre duas grava\u00e7\u00f5es autom\u00e1ticas consectivas (em ms). Para desativar a grava\u00e7\u00e3o autom\u00e1tica, defina este n\u00famero como 2000000000. +OptionPanel.delete_automatic_saves_at_exit= Apaga grava\u00e7\u00f5es autom\u00e1ticas quando sair +OptionPanel.delete_automatic_saves_at_exit.tooltip= Caso voc\u00ea deseje que as grava\u00e7\u00f5es autom\u00e1ticas sejam apagadas quando o Freemind for desligado normalmente, selecione esta caixa de di\u00e1logo. +OptionPanel.number_of_different_files_for_automatic_save= N\u00famero de arquivos diferentes para salvamento autom\u00e1tico +OptionPanel.number_of_different_files_for_automatic_save.tooltip= N\u00famero de arquivos diferentes para armazenar os mapas. Quando for realizado este n\u00famero de grava\u00e7\u00f5es autom\u00e1ticas o primeiro arquivo gravada ser\u00e1 regravado com o mapa mais recente e o ciclo se reinicia. +OptionPanel.path_to_automatic_saves= Diret\u00f3rio para salvamento autom\u00e1tico +OptionPanel.path_to_automatic_saves.tooltip= para alterar o caminho padr\u00e3o, entre o caminho padr\u00e3o aqui. Outras possibilidades: * freemind_home \u00e9 o diret\u00f3rio onde auto.properties est\u00e1 localizado. * default aponta para java.io.tmpdir +OptionPanel.Defaults= Padr\u00f5es +OptionPanel.standardnodestyle= Estilo padr\u00e3o do n\u00f3 +OptionPanel.standardnodestyle.tooltip=O estilo padr\u00e3o para os novos n\u00f3s. Pode ser: 'bifurcar', 'bolha' 'como o pai' e 'combinado' +OptionPanel.standardrootnodestyle= Estilo padr\u00e3o do n\u00f3 raiz +OptionPanel.standardrootnodestyle.tooltip=O estilo padr\u00e3o do n\u00f3 raiz. S\u00e3o permitidos os valores 'bifurcar', 'bolha' e 'combinado' +OptionPanel.standardnodetextcolor= Cor padr\u00e3o do n\u00f3 +OptionPanel.standardnodetextcolor.tooltip=A cor padr\u00e3o do n\u00f3. Em nota\u00e7\u00e3o HTML (#RRGGBB em valores hexadecimais) +OptionPanel.standardselectednodecolor= Cor padr\u00e3o do n\u00f3 selecionado +OptionPanel.standardselectednodecolor.tooltip=A cor padr\u00e3o dos n\u00f3s selecionados. Em nota\u00e7\u00e3o HTML (#RRGGBB em valores hexadecimais) +OptionPanel.standardselectednoderectanglecolor=Selecione a cor da bolha +OptionPanel.standardselectednoderectanglecolor.tooltip= A cor da bolha que marca os n\u00f3s selecionados. Em anota\u00e7\u00e3o html (#RRGGBB em hexadecimal) +OptionPanel.standarddrawrectangleforselection=Mostra os nos selecionados em bolhas +OptionPanel.standarddrawrectangleforselection.tooltip=Marca os n\u00f3s selecionados com uma bolha ao redor +OptionPanel.standardedgecolor= Cor padr\u00e3o da borda +OptionPanel.standardedgecolor.tooltip=A cor padr\u00e3o da borda em nota\u00e7\u00e3o HTML +OptionPanel.standardlinkcolor= Cor padr\u00e3o do link +OptionPanel.standardlinkcolor.tooltip=A cor padr\u00e3o do link em nota\u00e7\u00e3o HTML +OptionPanel.standardbackgroundcolor= Cor padr\u00e3o do fundo +OptionPanel.standardbackgroundcolor.tooltip=A cor padr\u00e3o do fundo em nota\u00e7\u00e3o HTML +OptionPanel.printonwhitebackground=Fundo branco para impress\u00e3o +OptionPanel.printonwhitebackground.tooltip=Sempre use fundo branco para impress\u00e3o +OptionPanel.standardcloudcolor= Cor padr\u00e3o da nuvem +OptionPanel.standardcloudcolor.tooltip=A cor padr\u00e3o da nuvem em nota\u00e7\u00e3o HTML +OptionPanel.defaultfont= Fonte padr\u00e3o +OptionPanel.defaultfont.tooltip=A fonte padr\u00e3o do n\u00f3. Funcionar\u00e1 apenas se a fonte escolhida estiver dispon\u00edvel no sistema +OptionPanel.defaultfontstyle= Estilo de fonte padr\u00e3o +OptionPanel.defaultfontsize= Tamanho de fonte padr\u00e3o +OptionPanel.max_node_width= Largura m\u00e1xima do n\u00f3 +OptionPanel.max_node_width.tooltip=A largura m\u00e1xima do n\u00f3 em pixels +OptionPanel.standardedgestyle= Estilo padr\u00e3o da borda +OptionPanel.standardedgestyle.tooltip=O estilo padr\u00e3o da borda. S\u00e3o suportados 'linear' e 'bezier' +OptionPanel.standardcloudestyle= Estilo padr\u00e3o da nuvem +OptionPanel.standardcloudestyle.tooltip=O estilo padr\u00e3o da nuvem. No momento apenas 'bezier' \u00e9 suportado +OptionPanel.standardlinkestyle= Estilo padr\u00e3o do link +OptionPanel.standardlinkestyle.tooltip=O estilo padr\u00e3o do link. No momento apenas 'bezier' \u00e9 suportado +OptionPanel.Appearance= Apar\u00eancia +OptionPanel.lookandfeel= Estilo +OptionPanel.lookandfeel.tooltip= O Estilo a usar. "metal", "windows", "motf", "gtk" s\u00e3o suportados, "mac" fica dispon\u00edvel somente para MacOS. Padr\u00e3o significa que o estilo padr\u00e3o \u00e9 usado. Se voc\u00ea quiser colocar seu pr\u00f3rpio estilo, favpr entrar o nome da classe e assegure que os arquivos .jar correspondente est\u00e3o carregados. Se houver problemas com o estilo, n\u00e3o escolha nada aqui. Funciona para applets +OptionPanel.mapxsize= Tamanho X do mapa +OptionPanel.mapxsize.tooltip=O tamanho inicial de cada mapa +OptionPanel.mapysize= Tamanho Y do mapa +OptionPanel.links= Links +OptionPanel.links.tooltip=Define os links como relativos ou absolutos +OptionPanel.el__buttons_position= Posi\u00e7\u00e3o dos bot\u00f5es +OptionPanel.el__buttons_position.tooltip= acima / abaixo +OptionPanel.el__position_window_below_node= Posiciona janela abaixo do n\u00f3 +OptionPanel.el__min_default_window_height= Altura padr\u00e3o m\u00ednima da janela +OptionPanel.el__max_default_window_height= Altura padr\u00e3o m\u00e1xima da janela +OptionPanel.el__min_default_window_width= Largura padr\u00e3o m\u00ednima da janela +OptionPanel.el__max_default_window_width= Largura padr\u00e3o m\u00e1xima da janela +OptionPanel.el__enter_confirms_by_default= Enter confirma por padr\u00e3o +OptionPanel.el__show_icon_for_attributes= Mostra \u00edcones para atributos +OptionPanel.Keystrokes= Teclas de atalho +OptionPanel.keystroke_newMap= NovoMapa +OptionPanel.keystroke_open= Abrir +OptionPanel.keystroke_save= Salvar +OptionPanel.keystroke_saveAs= SalvarComo +OptionPanel.keystroke_print= Imprimir +OptionPanel.keystroke_close= Fechar +OptionPanel.keystroke_quit= Sair +OptionPanel.keystroke_export_to_html= Exportar para HTML +OptionPanel.keystroke_export_branch_to_html= Exportar ramo para HTML +OptionPanel.keystroke_open_first_in_history= Abre o primeiro no hist\u00f3rico +OptionPanel.keystroke_previousMap= Mapa Anterior +OptionPanel.keystroke_nextMap= Pr\u00f3ximo Mapa +OptionPanel.keystroke_mode_MindMap= Modo MindMap +OptionPanel.keystroke_mode_Browse= Modo Browse +OptionPanel.keystroke_mode_File= Modo Arquivo +OptionPanel.keystroke_node_toggle_italic= Inverte it\u00e1lico do n\u00f3 +OptionPanel.keystroke_node_toggle_boldface= Inverte negrito do n\u00f3 +OptionPanel.keystroke_node_toggle_underlined= Inverte sublinhado do n\u00f3 +OptionPanel.keystroke_node_toggle_cloud= Inverte nuvem do n\u00f3 +OptionPanel.keystroke_undo= Desfazer +OptionPanel.keystroke_redo= Refazer +OptionPanel.keystroke_delete_child= Apaga filho +OptionPanel.keystroke_select_all= Selecionar todos +OptionPanel.keystroke_select_branch= Selecionar ramos +OptionPanel.keystroke_zoom_out= Reduzir +OptionPanel.keystroke_zoom_in= Ampliar +OptionPanel.keystroke_cut= Cortar +OptionPanel.keystroke_copy= Copiar +OptionPanel.keystroke_copy_single= C\u00f3pia simples +OptionPanel.keystroke_paste= Colar +OptionPanel.keystroke_remove= Remover +OptionPanel.keystroke_add_arrow_link_action= Adiciona uma a\u00e7\u00e3o \u00e0 seta +OptionPanel.keystroke_add_local_link_action= Adiciona uma a\u00e7\u00e3o \u00e0 seta +OptionPanel.keystroke_moveToRoot= Mover Para Raiz +OptionPanel.keystroke_move_up= Mover Acima +OptionPanel.keystroke_move_down= Mover Abaixo +OptionPanel.keystroke_move_left= Mover \u00e0 Esquerda +OptionPanel.keystroke_move_right= Mover \u00e0 Direita +OptionPanel.keystroke_follow_link= Seguir link +OptionPanel.keystroke_add= Adicionar +OptionPanel.keystroke_add_child= Adicionar Filho +OptionPanel.keystroke_add_child_mac= Adicionar Filho Mac +OptionPanel.keystroke_add_sibling_before= Adicionar Irm\u00e3o Antes +OptionPanel.keystroke_edit= Editar +OptionPanel.keystroke_edit_long_node= Editar n\u00f3 com texto longo +OptionPanel.keystroke_join_nodes= Unir n\u00f3s +OptionPanel.keystroke_toggle_folded= Oculta/exibe +OptionPanel.keystroke_toggle_children_folded= Oculta/exibe ramos filhos +OptionPanel.keystroke_set_link_by_filechooser= Definir link pelo seletor de arquivos +OptionPanel.keystroke_set_link_by_textfield= Definir link pelo campo de texto +OptionPanel.keystroke_set_image_by_filechooser= Definir imagem pelo seletor de arquivos +OptionPanel.keystroke_node_up= Sobe n\u00f3 +OptionPanel.keystroke_node_down= Desce n\u00f3 +OptionPanel.keystroke_node_increase_font_size= Aumenta Fonte +OptionPanel.keystroke_node_decrease_font_size= Reduz Fonte +OptionPanel.keystroke_export_branch= Exportar galho +OptionPanel.keystroke_node_color= Cor do n\u00f3 +OptionPanel.keystroke_node_color_blend= Mistura da cor do n\u00f3 +OptionPanel.keystroke_edge_color= Cor da borda +OptionPanel.keystroke_find= Procurar +OptionPanel.keystroke_find_next= Procurar pr\u00f3ximo +OptionPanel.keystroke_apply_pattern_1=Aplica Estilo 1 +OptionPanel.keystroke_apply_pattern_2=Aplica Estilo 2 +OptionPanel.keystroke_apply_pattern_3=Aplica Estilo 3 +OptionPanel.keystroke_apply_pattern_4=Aplica Estilo 4 +OptionPanel.keystroke_apply_pattern_5=Aplica Estilo 5 +OptionPanel.keystroke_apply_pattern_6=Aplica Estilo 6 +OptionPanel.keystroke_apply_pattern_7=Aplica Estilo 7 +OptionPanel.keystroke_apply_pattern_8=Aplica Estilo 8 +OptionPanel.keystroke_apply_pattern_9=Aplica Estilo 9 +OptionPanel.keystroke_apply_pattern_10=Aplica Estilo 10 +OptionPanel.keystroke_apply_pattern_11=Aplica Estilo 11 +OptionPanel.keystroke_apply_pattern_12=Aplica Estilo 12 +OptionPanel.keystroke_apply_pattern_13=Aplica Estilo 13 +OptionPanel.keystroke_apply_pattern_14=Aplica Estilo 14 +OptionPanel.keystroke_apply_pattern_15=Aplica Estilo 15 +OptionPanel.keystroke_apply_pattern_16=Aplica Estilo 16 +OptionPanel.keystroke_apply_pattern_17=Aplica Estilo 17 +OptionPanel.keystroke_apply_pattern_18=Aplica Estilo 18 +OptionPanel.Behaviour=Comportamento +OptionPanel.placenewbranches=Posiciona os novos ramos +OptionPanel.placenewbranches.tooltip=Onde posicionar os novos ramos. Valores v\u00e1lidos s\u00e3o 'primeiro' e '\u00faltimo' +OptionPanel.disable_cursor_move_paper=Desabilita cursor de movimenta\u00e7\u00e3o da tela +OptionPanel.disable_cursor_move_paper.tooltip=N\u00e3o mostra o cursor de 'mover' enquanto est\u00e1 movendo a figura +OptionPanel.enable_leaves_folding=Habilita oculta\u00e7\u00e3o das folhas +# FIXME: Needs improvement +OptionPanel.enable_leaves_folding.tooltip=Habilita oculta\u00e7\u00e3o das folhas = altera\u00e7\u00e3o do formato bolha/bifurca\u00e7\u00e3o quando ocultado (mesmo quando falso voc\u00ea sempre pode alterar o estilo do n\u00f3) +OptionPanel.foldingsymbolwidth=Largura do s\u00edmbolo de oculta\u00e7\u00e3o +OptionPanel.foldingsymbolwidth.tooltip=Largura do s\u00edmbolo de marca\u00e7\u00e3o de ramo oculto +OptionPanel.disable_key_type= Desabilita edi\u00e7\u00e3o autom\u00e1tica +OptionPanel.disable_key_type.tooltip=Edi\u00e7\u00e3o autom\u00e1tica: se atividado a digita\u00e7\u00e3o de uma tecla inicia a edi\u00e7\u00e3o do n\u00f3 +OptionPanel.key_type_adds_new= Edi\u00e7\u00e3o autom\u00e1tica cria novo n\u00f3 +OptionPanel.key_type_adds_new.tooltip=Edi\u00e7\u00e3o autom\u00e1tica: sobrescreve conte\u00fado (falso) / cria novo n\u00f3 (verdadeiro) (necessita: Desabilita edi\u00e7\u00e3o autom\u00e1tica = verdadeiro) +OptionPanel.selection_method= M\u00e9todo de sele\u00e7\u00e3o +# FIXME: Needs translation +OptionPanel.selection_method.tooltip= Com a esta chave voc\u00ea pode habilitar/desabilitar o esquema de sele\u00e7\u00e3o atrasado. A op\u00e7\u00e3o Auto n\u00e3o modifica isto j\u00e1 que ele est\u00e3r salvos no auto.properties de qualquer maneira. +OptionPanel.time_for_delayed_selection=Tempo para sele\u00e7\u00e3o retardada +OptionPanel.time_for_delayed_selection.tooltip= Tempo at\u00e9 que o n\u00f3 sobre o qual o mouse est\u00e1 seja selecionado automaticamente (em milisegundos). Altere este valor para um caso se deseje sele\u00e7\u00e3o instantanea. +OptionPanel.HTML=HTML +OptionPanel.default_browser_command_windows_nt=Comando padr\u00e3o para o browser no Windows NT +OptionPanel.default_browser_command_windows_nt.tooltip=Para o Windows (as aspas ("") s\u00e3o necess\u00e1rias para links que tem "=" em suas URLs). +OptionPanel.default_browser_command_windows_9x=Comando padr\u00e3o para o browser no Windows 9x +OptionPanel.default_browser_command_windows_9x.tooltip=Para o Windows (as aspas ("") s\u00e3o necess\u00e1rias para links que tem "=" em suas URLs). +OptionPanel.default_browser_command_other_os=Comando padr\u00e3o para o browser em outros sistemas operacionais +OptionPanel.default_browser_command_other_os.tooltip= Este \u00e9 o que deve ser usado para o Linux: +OptionPanel.default_browser_command_mac=Comando padr\u00e3o para o browser no MacOS +OptionPanel.default_browser_command_mac.tooltip= e para o MAC: (gra\u00e7as ao Nick!) +OptionPanel.html_export_folding=Exporta os contra\u00eddos para HTML +OptionPanel.export_icons_in_html=Exporta \u00edcones para HTML +OptionPanel.export_icons_in_html.tooltip= Informa se o HTML exportado pelo FreeMind deve conter \u00edcones. O problema com \u00edcones \u00e9 que muito frequentemente os links para os \u00edcones podem n\u00e3o ser encontrados no HTML exportado. +OptionPanel.Cancel=Cancelar +OptionPanel.OK=Salvar +option_changes_may_require_restart=Para ver os efeitos das mudan\u00e7as de configura\u00e7\u00e3o o FreeMind provavelmente dever\u00e1 ser reiniciado. +# fc, 12.5.2005: +GrabKeyDialog.grab-key.title=Digite nova tecla +GrabKeyDialog.grab-key.caption= +GrabKeyDialog.grab-key.clear=Limpar +GrabKeyDialog.grab-key.assigned-to.none=Atualmente n\u00e3o atribu\u00eddo +GrabKeyDialog.grab-key.assigned-to=Atribu\u00eddo para +GrabKeyDialog.common.ok=OK +GrabKeyDialog.grab-key.remove=Remove +GrabKeyDialog.common.cancel=Cancela +GrabKeyDialog.grab-key.remove-ask=Voc\u00ea est\u00e1 seguro que deseja remover esta tecla de atalho? +OptionPanel.separator.language=Idioma +OptionPanel.separator.files=Arquivos +OptionPanel.separator.automatic_save=Salvar autom\u00e1tico +OptionPanel.separator.default_styles=Estilos padr\u00e3o +OptionPanel.separator.default_colors=Cores padr\u00e3o +OptionPanel.separator.selection_colors=Sele\u00e7\u00e3o de Cores +OptionPanel.separator.default_fonts=Fontes padr\u00e3o +OptionPanel.separator.other_defaults=Outros padr\u00e3o +OptionPanel.separator.look_and_feel= Apar\u00eancia +OptionPanel.separator.anti_alias= Suaviza\u00e7\u00e3o +OptionPanel.separator.initial_map_size= Tamanho inicial do mapa +OptionPanel.separator.hyperlink_types= Tipos de links +OptionPanel.separator.edit_long_node_window= Janela de edi\u00e7\u00e3o de n\u00f3s com texto longo +OptionPanel.separator.commands_for_the_program= Comandos para o programa +OptionPanel.separator.node_editing_commands= Comandos de edi\u00e7\u00e3o de n\u00f3s +OptionPanel.separator.node_navigation_commands= Comandos de navega\u00e7\u00e3o nos n\u00f3s +OptionPanel.separator.new_node_commands= Comandos de cria\u00e7\u00e3o de n\u00f3s +OptionPanel.separator.patterns=Modelos +OptionPanel.separator.behaviour= Comportamento +OptionPanel.separator.key_typing= Digita\u00e7\u00e3o +OptionPanel.separator.selection_method= M\u00e9todo de sele\u00e7\u00e3o +OptionPanel.separator.browser= Browser +OptionPanel.separator.html_export= Exportar para HTML +OptionPanel.separator.attributes= Atributos +OptionPanel.separator.icons= \u00cdcones em "Selecione \u00cdcone..." +OptionPanel.keystroke_edit_attributes= Editar atributos +OptionPanel.keystroke_show_all_attributes= Mostrar todos os atributos +OptionPanel.keystroke_show_selected_attributes= Mostrar os atributos selecionados +OptionPanel.keystroke_hide_all_attributes= Esconder todos os atributos +OptionPanel.keystroke_show_attribute_manager= Mostrar o gerenciador de atributos +OptionPanel.keystroke_assign_attributes= Atribuir atributos ... +# fc, 2.6.2005: +OptionPanel.antialias.tooltip=Determina a qualidade visual do mapa. Mais suaviza\u00e7\u00e3o precisa de mais tempo. +OptionPanel.antialias= Suaviza\u00e7\u00e3o +OptionPanel.antialias_edges= Suaviza bordas +OptionPanel.antialias_all= Suaviza tudo +OptionPanel.antialias_none= Sem suaviza\u00e7\u00e3o +OptionPanel.cs= Cs +OptionPanel.nb= Nb +# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above +follow_link = Abrir link +OptionPanel.ColorProperty.ResetColor= Restaurar cor +# fc, 16.6.2005: +OptionPanel.keystroke_option_dialog= Prefer\u00eancias +format_menu_edge_styles= Estilo da bordas +format_menu_edge_widths= Largura da bordas +# fc, 3.7.2005: +accessories/plugins/ImportMindmanagerFiles.properties_name= MindManager X5 Map... +# fc, 5.7.2005: +accessories/plugins/ExportToOoWriter.properties_documentation= N\u00f3s exibidos formam a estrutura do cap\u00edtulo do documento
Os n\u00f3s ocultos s\u00e3o colocados dentro destes cap\u00edtulos como listas ou par\u00e1grafos. +accessories/plugins/ExportToOoWriter.properties_name= Como documento do OpenOffice Writer ... +# fc, 10.7.2005: +OptionPanel.separator.undo= Desfazer +OptionPanel.undo_levels= Defazer n\u00edveis +OptionPanel.undo_levels.tooltip=Determina quantos n\u00edveis podem ser defeitos com o "Desfazer". +# fc, 13.8.2005 +OptionPanel.lt=Lt +# fc, 12.1.2006: if you create a translation of the documentation file, change this value (see german translation): +browsemode_initial_map = ./doc/freemind.mm +# fc, 1.2.06 +link_not_found = Link $1 n\u00e3o encontrado. +# fc, 15.2.06 +icon_smily_bad = N\u00e3o \u00e9 engra\u00e7ado +OptionPanel.hr= Hr +OptionPanel.nn= Nn +OptionPanel.se= Se +OptionPanel.unfold_on_paste=Mostra o n\u00f3 ao colar +OptionPanel.unfold_on_paste.tooltip=Mostra o n\u00f3 ao colar ou arrastar +# fc, 16.2.06 +accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Exporta o mapa como um applet Java +accessories/plugins/ExportWithXSLT_Applet.properties_name=Como um applet Java... +accessories/plugins/ExportWithXSLT_Applet.properties_webpage=P\u00e1gina da web +accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Exporta o mapa como uma aplica\u00e7\u00e3o em Flash. +accessories/plugins/ExportWithXSLT_Flash.properties_name=Como Flash... +# fc, 21.2.06 +accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=A esquerda da raiz o(s) n\u00f3(s) \u00e9/s\u00e3o deslocado(s) para baixo. A direita da raiz, desloca para cima. Sobre a raiz, on\u00f3 muda de lado +accessories/plugins/ChangeNodeLevelAction_left.properties_name=N\u00f3 esquerdo +accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=A direita da raiz o(s) n\u00f3(s) \u00e9/s\u00e3o deslocado(s) para baixo. A esquerda da raiz, desloca para cima. Sobre a raiz, on\u00f3 muda de lado +accessories/plugins/ChangeNodeLevelAction_right.properties_name=N\u00f3 direito +# fc, 27.2.06: +PatternDialog.ColorProperty.ResetColor=Redefinir Cor +PatternDialog.EdgeWidth_1=1 +PatternDialog.EdgeWidth_2=2 +PatternDialog.EdgeWidth_4=4 +PatternDialog.EdgeWidth_8=8 +PatternDialog.EdgeWidth_parent=Como o pai +PatternDialog.EdgeWidth_thin=Fino +PatternDialog.as_parent=Como o pai +PatternDialog.bezier=Bezier +PatternDialog.bubble=Bolha +PatternDialog.combined= Combinado +PatternDialog.edgecolor.tooltip=Propriedade da borda do n\u00f3 pai (tamb\u00e9m ser\u00e1 aplicada a todos os n\u00f3s filhos) +PatternDialog.edgecolor=Cor da borda +PatternDialog.edgestyle.tooltip=Propriedade da borda do n\u00f3 pai (tamb\u00e9m ser\u00e1 aplicada a todos os n\u00f3s filhos) +PatternDialog.edgestyle=Estilo da borda +PatternDialog.edgewidth.tooltip=Propriedade da borda do n\u00f3 pai (tamb\u00e9m ser\u00e1 aplicada a todos os n\u00f3s filhos) +PatternDialog.edgewidth=Largura da borda +PatternDialog.fork=Bifurcar +PatternDialog.linear=Linear +PatternDialog.nodebackgroundcolor=Cor de fundo do n\u00f3 +PatternDialog.nodecolor=Cor do n\u00f3 +PatternDialog.nodestyle=Estilo do n\u00f3 +PatternDialog.nodetext=Texto do n\u00f3 +PatternDialog.separator.EdgeControls=Bordas +PatternDialog.separator.NodeColors=Cores do n\u00f3 +PatternDialog.separator.NodeStyles=Estilos do n\u00f3 +# FIXME: Needs improvement +PatternDialog.sharp_bezier=bezier "exato" +PatternDialog.sharp_linear=linear "exato" +PatternDialog.undefined_font=Fonte n\u00e3o definida +accessories/plugins/ApplyFormatPlugin.properties_documentation=Mostra um quadro de di\u00e1logo onde os atributos dos n\u00f3s e das bordas pode ser alterado ao mesmo tempo. +accessories/plugins/ApplyFormatPlugin.properties_name=Muda a formata\u00e7\u00e3o ... +accessories/plugins/ApplyFormatPlugin.dialog.title=Muda a formata\u00e7\u00e3o dos n\u00f3s + +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Move \u00e0 esquerda +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Move \u00e0 direita +OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Copiar formata\u00e7\u00e3o +OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Colar formata\u00e7\u00e3o +OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Inserir \u00edcone +OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Indentar n\u00f3s +OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Dividir n\u00f3 +# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Oculta um n\u00edvel +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Exibe um n\u00edvel +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Oculta tudo +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Exibe tudo +OptionPanel.separator.others= Outra tecla de atalhos + +PatternDialog.separator.General=Geral +PatternDialog.clear_all_setters=Muda todos +PatternDialog.clear_all_setters.tooltip=Ativa ou desativa todas as indica\u00e7\u00f5es de mudan\u00e7a. +# fc, 1.3.06: +accessories/plugins/ManagePatterns.dialog.title=Gerencia padr\u00f5es... +accessories/plugins/ManagePatterns.not_found=Arquivo de padr\u00f5es n\u00e3o pode ser carregado. +accessories/plugins/ManagePatterns.properties_documentation=Altera os padr\u00f5es definidos em patterns.xml em um editor. O resultado \u00e9 gravado automaticamente. +accessories/plugins/ManagePatterns.properties_name=Gerencia padr\u00f5es... +PatternDialog.nodefontbold=Negrito +PatternDialog.nodefontitalic=It\u00e1lico +PatternDialog.separator.NodeFont=Fonte do n\u00f3 +# fc, 19.3.06: +ManagePatternsPopupDialog.remove=Remove modelo +ManagePatternsPopupDialog.add=Adiciona novo modelo +PatternDialog.patternname=Nome do modelo +PatternDialog.patternname.tooltip=Nome do modelo +PatternNewNameProperty=Novo modelo +ManagePatternsPopupDialog.DuplicateNameMessage=Voc\u00ea escolheu o mesmo nome duas vezes. Por favor conserte isto antes de fechar este quadro de di\u00e1logo. +PatternDialog.childpattern.tooltip=O estilo selecionado ser\u00e1 aplicado para todos os filhos. +PatternDialog.childpattern=Estilo do filho +ManagePatternsPopupDialog.Save=Grava e retorna +PatternDialog.icon.tooltip=Se aplicado, o n\u00f3 ter\u00e1 exatamente este \u00edcone. +PatternDialog.icon=\u00cdcone +PatternDialog.set_property_text=Mudar +PatternDialog.set_property_text.tooltip=Vazio:N\u00e3o toque; Menos: Remove a propriedade (define valores padr\u00e3o); Mais:Altera propriedade +accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Altera modelo +OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Faz o layout autom\u00e1tico dos modelos +OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Estilos +PatternToString.color=Cores +PatternToString.backgroundColor=Cor de fundo +PatternToString.NodeFontSize=Tamanho da fonte +OptionPanel.level1=Formata\u00e7\u00e3o do n\u00f3 raiz +OptionPanel.level2=Formata\u00e7\u00e3o de n\u00f3s do primeiro n\u00edvel +OptionPanel.level3=Formata\u00e7\u00e3o de n\u00f3s do segundo n\u00edvel +OptionPanel.level4=Formata\u00e7\u00e3o de n\u00f3s do terceiro n\u00edvel +OptionPanel.level5=Formata\u00e7\u00e3o de n\u00f3s de outros n\u00edveis +OptionPanel.automaticFormat_level=Estilos de layout autom\u00e1tico +# fc, 13.4.06: +ManagePatternsPopupDialog.duplicate=Duplica padr\u00e3o +ManagePatternsPopupDialog.from_nodes=Cria estilo a partir dos n\u00f3s selecionados +# fc, 25.5.2006: +accessories/plugins/SaveAll.properties_documentation=Grava todos os mapas abertos. +accessories/plugins/SaveAll.properties_name=Grava tudo +accessories/plugins/SaveAll.properties_save_all_cancelled=A opera\u00e7\u00e3o n\u00e3o foi completada com sucesso. +# fc, 23.7.06 +OptionPanel.loadLastMap=Abre o \u00faltimo mapa automaticamente. +OptionPanel.loadLastMap.tooltip=Caso selecionado, quando o FreeMind inicializar ele ir\u00e1 abrir automaticamente o \u00faltimo mapa aberto. +# dan, whenever +use_rich_formatting = Usa formata\u00e7\u00e3o Rich Text +use_plain_text = Usa texto puro +# fc, 30.7.06: +FreeMind.progress.gettingPreferenceDirectories=Obtendo diret\u00f3rios de prefer\u00eancias... +FreeMind.progress.gettingPreferences=Obtendo prefer\u00eancias... +FreeMind.progress.updateLookAndFeel=Atualizando Apar\u00eancia... +FreeMind.progress.createController=Criando controlador... +FreeMind.progress.settingPreferences=Definindo prefer\u00eancias... +FreeMind.progress.propageteLookAndFeel=Propagando Apar\u00eancia... +FreeMind.progress.createInitialMode=Criando modo inicial... +FreeMind.progress.startCreateController=Inicializando controlador de cria\u00e7\u00e3o... +FreeMind.progress.loadMaps=Carregando mapas... +FreeMind.progress.buildScreen=Construindo telas... +FreeMind.progress.endStartup=Fim da inicializa\u00e7\u00e3o. +OptionPanel.tr=Tr +OptionPanel.level=N\u00edvel +# fc, 13.8.06: +map_not_saved=O mapa n\u00e3o foi salvo anteriormente. +# fc, 27.8.06: +plugins/TimeManagement.xml_Find=Buscar +plugins/TimeManagement.xml_Replace=Substituir +plugins/TimeManagement.xml_Select=Selecionar +plugins/TimeManagement.xml_Export=Exportar n\u00f3s selecionados +plugins/TimeManagement.xml_Replace_All=Substituir todos +plugins/TimeManagement.xml_Replace_Selected=Substituir selecionados +plugins/TimeManagement.xml_Goto=Ir para +plugins/TimeManagement.xml_Cancel=Cancelar +# fc, 2.9.06: +automatically_save_message=Mapa foi salvo automaticamente (no arquivo {0}) ... + +plugins/ScriptingEngine.xml_documentation=Executa todos os scripts (recursivamente, as folhas primeiro). +plugins/ScriptingEngine.xml_name=Executar +# fc, 4.9.06 +OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Executar +# fc, 6.9.06: +error_applying_template=Erro aplicando template XSL. +# fc, 11.10.06: +# FIXME: Needs translation +accessories/plugins/NodeNote_jumpto.properties_documentation=Move para resp. da janela de texto +accessories/plugins/NodeNote_jumpto.properties_name=Vai para edi\u00e7\u00e3o +#accessories/plugins/NodeNote_jumpfrom.properties_documentation=Switch back from notes to mindmap +#accessories/plugins/NodeNote_jumpfrom.properties_name=Leave note +# fc, 12.10.06 +OptionPanel.max_tooltip_width=Largura da dica de ferramenta +OptionPanel.max_tooltip_width.tooltip=A largura padr\u00e3o da dica de ferramenta em pixels. +# fc, 13.10.06: renamed: +plugins/NodeList.xml_documentation=Mostra todos os n\u00f3s como uma lista filtr\u00e1vel. +# FIXME: Needs translation +OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Alterna para anota\u00e7\u00e3o do n\u00f3 +OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Mostra/esconde janela de notas +OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key= Apaga nota +# aki 19.10.06: (TJI support) +accessories/plugins/ExportWithXSLT_Applet.properties_tji= Incluir arquivos no Task Juggler +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Exporta tarefas do n\u00f3 TASKS para o m\u00f3dulo TaskJuggler. +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Tarefas do n\u00f3 TASKS para um arquivo do TaskJuggler... +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Exporta recursos do n\u00f3 RESOURCES para o m\u00f3dulo do TaskJuggler. +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Recursos do n\u00f3 RESOURCES para um arquivo do TaskJuggler... +# fc, 14.12.2006: renamed: +plugins/NodeList.xml_name=Busca e substitui... +plugins/TimeManagement.xml_menu_actions=A\u00e7\u00f5es +# fc, 23.12.06: +plugins/TimeList.xml_Notes=Notas +# fc, 30.12.06: +accessories/plugins/SortNodes.properties_documentation=Ordena todos os filhos de um n\u00f3 alfabeticamente. +accessories/plugins/SortNodes.properties_name=Ordena filhos +# fc, 3.1.07: +OptionPanel.ar=Ar +# fc, 10.1.07: +plugins/TimeManagement.xml_WindowTitle_All_Nodes=Busca & substitui +plugins/ScriptEditor.xml_documentation=Permite escrever scripts maiores dentro do FreeMind. +plugins/ScriptEditor.xml_name=Editor de scripts... +# fc, 24.1.07: +plugins/ScriptEditor/window.title=Editor de scripts +plugins/ScriptEditor.menu_actions=A\u00e7\u00f5es +plugins/ScriptEditor.run=Executar +plugins/ScriptEditor/window.Result=Resultado: + +# SimplyHTML.properties +# +# resource bundle with strings for application SimplyHTML +# - English Language (default) - +# edit menu definition +simplyhtml.editLabel=Editar + +# edit menu items +simplyhtml.undoLabel=Desfazer +simplyhtml.undoTip=Desfaz a \u00faltima a\u00e7\u00e3o +simplyhtml.redoLabel=Refazer +simplyhtml.redoTip=Refaza \u00faltima a\u00e7\u00e3o +simplyhtml.cutLabel=Cortar +simplyhtml.cutTip=Cortar +simplyhtml.copyLabel=Copiar +simplyhtml.copyTip=Copiar +simplyhtml.pasteLabel=Colar +simplyhtml.pasteTip=Colar +simplyhtml.selectAllLabel=Seleciona tudo +simplyhtml.findReplaceLabel=Busca & substitui +simplyhtml.findReplaceTip=Busca & substitui + +#insert menu definition +simplyhtml.insertTableLabel=Tabela... +# format menu definition +simplyhtml.formatLabel=Formatar + +# format menu items +simplyhtml.fontLabel=Fonte... +simplyhtml.fontTip=Formatar fonte... +simplyhtml.clearFormatLabel=Remover formata\u00e7\u00e3o +simplyhtml.clearFormatTip=Remover formata\u00e7\u00e3o +simplyhtml.fontBoldLabel=Negrito +simplyhtml.fontBoldImage=resources/bold.gif +simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif +simplyhtml.fontBoldTip=liga/desliga negrito +simplyhtml.fontColorTip=Cor do Texto +simplyhtml.fontColorLabel=Cor do Texto +simplyhtml.fontColorImage=resources/fontColor.gif +simplyhtml.fontItalicLabel=It\u00e1lico +simplyhtml.fontItalicImage=resources/italic.gif +simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif +simplyhtml.fontItalicTip=Liga/desliga it\u00e1lico +simplyhtml.fontUnderlineLabel=Sublinhado +simplyhtml.fontUnderlineImage=resources/uline.gif +simplyhtml.fontUnderlineTip=Liga/desliga sublinhado +simplyhtml.formatTableLabel=Tabela... +simplyhtml.formatTableTip=Formatar tabela +simplyhtml.toggleBulletsLabel=Liga/desliga lista com marcadores +simplyhtml.toggleBulletsTip=Liga/desliga lista com marcadores +simplyhtml.toggleNumbersLabel=Liga/desliga lista numerada +simplyhtml.toggleNumbersTip=Liga/desliga lista numerada +simplyhtml.formatListLabel=Lista... +simplyhtml.formatListTip=Muda formata\u00e7\u00e3o da lista +simplyhtml.formatParaLabel=Par\u00e1grafo... +simplyhtml.formatParaTip=Muda formata\u00e7\u00e3o do par\u00e1grafo +simplyhtml.paraAlignLeftLabel=Alinhar \u00e0 esquerda +simplyhtml.paraAlignLeftTip=Definir alinhamento do par\u00e1grafo \u00e0 esquerda +simplyhtml.paraAlignCenterLabel=Alinhar ao centro +simplyhtml.paraAlignCenterTip=Definir alinhamento do par\u00e1grafo ao centro +simplyhtml.paraAlignRightLabel=Alinhar \u00e0 direita +simplyhtml.paraAlignRightTip=Definir alinhamento do par\u00e1grafo \u00e0 direita + +# table menu definition +# table menu items +simplyhtml.tableLabel=Tabela +simplyhtml.nextTableCellLabel=Pr\u00f3xima c\u00e9lula +simplyhtml.prevTableCellLabel=C\u00e9lula anterior +simplyhtml.insertTableRowLabel=Inserir linha +simplyhtml.insertTableColLabel=Inserir coluna +simplyhtml.appendTableRowLabel=Adicionar linha +simplyhtml.appendTableColLabel=Adicionar coluna +simplyhtml.deleteTableRowLabel=Apagar linha +simplyhtml.deleteTableColLabel=Apagar coluna +simplyhtml.helpLabel=Ajuda +simplyhtml.aboutLabel=Sobre SimplyHTML + +# About frame +simplyhtml.aboutFrameTitle=Sobre esta aplica\u00e7\u00e3o + +# Font Dialog +simplyhtml.fontDialogTitle=Formatar fonte + +# Font panel +simplyhtml.uLineLabel=Sublinhado +simplyhtml.strikeLabel=Riscado +simplyhtml.previewLabel=Visualizar +simplyhtml.previewText=Visualizar texto +simplyhtml.familyLabel=Fam\u00edlia +simplyhtml.sizeLabel=Tamanho +simplyhtml.plainName=Normal +simplyhtml.boldName=Negrito +simplyhtml.italicName=It\u00e1lico +simplyhtml.boldItalicName=Negrito it\u00e1lico +simplyhtml.styleLabel=Estilo +simplyhtml.effectLabel=Efeito +simplyhtml.colorLabel=Cor +simplyhtml.foregroundLabel=Plano de frente: +simplyhtml.backgroundLabel=Plano de fundo: +simplyhtml.noLineLabel=Nenhum + +# Paragraph style panel +simplyhtml.textIndentLabel=Indentar: +simplyhtml.alignLabel=Alinhamentoo: +simplyhtml.alignLeft=Esquerda +simplyhtml.alignCenter=Centro +simplyhtml.alignRight=Direita +simplyhtml.valignLabel=Alinhamento vertical: +simplyhtml.valignTop=Topo +simplyhtml.valignMiddle=Meio +simplyhtml.valignBottom=Base +# FIXME: Needs translation +simplyhtml.valignBaseline=Linha base + +# Margin panel +simplyhtml.marginLabel=Exterior +simplyhtml.paddingLabel=Interior + +# Table dialog +simplyhtml.tableDialogTitle=Formatar tabela +simplyhtml.tablePanelTitle=Formato da tabela +simplyhtml.cellPanelTitle=Formatar c\u00e9lula +simplyhtml.tableWidthLabel=Largura: +simplyhtml.tableBgColLabel=Cor de fundo: +simplyhtml.cellMarginTabLabel=Margem +simplyhtml.cellBorderTabLabel=Bordas +simplyhtml.borderWidthLabel=Largura +simplyhtml.borderColorLabel=Cor: +simplyhtml.thisCellRangeLabel=Esta c\u00e9lula +simplyhtml.thisColRangeLabel=Esta coluna +simplyhtml.thisRowRangeLabel=Esta linha +simplyhtml.allCellsRangeLabel=Todas as c\u00e9lulas +simplyhtml.applyCellAttrLabel=Aplicar em +simplyhtml.cellGenTabLabel=Geral + +# Paragraph style dialog +simplyhtml.paraStyleDialogTitle=Estilo do par\u00e1grafo +simplyhtml.fontTabLabel=Fonte +simplyhtml.paraTabLabel=Par\u00e1grafo + +# Tag names +simplyhtml.cTagNamePara=Par\u00e1grafo +simplyhtml.cTagNameHead1=Cabe\u00e7alho 1 +simplyhtml.cTagNameHead2=Cabe\u00e7alho 2 +simplyhtml.cTagNameHead3=Cabe\u00e7alho 3 +simplyhtml.cTagNameHead4=Cabe\u00e7alho 4 +simplyhtml.cTagNameHead5=Cabe\u00e7alho 5 +simplyhtml.cTagNameHead6=Cabe\u00e7alho 6 +simplyhtml.cTagNameLink=Link +simplyhtml.cTagNameUL=Lista n\u00e3o-ordenada +simplyhtml.cTagNameOL=Lista ordenada + +# List dialog +simplyhtml.listDialogTitle=Formatar lista +simplyhtml.listTypeLabel=Tipo: +simplyhtml.listPositionLabel=Posi\u00e7\u00e3o: +simplyhtml.listIndentTitle=Indenta\u00e7\u00e3o: +simplyhtml.listTypeNone=Nenhum +simplyhtml.listTypeDecimal=1.,2.,3.,4. +simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. +simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. +simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. +simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. +simplyhtml.listTypeDisc=S\u00edmbolo de arquivo como marcador +simplyhtml.listTypeCircle=marcador redondo +simplyhtml.listTypeSquare=marcador quadrado +simplyhtml.listPosInside=Dentro +simplyhtml.listPosOutside=Fora + +# Find & replace dialog +simplyhtml.findReplaceDialogTitle=Busca & substitui +simplyhtml.findNext=Buscar pr\u00f3xima... +simplyhtml.searchFromStart=A partir do in\u00edcio +simplyhtml.searchDown=Para baixo +simplyhtml.wholeWordsOnly=Apenas palavras inteiras +simplyhtml.searchUp=Para cima +simplyhtml.matchCase=Diferenciar mai\u00fasculas de min\u00fasculas +simplyhtml.replaceWith=Substituir com: +simplyhtml.textToFind=Buscar texto: +simplyhtml.replace=Substituir... +simplyhtml.noMoreOccurrencesFound=N\u00e3o foram encontradas (outras) ocorr\u00eancias +simplyhtml.allOccurrencesReplaced=Todas as ocorr\u00eancias foram substitu\u00eddas +simplyhtml.replaceThisQuery=Substitui esta ocorr\u00eancia de +simplyhtml.replaceYes=Sim +simplyhtml.replaceNo=N\u00e3o +simplyhtml.replaceAll=Todas +simplyhtml.replaceDone=Feito +simplyhtml.unableToUndoError=Imposs\u00edvel defazer +simplyhtml.unableToRedoError=Imposs\u00edvel refazer +simplyhtml.unableToOpenFileError=Arquivo n\u00e3o p\u00f4de ser aberto + +# Miscellaneous text +simplyhtml.imageFileDesc=Arquivos de imagem +simplyhtml.defaultDocName=Nome padr\u00e3o +simplyhtml.cancelBtnName=Cancelar +simplyhtml.closeBtnName=Fechar +simplyhtml.okBtnName=OK +simplyhtml.leftLabel=esquerda: +simplyhtml.rightLabel=direita: +simplyhtml.topLabel=acima: +simplyhtml.bottomLabel=abaixo: +simplyhtml.insertTableTitle=Inserir tabela +simplyhtml.insertTableMsg=Quantas colunas? +simplyhtml.close=Fechar +simplyhtml.standardStyleName=Padr\u00e3o +simplyhtml.styleNameInputTitle=Gravar estilo +simplyhtml.styleNameInputText=Nome do novo estilo? +simplyhtml.newStyleDefaultName=Novo estilo +simplyhtml.docTitleTitle=Editar t\u00edtulo do documento +simplyhtml.docTitleQuery=Altera t\u00edtulo para: +simplyhtml.layoutTabTitle=Ver layout +simplyhtml.htmlTabTitle=Ver c\u00f3digo HTML + +#fc, 14.2.07: +ScriptEditorPanel.changed_cancel=Os scripts foram alterados. Voc\u00ea realmente quer abandonar as altera\u00e7\u00f5es ? + +# fc, 2.3.07: +OptionPanel.separator.mouse_wheel=Roda do mouse +OptionPanel.wheel_velocity=Velocidade +OptionPanel.wheel_velocity.tooltip=Um valor mais alto resulta em um efeito mais r\u00e1pido ao se mover a roda do mouse sobre o mapa. + +# fc, 15.5.07: +accessories/plugins/NodeHistoryBack.properties_name=Voltar +accessories/plugins/NodeHistoryBack.properties_documentation=Pula de volta para cadeia selecionada +accessories/plugins/NodeHistoryForward.properties_name= Para frente +accessories/plugins/NodeHistoryForward.properties_documentation=Pula para frente para cadeia selecionada + +# fc, 25.5.07: +OptionPanel.use_tabbed_pane.tooltip=Se selecionado os mapas sao mostrados em abas (como no FireFox :-) ). +OptionPanel.use_tabbed_pane=Usar abas + +# fc, 11.6.07: +accessories/plugins/ExportWithTWiki.properties_name=Como TWiki... +accessories/plugins/ExportWithTWiki.properties_documentation=Exporta o mapa como um documento TWiki. +accessories/plugins/ExportWithTWiki.properties=Arquivo TWiki (*.twi) + +# fc, 31.7.07 +really_remove_node=Deseja mesmo remover n\u00f3(s)? +confirmation=Confirma\u00e7\u00e3o +OptionalDontShowMeAgainDialog.dontShowAgain=&Nao me pergunte novamente. +OptionalDontShowMeAgainDialog.rememberMyDescision=&Lembre da minha escolha. +OptionalDontShowMeAgainDialog.cancel=&N\u00e3o +OptionalDontShowMeAgainDialog.ok=&Sim +OptionPanel.separator.resources_notifications=Perguntar +OptionPanel.delete_nodes_without_question=Remover sem perguntar +OptionPanel.delete_nodes_without_question.tooltip=Se esta op\u00e7\u00e3o for escolhida os n\u00f3s ser\u00e3o removidos sem confirma\u00e7\u00e3o. isto pode causar perda de informa\u00e7\u00e3o se pressionada sem inten\u00e7\u00e3o. + +edit.decision=Editor HTML +edit.edit_rich_text=Deseja usar formata\u00e7\u00e3o como negrito e it\u00e1lico? +OptionPanel.remind_type_of_new_nodes.tooltip="Perguntar" ira perguntar para voc\u00ea (use se em duvida).
"Sim" mostra editor de rich text.
"N?o" mostra editor de texto puro. +OptionPanel.ask=Perguntar + +OptionPanel.standardselectednodetextcolor.tooltip=Cor padr\u00e3o +# fc, 4.9.07: +really_execute_script=Voc\u00ea deseja mesmo executar os scripts incluidos neste mapa? E possivel que eles prejudiquem seu computador. +OptionPanel.resources_execute_scripts_without_asking=Scripts devem ser executados sem confirmacao? +OptionPanel.execute_scripts_without_asking.tooltip=Scripts FreeMind sao capazes de executar qualquer acao em seu computador.
Desta forma, voc\u00ea nao deve executar scripts que voc\u00ea nao tenha certeza que sejam seguros. +PatternToString.EdgeStyle= Estilo da borda +PatternToString.EdgeColor=Cor da Borda +PatternToString.EdgeWidth= Espessura da borda +PatternToString.FontBold=Negrito +PatternToString.FontItalic=It\u00e1lico +PatternToString.FontName=Nome da Fonte +PatternToString.Icon=\u00cdcone +PatternToString.Child=Estilo do n\u00f3 filho +ManagePatternsPopupDialog.Actions=&A\u00e7\u00f5es + +#Dimitry 19.10.07: +node_location_help=Arrastar muda localizacao do n\u00f3, ctrl+arrastar muda distancia, duplo clique e ctrl+duplo clique reinicializam-os. + +#fc, 19.10.07: +really_convert_to_current_version=Este mapa foi criado com uma versao anterior do FreeMind.
Voc\u00ea deseja converter (recomendado)?
(De outra forma ele sera lido como ele esta sem garantia.) +OptionPanel.resources_convert_to_current_version=Automaticamente converta mapas de versoes antigas do FreeMind
para a versao atual? +OptionPanel.resources_convert_to_current_version.tooltip=Apenas para mapas grandes que nao precisam ser convertidos
(este e um conhecimento de expert) voc\u00ea pode abrir os mapas sem converte-los. +OptionPanel.separator.root_node_appearance=Apar\u00eancia do n\u00f3 raiz +OptionPanel.use_common_out_point_for_root_node=Bordas iniciam a partir de um ponto no n\u00f3 raiz +OptionPanel.use_common_out_point_for_root_node.tooltip=Bordas iniciam a partir de um ponto no n\u00f3 raiz====== +ManagePatternsPopupDialog.apply=Aplicar +PatternDialog.setscript=Alterar? +PatternDialog.setscript.tooltip=Um script pode estar associado ao estilo +PatternDialog.script=Script (instru\u00e7\u00e3o) +PatternDialog.script.tooltip=O script como c\u00f3digo fonte +OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Gest\u00e3o de estilos +toggle_menubar = Ativar barra de menu +toggle_toolbar = Ativar barra de ferramentas +toggle_left_toolbar = Ativar barra de ferramenta lateral +accessories/plugins/NodeNote_hide_show.properties_name=Mostra/esconde janela de notas +selection_as_rectangle=Sele\u00e7\u00e3o retangular +really_cut_node=Deseja realmente recortar n\u00f3s? +OptionPanel.resources_cut_nodes_without_question=Recortar n\u00f3s sem perguntar? +OptionPanel.cut_nodes_without_question.tooltip=Se esta caixa for selecionada, os n\u00f3s s\u00e3o recortados sem perguntar. Isto pode causar perda de informa\u00e7\u00e3o se pressionado inadivertidamente +follow_graphical_link=V\u00e1 para: +# fc, 10.11.2006: +# FIXME: Needs translation +accessories/plugins/NodeNote_hide_show.properties_documentation= \u00c9 um atalho para menu para as setas pequenas de linnhas divididas +plugins/ScriptEditor.new_script=Novo script +OptionPanel.separator.save=Salvar +OptionPanel.save_only_intrisically_needed_ids=Salve os ID\u00b4s dos n\u00f3s usados, somente +OptionPanel.save_only_intrisically_needed_ids.tooltip=Quando marcado, os ID dos n\u00f3s s\u00e3o omitidos de que n\u00e3o foram usados no mapa. Observe que voc\u00ea n\u00e3o pode fazer link de um mapa externo para um n\u00f3 espec\u00edfico dentro do mapa sem um ID de n\u00f3. +OptionPanel.plugins/scripting/tab_name=Instru\u00e7\u00e3o (scripting) +OptionPanel.separator.plugins/scripting/separatorPropertyName=Permiss\u00f5es +OptionPanel.resources_execute_scripts_without_file_restriction=Permite opera\u00e7\u00f5es de arquivos (N\u00e3o Recomendado) +OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=Se os seus Script Groovy precisarem executar a\u00e7\u00f5es especiais de arquivo (abrir, fechar, ler, escrever, deletar(!),
voc\u00ea tem que habilitar esta op\u00e7\u00e3o.
Seja cuidadoso, j\u00e1 que scripts maliciosos podem machucar seu computador! +OptionPanel.resources_execute_scripts_without_network_restriction=Permite Opera\u00e7\u00e3o de Rede (N\u00e3o Recomendado) +OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=Se os seus Scriptis Groovy precisarem executar a\u00e7\u00f5es especiais de rede,
voc\u00ea tem que habilitar esta op\u00e7\u00e3o.
Seja cuidadoso, j\u00e1 que scripts maciosos podem mostrar seus segredos +OptionPanel.resources_execute_scripts_without_exec_restriction=Permite execu\u00e7\u00e3o de outras aplica\u00e7\u00f5es (N\u00e3o Recomendado) +OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=Se os seus Scripts Groovy precisarem executar outras aplica\u00e7\u00f5es (como um browser) sem perguntar(!),
voc\u00ea tem que habilitar esta op\u00e7\u00e3o.
Seja cuidadoso, j\u00e1 que scripts maliciosos podem machucar seu computador! +plugins/ScriptEditor.FORBIDDEN_ACTION=Groovy scriptis do FreeMind s\u00e3o restritos. A seguinte opera\u00e7\u00e3o {0,choice,0#File|1#Network|2#Exec} \u00e9 proibida:{1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Voc\u00ea pode trocar isto na configura\u00e7\u00e3o do programa +plugins/ScriptEditor.cancel=&Descarta Mudan\u00e7as e Sai +plugins/ScriptEditor.exit=Sair +plugins/TimeManagement.xml_closeButton=Fechar +PatternDialog.nodebackgroundcolor.tooltip=Cor de Fundo do n\u00f3 +PatternDialog.nodecolor.tooltip=Cor do n\u00f3 +PatternDialog.nodestyle.tooltip=Estilo do n\u00f3 +PatternDialog.nodetext.tooltip=Inserir um texto +PatternDialog.nodefontname=Fonte do n\u00f3 +PatternDialog.nodefontsize=Tamanho da fonte +# fc, 14.3.06: +PatternDialog.nodefontname.tooltip=Fonte do n\u00f3 +PatternDialog.nodefontsize.tooltip=Tamanho da fonte +PatternDialog.nodefontbold.tooltip=Negrito +PatternDialog.nodefontitalic.tooltip=It\u00e1lico +PatternDialog.separator.ScriptingControl=Scripting (programa\u00e7\u00e3o) +OptionPanel.resources_don_t_show_note_icons=N\u00e3o mostre as notas dos \u00edcones +FreeMind=Homepage do FreeMind +really_remove_notes=Remover realmente as notas? +OptionPanel.resources_remove_notes_without_question=Remover as notas sem perguntar? +OptionPanel.remove_notes_without_question.tooltip=Se voc\u00ea selecionar as notas pertencentes aos n\u00f3s selecionados ser\u00e3o removidos sem confirma\u00e7\u00e3o. Isto pode causar perda de informa\u00e7\u00e3o se pressionado inadivertidamente. +OptionPanel.resources_save_folding_state=Sempre salvar mudan\u00e7a de estado dos ramos +OptionPanel.resources_save_folding_state.tooltip=Se voc\u00ea selecionar, cada a\u00e7\u00e3o de ocultar suja o mapa e lembra voc\u00ea para salvar. +plugins/ScriptEditor.sign=Script de Assinatura... +OptionPanel.resources_script_user_key_name_for_signing=Chave de usu\u00e1rio opcional para assianatura +OptionPanel.resources_script_user_key_name_for_signing.tooltip=Se voc\u00ea desejar assinar seus scripts, entre com o apelido da chave aqui.
A chave \u00e9 esperada para ser armazenada na tecla de atalho padr\u00e3o.
A senha secreta da chave deve coincidir com a senha da chave de atalho (isto \u00e9 o padr\u00e3o) +OptionPanel.resources_signed_script_are_trusted=Confiar nos scripts assinados (recomendado) +OptionPanel.resources_signed_script_are_trusted.tooltip=Se os scripts s\u00e3o assinados por uma segunda pessoa confi\u00e1vel (isto \u00e9, de um autor do FreeMind ou voc\u00ea mesmo) ele ser\u00e1 executado sem restri\u00e7\u00f5es. +export_branch_new =Ramo como um novo mapa mental... +icon_yes =Importante +icon_folder =Ocultar +icon_up =Para cima +icon_down =Para baixo +icon_smiley-neutral =Sem import\u00e2ncia +icon_smiley-oh =Surpreso +icon_smiley-angry =Zangado +icon_encrypted =Trancado +icon_decrypted =Destrancado +icon_broken-line =Quebrado +icon_flag-black =Bandeira Preta +icon_flag-blue =Bandeira Azul +icon_flag-green =Bandeira Verde +icon_flag-orange =Bandeira Laranja +icon_flag-pink =Bandeira Rosa +icon_flag-yellow =Bandeira Amarela +icon_clock =Tempo +icon_hourglass =Aguardando +icon_calendar =Data +icon_kmail =E-mail +icon_edit =Editar +icon_stop-sign =Parar +icon_closed =Fechado +icon_flag = Bandeira Vermelha +OptionPanel.remind_use_rich_text_in_new_long_nodes=Use formata\u00e7\u00e3o para todos os n\u00f3s +icon_freemind_butterfly =FreeMind +icon_full-8 =Prioridade 8 +icon_full-9 =Prioridade 9 +node_is_write_protected=N\u00f3 de destino est\u00e1 protegido contra escrita +KeyDoc=Documenta\u00e7\u00e3o Chave em PDF +pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide.pdf +icon_info=informa\u00e7\u00e3o +icon_full-0=Prioridade 0 +icon_prepare=Luz amarela +icon_go=Luz verde +icon_list=Lista +icon_launch=Lan\u00e7ar +icon_family=Fam\u00edlia +icon_female1=Mulher 1 +icon_female2=Mulher 2 +icon_male1=Homem 1 +icon_male2=Homem 2 +icon_fema=Mulheres +icon_group=Grupo +OptionPanel.separator.icon_properties=\u00cdcones +OptionPanel.icons.list=Lista de \u00edcones padr\u00e3o mostrados +OptionPanel.icon_order_description=Aqui voc\u00ea pode liberar ou dasabilitar os \u00edcones padr\u00e3o. Os \u00edcones t\u00eam que ser separados por ",". +OptionPanel.sk=Sk +OptionPanel.el=El +OptionPanel.et=Et +OptionPanel.id=Id +OptionPanel.uk_UA=Uk UA +OptionPanel.vi=Vi +select_icon=Selecione um \u00edcone +mode_MindMap=Modo Mapa Mental +mode_Browse=Modo Browser +mode_File=Modo Arquivo +mode_status = O Status mudou para {0} +mode_title =FreeMind - {0} +OptionPanel.defaultfontsize.tooltip=Tamanho de fontes padr\u00e3o para novos n\u00f3s +OptionPanel.ro=Ro +locking_old_lock_removed= Removido travamento antigo +toggle_bold_branch = Negrito +toggle_italic_branch = It\u00e1lico +url_load_error = Erro ao carregar URL +aaattributes_visible_tooltip= +OptionPanel.automaticFormat_level1=Formata\u00e7\u00e3o do n\u00f3 raiz +OptionPanel.automaticFormat_level2=Formata n\u00f3s do primeiro n\u00edvel + +# Error messages +simplyhtml.unableToDesfazerError=Imposs\u00edvel desfazer: +simplyhtml.unableToRefazerError=Imposs\u00edvel refazer: +aaaattributes_visible_tooltip= + aaaaaattributes_visible_tooltip= Seleciona vis\u00edveis + +really_convert_to_current_version2=O mapa mental que voc\u00ea est\u00e1 tentando abrir foi criado com uma vers\u00e3o anterior do FreeMind, e armazenado em um formato antigo.
O FreeMind est\u00e1 prestes a converter este mapa mental ao seu formato atual.
Por\u00e9m, depois que o mapa mental for convertido e salvo por esta vers\u00e3o do FreeMind, n\u00e3o poder\u00e1 ser aberto em vers\u00f5es anteriores do FreeMind.
Deseja que o FreeMind converta e abra este mapa mental? + +# de rodrigo starr: +#really_convert_to_current_version2=O mapa mental que voc\u00ea est\u00e1 tentando abrir foi criado com uma vers\u00e3o antiga do FreeMind, e est\u00e1 armazenado em um formato antigo.
FreeMind ir\u00e1 converter esta vers\u00e3o para o formato atual.
Se o mapa mental for salvo por esta vers\u00e3o do FreeMind, ele n\u00e3o poder\u00e1 mais ser aberto por vers\u00f5es mais antigas.
Voc\u00ea tem certeza que quer abrir e converter este mapa mental? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_pt_PT.properties freemind-0.9.0RC7/Resources_pt_PT.properties --- freemind-0.9.0RC6/Resources_pt_PT.properties 2009-06-24 21:40:18.000000000 +0100 +++ freemind-0.9.0RC7/Resources_pt_PT.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,7 +1,7 @@ # by Luis Valente - alvalente about = Acerca de... -#about_text = Joerg Mueller's FreeMind\nAplica\u00e7\u00e3o do conceito de cartas mentais \u00e0 interface Homem/M\u00e1quina.\nCopyright (C) 2000-2001 Joerg Mueller \nEste programa \u00e9 um software livre (GPL)\nHome: http://freemind.sourceforge.net/\nDivirta-se!\nVersion: -about_text = Joerg Mueller's FreeMind\nTrazendo a abordagem dos Mapas de Conceitos para o design de Interfaces Homem-Computador.\nCopyright (C) 2000-2004 Joerg Muellere outros.\nEste programa \u00e9 software livre (GPL)\nHome: http://freemind.sourceforge.net/\nDivirta-se!\nVers\u00e3o: +#about_text = Joerg Mueller's FreeMind\nAplica\u00e7\u00e3o do conceito de cartas mentais \u00e0 interface Homem/M\u00e1quina.\nCopyright (C) 2000-2010 Joerg Mueller \nEste programa \u00e9 um software livre (GPL)\nHome: http://freemind.sourceforge.net/\nDivirta-se!\nVersion: +about_text = Joerg Mueller's FreeMind\nTrazendo a abordagem dos Mapas de Conceitos para o design de Interfaces Homem-Computador.\nCopyright (C) 2000-2010 Joerg Muellere outros.\nEste programa \u00e9 software livre (GPL)\nHome: http://freemind.sourceforge.net/\nDivirta-se!\nVers\u00e3o: antialias_all = "anti-alias" total antialias_edges = Linhas "anti-alias" antialias_none = Remover "anti-alias" @@ -92,7 +92,7 @@ italicise_branch = It\u00e1lico join_nodes = Juntar n\u00f3s license = Licen\u00e7a -license_text = FreeMind - Um programa para criar e visualizar mapas mentais ( Mindmaps ).\nCopyright (C) 2000-2001 Joerg Mueller \nVer "COPYING" para mais detalhes.\n\nEste programa \u00e9 software livre; pode ser distribu\u00eddo e/ou modificado\nsob os termos da Licen\u00e7a Publica GNU ( General Public License )\ncomo publicado pela Free Software Foundation, na sua vers\u00e3o 2\nou (\u00e0 sua escolha) qualquer vers\u00e3o posterior.\n\nEste programa \u00e9 distrubido na esperan\u00e7a de ser \u00fatil e de ser utilizado,\nmas SEM QUALQUER GARANTIA, nem mesmo a garantia impl\u00edcita de COMERCIALIZA\u00c7\u00c3O\nou APLICABILIDADE PARA UM DESTINO ESPEC\u00cdFICO.\n Ver a licen\u00e7a GNU ( General Public License ) para mais detalhe.\n\nDever\u00e1 ter recebido uma c\u00f3pia da Licen\u00e7a GNU ( General Public License )\njuntamente com este programa; Se isso n\u00e3o ocorreu, escreva para\nFree Software Foundation, Inc.,\n59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Um programa para criar e visualizar mapas mentais ( Mindmaps ).\nCopyright (C) 2000-2010 Joerg Mueller \nVer "COPYING" para mais detalhes.\n\nEste programa \u00e9 software livre; pode ser distribu\u00eddo e/ou modificado\nsob os termos da Licen\u00e7a Publica GNU ( General Public License )\ncomo publicado pela Free Software Foundation, na sua vers\u00e3o 2\nou (\u00e0 sua escolha) qualquer vers\u00e3o posterior.\n\nEste programa \u00e9 distrubido na esperan\u00e7a de ser \u00fatil e de ser utilizado,\nmas SEM QUALQUER GARANTIA, nem mesmo a garantia impl\u00edcita de COMERCIALIZA\u00c7\u00c3O\nou APLICABILIDADE PARA UM DESTINO ESPEC\u00cdFICO.\n Ver a licen\u00e7a GNU ( General Public License ) para mais detalhe.\n\nDever\u00e1 ter recebido uma c\u00f3pia da Licen\u00e7a GNU ( General Public License )\njuntamente com este programa; Se isso n\u00e3o ocorreu, escreva para\nFree Software Foundation, Inc.,\n59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linear locking_failed_by_open = Bloqueio do mapa $1 falhou. Vai ser aberto em modo s\u00f3 de leitura. locking_failed_by_save_as = Bloqueio do mapa $1 falhou. Opera\u00e7\u00e3o "guardar como" cancelada. @@ -1203,4 +1203,7 @@ OptionPanel.printonwhitebackground=Fundo branco para impress\u00e3o OptionPanel.separator.selection_colors=Cores da selec\u00e7\u00e3o OptionPanel.standardselectednoderectanglecolor=Cor do rect\u00e2ngulo de selec\u00e7\u00e3o -OptionPanel.standardselectednoderectanglecolor.tooltip=A cor standard do rect\u00e2ngulo que assinala os n\u00f3s seleccionados. Em nota\u00e7\u00e3o html (#RRGGBB em valores hex) \ No newline at end of file +OptionPanel.standardselectednoderectanglecolor.tooltip=A cor standard do rect\u00e2ngulo que assinala os n\u00f3s seleccionados. Em nota\u00e7\u00e3o html (#RRGGBB em valores hex) + +really_convert_to_current_version2=O mapa de conceitos que est\u00e1 a tentar abrir foi criado numa vers\u00e3o anterior do FreeMind, guardado num formato antigo.
FreeMind vai tentar convert\u00ea-lo no formato actual.
Depois de convertido e guardado no formato actual do FreeMind, n\u00e3o ser\u00e1 poss\u00edvel abrir o mapa de conceitos nas vers\u00f5es anteriores.
Pretende que o FreeMind converta e abra o mapa de conceitos? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_ro.properties freemind-0.9.0RC7/Resources_ro.properties --- freemind-0.9.0RC6/Resources_ro.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_ro.properties 2010-02-27 21:48:00.000000000 +0000 @@ -2,7 +2,7 @@ about = Despre add=&Ad\u0103ugare -about_text = FreeMind - software gratuit pentru construirea h\u0103r\u0163ilor mentale \u015Fi dezvoltarea cuno\u015Ftin\u0163elor. \nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u015Fi al\u0163ii.\nAcest program este un software gratuit, lincen\u0163iat sub Licen\u0163a Public\u0103 General\u0103 GNU.\n\nPagina de start: http://freemind.sourceforge.net/\nVersiune: +about_text = FreeMind - software gratuit pentru construirea h\u0103r\u0163ilor mentale \u015Fi dezvoltarea cuno\u015Ftin\u0163elor. \nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u015Fi al\u0163ii.\nAcest program este un software gratuit, lincen\u0163iat sub Licen\u0163a Public\u0103 General\u0103 GNU.\n\nPagina de start: http://freemind.sourceforge.net/\nVersiune: antialias_all = Antialias tot antialias_edges = Antialias margini antialias_none = F\u0103r\u0103 antialias @@ -95,7 +95,7 @@ italicise_branch = Aplicare stil italic join_nodes = Legare noduri license = Licen\u0163\u0103 -license_text = FreeMind - Un program pentru crearea \u015Fi vizionarea h\u0103r\u0163ilor mentale. \nCopyright (C) 2000-2008 Joerg Mueller . \nVezi COPIEREA pentru detalii.\n\nAcest program este un software gratuit; îl pute\u0163i redistribui \u015Fi/sau\nmodifica \u00EEn conformitate cu termenii Licen\u0163ei Publice Generale GNU\npublicat\u0103 de Free Software Foundation, fie versiunea 2\na licen\u0163ei sau (la alegere) orice versiune ulterioar\u0103.\n\nAcest program este distribuit în speran\u0163a c\u0103 va fi de folos,\ndar F\u0102R\u0102 NICI O GARAN\u0162IE, f\u0103r\u0103 nici m\u0103car garan\u0163ia implicit\u0103 de\nVANDABILITATE sau CONFORMITATE CU UN ANUMIT SCOP. Vezi\nLicen\u0163a Public\u0103 General\u0103 GNU pentru mai multe detalii.\n\nAr fi trebuit s\u0103 primi\u0163i o copie a Licen\u0163ei Publice Generale GNU\n\u00EEmpreun\u0103 cu acest program; \u00EEn caz contrar, adresa\u0163i-v\u0103 Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Un program pentru crearea \u015Fi vizionarea h\u0103r\u0163ilor mentale. \nCopyright (C) 2000-2010 Joerg Mueller . \nVezi COPIEREA pentru detalii.\n\nAcest program este un software gratuit; îl pute\u0163i redistribui \u015Fi/sau\nmodifica \u00EEn conformitate cu termenii Licen\u0163ei Publice Generale GNU\npublicat\u0103 de Free Software Foundation, fie versiunea 2\na licen\u0163ei sau (la alegere) orice versiune ulterioar\u0103.\n\nAcest program este distribuit în speran\u0163a c\u0103 va fi de folos,\ndar F\u0102R\u0102 NICI O GARAN\u0162IE, f\u0103r\u0103 nici m\u0103car garan\u0163ia implicit\u0103 de\nVANDABILITATE sau CONFORMITATE CU UN ANUMIT SCOP. Vezi\nLicen\u0163a Public\u0103 General\u0103 GNU pentru mai multe detalii.\n\nAr fi trebuit s\u0103 primi\u0163i o copie a Licen\u0163ei Publice Generale GNU\n\u00EEmpreun\u0103 cu acest program; \u00EEn caz contrar, adresa\u0163i-v\u0103 Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Liniar load = &\u00CEnc\u0103rcare locking_failed_by_open = Blocarea h\u0103r\u0163ii $1 nereu-015Fit\u0103. Deschidere în citire. @@ -1419,4 +1419,5 @@ # new, fc, 25.8.2008 OptionPanel.defaultfontsize.tooltip=M\u0103rime font implicit\u0103 pentru noduri noi - +really_convert_to_current_version2=Harta pe care \u00EEncerci s\u0103 o deschizi a fost creat\u0103 cu o versiune mai veche de FreeMind, stocat\u0103 \u00EEn format vechi.
FreeMind este pe cale s\u0103 converteasc\u0103 aceast\u0103 hart\u0103 \u00EEn formatul curent.
Dup\u0103 ce harta este convertit\u0103 \u015Fi salvat\u0103 \u00EEn aceast\u0103 versiune de FreeMind, nu va mai putea fi deschis\u0103 \u00EEn versiunile mai vechi de FreeMind.
Vrei ca FreeMind s\u0103 converteasc\u0103 \u015Fi s\u0103 deschid\u0103 harta mental\u0103? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_ru.properties freemind-0.9.0RC7/Resources_ru.properties --- freemind-0.9.0RC6/Resources_ru.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_ru.properties 2010-02-27 21:44:28.000000000 +0000 @@ -2,7 +2,7 @@ about = \u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435... add=&\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c -about_text = FreeMind - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0430\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u0438 \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0431\u0430\u0437 \u0437\u043d\u0430\u043d\u0438\u0439\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u0438 \u0434\u0440\u0443\u0433\u0438\u0435.\n\u042d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435, \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 GNU,\n\n\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430: http://freemind.sourceforge.net/\n\u0412\u0435\u0440\u0441\u0438\u044f: +about_text = FreeMind - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0430\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u0438 \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0431\u0430\u0437 \u0437\u043d\u0430\u043d\u0438\u0439\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u0438 \u0434\u0440\u0443\u0433\u0438\u0435.\n\u042d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435, \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 GNU,\n\n\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430: http://freemind.sourceforge.net/\n\u0412\u0435\u0440\u0441\u0438\u044f: antialias_all = \u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c \u0432\u0441\u0451 antialias_edges = \u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0451\u0431\u0440\u0430 antialias_none = \u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u0441\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c @@ -94,8 +94,8 @@ italic = \u041a\u0443\u0440\u0441\u0438\u0432 italicise_branch = \u0428\u0440\u0438\u0444\u0442 \u0432\u0441\u0435\u0439 \u0432\u0435\u0442\u0432\u0438 \u043a\u0443\u0440\u0441\u0438\u0432 join_nodes = \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0443\u0437\u043b\u044b -license = \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f -license_text = FreeMind - \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043a\u0430\u0440\u0442\nCopyright (C) 2000-2008 Joerg Mueller \n\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u0444\u0430\u0439\u043b COPYING \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438\n\n\u042d\u0442\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0430\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430; \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0442\u044c \u0435\u0435 \u0438/\u0438\u043b\u0438\n\u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 GNU,\n\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0424\u043e\u043d\u0434\u043e\u043c \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u041f\u041e; \u043b\u0438\u0431\u043e \u0432\u0435\u0440\u0441\u0438\u0438 2,\n\u043b\u0438\u0431\u043e (\u043f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0432\u044b\u0431\u043e\u0440\u0443) \u043b\u044e\u0431\u043e\u0439 \u0431\u043e\u043b\u0435\u0435 \u043f\u043e\u0437\u0434\u043d\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.\n\n\u042d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u0434\u0435\u0436\u0434\u0435, \u0447\u0442\u043e \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0439,\n\u043d\u043e \u0411\u0415\u0417 \u041a\u0410\u041a\u0418\u0425-\u041b\u0418\u0411\u041e \u0413\u0410\u0420\u0410\u041d\u0422\u0418\u0419; \u0434\u0430\u0436\u0435 \u0431\u0435\u0437 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u0435\u043c\u044b\u0445 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0439\n\u041a\u041e\u041c\u041c\u0415\u0420\u0427\u0415\u0421\u041a\u041e\u0419 \u0426\u0415\u041d\u041d\u041e\u0421\u0422\u0418 \u0438\u043b\u0438 \u041f\u0420\u0418\u0413\u041e\u0414\u041d\u041e\u0421\u0422\u0418 \u0414\u041b\u042f \u041a\u041e\u041d\u041a\u0420\u0415\u0422\u041d\u041e\u0419 \u0426\u0415\u041b\u0418. \u0414\u043b\u044f\n\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0445 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044e GNU.\n\n\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u043b\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043a\u043e\u043f\u0438\u044e \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 GNU\n\u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u044d\u0442\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439; \u0435\u0441\u043b\u0438 \u043d\u0435\u0442, \u043d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043f\u043e \u0430\u0434\u0440\u0435\u0441\u0443: Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license = \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f FreeMind +license_text = FreeMind - \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043a\u0430\u0440\u0442\nCopyright (C) 2000-2010 Joerg Mueller \n\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u0444\u0430\u0439\u043b COPYING \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438\n\n\u042d\u0442\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0430\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430; \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0442\u044c \u0435\u0435 \u0438/\u0438\u043b\u0438\n\u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 GNU,\n\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0424\u043e\u043d\u0434\u043e\u043c \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u041f\u041e; \u043b\u0438\u0431\u043e \u0432\u0435\u0440\u0441\u0438\u0438 2,\n\u043b\u0438\u0431\u043e (\u043f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0432\u044b\u0431\u043e\u0440\u0443) \u043b\u044e\u0431\u043e\u0439 \u0431\u043e\u043b\u0435\u0435 \u043f\u043e\u0437\u0434\u043d\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.\n\n\u042d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u0434\u0435\u0436\u0434\u0435, \u0447\u0442\u043e \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0439,\n\u043d\u043e \u0411\u0415\u0417 \u041a\u0410\u041a\u0418\u0425-\u041b\u0418\u0411\u041e \u0413\u0410\u0420\u0410\u041d\u0422\u0418\u0419; \u0434\u0430\u0436\u0435 \u0431\u0435\u0437 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u0435\u043c\u044b\u0445 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0439\n\u041a\u041e\u041c\u041c\u0415\u0420\u0427\u0415\u0421\u041a\u041e\u0419 \u0426\u0415\u041d\u041d\u041e\u0421\u0422\u0418 \u0438\u043b\u0438 \u041f\u0420\u0418\u0413\u041e\u0414\u041d\u041e\u0421\u0422\u0418 \u0414\u041b\u042f \u041a\u041e\u041d\u041a\u0420\u0415\u0422\u041d\u041e\u0419 \u0426\u0415\u041b\u0418. \u0414\u043b\u044f\n\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0445 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044e GNU.\n\n\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u043b\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043a\u043e\u043f\u0438\u044e \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 GNU\n\u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u044d\u0442\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439; \u0435\u0441\u043b\u0438 \u043d\u0435\u0442, \u043d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043f\u043e \u0430\u0434\u0440\u0435\u0441\u0443: Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = \u041f\u0440\u044f\u043c\u0430\u044f load = &\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c locking_failed_by_open = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 $1 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u0440\u0443\u0433\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439 \u0438 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f @@ -173,7 +173,7 @@ underline = \u041f\u043e\u0434\u0447\u0451\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435 unfold = \u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c url_error = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432 \u0430\u0434\u0440\u0435\u0441\u0435 URL -url_load_error = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043a\u0430\u0440\u0442\u0443 \u0441 \u0430\u0434\u0440\u0435\u0441\u0430 URL: +#url_load_error = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043a\u0430\u0440\u0442\u0443 \u0441 URL: width = \u0422\u043e\u043b\u0449\u0438\u043d\u0430 yes = \u0414\u0430 zoom_in = \u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c @@ -313,7 +313,7 @@ accessories/plugins/EncryptNode.properties_name = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c &\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b ... accessories/plugins/EncryptNode.properties_documentation = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b, \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u043c\u0438. accessories/plugins/EncryptNode.properties_0 = \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430 -accessories/plugins/EncryptNode.properties_1 = \u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0438\u043b\u0438 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c +accessories/plugins/EncryptNode.properties_1 = \u041f\u0430\u0440\u043e\u043b\u044c \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0438\u043b\u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u043c. accessories/plugins/EncryptNode.properties_2 = \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c: accessories/plugins/EncryptNode.properties_3 = \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c: accessories/plugins/EncryptNode.properties_4 = \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c. @@ -463,6 +463,7 @@ OptionPanel.en=\u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439 OptionPanel.es=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439 OptionPanel.fr=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439 +OptionPanel.gl=\u0413\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438\u0439 OptionPanel.hu=\u0412\u0435\u043d\u0433\u0435\u0440\u0441\u043a\u0438\u0439 OptionPanel.it=\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439 OptionPanel.ja=\u042f\u043f\u043e\u043d\u0441\u043a\u0438\u0439 @@ -613,7 +614,7 @@ OptionPanel.keystroke_move_down=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432\u043d\u0438\u0437 OptionPanel.keystroke_move_left=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430\u043b\u0435\u0432\u043e OptionPanel.keystroke_move_right=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430\u043f\u0440\u0430\u0432\u043e -OptionPanel.keystroke_follow_link=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 +OptionPanel.keystroke_follow_link=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0433\u0438\u043f\u0435\u0440\u0441\u0441\u044b\u043b\u043a\u0443 OptionPanel.keystroke_add=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c OptionPanel.keystroke_add_child=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b OptionPanel.keystroke_add_child_mac=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b (\u0434\u043b\u044f Mac OS X) @@ -858,8 +859,8 @@ OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u041e\u0431\u0440\u0430\u0437\u0446\u044b PatternToString.color=\u0426\u0432\u0435\u0442 PatternToString.backgroundColor=\u0424\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442 -OptionPanel.automaticFormat_level1=\u0424\u043e\u0440\u043c\u0430\u0442 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 -OptionPanel.automaticFormat_level2=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f +#OptionPanel.automaticFormat_level1=\u0424\u043e\u0440\u043c\u0430\u0442 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 +#OptionPanel.automaticFormat_level2=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f PatternToString.NodeFontSize=\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 OptionPanel.level1=\u0424\u043e\u0440\u043c\u0430\u0442 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 OptionPanel.level2=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f @@ -1148,7 +1149,6 @@ OptionalDontShowMeAgainDialog.rememberMyDescision=&\u0417\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043c\u043e\u0439 \u0432\u044b\u0431\u043e\u0440. OptionalDontShowMeAgainDialog.cancel=&\u041d\u0435\u0442 OptionalDontShowMeAgainDialog.ok=&\u0414\u0430 -OptionPanel.gl=\u0413\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438\u0439 OptionPanel.separator.resources_notifications=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f OptionPanel.delete_nodes_without_question=\u0423\u0434\u0430\u043b\u044f\u0442\u044c \u0443\u0437\u043b\u044b \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f OptionPanel.delete_nodes_without_question.tooltip=\u0415\u0441\u043b\u0438 \u044d\u0442\u043e\u0442 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0443\u0437\u043b\u044b \u0443\u0434\u0430\u043b\u044f\u044e\u0442\u0441\u044f \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043f\u043e\u0442\u0435\u0440\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0435\u0441\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u043d\u0435\u043f\u0440\u0435\u0434\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u043e. @@ -1385,3 +1385,7 @@ # new, fc, 20.12.2008 OptionPanel.ro=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439 + +#new, fc, 6.12.2009: +really_convert_to_current_version2=\u0418\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044c, \u0431\u044b\u043b\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b FreeMind, \u0438 \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0441\u0442\u0430\u0440\u043e\u043c \u0444\u043e\u0440\u043c\u0430\u0442\u0435.
FreeMind \u0441\u043e\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u0443 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0443 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.
\u041f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0430 \u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 FreeMind, \u0435\u0451 \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0441\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u0441\u0442\u0430\u0440\u044b\u043c\u0438 \u0432\u0435\u0440\u0441\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b.
\u0414\u043e\u043b\u0436\u0435\u043d \u043b\u0438 FreeMind \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0443? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_se.properties freemind-0.9.0RC7/Resources_se.properties --- freemind-0.9.0RC6/Resources_se.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_se.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,1338 +1,1341 @@ -#! -#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) -#! encoding:ISO-8859-1 -# done by Anders_B (andber) and Hans Gustavsson (gustavsson) -about = Om Freemind - -about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: -accessories/plugins/ApplyFormatPlugin.dialog.title= \u00c4ndra nodformattering -accessories/plugins/ApplyFormatPlugin.properties_documentation= Visar en dialogruta, d\u00e4r nod- och kantegenskaper direkt kan \u00e4ndras. -accessories/plugins/ApplyFormatPlugin.properties_name= \u00c4ndra formattering ... -#fc, 15.11.2004: -accessories/plugins/AutomaticLayout.properties_documentation = Fixar layouten av tankekartan.
Den f\u00f6rsta niv\u00e5n \u00e4r svart, den andra \u00e4r bl\u00e5, etc. -accessories/plugins/AutomaticLayout.properties_name = Automatisk layout -accessories/plugins/AutomaticLayout.properties_StyleDialogTitle= \u00c4ndra m\u00f6nster -accessories/plugins/BlinkingNodeHook.properties_documentation = Detta g\u00f6r s\u00e5 att noden blinkar. Var f\u00f6rsiktig. Anv\u00e4nd inte i f\u00f6r m\u00e5nga noder, och inte med andra automatiska formateringar p\u00e5 samma nod -accessories/plugins/BlinkingNodeHook.properties_name = Blinkande nod -# fc, 21.2.06 -accessories/plugins/ChangeNodeLevelAction_left.properties_documentation= P\u00e5 v\u00e4nster sida av roten till noden(erna) skiftas ned\u00e5t. Den/de blir subnoder till ovanliggande syskonnod. P\u00e5 h\u00f6ger sida av roten till noden skiftas upp\u00e5t. Direkt p\u00e5 roten skiftar noden(erna) sida. -accessories/plugins/ChangeNodeLevelAction_left.properties_name= Nod till v\u00e4nster -accessories/plugins/ChangeNodeLevelAction_right.properties_documentation= P\u00e5 h\u00f6ger sida av roten till noden(erna) skiftas ned\u00e5t. Den/de blir subnoder till ovanliggande syskonnod. P\u00e5 v\u00e4nster sida av roten till noden skiftas upp\u00e5t. Direkt p\u00e5 roten skiftar noden(erna) sida. -accessories/plugins/ChangeNodeLevelAction_right.properties_name= Nod till h\u00f6ger -accessories/plugins/CreationModificationPlugin.properties_documentation=Denna funktionen h\u00e5ller reda p\u00e5 n\u00e4r noden skapades och f\u00f6r\u00e4ndrades. -accessories/plugins/CreationModificationPlugin.properties_name = Visa n\u00e4r f\u00f6r\u00e4ndring skedde -accessories/plugins/EncryptNode.properties_0 = V\u00e4lj l\u00f6senord f\u00f6r krypterad nod -accessories/plugins/EncryptNode.properties_1 = L\u00f6senordet matchar inte eller \u00e4r f\u00f6r kort. -accessories/plugins/EncryptNode.properties_2 = Skriv in l\u00f6senord: -accessories/plugins/EncryptNode.properties_3 = Skriv in l\u00f6senord igen: -accessories/plugins/EncryptNode.properties_4 = Skriv in ditt l\u00f6senord. -accessories/plugins/EncryptNode.properties_5 = Kom ih\u00e5g, att sekretessniv\u00e5n
styrs n\u00e4stan helt och h\u00e5ller av l\u00f6senordets kvalitet. -accessories/plugins/EncryptNode.properties_6 = OK -accessories/plugins/EncryptNode.properties_7 = Avbryt -accessories/plugins/EncryptNode.properties_documentation = Infoga en ny nod vars subnoder \u00e4r krypterade. -accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Du kan enbart v\u00e4xla krypteringsniv\u00e5 p\u00e5 en krypterad nod. Anv\u00e4nd verktygsmenyn f\u00f6r att infoga en s\u00e5dan nod. -accessories/plugins/EncryptNode.properties_name = Infoga krypterad nod... -accessories/plugins/EncryptNode.properties_select_me = V\u00e4lj mig f\u00f6r att forts\u00e4tta! -accessories/plugins/EncryptNode.properties_wrong_password = L\u00f6senordet \u00e4r inte korrekt. -accessories/plugins/EnterPassword.properties_documentation= -# fc, 14.12.2004: -accessories/plugins/EnterPassword.properties_name = V\u00e4xla mellan krypterad/okrypterad -accessories/plugins/ExportToImage_JPEG.properties_documentation = Exporterar tankekartan i nuvarande layout till en JPEG-bild. -accessories/plugins/ExportToImage_JPEG.properties_name = Som JPEG... -accessories/plugins/ExportToImage_PNG.properties_documentation = Exporterar tankekartan i nuvarande layout till en PNG-bild. -accessories/plugins/ExportToImage_PNG.properties_name = Som PNG... -# fc, 5.7.2005: -accessories/plugins/ExportToOoWriter.properties_documentation= Utf\u00e4llda noder skapar strukturen, inf\u00e4llda noder inneh\u00e5llet i dokumentet. -accessories/plugins/ExportToOoWriter.properties_name= Som Open Office Writer dokument... -accessories/plugins/ExportWithTWiki.properties=TWiki fil (*.twi) -accessories/plugins/ExportWithTWiki.properties_documentation=Exporterar tankekartan som ett TWiki dokument. -accessories/plugins/ExportWithTWiki.properties_name=Som TWiki... -accessories/plugins/ExportWithXSLT.properties_documentation = Detta \u00e4r en enhetlig exportmetod - XSLT skript. -accessories/plugins/ExportWithXSLT.properties_name = Anv\u00e4nder XSLT... -# fc, 16.2.06 -accessories/plugins/ExportWithXSLT_Applet.properties_documentation= Exports tankekartan som Java webbl\u00e4sarapplet. -accessories/plugins/ExportWithXSLT_Applet.properties_name= Som Java Applet... -# aki 19.10.06: (TJI support) -accessories/plugins/ExportWithXSLT_Applet.properties_tji= Task Juggler, inkludera filer -accessories/plugins/ExportWithXSLT_Applet.properties_webpage= Webbsida -accessories/plugins/ExportWithXSLT_Flash.properties_documentation= Exportera kartan som Flashapplikation. -accessories/plugins/ExportWithXSLT_Flash.properties_name= Som Flash... -accessories/plugins/ExportWithXSLT_HTML.properties_documentation= -accessories/plugins/ExportWithXSLT_HTML.properties_name = Som XHTML (JavaScript version)... -accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= -accessories/plugins/ExportWithXSLT_HTML3.properties_name = Som XHTML (Klickbar bildversion)... -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= -accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =Som MindManager tankekarta... -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Exporterar resurser from RESOURCES-nod till Taskjuggler modul. -accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name= Resurser fr\u00e5n RESOURCES-nod till TaskJuggler fil... -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Exporterar uppgifter fr\u00e5n TASKS-nod till Taskjuggler modul. -accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name= Uppgifter fr\u00e5n TASKS-nod till Taskjuggler fil... -accessories/plugins/FitToPage.properties_documentation = Justerar zoomningen till att passa in i aktuellt f\u00f6nster. -accessories/plugins/FitToPage.properties_name = Zooma f\u00f6r passa in i aktuell sida -accessories/plugins/FoldAll.properties_documentation = G\u00f6mmer markerade noder och alla subnoder. -accessories/plugins/FoldAll.properties_name = G\u00f6m alla -accessories/plugins/FoldOneLevel.properties_documentation = G\u00f6mmer markerade noder med en niv\u00e5. -accessories/plugins/FoldOneLevel.properties_name = G\u00f6m en niv\u00e5 -accessories/plugins/FormatCopy.properties_documentation = Kopierar nodens formatering. -accessories/plugins/FormatCopy.properties_name = Kopierar format -accessories/plugins/FormatPaste.properties_documentation = Klistrar in nodens formatering. -accessories/plugins/FormatPaste.properties_name = Klistra in format -accessories/plugins/FormularEditor.properties_documentation = Kopplar en enkel formul\u00e4rredigerare till aktuell anteckning. -accessories/plugins/FormularEditor.properties_name = Formul\u00e4rredigerare -# fc, 18.2.2005: -accessories/plugins/HierarchicalIcons.properties_documentation= Om en av noderna har en ikon, kommer jag ocks\u00e5 att visa ikonen fast i mindre format. -accessories/plugins/HierarchicalIcons.properties_name= Visa ikonerna rangordnade -accessories/plugins/IconSelectionPlugin.properties_documentation = H\u00e4r kan du v\u00e4lja en ikon genom att anv\u00e4nda ett nytt f\u00f6nster. -accessories/plugins/IconSelectionPlugin.properties_name = V\u00e4lj ikon... -# fc, 3.7.2005: -accessories/plugins/ImportMindmanagerFiles.properties_name= MindManager X5 tankekarta... -# fc, 1.3.06: -accessories/plugins/ManagePatterns.dialog.title= Redigera m\u00f6nster... -accessories/plugins/ManagePatterns.not_found= M\u00f6nsterfilen kan inte laddas. -accessories/plugins/ManagePatterns.properties_documentation= \u00c4ndra definierade m\u00f6nster i patterns.xml med en redigerare. Resultatet sparas automatiskt. -accessories/plugins/ManagePatterns.properties_name= Redigera m\u00f6nster... -accessories/plugins/NewEncryptedMap.properties_documentation = Skapa en ny krypterad tankekarta -accessories/plugins/NewEncryptedMap.properties_name = Skapa krypterad tankekarta... -accessories/plugins/NewParentNode.properties_documentation = Alla markerade \u00e4r skickade till en ny grundnod. -accessories/plugins/NewParentNode.properties_name = Ny grundnod -accessories/plugins/NodeHistoryBack.properties_documentation=Hoppar bak\u00e5t -accessories/plugins/NodeHistoryBack.properties_name=Tillbaka -accessories/plugins/NodeHistoryForward.properties_documentation=Hoppar fram\u00e5t -accessories/plugins/NodeHistoryForward.properties_name=Fram\u00e5t -accessories/plugins/NodeNote.properties_documentation = Kopplar en enkel textredigerare till aktuell nod. -accessories/plugins/NodeNote.properties_name = Anteckningar -# fc, 10.11.2006: -accessories/plugins/NodeNote_hide_show.properties_documentation= \u00c4r en menygenv\u00e4g f\u00f6r de sm\u00e5 pilarna p\u00e5 delningslinjen. -accessories/plugins/NodeNote_hide_show.properties_name= Visa/G\u00f6m anteckningsf\u00f6nster -# fc, 11.10.06: -accessories/plugins/NodeNote_jumpto.properties_documentation= V\u00e4xla till resp. fr\u00e5n anteckningsf\u00f6nster -accessories/plugins/NodeNote_jumpto.properties_name= V\u00e4xla redigerare f\u00f6r anteckningar -accessories/plugins/PMCalculation.properties_documentation = Kalkylerar insatser f\u00f6r olika uppgifter. -accessories/plugins/PMCalculation.properties_name = PMKalkylering -accessories/plugins/RemoveNote.properties_documentation =Tar bort inneh\u00e5llet i flera anteckningar. -accessories/plugins/RemoveNote.properties_name =Ta bort anteckningar -accessories/plugins/RevisionPlugin.properties_documentation = Markerar bakgrunden f\u00f6r varje \u00e4ndrad nod. -accessories/plugins/RevisionPlugin.properties_name = Visar omarbetning gulmarkerad -# fc, 25.5.2006: -accessories/plugins/SaveAll.properties_documentation= Spara alla \u00f6ppna tankekartor -accessories/plugins/SaveAll.properties_name= Spara alla -accessories/plugins/SaveAll.properties_save_all_cancelled= Uppgiften kunde inte slutf\u00f6ras. -# fc, 30.12.06: -accessories/plugins/SortNodes.properties_documentation= Sortera alla subnoder i alfabetisk ordning. -accessories/plugins/SortNodes.properties_name= Sortera subnoder -accessories/plugins/SplitNode.properties_documentation = Noden \u00e4r delad -accessories/plugins/SplitNode.properties_name = Dela noden -accessories/plugins/UnfoldAll.properties_documentation = Visar markerade noder och alla subnoder. -accessories/plugins/UnfoldAll.properties_name = Visa alla -accessories/plugins/UnfoldOneLevel.properties_documentation = Visar markerade noder med en niv\u00e5. -accessories/plugins/UnfoldOneLevel.properties_name = Visa en niv\u00e5 -add=&L\u00e4gg till -# added at 09.10.2004 -add_link = L\u00e4gg till grafisk l\u00e4nk -add_local_link = L\u00e4gg till lokal hyperl\u00e4nk -antialias_all = J\u00e4mna ut alla -antialias_edges = J\u00e4mna ut kanter -antialias_none = J\u00e4mna inte ut -apply= Till\u00e4mpa -arrow_link_color = F\u00e4rg p\u00e5 pill\u00e4nk... -as_parent = Som huvudnod -attribute_delete= Ta bort alla v\u00e4rden -attribute_delete_value= Ta bort detta v\u00e4rde -attribute_font_size_tooltip= Egenskaper teckenstorlek -attribute_list_box_label_text= Befintliga v\u00e4rden -attribute_replace= Ers\u00e4tt med -attribute_top= Alla k\u00e4nda egenskaper f\u00f6r de inladdade tankekartorna -attributes_adding_empty_attribute_error= Kan inte anv\u00e4nda en tom textstr\u00e4ng som egenskapsnamn -# dimitri, 10.07.2005 -attributes_all= Alla egenskaper -attributes_apply= Anv\u00e4nd -attributes_assign_dialog= Ange egenskaper -attributes_attribute= Egenskaper -attributes_close= St\u00e4ng -attributes_deselect_all= Ingenting -attributes_dialog= Egenskapshanterare -attributes_dialog_title=Hanterare av attribut -attributes_edit= Redigera -attributes_edit_in_place= Redigera egenskaper -attributes_edit_tooltip= Redigera egenskaper -attributes_for_selected= Markerade noder -attributes_for_visible= Alla synliga noder -attributes_hide_all = G\u00f6m alla egenskaper -attributes_import= Importera -attributes_import_tooltip= Importera egenskaper fr\u00e5n andra inladdade tankekartor -attributes_no_import_candidates_found= Inga nya egenskaper hittades -attributes_popup_delete= Ta bort -attributes_popup_down= Ned -attributes_popup_edit= Redigera -attributes_popup_hide= G\u00f6m -attributes_popup_new= Ny egenskap -attributes_popup_optimal_width= Optimal bredd -attributes_popup_up= Upp -attributes_refresh= Aktualisera -attributes_restricted_attributes_tooltip= Begr\u00e4nsa egenskaper -attributes_restricted_values_tooltip= Begr\u00e4nsa antal v\u00e4rden f\u00f6r aktuell egenskap -attributes_restriction= Begr\u00e4nsade egenskaper -attributes_select_all= Alla -attributes_select_all_tooltip= Markera / avmarkera alla -attributes_show= Visa -attributes_show_all = Visa alla egenskaper -attributes_show_selected = Visa markerade egenskaper -attributes_skip_root= Hoppa \u00f6ver huvudnoden -attributes_visible= Markerad synlig -attributes_visible_tooltip= Markerad synlig -# fc, 2.9.06: -automatically_save_message= Tankekartan sparades automatiskt (med filnamnet {0}) ... -background = Bakgrund -bezier = Bezier -blend_color = Blanda f\u00e4rg -bold = Fet stil -boldify_branch = G\u00f6r fetare -branch = F\u00f6rgrening -# fc, 12.1.2006: if you create a translation of the documentation file, change this value (see german translation): -browsemode_initial_map = ./doc/freemind.mm -bubble = Bubbla -cancel = Avbryt -cannot_add_parent_diff_parents = Alla noder m\u00e5ste ha samma basnod f\u00f6r att kunna anv\u00e4nda funktionen. -cannot_add_parent_to_root = Basnoden kan inte adderas till en ny basnod. -cannot_delete_root =Basnoden kan inte raderas eller klippas ut. -cannot_join_nodes_with_children = Kan inte f\u00f6rena noder med subnoder - -# fc, 28.11.2004: -cannot_move_to_child = Kan inte flytta nod till en av de egna subnoderna. -center = Centrera -change_arrows_in_arrow_link = \u00c4ndra pilarna p\u00e5 pill\u00e4nken -change_link_arrows=change_link_arrows -choose_background_color = V\u00e4lj bakgrundsf\u00e4rg: -choose_cloud_color = V\u00e4lj molnets f\u00e4rg: -# added at 25.8.2004, fc: -choose_edge_color = V\u00e4lj kantlinjens f\u00e4rg -choose_node_background_color = V\u00e4lj nodens bakgrundsf\u00e4rg: -choose_node_color = V\u00e4lj nodens f\u00e4rg: -close = St\u00e4ng -cloud = Moln -cloud_color = F\u00e4rg p\u00e5 moln... -#new from 30.08.2004, Dimitri -combined = Kombinerad -confirmation=Bekr\u00e4ftelse -copy = Kopiera -copy_single = Kopiera enskild -cut = Klipp ut -decrease_branch_font_size = Mindre teckensnitt -decrease_node_font_size = Mindre teckensnitt -delete=&Ta bort -delete_child = Ta bort nod -documentation = Dokumentation -edge = Kantlinje -edge_color = F\u00e4rg p\u00e5 kantlinje... -edge_style = Kantlinjens stil -# Beware: "Edge Width " and "Edge Style " must end with space. -edge_width = Kantlinjens bredd -edge_width_parent = Huvudnod -edge_width_thin = Tunn -edit = Redigera -edit.decision=HTML redigerare -edit.edit_rich_text=Vill du anv\u00e4nda format som fet- och kursiv stil? -edit_attributes = Redigera/g\u00f6m attribut -edit_link_manually = Redigera hyperl\u00e4nk manuellt... -edit_long_node = Redigera ut\u00f6kad nod... -edit_node = Redigera nod -enter_base_url = Jag kommer att klistra in relativa l\u00e4nkar. Skriv in bas-URL. -enter_confirms = Enter bekr\u00e4ftar -error = Fel -# fc, 6.9.06: -error_applying_template= Fel vid anv\u00e4ndning av XSL mall. -error_creating_directory = Kan inte skapa mapp f\u00f6r export. -export_branch_new =Del som ny tankekarta... -#export_branch = F\u00f6rgrening... -export_branch_to_html = F\u00f6rgrening som HTML -export_pdf_text = Portable Document Format (PDF) -export_svg_text = Scalable Vector Graphic (SVG) -export_to_html = Som HTML -extension_menu = Fysisk stil -# new from 14.12.2003, fc -FAQ = FAQ -file = Arkiv -file_already_exists = Filen {0} finns redan. Vill du skriva \u00f6ver filen? -file_not_found = Fil $1 hittades inte -filter_add= L\u00e4gg till -filter_and= Och -filter_conditions = Filter -filter_contains= Inneh\u00e5ller -filter_delete= Ta bort -filter_dialog= Kombinera filter -filter_does_not_exist= Existerar inte -filter_edit= Redigera -filter_edit_description= Redigera filterlista -filter_enter_value= Fyll i v\u00e4rde -filter_exist= Existerar -filter_icon= Ikon -filter_ignore_case= Bortse fr\u00e5n gemener/versaler -filter_is_equal_to= \u00e4r lika med -filter_is_not_equal_to= \u00e4r inte lika med -filter_no_filtering= Ingen filtrering -filter_node= Nodtext -filter_not= Inte -filter_off= Filter av -filter_on= Filter p\u00e5 -filter_or= Eller -filter_select= Markera -filter_selected_node_view= Markerade noder -filter_show_ancestors= Visa sl\u00e4ktnoder -filter_show_descendants= Visa ursprung -filter_show_descenders= Visa ursprungsnoder -filter_show_flat= J\u00e4mn -# dimitri, 8.05.05 -filter_toolbar= Filtrera -filter_unfold_ancestors= Visa filtrerade noder -find = S\u00f6k... -find_next = S\u00f6k n\u00e4sta -find_what = S\u00f6k efter -fit_to_page = Rym p\u00e5 en sida -fold = G\u00f6m f\u00f6rgrening -follow_graphical_link=G\u00e5 till: -# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above -follow_link = \u00d6ppna hyperl\u00e4nk: -font = Teckensnitt -font_family = Teckensnitt -font_size = Teckenstorlek -fork = Dela sig -format_menu_edge_styles= Kantstilar -format_menu_edge_widths= Kantbredder -FreeMind=Freeminds hemsida -FreeMind.progress.buildScreen= Laddar sk\u00e4rmbild... -FreeMind.progress.createController= Skapar kontroll\u00f6r... -FreeMind.progress.createInitialMode= Skapar anv\u00e4ndars\u00e4tt... -FreeMind.progress.endStartup= Avslutar uppstart. -# fc, 30.7.06: -FreeMind.progress.gettingPreferenceDirectories= H\u00e4mtar katalog f\u00f6r inst\u00e4llningar... -FreeMind.progress.gettingPreferences= H\u00e4mtar inst\u00e4llningar... -FreeMind.progress.loadMaps= Laddar kartor... -FreeMind.progress.propageteLookAndFeel= Skapar gr\u00e4nssnittsk\u00e4nslan... -FreeMind.progress.settingPreferences= Skapar inst\u00e4llningar... -FreeMind.progress.startCreateController= Startar kontroll\u00f6r... -FreeMind.progress.updateLookAndFeel= Uppdaterar gr\u00e4nssnittsk\u00e4nsla -# the prefix for the reconstructed map (revert + undo). -freemind_reverted=Freemind_Reverted_ -goto_link_node_action = G\u00e5 till l\u00e4nk -GrabKeyDialog.common.cancel= Avbryt -GrabKeyDialog.common.ok= OK -GrabKeyDialog.grab-key.assigned-to= Angiven till -GrabKeyDialog.grab-key.assigned-to.none= F\u00f6rn\u00e4rvarande inte angiven -GrabKeyDialog.grab-key.caption= -GrabKeyDialog.grab-key.clear=Rensa -GrabKeyDialog.grab-key.remove= Ta bort -GrabKeyDialog.grab-key.remove-ask= \u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna tangentkombination? -# fc, 12.5.2005: -GrabKeyDialog.grab-key.title= Mata in ny tangent -help = Hj\u00e4lp -html_export_based_on_headings = HTML Export - Baserad p\u00e5 Rubriker -html_export_fold_all = HTML Export - G\u00f6m alla -html_export_fold_currently_folded = HTML Export - G\u00f6m nuvarande g\u00f6mda f\u00f6rgreningar -html_export_no_folding = HTML Export - Fullt utvecklad -icon_attach = Titta h\u00e4r -icon_back = Tillbaka -icon_bell = Kom ih\u00e5g -icon_bookmark = Utm\u00e4rkt -icon_broken-line =Bruten -icon_button_cancel = Inte OK -icon_button_ok = OK -icon_calendar =Datum -icon_clanbomber = Farligt -icon_clock =Tid -icon_closed =St\u00e4ngd -icon_decrypted =Ol\u00e5st -icon_desktop_new = Gl\u00f6m inte -icon_down =Ner -icon_edit =Redigera -icon_encrypted =L\u00e5st -icon_family=Familj -icon_fema=Kvinnligt -icon_female1=Kvinnligt1 -icon_female2=Kvinnligt2 -#Tveksam till översättningen -icon_flag = Flagga -icon_flag-black =Svart flagga -icon_flag-blue =Bl\u00e5 flagga -icon_flag-green =Gr\u00f6n flagga -icon_flag-orange =Orange flagga -icon_flag-pink =Rosa flagga -icon_flag-yellow =Gul flagga -icon_folder =Mapp -icon_forward = Fram\u00e5t -icon_freemind_butterfly =FrreMind -icon_full-0Prioritet 0=Prioritet 0 -# fc, 1.3.2005: -icon_full-1 = Prioritet 1 -icon_full-2 = Prioritet 2 -icon_full-3 = Prioritet 3 -icon_full-4 = Prioritet 4 -icon_full-5 = Prioritet 5 -icon_full-6 = Prioritet 6 -icon_full-7 = Prioritet 7 -icon_full-8 = Prioritet 8 -icon_full-9 = Prioritet 9 -icon_go=Gr\u00f6nt trafikljus -icon_gohome = Hem -icon_group=Grupp -icon_help = Fr\u00e5ga -icon_hourglass =V\u00e4ntar -icon_idea = Id\u00e9 -icon_info=Info -icon_kaddressbook = Telefon -icon_kmail =E-post -icon_knotify = Musik -icon_korn = Brevl\u00e5da -icon_ksmiletris = Jag \u00e4r glad -icon_launch=K\u00f6r -icon_licq = Bra -icon_list=Lista -icon_Mail = Mejl -icon_male1=Manligt1 -icon_male2=Manligt2 -# Daniel Polansky: This way of maintaining icon text -# will ultimately lead to unbearable overheads. -icon_menu = Ikoner -icon_messagebox_warning = Viktigt -icon_password = L\u00f6senord -icon_pencil = F\u00f6rb\u00e4ttras -icon_penguin = Linux -icon_prepare=Gult trafikljus -icon_smiley-angry =Arg -icon_smiley-neutral =Neutral -icon_smiley-oh =\u00d6veraskning -# fc, 15.2.06 -icon_smily_bad = Jag \u00e4r inte road -icon_stop = Stopp -icon_stop-sign =Stopp -icon_up =Upp -icon_wizard = Magisk -icon_xmag = Diskuteras -icon_yes =Viktigt -import = Importera -import_branch = F\u00f6rgrening... -import_explorer_favorites = Explorer favoriter... -import_folder_structure = Mappstruktur... -import_linked_branch = L\u00e4nkad f\u00f6rgrening -# add at 16.9.2004, fc: -import_linked_branch_no_link = Den valda noden har ingen l\u00e4nk att importera fr\u00e5n. -import_linked_branch_without_root = (L\u00e4nkad f\u00f6rgrening) utan basnod... -increase_branch_font_size = St\u00f6rre teckensnitt -increase_node_font_size = St\u00f6rre teckensnitt -italic = Kursiv -italicise_branch = Kursivera -join_nodes = Anslut noder -KeyDoc=Genv\u00e4gsbeskrivning iPDF -less_than_two_selected_nodes = Du m\u00e5ste markera minst tv\u00e5 noder f\u00f6r att kunna l\u00e4nka. -license = Licens -license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -linear = Linj\u00e4r -link_not_available_any_more = L\u00e4nken \u00e4r inte giltig l\u00e4ngre. Noden \u00e4r borttagen. -# fc, 1.2.06 -link_not_found = L\u00e4nk $1 saknas. -load =&Ladda -locking_failed_by_open = L\u00e5sningen av tankekartan $1 misslyckades. \u00d6ppnas enbart med l\u00e4sr\u00e4ttighet. -locking_failed_by_save_as = L\u00e5sningen av tankekartan $1 misslyckades. Spara som... ignoreras. Action Save As aborted. -locking_old_lock_removed = Tankekartan $1 \u00e4r l\u00e5st av anv\u00e4ndaren $2. L\u00e5set har tagits bort, pga att det \u00e4r f\u00f6r gammalt.. -long_node_changed_cancel = Du har f\u00f6r\u00e4ndrat noden. Vill du ta bort \u00e4ndringen? -long_node_changed_submit = Du har f\u00f6r\u00e4ndrat noden. Vill du spara f\u00f6r\u00e4ndringen? -lots_of_links_warning = Du h\u00e5ller p\u00e5 att skapa m\u00e5nga l\u00e4nkar till samma nod. Vill du verkligen skapa alla l\u00e4nkarna? -ManagePatternsPopupDialog.Actions=&Funktioner -ManagePatternsPopupDialog.add= L\u00e4gg till nytt m\u00f6nster -ManagePatternsPopupDialog.apply=Anv\u00e4nd -# fc, 13.4.06: -ManagePatternsPopupDialog.duplicate= Duplicera m\u00f6nster -ManagePatternsPopupDialog.DuplicateNameMessage= Du har redan anv\u00e4nt namnet. \u00c4ndra detta innan du st\u00e4nger dialogrutan. -ManagePatternsPopupDialog.from_nodes= Skapa ett m\u00f6nster fr\u00e5n markerade noder -# fc, 19.3.06: -ManagePatternsPopupDialog.remove= Ta bort m\u00f6nster -ManagePatternsPopupDialog.Save= Spara och \u00e5terg\u00e5 -map_already_exists = Tankekartan finns redan. Vill du ers\u00e4tta befintlig tankekarta? -map_corrupted = Tankekartan felaktig. Visa detaljer? -map_locked_by_open = Tankekartan $1 redigeras av anv\u00e4ndaren $2. \u00d6ppnas enbart med l\u00e4sr\u00e4ttigheter. -map_locked_by_save_as = Tankekartan $1 redigeras av anv\u00e4ndaren $2. Spara som... ignoreras. -# fc, 13.8.06: -map_not_saved= Tankekartan sparades inte f\u00f6rut. -menu_attributes = Egenskaper -menu_extras = Verktyg -menu_file_export = Exportera -menu_file_import = Importera -menu_format = Formatera -menu_insert = Infoga -menu_navigate = Navigera -menu_view = Visa -mindmap = Tankekarta -mindmaps = Tankekartor -mindmaps_desc = Tankekartor (*.mm) -mindmaps_filter_desc =Filter (*.mmfilter) -mode_Browse=Bl\u00e4ddrar-l\u00e4ge -mode_File=fil-l\u00e4ge -mode_MindMap=Tankekarta-l\u00e4ge -mode_na = Arbetss\u00e4ttet \u00e4r inte tillg\u00e4ngligt -mode_status = Arbetss\u00e4ttet \u00e4ndrat till {0} arbetss\u00e4tt -mode_title = FreeMind - {0} arbetss\u00e4tt -modes = Arbetss\u00e4tt -# added at 22.5.2004, fc: -most_recent_files = Nyligen anv\u00e4nda filer -move_to_root = Flytta till basnod -new = Ny -new_child = Ny subnod -new_mindmap = Ny tankekarta -new_node = Ny nod -new_node_as_sibling_not_possible_for_the_root = Ny syskonnod \u00e4r inte m\u00f6jlig f\u00f6r basnoden, -new_sibling_before = Ny f\u00f6reg\u00e5ende syskonnod -new_sibling_behind = Ny syskonnod -next_map = N\u00e4sta karta -no = Nej -no_format_copy_before_format_paste = Du kan inte klistra in en formattering innan du kopierat en. -no_found_from = Ingen "$1"  hittades fr\u00e5n "$2". -no_more_found_from = Inga fler "$1"  hittades fr\u00e5n "$2" -no_previous_find = Ingen f\u00f6reg\u00e5ende tr\u00e4ff. -node = Nod -# added at 5.6.2004, fc: -node_background_color = Nodens bakgrundsf\u00e4rg... -node_changed_discard_changes = Du har \u00e4ndrat noden. Vill du \u00f6verge f\u00f6r\u00e4ndringen? -node_color = Nodf\u00e4rg... -node_down = Nod ned\u00e5t -node_is_write_protected=Noden \u00e4r skrivskyddad. -node_location_help=Att dra \u00e4ndrar nodens plats, ctrl+dra \u00e4ndrar avst\u00e5nd, dubbelklick och ctrl+dubbelklick \u00e5terst\u00e4ller dem. -node_up = Nod upp\u00e5t -nonboldify_branch = Ta bort fet stil -nonitalicise_branch = Ta bort kursiv stil -normal = Normal -not_saved_for_link_error = Tankekartan m\u00e5ste sparas innan du kan l\u00e4nka dokument. -ok = OK -open = \u00d6ppna... -option_changes_may_require_restart= F\u00f6r att se effekten av de nya inst\u00e4llningarna beh\u00f6ver du f\u00f6rmodligen starta om FreeMind. -OptionalDontShowMeAgainDialog.cancel=&Nej -OptionalDontShowMeAgainDialog.dontShowAgain=&Fr\u00e5ga inte igen. -OptionalDontShowMeAgainDialog.ok=&Ja -OptionalDontShowMeAgainDialog.rememberMyDescision=&Kom ih\u00e5g mitt val. -OptionPanel.absolute= Absolut -OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName= Automatiskt layoutm\u00f6nster -OptionPanel.antialias= Kantutj\u00e4mning -# fc, 2.6.2005: -OptionPanel.antialias.tooltip=Tar reda p\u00e5 tankekartans kvalitet. Mer kantutj\u00e4mning tar l\u00e4ngre tid. -OptionPanel.antialias_all= Kantutj\u00e4mna alla -OptionPanel.antialias_edges= Kantutj\u00e4mna kanter -OptionPanel.antialias_none= Ingen kantutj\u00e4mning -OptionPanel.Appearance= Framtr\u00e4dande -# fc, 3.1.07: -OptionPanel.ar= Ar -OptionPanel.as_parent= Som basnod -OptionPanel.ask=Fr\u00e5ga -OptionPanel.automatic= Automatisk -OptionPanel.automaticFormat_level= Automatisk stillayout -OptionPanel.automaticFormat_level1= Formattera basnoden -OptionPanel.automaticFormat_level2= 1. Niv\u00e5 formattering av nod -OptionPanel.Behaviour= Uppf\u00f6rande -OptionPanel.bezier= Bezier -OptionPanel.browsemode_initial_map= Bl\u00e4dderbar f\u00f6rsta tankekarta -OptionPanel.browsemode_initial_map.tooltip=Tankekartans URL som \u00e4r laddad n\u00e4r bl\u00e4ddring \u00e4r m\u00f6jlig. -OptionPanel.bubble= Bubbla -OptionPanel.Cancel= Avbryt -OptionPanel.ColorProperty.ResetColor= \u00c5terst\u00e4ll f\u00e4rg -OptionPanel.combined= Kombinerad -OptionPanel.cs=Cs -OptionPanel.cut_nodes_without_question.tooltip=Om detta \u00e4r valt klipps noderna ut utan bekr\u00e4ftelse. Detta kan inneb\u00e4ra f\u00f6rlust av information om du inte \u00e4r uppm\u00e4rksam. -OptionPanel.de= De -OptionPanel.default= Standard -OptionPanel.default_browser_command_mac= Standard webbl\u00e4sarkommando MAC -OptionPanel.default_browser_command_mac.tooltip= och MAC: (tack till Nick!) -OptionPanel.default_browser_command_other_os= Standard webbl\u00e4sarkommando andra OS -OptionPanel.default_browser_command_other_os.tooltip= Detta \u00e4r typiskt f\u00f6r Linux: -OptionPanel.default_browser_command_windows_9x= Standard webbl\u00e4sarkommando Windows 9x -OptionPanel.default_browser_command_windows_9x.tooltip=F\u00f6r Windows ( "" m\u00e5ste anv\u00e4ndas vid l\u00e4nkar, som har "=" i sina URL). -OptionPanel.default_browser_command_windows_nt= Standard webbl\u00e4sarkommando Windows NT -OptionPanel.default_browser_command_windows_nt.tooltip=F\u00f6r Windows ( "" m\u00e5ste anv\u00e4ndas vid l\u00e4nkar, som har "=" i sina URL). -OptionPanel.defaultfont= Standard teckensnitt -OptionPanel.defaultfont.tooltip=Standard teckensnitt. Fungerar enbart om teckensnittet (TrueTypeFont) \u00e4r installerat -OptionPanel.defaultfontsize= Standard teckenstorlek -OptionPanel.defaultfontsize.tooltip=Standard teckensnittsstrolek f\u00f6r nya noder. -OptionPanel.defaultfontstyle= Standard teckenstil -OptionPanel.Defaults= Standardv\u00e4rden -OptionPanel.delete_automatic_saves_at_exit= Ta bort autospara vid avslutning -OptionPanel.delete_automatic_saves_at_exit.tooltip= Om filerna ska tas bort automatiskt vid normal avslutning av Freemind ska f\u00f6ljande varibel vara ikryssad (sant) -OptionPanel.delete_nodes_without_question=Ta bort noder utan bekr\u00e4ftelse? -OptionPanel.delete_nodes_without_question.tooltip=Om detta \u00e4r f\u00f6rkryssat kommer noderna raderas utan bekr\u00e4ftelse. Detta kan inneb\u00e4ra f\u00f6rlust av information. -OptionPanel.disable_cursor_move_paper= Ta bort mark\u00f6r Flytta karta -OptionPanel.disable_cursor_move_paper.tooltip=Visa inte 'flytta' mark\u00f6r n\u00e4r kartan flyttas -OptionPanel.disable_key_type= Ta bort infogade tangenter -OptionPanel.disable_key_type.tooltip=Tangenter: Om anv\u00e4nds noden redigeras -OptionPanel.dk= Dk -OptionPanel.docmapurl_since_version_0_7_0= Docmapurl -OptionPanel.draganddrop= Dra och sl\u00e4pp -OptionPanel.draganddrop.tooltip=Om dra och sl\u00e4pp \u00e4r m\u00f6jliggjord. -OptionPanel.el=El -OptionPanel.el__buttons_position= Knapparnas position -OptionPanel.el__buttons_position.tooltip= \u00f6ver / under -OptionPanel.el__enter_confirms_by_default= Enter bekr\u00e4ftar som standard -OptionPanel.el__max_default_window_height= Maxstandard f\u00f6r f\u00f6nstrets h\u00f6jd -OptionPanel.el__max_default_window_width= Maxstandard f\u00f6r f\u00f6nstrets bredd -OptionPanel.el__min_default_window_height= Ministandard f\u00f6r f\u00f6nstrets h\u00f6jd -OptionPanel.el__min_default_window_width= Ministandard f\u00f6r f\u00f6nstrets bredd -OptionPanel.el__position_window_below_node= F\u00f6nsterposition under nod -OptionPanel.el__show_icon_for_attributes= Visa egenskapsikon -OptionPanel.en= En -OptionPanel.enable_leaves_folding= Till\u00e5t att knoppar g\u00f6ms -OptionPanel.enable_leaves_folding.tooltip=Till\u00e5t att knoppar g\u00f6ms == \u00e4ndra bubbla/gaffel vid utf\u00f6rande (om det inte fungerar kan du alltid anv\u00e4nda nodstil f\u00f6r att f\u00f6r\u00e4ndra) -OptionPanel.Environment= Omgivning -OptionPanel.es= Es -OptionPanel.et=Et -OptionPanel.execute_scripts_without_asking.tooltip=Freemind skript kan utf\u00f6ra vilka uppgifter som helst i din dator.
Anv\u00e4nd d\u00e4rf\u00f6r skript med stor f\u00f6rsiktighet! -OptionPanel.experimental_file_locking_on= Experimentell fill\u00e5sning -OptionPanel.experimental_file_locking_on.tooltip= Experimentell f\u00f6rekomst -OptionPanel.export_icons_in_html= Exportera Ikoner i Html -OptionPanel.export_icons_in_html.tooltip= Ber\u00e4ttar f\u00f6r HTML exporterad fr\u00e5n FreeMind att ikoner ska f\u00f6lja med. Problemet med ikoner \u00e4r att l\u00e4nkar till ikonerna ganska ofta inte hittas i den exporterade HTML-koden. -OptionPanel.Files= Arkiv -OptionPanel.first= F\u00f6rst -OptionPanel.foldingsymbolwidth= G\u00f6m symbolbredd -OptionPanel.foldingsymbolwidth.tooltip=Bredd p\u00e5 mark\u00f6rcirkel (g\u00f6md gren) -OptionPanel.fork= F\u00f6rgrening -OptionPanel.fr= Fr -OptionPanel.gl=Gl -OptionPanel.gtk= Gtk -OptionPanel.hr= Hr -OptionPanel.HTML= HTML -OptionPanel.html_export_based_on_headings= Baserad p\u00e5 rubriker -OptionPanel.html_export_fold_all= V\u00e4ckla in alla -OptionPanel.html_export_fold_currently_folded= V\u00e4ckla in aktuell -OptionPanel.html_export_folding= Html export Inv\u00e4cklad -OptionPanel.html_export_no_folding= Ingen utv\u00e4ckling -OptionPanel.hu= Hu -OptionPanel.icon_order_description=H\u00e4r kan du ordna eller inaktivera standardikoner. Ikonerna separeras med ';'. -OptionPanel.icons.list=Lista med standardikonerna -OptionPanel.id=Id -OptionPanel.it= It -OptionPanel.ja= Ja -OptionPanel.key_type_adds_new= Tangenttryck l\u00e4gger till ny -OptionPanel.key_type_adds_new.tooltip=Tangenttryck: skriver \u00f6ver inneh\u00e5ll (falskt) / skapar ny syskonnod (sant) (beh\u00f6ver: disable_key_type = false) - -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key= Flytta v\u00e4nster -OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key= Flytta h\u00f6ger -OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key= Kopiera formattering -OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key= Klistra in formattering -OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key= Infoga ikon -OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Hantera stilar -OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key= Indrag noder -OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less= Visa/G\u00f6m anteckningsf\u00f6nster -OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N= V\u00e4xla redigerare f\u00f6r anteckningar -OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=Rensa anteckning -OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key= Dela nod -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END= Visa alla -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME= G\u00f6m alla -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN= Visa en niv\u00e5 -# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note -OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP= G\u00f6m en niv\u00e5 -OptionPanel.keystroke_add= L\u00e4gg till -OptionPanel.keystroke_add_arrow_link_action= L\u00e4gg till h\u00e4ndelse pill\u00e4nk -OptionPanel.keystroke_add_child= L\u00e4gg till subnod -OptionPanel.keystroke_add_child_mac= L\u00e4gg till subnod Mac -OptionPanel.keystroke_add_local_link_action= L\u00e4gg till lokal l\u00e4nkh\u00e4ndelse -OptionPanel.keystroke_add_sibling_before= L\u00e4gg till syskonnod f\u00f6re -OptionPanel.keystroke_apply_pattern_1= Anv\u00e4nd m\u00f6nster 1 -OptionPanel.keystroke_apply_pattern_10= Anv\u00e4nd m\u00f6nster 10 -OptionPanel.keystroke_apply_pattern_11= Anv\u00e4nd m\u00f6nster 11 -OptionPanel.keystroke_apply_pattern_12= Anv\u00e4nd m\u00f6nster 12 -OptionPanel.keystroke_apply_pattern_13= Anv\u00e4nd m\u00f6nster 13 -OptionPanel.keystroke_apply_pattern_14= Anv\u00e4nd m\u00f6nster 14 -OptionPanel.keystroke_apply_pattern_15= Anv\u00e4nd m\u00f6nster 15 -OptionPanel.keystroke_apply_pattern_16= Anv\u00e4nd m\u00f6nster 16 -OptionPanel.keystroke_apply_pattern_17= Anv\u00e4nd m\u00f6nster 17 -OptionPanel.keystroke_apply_pattern_18= Anv\u00e4nd m\u00f6nster 18 -OptionPanel.keystroke_apply_pattern_2= Anv\u00e4nd m\u00f6nster 2 -OptionPanel.keystroke_apply_pattern_3= Anv\u00e4nd m\u00f6nster 3 -OptionPanel.keystroke_apply_pattern_4= Anv\u00e4nd m\u00f6nster 4 -OptionPanel.keystroke_apply_pattern_5= Anv\u00e4nd m\u00f6nster 5 -OptionPanel.keystroke_apply_pattern_6= Anv\u00e4nd m\u00f6nster 6 -OptionPanel.keystroke_apply_pattern_7= Anv\u00e4nd m\u00f6nster 7 -OptionPanel.keystroke_apply_pattern_8= Anv\u00e4nd m\u00f6nster 8 -OptionPanel.keystroke_apply_pattern_9= Anv\u00e4nd m\u00f6nster 9 -OptionPanel.keystroke_assign_attributes= Ange egenskaper... -OptionPanel.keystroke_close= St\u00e4ng -OptionPanel.keystroke_copy= Kopiera -OptionPanel.keystroke_copy_single= Kopiera enskilt -OptionPanel.keystroke_cut= Klipp ut -OptionPanel.keystroke_delete_child= Ta bort subnod -OptionPanel.keystroke_edge_color= Kantf\u00e4rg -OptionPanel.keystroke_edit= Redigera -OptionPanel.keystroke_edit_attributes= Redigera egenskaper -OptionPanel.keystroke_edit_long_node= Redigera ut\u00f6kad nod -OptionPanel.keystroke_export_branch= Exportera f\u00f6rgrening -OptionPanel.keystroke_export_branch_to_html= Exportera f\u00f6rgrening till Html -OptionPanel.keystroke_export_to_html= Exportera till Html -OptionPanel.keystroke_find= S\u00f6k -OptionPanel.keystroke_find_next= S\u00f6k n\u00e4sta -OptionPanel.keystroke_follow_link= F\u00f6lj l\u00e4nk -OptionPanel.keystroke_hide_all_attributes= G\u00f6m alla egenskaper -OptionPanel.keystroke_join_nodes= F\u00f6rena noder -OptionPanel.keystroke_mode_Browse= Arbetss\u00e4tt Bl\u00e4ddra -OptionPanel.keystroke_mode_File= Arbetss\u00e4tt Fil -OptionPanel.keystroke_mode_MindMap= Arbetss\u00e4tt Tankekarta -OptionPanel.keystroke_move_down= G\u00e5 ned -OptionPanel.keystroke_move_left= G\u00e5 v\u00e4nster -OptionPanel.keystroke_move_right= G\u00e5 h\u00f6ger -OptionPanel.keystroke_move_up= G\u00e5 upp -OptionPanel.keystroke_moveToRoot= G\u00e5 till basnoden -OptionPanel.keystroke_newMap= Ny karta -OptionPanel.keystroke_nextMap= N\u00e4sta karta -OptionPanel.keystroke_node_color= Nodf\u00e4rg -OptionPanel.keystroke_node_color_blend= Nodf\u00e4rg blanda -OptionPanel.keystroke_node_decrease_font_size= Nod minska teckenstorlek -OptionPanel.keystroke_node_down= Nod ned -OptionPanel.keystroke_node_increase_font_size= Nod \u00f6ka teckenstorlek -OptionPanel.keystroke_node_toggle_boldface= V\u00e4xla noden fetstil -OptionPanel.keystroke_node_toggle_cloud= V\u00e4xla noden moln -OptionPanel.keystroke_node_toggle_italic= V\u00e4xla noden kursiv -OptionPanel.keystroke_node_toggle_underlined= V\u00e4xla noden understruken -OptionPanel.keystroke_node_up= Nod upp -OptionPanel.keystroke_open= \u00d6ppna -OptionPanel.keystroke_open_first_in_history= \u00d6ppna f\u00f6rsta i historik -# fc, 16.6.2005: -OptionPanel.keystroke_option_dialog= Inst\u00e4llningar -OptionPanel.keystroke_paste= Klistra in -# fc, 4.9.06 -OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate= Utv\u00e4rdera -OptionPanel.keystroke_previousMap= F\u00f6reg\u00e5ende karta -OptionPanel.keystroke_print= Skriv ut -OptionPanel.keystroke_quit= Avsluta -OptionPanel.keystroke_redo= \u00c5terta -OptionPanel.keystroke_remove= Ta bort -OptionPanel.keystroke_save= Spara -OptionPanel.keystroke_saveAs= Spara som -OptionPanel.keystroke_select_all= V\u00e4lj alla -OptionPanel.keystroke_select_branch= V\u00e4lj f\u00f6rgrening -OptionPanel.keystroke_set_image_by_filechooser= V\u00e4lj bild med filv\u00e4ljaren -OptionPanel.keystroke_set_link_by_filechooser= V\u00e4lj l\u00e4nk med filv\u00e4ljaren -OptionPanel.keystroke_set_link_by_textfield= V\u00e4lj l\u00e4nk med textf\u00e4lt -OptionPanel.keystroke_show_all_attributes= Visa alla egenskaper -OptionPanel.keystroke_show_attribute_manager= Visa egenskapshanterare -OptionPanel.keystroke_show_selected_attributes= Visa markerade egenskaper -OptionPanel.keystroke_toggle_children_folded= V\u00e4xla invecklad/utvecklad subnod -OptionPanel.keystroke_toggle_folded= V\u00e4xla invecklad/utvecklad -OptionPanel.keystroke_undo= \u00c5ngra -OptionPanel.keystroke_zoom_in= Zooma in -OptionPanel.keystroke_zoom_out= Zooma ut -OptionPanel.Keystrokes= Tangenttryckningar -OptionPanel.ko=Ko -OptionPanel.language= Spr\u00e5k -OptionPanel.language.tooltip=Detta \u00e4r spr\u00e5ket som kommer att anv\u00e4ndas i programmet. 'automatic' f\u00f6rs\u00f6ker att h\u00e4mta nuvarande anv\u00e4ndares spr\u00e5k. -OptionPanel.last= Sist -OptionPanel.last_opened_list_length= Senast \u00f6ppnad, l\u00e4ngd p\u00e5 lista -OptionPanel.level= Niv\u00e5 -OptionPanel.level1= Formatering av basnod -OptionPanel.level2= 1. Niv\u00e5 formattering av nod -OptionPanel.level3= 2. Niv\u00e5 formattering av nod -OptionPanel.level4= 3. Niv\u00e5 formattering av nod -OptionPanel.level5= Andras formatteringar av nod -OptionPanel.linear= Linj\u00e4r -OptionPanel.links= L\u00e4nkar -OptionPanel.links.tooltip=Anv\u00e4nd relativa eller absoluta l\u00e4nkar -# fc, 23.7.06 -OptionPanel.loadLastMap= \u00d6ppna senaste tankekartan automatiskt -OptionPanel.loadLastMap.tooltip=N\u00e4r Freemind startas, h\u00e4mtas senast anv\u00e4nda tankekarta om f\u00f6rbockad. -OptionPanel.lookandfeel= Gr\u00e4nssnittsk\u00e4nsla -OptionPanel.lookandfeel.tooltip=Gr\u00e4nssnitt som kan anv\u00e4ndas. 'metal','windows','motif', 'gtk' finns tillg\u00e4ngliga, 'mac' finns enbart p\u00e5 MacOS. Standard betyder, att standard gr\u00e4nssnitt anv\u00e4nds. Om du vill skapa din egen vy och k\u00e4nsla kan du, skriva in klassbibliotekets namn h\u00e4r och f\u00f6rvissa dig om att jarfilerna \u00e4r laddade. Om det uppst\u00e5r problem med gr\u00e4nssnittet, kan du v\u00e4lja 'nothing'. Det fungerar med applets. -# fc, 13.8.2005 -OptionPanel.lt= Lt -OptionPanel.mapxsize= Tankekartans-X-storlek (bredd) -OptionPanel.mapxsize.tooltip=Ing\u00e5ngsstorlek f\u00f6r varje tankekarta -OptionPanel.mapysize= Tankekartans-Y-storlek (h\u00f6jd) -OptionPanel.max_node_width= Maximal nodbredd -OptionPanel.max_node_width.tooltip=Standard maximal nodbredd i pixels -#accessories/plugins/NodeNote_jumpfrom.properties_documentation=Switch back from notes to mindmap -#accessories/plugins/NodeNote_jumpfrom.properties_name=Leave note -# fc, 12.10.06 -OptionPanel.max_tooltip_width= Inforuta bredd -OptionPanel.max_tooltip_width.tooltip=Standard inforuta, bredd i pixlar. -OptionPanel.metal= Metall -OptionPanel.motif= Motif -OptionPanel.nb= No -OptionPanel.nl= Nl -OptionPanel.nn= Nn -OptionPanel.nothing= Ingenting -OptionPanel.number_of_different_files_for_automatic_save= Antal olika filer vid autospara -OptionPanel.number_of_different_files_for_automatic_save.tooltip= antal n av olika filer att spara tankekartan i. Den f\u00f6rsta filen autosparas f\u00f6rst, osv. till och med n+1-spara som \u00e5terigen sparas i den f\u00f6rsta filen (cykel) -OptionPanel.OK= Spara -OptionPanel.path_to_automatic_saves= S\u00f6kv\u00e4g till autosparade filer -OptionPanel.path_to_automatic_saves.tooltip= f\u00f6r att \u00e4ndra standard s\u00f6kv\u00e4g ('java.io.tmpdir' f\u00f6r java), skriv in en s\u00f6kv\u00e4g till mappen h\u00e4r: andra m\u00f6jligheter: * freemind_home beskriver mappen, var auto.properties finns. * default pekar p\u00e5 java.io.tmpdir -OptionPanel.patternsfile= M\u00f6nsterfil -OptionPanel.pl= Pl -OptionPanel.placenewbranches= Placera nya f\u00f6rgreningar -OptionPanel.placenewbranches.tooltip=Var placera nya f\u00f6rgreningar. Godk\u00e4nda v\u00e4rden \u00e4r 'f\u00f6rst' och 'sist' -OptionPanel.plugins/scripting/tab_name=Skript -OptionPanel.printonwhitebackground=Vit bakgrund vid utskrift -OptionPanel.printonwhitebackground.tooltip=Anv\u00e4nda alltid vit bakgrund vid utskrift -OptionPanel.pt_BR= Pt BR -OptionPanel.pt_PT= Pt PT -OptionPanel.relative= Relativ -OptionPanel.remind_type_of_new_nodes.tooltip="Fr\u00e5ga" kommer att fr\u00e5ga dig (anv\u00e4nd om os\u00e4ker).
"Ja" visar den avancerade textredigeraren.
"Nej" visar endast enkel textredigerare. -OptionPanel.remind_use_rich_text_in_new_long_nodes=Anv\u00e4nd formateringen i alla noder -OptionPanel.remove_notes_without_question.tooltip=Om denna kryssruta \u00e4r f\u00f6rbockad kommer anteckningar som tillh\u00f6r de valda noderna att raderas utan bekr\u00e4ftelse. Detta kan inneb\u00e4ra f\u00f6rlust av data. -OptionPanel.resources_convert_to_current_version=Automatisk konvertering av tankekartor fr\u00e5n \u00e4ldre versioner av FreeMind
till nuvarande version? -OptionPanel.resources_convert_to_current_version.tooltip=Endast mycket stota tankekartor som inte beh\u00f6ver konverteras
(detta \u00e4r expertkunskap) kan \u00f6ppnas utan konvertering. -OptionPanel.resources_cut_nodes_without_question=Klipp ut noder utan bekr\u00e4ftelse? -OptionPanel.resources_don_t_show_note_icons=Visa inte anteckningsikoner -OptionPanel.resources_execute_scripts_without_asking=K\u00f6ra skript utan bekr\u00e4ftelse? -OptionPanel.resources_execute_scripts_without_exec_restriction=Till\u00e5t k\u00f6rning av andra program (INTE rekommenderat) -OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=Om du vill att dina skript ska k\u00f6ra andra program (som t.ex. en webbl\u00e4sare) utan att fr\u00e5ga(!),
m\u00e5ste du aktivera detta val.
Anv\u00e4nd detta med f\u00f6rst\u00e5nd eftersom skript kan skada din dator! -OptionPanel.resources_execute_scripts_without_file_restriction=Till\u00e5t filhantering (INTE rekommenderat) -OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=Om dina skript beh\u00f6ver k\u00f6ra speciella funktion (\u00f6ppna, st\u00e4ng, l\u00e4s, skriv, ta bort(!)),
m\u00e5ste detta aktiveras h\u00e4r.
Anv\u00e4nd detta med f\u00f6rst\u00e5nd eftersom skript kan skada din dator. -OptionPanel.resources_execute_scripts_without_network_restriction=Till\u00e5t n\u00e4tverkshantering (INTE rekommenderat) -OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=Om dina skript beh\u00f6ver k\u00f6ra s\u00e4rskilda n\u00e4tverksfunktioner,
m\u00e5ste detta aktiveras h\u00e4r.
Anv\u00e4nd detta med f\u00f6rst\u00e5nd eftersom skript kan skada din dator. -OptionPanel.resources_remove_notes_without_question=Ta bort noder utan att fr\u00e5ga? -OptionPanel.resources_save_folding_state=Spara alltid mappinst\u00e4llningar -OptionPanel.resources_save_folding_state.tooltip=Kryssa i h\u00e4r om du vill att \u00f6ppnande av noder (vecklas ut) ska p\u00e5minna dig om att spara tankekartan. -OptionPanel.resources_script_user_key_name_for_signing=Valfri knapp f\u00f6r anv\u00e4ndarsignering -OptionPanel.resources_script_user_key_name_for_signing.tooltip=Skriv in din nyckel h\u00e4r som ska anv\u00e4ndas vid signering av dina skript.
Nyckeln f\u00f6rv\u00e4ntas finnas i det f\u00f6rvalda nyckelhateringssystemet.
L\u00f6senordet m\u00e5ste \u00f6verenst\u00e4mma med de sparade v\u00e4rdena. -OptionPanel.resources_signed_script_are_trusted=Lita p\u00e5 signerade skript (rekommenderat). -OptionPanel.resources_signed_script_are_trusted.tooltip=Om skripten \u00e4r ansedda som p\u00e5litliga (= gjorda av FreeMind eller av dig sj\u00e4lv), kommer dessa att k\u00f6ras utan begr\u00e4nsningar. -OptionPanel.ro=Ro -OptionPanel.ru= Ru -OptionPanel.save_only_intrisically_needed_ids=Spara endast nodernas IDnr -OptionPanel.save_only_intrisically_needed_ids.tooltip=Detta tar bort oanv\u00e4nda IDnr i din tankekarta. Observera att du inte kan l\u00e4nka till externa tankekartor utan noders IDnr. -OptionPanel.se= Se -OptionPanel.selection_method= Urvalsmetod -OptionPanel.selection_method.tooltip= med f\u00f6ljande 'switch' kan du m\u00f6jligg\u00f6ra/ta bort f\u00f6rsenade markeringsschema. Automatiska valm\u00f6jligheter. F\u00f6r\u00e4ndra inte dessa eftersom de kommer att sparas till auto.properties \u00e4nd\u00e5. -OptionPanel.selection_method_by_click= Vid musklick -OptionPanel.selection_method_delayed= F\u00f6rsenad -OptionPanel.selection_method_direct= Direkt -OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName= M\u00f6nster -OptionPanel.separator.anti_alias= Kantutj\u00e4mning -OptionPanel.separator.attributes= Egenskaper -OptionPanel.separator.automatic_save= Autospara -OptionPanel.separator.behaviour= Beteende -OptionPanel.separator.browser= Webbl\u00e4sare -OptionPanel.separator.commands_for_the_program= Kommandon f\u00f6r programmet -OptionPanel.separator.default_colors= Standardf\u00e4rg -OptionPanel.separator.default_fonts= Standard teckensnitt -OptionPanel.separator.default_styles= Standardstil -OptionPanel.separator.edit_long_node_window= Redigera ut\u00f6kat nodf\u00f6nster -OptionPanel.separator.files= Filer -OptionPanel.separator.html_export= Export av Html -OptionPanel.separator.hyperlink_types= Typ av hyperl\u00e4nkar -OptionPanel.separator.icon_properties=Ikoner -OptionPanel.separator.icons=Ikoner i "V\u00e4lj ikoner..." -OptionPanel.separator.initial_map_size= Inledande kartstorlek -OptionPanel.separator.key_typing= Tangenttryckning -OptionPanel.separator.language= Spr\u00e5k -OptionPanel.separator.look_and_feel= Gr\u00e4nssnitt - -# fc, 2.3.07: -OptionPanel.separator.mouse_wheel= Mushjul -OptionPanel.separator.new_node_commands= Nya kommandon f\u00f6r noder -OptionPanel.separator.node_editing_commands= Kommandon f\u00f6r nodredigering -OptionPanel.separator.node_navigation_commands= Kommandon f\u00f6r navigering -OptionPanel.separator.other_defaults= Andra standarder -OptionPanel.separator.others= Andra nyckelbindningar -OptionPanel.separator.patterns= M\u00f6nster -OptionPanel.separator.plugins/scripting/separatorPropertyName=Till\u00e5telser -OptionPanel.separator.resources_notifications=Bekr\u00e4ftelser -OptionPanel.separator.root_node_appearance=Basnodens utseende -OptionPanel.separator.save=Spara -OptionPanel.separator.selection_colors=F\u00e4rgurval -OptionPanel.separator.selection_method= Urvalsmetod -# fc, 10.7.2005: -OptionPanel.separator.undo= \u00c5ngra -OptionPanel.sk=Sk -OptionPanel.sl= Sl -OptionPanel.standardbackgroundcolor= Standard bakgrundsf\u00e4rg -OptionPanel.standardbackgroundcolor.tooltip=Standard bakgrundsf\u00e4rg i htmlkod -OptionPanel.standardcloudcolor= Standard molnf\u00e4rg -OptionPanel.standardcloudcolor.tooltip=Standard molnf\u00e4rg i htmlkod -OptionPanel.standardcloudestyle= Standard molnstil -OptionPanel.standardcloudestyle.tooltip=Standard molnstil. F\u00f6r n\u00e4rvarande finns enbart 'bezier' tillg\u00e4ngligt -OptionPanel.standarddrawrectangleforselection=Visa valda noder i bubblor -OptionPanel.standarddrawrectangleforselection.tooltip=Markera valda noder med bubblor -OptionPanel.standardedgecolor= Standard kantf\u00e4rg -OptionPanel.standardedgecolor.tooltip=Standard kantf\u00e4rg i htmlkod -OptionPanel.standardedgestyle= Standard kantstil -OptionPanel.standardedgestyle.tooltip=Standard kantstil. 'linj\u00e4r' och 'bezier' finns tillg\u00e4ngliga -OptionPanel.standardlinkcolor= Standard l\u00e4nkf\u00e4rg -OptionPanel.standardlinkcolor.tooltip=Standard l\u00e4nkf\u00e4rg i htmlkod -OptionPanel.standardlinkestyle= Standard l\u00e4nkstil -OptionPanel.standardlinkestyle.tooltip=Standard l\u00e4nkstil. F\u00f6r n\u00e4rvarande finns enbart 'bezier' tillg\u00e4ngligt -OptionPanel.standardnodestyle= Standard nodstil -OptionPanel.standardnodestyle.tooltip=F\u00f6ljande standard nodstiler finns. 'fork', 'bubble' 'as_parent' och 'combined' finns tillg\u00e4ngliga -OptionPanel.standardnodetextcolor= Standard nodf\u00e4rg -OptionPanel.standardnodetextcolor.tooltip=Standard nodf\u00e4rg. I htmlkod (#RRGGBB i hexv\u00e4rde) -OptionPanel.standardrootnodestyle= Standard basnodstil -OptionPanel.standardrootnodestyle.tooltip=Basnodstil om ingen annan \u00e4r specificerad. 'fork' och 'bubble' och 'combined' finns tillg\u00e4ngliga -OptionPanel.standardselectednodecolor=Standard vald nodf\u00e4rg -OptionPanel.standardselectednodecolor.tooltip=Standard nodf\u00e4rg om den \u00e4r vald. I htmlkod (#RRGGBB i hexv\u00e4rde) -OptionPanel.standardselectednoderectanglecolor=V\u00e4lj f\u00e4rg f\u00f6r nodens bubbla -OptionPanel.standardselectednoderectanglecolor.tooltip=De markerade nodernas bubbelf\u00e4rg. I html (#RRGGBB i hexv\u00e4rde) -OptionPanel.standardselectednodetextcolor.tooltip= -OptionPanel.time_for_automatic_save= Tid f\u00f6r att spara automatiskt -OptionPanel.time_for_automatic_save.tooltip= tid mellan tv\u00e5 p\u00e5f\u00f6ljande automatiskt sparade filer (i msec): F\u00f6r att ta bort autospara s\u00e4tt v\u00e4rdet till 2000000000. -OptionPanel.time_for_delayed_selection= Tid f\u00f6r f\u00f6rsenat urval -OptionPanel.time_for_delayed_selection.tooltip= F\u00f6rsenad urvalstid av noder n\u00e4r musen f\u00f6rs \u00f6ver (i msec). \u00c4ndra detta v\u00e4rde 1 om du vill ha direkt val n\u00e4r musen f\u00f6rs \u00f6ver. -OptionPanel.tr= Tr -OptionPanel.uk_UA=Uk UA -OptionPanel.undo_levels= \u00c5ngra niv\u00e5er -OptionPanel.undo_levels.tooltip=Fastst\u00e4ller hur m\u00e5nga \u00e5ngrasteg som kan sparas. -OptionPanel.unfold_on_paste=Veckla ut noden vid inklistring -OptionPanel.unfold_on_paste.tooltip=Veckla ut noden vid inklistring eller Drag-och-sl\u00e4pp -OptionPanel.use_common_out_point_for_root_node=Linjerna startar fr\u00e5n samma plats vid basnoden -OptionPanel.use_common_out_point_for_root_node.tooltip=Linjerna startar fr\u00e5n samma plats vid basnoden======= -OptionPanel.use_tabbed_pane=Anv\u00e4nd flikar -OptionPanel.use_tabbed_pane.tooltip=Visar tankekartorna i flikar (som i FireFox :-)). -OptionPanel.userproperties= Anv\u00e4ndaregenskaper -OptionPanel.vi=Vi -OptionPanel.wheel_velocity= Hastighet -OptionPanel.wheel_velocity.tooltip= Ett h\u00f6gre v\u00e4rde resulterar i snabb effekt p\u00e5 tankekartans mushjulsr\u00f6relse. -OptionPanel.windows= Windows -OptionPanel.zh_CN= Zh CN -OptionPanel.zh_TW= Zh -page = Sidinst\u00e4llningar... -paste = Klistra in -PatternDialog.as_parent= Som huduvdnod -PatternDialog.bezier= Bezier -PatternDialog.bubble= Bubbla -PatternDialog.childpattern= Sudnodsm\u00f6nster -PatternDialog.childpattern.tooltip= Det markerade m\u00f6nstret anv\u00e4nds p\u00e5 alla subnoder. -PatternDialog.clear_all_setters= Byt alla -PatternDialog.clear_all_setters.tooltip= Visar eller tar bort alla angivna f\u00f6r\u00e4ndringar. -# fc, 27.2.06: -PatternDialog.ColorProperty.ResetColor= \u00c5terst\u00e4ll f\u00e4rg -PatternDialog.combined= Kombinerad -PatternDialog.edgecolor= Kantf\u00e4rg -PatternDialog.edgecolor.tooltip= Kantegenskap till huvudnod. Alla subnoder \u00e4ndras ocks\u00e5. -PatternDialog.edgestyle= Kantstil -PatternDialog.edgestyle.tooltip= Kantegenskap till huvudnod. Alla subnoder \u00e4ndras ocks\u00e5. -PatternDialog.edgewidth= Kantbredd -PatternDialog.edgewidth.tooltip= Kantegenskap till huvudnod. Alla subnoder \u00e4ndras ocks\u00e5. -PatternDialog.EdgeWidth_1= 1 -PatternDialog.EdgeWidth_2= 2 -PatternDialog.EdgeWidth_4= 4 -PatternDialog.EdgeWidth_8= 8 -PatternDialog.EdgeWidth_parent= Som huvudnod -PatternDialog.EdgeWidth_thin= Smal -PatternDialog.fork= F\u00f6rgrening -PatternDialog.icon= Ikon -PatternDialog.icon.tooltip= Om anv\u00e4nds kommer noden att ha denna ikonen. -PatternDialog.linear= Linj\u00e4r -PatternDialog.nodebackgroundcolor= Nodens bakgrundsf\u00e4rg -PatternDialog.nodebackgroundcolor.tooltip= Nodens bakgrundsf\u00e4rg -PatternDialog.nodecolor= Nodens f\u00e4rg -PatternDialog.nodecolor.tooltip= Nodens f\u00e4rg -PatternDialog.nodefontbold= Fet stil -PatternDialog.nodefontbold.tooltip= Noden fet stil -PatternDialog.nodefontitalic= Kursiv stil -PatternDialog.nodefontitalic.tooltip= Noden kursiv stil -PatternDialog.nodefontname= Nodens teckensnitt -# fc, 14.3.06: -PatternDialog.nodefontname.tooltip= Nodens teckensnitt -PatternDialog.nodefontsize= Nodens teckensnittsstorlek -PatternDialog.nodefontsize.tooltip= Nodens teckensnittsstorlek -PatternDialog.nodestyle= Nodens stil -PatternDialog.nodestyle.tooltip= Nodens stil -PatternDialog.nodetext= Nodtext -PatternDialog.nodetext.tooltip= Nodtext -PatternDialog.patternname= Namn -PatternDialog.patternname.tooltip= Unikt m\u00f6nsternamn -PatternDialog.script=Skript -PatternDialog.script.tooltip=Skriptet som h\u00e4ftgig k\u00e4llkod. -PatternDialog.separator.EdgeControls= Kanter - -PatternDialog.separator.General= Allm\u00e4n -PatternDialog.separator.NodeColors= Nodf\u00e4rger -PatternDialog.separator.NodeFont= Nodens teckesnitt -PatternDialog.separator.NodeStyles= Nodstilar -PatternDialog.separator.ScriptingControl=Skript -PatternDialog.set_property_text= \u00c4ndra -PatternDialog.set_property_text.tooltip=Tom: R\u00f6r inte; Minus=Ta bort egenskap (\u00e5terg\u00e5r till standardv\u00e4rde); Plus=\u00c4ndra egenskaper -PatternDialog.setscript=\u00c4ndra? -PatternDialog.setscript.tooltip=Ett skript kan associeras med en stil. -PatternDialog.sharp_bezier= Skarp Bezier -PatternDialog.sharp_linear= Skarp linj\u00e4r -PatternDialog.undefined_font= Odefinierat teckensnitt -PatternNewNameProperty= Nytt m\u00f6nster -PatternToString.backgroundColor= Bakgrundsf\u00e4rg -PatternToString.Child=Stil p\u00e5 subnode -PatternToString.color= F\u00e4rg -PatternToString.EdgeColor=Kantf\u00e4rg -PatternToString.EdgeStyle=Kantstil -PatternToString.EdgeWidth=Kantbredd -PatternToString.FontBold=Fet -PatternToString.FontItalic=Kursivt -PatternToString.FontName=Teckensnittsnamn -PatternToString.Icon=Ikon -PatternToString.NodeFontSize= Teckensnittsstorlek -pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide.pdf -plugins/ExportPdf.xml_documentation = Exportera till PDF -plugins/ExportPdf.xml_name = Som PDF... -plugins/ExportSvg.xml_documentation = Exportera till SVG -plugins/ExportSvg.xml_name = Som SVG... -plugins/FreemindHelp.xml_documentation = FreeMind ut\u00f6kad hj\u00e4lp -plugins/FreemindHelp.xml_name = Hj\u00e4lp... -plugins/latex/LatexNodeHook.editorTitle =Redigerare, st\u00e4ng f\u00f6r att godk\u00e4nna -plugins/latex/LatexNodeHook.properties_documentation =Latex formel -plugins/latex/LatexNodeHook.properties_name =&Latex -# fc, 13.10.06: renamed: -plugins/NodeList.xml_documentation= Visar alla noder som en s\u00f6kbar lista med filteregenskaper. -# fc, 14.12.2006: renamed: -plugins/NodeList.xml_name= S\u00f6k och ers\u00e4tt... -# fc, 2.5.2005: -plugins/RemoveReminder.xml_documentation= Tar bort en p\u00e5minnelse fr\u00e5n en nod. -plugins/RemoveReminder.xml_name= Ta bort p\u00e5minnelse -plugins/ScriptEditor.cancel=&Ignorera \u00e4ndringarna och avsluta -plugins/ScriptEditor.exit= Avsluta -plugins/ScriptEditor.FORBIDDEN_ACTION=FreeMinds skript \u00e4r begr\u00e4nsade. F\u00f6ljande funktioner {0,choice,0#File|1#Network|2#Exec} \u00e4r inte till\u00e5tna: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Du kan \u00e4ndra detta i programmet inst\u00e4llningar. -plugins/ScriptEditor.menu_actions= Aktion -plugins/ScriptEditor.new_script=Nytt skript -plugins/ScriptEditor.run= K\u00f6r -plugins/ScriptEditor.sign=Signera skriptet... -plugins/ScriptEditor.xml_documentation= M\u00f6jligg\u00f6r att skriva st\u00f6rre script i Freemind. -plugins/ScriptEditor.xml_name= Scriptredigerare... -plugins/ScriptEditor/window.Result= Resultat: -# fc, 24.1.07: -plugins/ScriptEditor/window.title= Scriptredigerare -plugins/ScriptingEngine.xml_documentation= Utv\u00e4rderar befintliga script (Rekursiv ordning, knoppar f\u00f6rst). -plugins/ScriptingEngine.xml_name= Utv\u00e4rdera -plugins/TimeList.xml_Created= Skapad -plugins/TimeList.xml_Date= Datum -plugins/TimeList.xml_documentation= Visar alla schemalagda tider och ber\u00f6rda noder. -plugins/TimeList.xml_Icons= Ikoner -plugins/TimeList.xml_Modified= Modifierad -plugins/TimeList.xml_name= Visa lista p\u00e5 schemal\u00e4ggning ... -# fc, 23.12.06: -plugins/TimeList.xml_Notes= Anteckningar -plugins/TimeList.xml_Text= Text -plugins/TimeManagement.xml_appendButton= Bifoga datum till markerade noder -plugins/TimeManagement.xml_Cancel= Avbryt -plugins/TimeManagement.xml_cancelButton= Avbryt -plugins/TimeManagement.xml_closeButton=St\u00e4ng -# fc, 4.2.05: -plugins/TimeManagement.xml_documentation= Visar kalendermodulen av Kai Toedter. -plugins/TimeManagement.xml_Export= Exportera markerade noder -# fc, 27.8.06: -plugins/TimeManagement.xml_Find= S\u00f6k -plugins/TimeManagement.xml_Goto= G\u00e5 till -plugins/TimeManagement.xml_hour= Timme: -plugins/TimeManagement.xml_menu_actions= Aktion -plugins/TimeManagement.xml_minute= Minut: -plugins/TimeManagement.xml_name= Visa kalender... -plugins/TimeManagement.xml_reminderButton= P\u00e5minn mig vid detta datum -# fc, 3.5.2005: -plugins/TimeManagement.xml_reminderButton_tooltip=N\u00e4r en timer \u00e4r klickad p\u00e5, sker schemal\u00e4ggning till dagens datum. Blinkande ikoner p\u00e5kallar din uppm\u00e4rksamhet.
Om du st\u00e4nger tankekartan, kommer timern att \u00e5teraktiveras n\u00e4sta g\u00e5ng tankekartan \u00f6ppnas. -plugins/TimeManagement.xml_reminderNode_onlyOneDate=F\u00f6r n\u00e4rvarande finns det enbart en p\u00e5minnelse per nod.
Den aktuella p\u00e5minnelsen \u00e4r schemalagd till {0,date} {0,time}, ditt val var {1,date} {1,time}.

Vill du \u00e4ndra nodens p\u00e5minnelstid (Ja)
eller vill du beh\u00e5lla den gamla (Nej)? -plugins/TimeManagement.xml_reminderNode_showNode= Tiden har g\u00e5tt ut f\u00f6r noden " {0} ". Vill du v\u00e4nta ytterligare tio minuter? -plugins/TimeManagement.xml_reminderNode_tooltip= P\u00e5minnelse {0,date} {0,time}. -plugins/TimeManagement.xml_removeReminderButton = Ta bort p\u00e5minnelser -plugins/TimeManagement.xml_removeReminderButton_tooltip = Ta bort alla p\u00e5minnelser fr\u00e5n markerade noder. -plugins/TimeManagement.xml_Replace= Ers\u00e4tt -plugins/TimeManagement.xml_Replace_All= Ers\u00e4tt alla -plugins/TimeManagement.xml_Replace_Selected= Ers\u00e4tt markerade -plugins/TimeManagement.xml_Select= V\u00e4lj -# fc, 5.4.2005 -plugins/TimeManagement.xml_todayButton= Idag -plugins/TimeManagement.xml_WindowTitle= Tidsstyrning -# fc, 10.1.07: -plugins/TimeManagement.xml_WindowTitle_All_Nodes= S\u00f6k och ers\u00e4tt -#Kan vara felaktig översättning - Internal hook for scheduling resubmission tasks. -plugins/TimeManagementReminder.xml_documentation= Intern upph\u00e4ngning f\u00f6r schemalagda \u00e5tertagna uppgifter. -plugins/TimeManagementReminder.xml_name= Intern upph\u00e4ngning f\u00f6r schemalagda \u00e5tertagna uppgifter. -preferences = Inst\u00e4llningar -previous_map = F\u00f6reg\u00e5ende tankekarta -print = Skriv ut -print_dialog = Skriv ut... -print_preview = F\u00f6rhandsgranska utskrift... -print_preview_title =F\u00f6rhandsgranska utskrift -# new from 20.12.2003, fc -printing_settings = Skala utskrift -# fc, 10.5.2005: -property_dialog= Inst\u00e4llningar ... - -quit = Avsluta -read_only = Enbart l\u00e4sr\u00e4ttighet -really_convert_to_current_version=Denna tankekarta skapades med en \u00e4ldre version av FreeMind.
Vill du konvertera den (rekommenderas)?
(Annars anv\u00e4nder du den utan garantier.) -really_cut_node=Vill du verkligen klippa ut noder(na)? -really_execute_script=Vill du verkligen k\u00f6ra skript som finns i denna tankekarta? Detta kan i v\u00e4rsta fall skada din dator. -really_remove_node=Vill du verkligen ta bort noder(na)? -really_remove_notes=Vill du verkligen ta bort anteckning(arna)? -redo = G\u00f6r om -remove_all_icons = Ta bort alla ikoner -remove_arrow_link = Ta bort pill\u00e4nk -remove_last_icon = Ta bort senaste ikonen - -remove_node = Ta bort nod -remove_node_background_color = Ta bort nodens bakgrundsf\u00e4rg -rename=&D\u00f6p om -repair_link = Reparera l\u00e4nk -repair_link_question = Kunde inte ladda in l\u00e4nkad tankekarta. Reparera l\u00e4nken manuellt? -replace= Ers\u00e4tt -# fc, 27.4.2005: -reset_node_position= \u00c5terta position -# fc, 11.3.2005: -RevertAction= \u00c5terg\u00e5 -save = Spara -save_as = Spara som... -save_failed = F\u00f6rs\u00f6k att spara tankekartan $1 misslyckades. -save_unsaved = Spara f\u00f6ljande tankekarta? : -saved = Sparad -scheme_evaluate = Utv\u00e4rdera! - -#fc, 14.2.07: -ScriptEditorPanel.changed_cancel= Script har \u00e4ndrats. Vill du verkligen avst\u00e5 fr\u00e5n \u00e4ndringen? -select_all= V\u00e4lj alla synliga -#fc, 26.4.2005: -select_branch= V\u00e4lj synlig f\u00f6rgrening -select_favorites_folder = V\u00e4lj mappen med dina favoriter -select_folder_for_importing = V\u00e4lj mappen som ska importeras -select_icon=V\u00e4lj en ikon -selection_as_rectangle=Rektangul\u00e4r markering -# changed from 23.1.2004, fc. -selection_method_by_click = Enkelt musklick f\u00f6r att v\u00e4lja -# fc, 2.2.05: -selection_method_delayed= F\u00f6rsenad automatisk markering -selection_method_direct = Peka f\u00f6r att v\u00e4lja -set_image_by_filechooser = Bild (Dokumentv\u00e4ljare eller l\u00e4nk)... -set_link_by_filechooser = Hyperl\u00e4nk (Dokumentv\u00e4ljare)... -set_link_by_textfield = Hyperlink (Textf\u00e4lt)... -sharp_bezier = Skarp Bezier -sharp_linear = Skarp Linj\u00e4r - -# About frame -simplyhtml.aboutFrameTitle= Om applikationen -simplyhtml.aboutLabel=Om SimplyHTML... -simplyhtml.alignCenter= Centrerad -simplyhtml.alignLabel= Justering: -simplyhtml.alignLeft= V\u00e4nster -simplyhtml.alignRight= H\u00f6ger -simplyhtml.allCellsRangeLabel= Alla celler -simplyhtml.allOccurrencesReplaced= Alla f\u00f6rekomster ersatta -simplyhtml.appendTableColLabel= L\u00e4gg till kolumn -simplyhtml.appendTableRowLabel= L\u00e4gg till rad -simplyhtml.applyCellAttrLabel= Till\u00e4mpa p\u00e5 -simplyhtml.backgroundLabel= Bakgrund: -simplyhtml.boldItalicName= Fet kursiv -simplyhtml.boldName= Fet -simplyhtml.borderColorLabel= F\u00e4rg: -simplyhtml.borderWidthLabel= Bredd -simplyhtml.bottomLabel= Nederst: -simplyhtml.cancelBtnName= Avbryt -simplyhtml.cellBorderTabLabel= Kantlinjer -simplyhtml.cellGenTabLabel= Generellt -simplyhtml.cellMarginTabLabel= Marginal -simplyhtml.cellPanelTitle= Cellformatering -simplyhtml.clearFormatLabel= Ta bort formattering -simplyhtml.clearFormatTip= Ta bort formattering -simplyhtml.close= St\u00e4ng -simplyhtml.closeBtnName= Close -simplyhtml.colorLabel= F\u00e4rg -simplyhtml.copyLabel= Kopiera -simplyhtml.copyTip= Kopiera -simplyhtml.cTagNameHead1= Rubrik 1 -simplyhtml.cTagNameHead2= Rubrik 2 -simplyhtml.cTagNameHead3= Rubrik 3 -simplyhtml.cTagNameHead4= Rubrik 4 -simplyhtml.cTagNameHead5= Rubrik 5 -simplyhtml.cTagNameHead6= Rubrik 6 -simplyhtml.cTagNameLink= L\u00e4nk -simplyhtml.cTagNameOL= Numrerad lista - -# Tag names -simplyhtml.cTagNamePara= Stycke -simplyhtml.cTagNameUL= Onumrerad lista -simplyhtml.cutLabel= Klipp ut -simplyhtml.cutTip= Klipp ut -simplyhtml.defaultDocName= Dokumentnamn -simplyhtml.deleteTableColLabel= Ta bort kolumn -simplyhtml.deleteTableRowLabel= Ta bort rad -simplyhtml.docTitleQuery= Namn p\u00e5 dokumenttitel: -simplyhtml.docTitleTitle= Redigerat dokumenttitel - -# SimplyHTML.properties -# -# resource bundle with strings for application SimplyHTML -# - English Language (default) - -# edit menu definition -simplyhtml.editLabel= Redigera -simplyhtml.effectLabel= Effekt -simplyhtml.familyLabel= Familj -simplyhtml.findNext= S\u00f6k n\u00e4sta... - -# Find & replace dialog -simplyhtml.findReplaceDialogTitle= S\u00f6k och ers\u00e4tt -simplyhtml.findReplaceLabel= S\u00f6k och ers\u00e4tt -simplyhtml.findReplaceTip= S\u00f6k och ers\u00e4tt -simplyhtml.fontBoldImage=resources/bold.gif -simplyhtml.fontBoldLabel= Fet -simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif -simplyhtml.fontBoldTip= V\u00e4xla fet p\u00e5/av -simplyhtml.fontColorImage=resources/fontColor.gif -simplyhtml.fontColorLabel=Textf\u00e4rg -simplyhtml.fontColorTip=Textf\u00e4rg - -# Font Dialog -simplyhtml.fontDialogTitle= Formatera teckensnitt -simplyhtml.fontItalicImage=resources/italic.gif -simplyhtml.fontItalicLabel= Kursiv -simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif -simplyhtml.fontItalicTip= V\u00e4xla kursiv p\u00e5/av - -# format menu items -simplyhtml.fontLabel= Teckensnitt... -simplyhtml.fontTabLabel= Teckensnitt -simplyhtml.fontTip= Formattera teckensnitt... -simplyhtml.fontUnderlineImage=resources/uline.gif -simplyhtml.fontUnderlineLabel= Understruken -simplyhtml.fontUnderlineTip= V\u00e4xla understruken p\u00e5/av -simplyhtml.foregroundLabel= F\u00f6rgrund: -# format menu definition -simplyhtml.formatLabel= Formatera -simplyhtml.formatListLabel= Lista... -simplyhtml.formatListTip= \u00c4ndra listformat -simplyhtml.formatParaLabel= Stycke... -simplyhtml.formatParaTip= \u00c4ndra styckeformat -simplyhtml.formatTableLabel= Tabell... -simplyhtml.formatTableTip= Formattera tabell -simplyhtml.helpLabel=Hj\u00e4lp -simplyhtml.htmlTabTitle= HTML-kodvy - -# Miscellaneous text -simplyhtml.imageFileDesc= Bildfiler -simplyhtml.insertTableColLabel= Infoga kolumn - -#insert menu definition -simplyhtml.insertTableLabel= Tabell... -simplyhtml.insertTableMsg= Hur m\u00e5nga kolumner? -simplyhtml.insertTableRowLabel= Infoga rad -simplyhtml.insertTableTitle= Infoga tabell -simplyhtml.italicName= Kursiv -simplyhtml.layoutTabTitle= Layoutvy -simplyhtml.leftLabel= V\u00e4nster: - -# List dialog -simplyhtml.listDialogTitle= Formatera lista -simplyhtml.listIndentTitle= Indrag: -simplyhtml.listPosInside= Inuti -simplyhtml.listPositionLabel= Position: -simplyhtml.listPosOutside= Utanf\u00f6r -simplyhtml.listTypeCircle= Rund punkt -simplyhtml.listTypeDecimal= 1.,2.,3.,4. -simplyhtml.listTypeDisc= Filsymbol som punkt -simplyhtml.listTypeLabel= Listtyp: -simplyhtml.listTypeLowerAlpha= a.,b.,c.,d. -simplyhtml.listTypeLowerRoman= i.,ii.,iii.,iv. -simplyhtml.listTypeNone= Ingen -simplyhtml.listTypeSquare= Fyrkantig punkt -simplyhtml.listTypeUpperAlpha= A.,B.,C.,D. -simplyhtml.listTypeUpperRoman= I.,II.,III.,IV. - -# Margin panel -simplyhtml.marginLabel= Yttre -simplyhtml.matchCase= Matcha gemener/versaler -simplyhtml.newStyleDefaultName= Ny stil -simplyhtml.nextTableCellLabel= N\u00e4sta cell -simplyhtml.noLineLabel= Ingen -simplyhtml.noMoreOccurrencesFound= Inga (fler) f\u00f6rekomster hittade -simplyhtml.okBtnName= OK -simplyhtml.paddingLabel= Inre -simplyhtml.paraAlignCenterLabel= Centrera -simplyhtml.paraAlignCenterTip= Centrera -simplyhtml.paraAlignLeftLabel= V\u00e4nsterjustera -simplyhtml.paraAlignLeftTip= V\u00e4nsterjustera stycke -simplyhtml.paraAlignRightLabel= H\u00f6gerjustera -simplyhtml.paraAlignRightTip= H\u00f6gerjustera stycke - -# Paragraph style dialog -simplyhtml.paraStyleDialogTitle= Styckestil -simplyhtml.paraTabLabel= Stycke -simplyhtml.pasteLabel= Klistra in -simplyhtml.pasteTip= Klistra in -simplyhtml.plainName= Enkel -simplyhtml.previewLabel= F\u00f6rhandsgranska -simplyhtml.previewText= F\u00f6rhandsgranska text -simplyhtml.prevTableCellLabel= F\u00f6reg\u00e5ende cell -simplyhtml.redoLabel= \u00c5terta -simplyhtml.redoTip= \u00c5terta -simplyhtml.replace= Ers\u00e4tt... -simplyhtml.replaceAll= Alla -simplyhtml.replaceDone= F\u00e4rdig -simplyhtml.replaceNo= Nej -simplyhtml.replaceThisQuery= Ers\u00e4tt denna f\u00f6rekomst -simplyhtml.replaceWith= Ers\u00e4tt med: -simplyhtml.replaceYes= Ja -simplyhtml.rightLabel= H\u00f6ger: -simplyhtml.searchDown= S\u00f6k ned\u00e5t -simplyhtml.searchFromStart= S\u00f6k fr\u00e5n b\u00f6rjan -simplyhtml.searchUp= S\u00f6k upp\u00e5t -simplyhtml.selectAllLabel= Markera alla -simplyhtml.sizeLabel= Storlek -simplyhtml.standardStyleName= Standard -simplyhtml.strikeLabel= Genomstruken -simplyhtml.styleLabel= Stil -simplyhtml.styleNameInputText= Namn p\u00e5 ny stil? -simplyhtml.styleNameInputTitle= Spara stil -simplyhtml.tableBgColLabel= Bakgrundsf\u00e4rg: - -# Table dialog -simplyhtml.tableDialogTitle= Formatera tabell - -# table menu definition -# table menu items -simplyhtml.tableLabel= Tabell -simplyhtml.tablePanelTitle= Tabellformatering -simplyhtml.tableWidthLabel= Bredd: - -# Paragraph style panel -simplyhtml.textIndentLabel= Indrag: -simplyhtml.textToFind= S\u00f6k efter text: -simplyhtml.thisCellRangeLabel= Denna cellen -simplyhtml.thisColRangeLabel= Denna kolumn -simplyhtml.thisRowRangeLabel= Denna rad -simplyhtml.toggleBulletsLabel= Punktlista p\u00e5/av -simplyhtml.toggleBulletsTip= Punktlista p\u00e5/av -simplyhtml.toggleNumbersLabel= Nummerlista p\u00e5/av -simplyhtml.toggleNumbersTip= Nummerlista p\u00e5/av -simplyhtml.topLabel= \u00d6verst: - -# Font panel -simplyhtml.uLineLabel= Understruken -simplyhtml.unableToOpenFileError=Filen kan inte \u00f6ppnas -simplyhtml.unableToRedoError= Om\u00f6jligt att \u00e5terta: - -# Error messages -simplyhtml.unableToUndoError= Om\u00f6jligt att \u00e5ngra: - -# edit menu items -simplyhtml.undoLabel= \u00c5ngra -simplyhtml.undoTip= \u00c5ngra -simplyhtml.valignBaseline= Baslinjen -simplyhtml.valignBottom= Underst -simplyhtml.valignLabel= Vert. justerad: -simplyhtml.valignMiddle= Mitten -simplyhtml.valignTop= \u00d6verst -simplyhtml.wholeWordsOnly= Enbart hela ord -split = Dela -style = Stil -toggle_bold_branch = V\u00e4xla fetstil -toggle_children_folded = (V\u00e4xla) g\u00f6m subnod -toggle_folded = V\u00e4xla utf\u00e4lld -toggle_italic_branch = V\u00e4xla kursiv -toggle_left_toolbar = V\u00e4xla v\u00e4nster verktygsf\u00e4lt -toggle_menubar = V\u00e4xla menyrad -toggle_toolbar = V\u00e4xla verktygsf\u00e4lt -#fc, 14.11.2004: -undefined_error = Ett ov\u00e4ntat fel har skett. Skicka en buggrapport. -underline = Stryk under -# added at 27.8.2004, fc: -underlined = Understruken -# added at 2.5.2004, fc: -undo = \u00c5ngra -unfold = Visa f\u00f6rgrening -url_error = URL:en \u00e4r felaktig! -url_load_error = Kunde inte h\u00e4mta URL:ens tankekarta: -use_plain_text = Anv\u00e4nd enkel text -# dan, whenever -use_rich_formatting = Anv\u00e4nd ut\u00f6kad formattering -# removed: follow_link = Goto: -user_defined_zoom = Anv\u00e4ndardefinierad. -user_defined_zoom_status_bar = F\u00f6r\u00e4ndrar zoom till anv\u00e4ndardefinierad zoom med v\u00e4rde {0}%. -user_zoom = Utskrift med zoomfaktor (0.0 - 2.0): -webDocu = Webbdokumentation -width = Bredd -yes = Ja -zoom_in = Zooma in -zoom_out = Zooma ut +#! +#! created/edited by Popeye version 0.54 (popeye.sourceforge.net) +#! encoding:ISO-8859-1 +# done by Anders_B (andber) and Hans Gustavsson (gustavsson) +about = Om Freemind + +about_text = FreeMind - free mind mapping and knowledge building software\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: +accessories/plugins/ApplyFormatPlugin.dialog.title= \u00c4ndra nodformattering +accessories/plugins/ApplyFormatPlugin.properties_documentation= Visar en dialogruta, d\u00e4r nod- och kantegenskaper direkt kan \u00e4ndras. +accessories/plugins/ApplyFormatPlugin.properties_name= \u00c4ndra formattering ... +#fc, 15.11.2004: +accessories/plugins/AutomaticLayout.properties_documentation = Fixar layouten av tankekartan.
Den f\u00f6rsta niv\u00e5n \u00e4r svart, den andra \u00e4r bl\u00e5, etc. +accessories/plugins/AutomaticLayout.properties_name = Automatisk layout +accessories/plugins/AutomaticLayout.properties_StyleDialogTitle= \u00c4ndra m\u00f6nster +accessories/plugins/BlinkingNodeHook.properties_documentation = Detta g\u00f6r s\u00e5 att noden blinkar. Var f\u00f6rsiktig. Anv\u00e4nd inte i f\u00f6r m\u00e5nga noder, och inte med andra automatiska formateringar p\u00e5 samma nod +accessories/plugins/BlinkingNodeHook.properties_name = Blinkande nod +# fc, 21.2.06 +accessories/plugins/ChangeNodeLevelAction_left.properties_documentation= P\u00e5 v\u00e4nster sida av roten till noden(erna) skiftas ned\u00e5t. Den/de blir subnoder till ovanliggande syskonnod. P\u00e5 h\u00f6ger sida av roten till noden skiftas upp\u00e5t. Direkt p\u00e5 roten skiftar noden(erna) sida. +accessories/plugins/ChangeNodeLevelAction_left.properties_name= Nod till v\u00e4nster +accessories/plugins/ChangeNodeLevelAction_right.properties_documentation= P\u00e5 h\u00f6ger sida av roten till noden(erna) skiftas ned\u00e5t. Den/de blir subnoder till ovanliggande syskonnod. P\u00e5 v\u00e4nster sida av roten till noden skiftas upp\u00e5t. Direkt p\u00e5 roten skiftar noden(erna) sida. +accessories/plugins/ChangeNodeLevelAction_right.properties_name= Nod till h\u00f6ger +accessories/plugins/CreationModificationPlugin.properties_documentation=Denna funktionen h\u00e5ller reda p\u00e5 n\u00e4r noden skapades och f\u00f6r\u00e4ndrades. +accessories/plugins/CreationModificationPlugin.properties_name = Visa n\u00e4r f\u00f6r\u00e4ndring skedde +accessories/plugins/EncryptNode.properties_0 = V\u00e4lj l\u00f6senord f\u00f6r krypterad nod +accessories/plugins/EncryptNode.properties_1 = L\u00f6senordet matchar inte eller \u00e4r f\u00f6r kort. +accessories/plugins/EncryptNode.properties_2 = Skriv in l\u00f6senord: +accessories/plugins/EncryptNode.properties_3 = Skriv in l\u00f6senord igen: +accessories/plugins/EncryptNode.properties_4 = Skriv in ditt l\u00f6senord. +accessories/plugins/EncryptNode.properties_5 = Kom ih\u00e5g, att sekretessniv\u00e5n
styrs n\u00e4stan helt och h\u00e5ller av l\u00f6senordets kvalitet. +accessories/plugins/EncryptNode.properties_6 = OK +accessories/plugins/EncryptNode.properties_7 = Avbryt +accessories/plugins/EncryptNode.properties_documentation = Infoga en ny nod vars subnoder \u00e4r krypterade. +accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = Du kan enbart v\u00e4xla krypteringsniv\u00e5 p\u00e5 en krypterad nod. Anv\u00e4nd verktygsmenyn f\u00f6r att infoga en s\u00e5dan nod. +accessories/plugins/EncryptNode.properties_name = Infoga krypterad nod... +accessories/plugins/EncryptNode.properties_select_me = V\u00e4lj mig f\u00f6r att forts\u00e4tta! +accessories/plugins/EncryptNode.properties_wrong_password = L\u00f6senordet \u00e4r inte korrekt. +accessories/plugins/EnterPassword.properties_documentation= +# fc, 14.12.2004: +accessories/plugins/EnterPassword.properties_name = V\u00e4xla mellan krypterad/okrypterad +accessories/plugins/ExportToImage_JPEG.properties_documentation = Exporterar tankekartan i nuvarande layout till en JPEG-bild. +accessories/plugins/ExportToImage_JPEG.properties_name = Som JPEG... +accessories/plugins/ExportToImage_PNG.properties_documentation = Exporterar tankekartan i nuvarande layout till en PNG-bild. +accessories/plugins/ExportToImage_PNG.properties_name = Som PNG... +# fc, 5.7.2005: +accessories/plugins/ExportToOoWriter.properties_documentation= Utf\u00e4llda noder skapar strukturen, inf\u00e4llda noder inneh\u00e5llet i dokumentet. +accessories/plugins/ExportToOoWriter.properties_name= Som Open Office Writer dokument... +accessories/plugins/ExportWithTWiki.properties=TWiki fil (*.twi) +accessories/plugins/ExportWithTWiki.properties_documentation=Exporterar tankekartan som ett TWiki dokument. +accessories/plugins/ExportWithTWiki.properties_name=Som TWiki... +accessories/plugins/ExportWithXSLT.properties_documentation = Detta \u00e4r en enhetlig exportmetod - XSLT skript. +accessories/plugins/ExportWithXSLT.properties_name = Anv\u00e4nder XSLT... +# fc, 16.2.06 +accessories/plugins/ExportWithXSLT_Applet.properties_documentation= Exports tankekartan som Java webbl\u00e4sarapplet. +accessories/plugins/ExportWithXSLT_Applet.properties_name= Som Java Applet... +# aki 19.10.06: (TJI support) +accessories/plugins/ExportWithXSLT_Applet.properties_tji= Task Juggler, inkludera filer +accessories/plugins/ExportWithXSLT_Applet.properties_webpage= Webbsida +accessories/plugins/ExportWithXSLT_Flash.properties_documentation= Exportera kartan som Flashapplikation. +accessories/plugins/ExportWithXSLT_Flash.properties_name= Som Flash... +accessories/plugins/ExportWithXSLT_HTML.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML.properties_name = Som XHTML (JavaScript version)... +accessories/plugins/ExportWithXSLT_HTML3.properties_documentation= +accessories/plugins/ExportWithXSLT_HTML3.properties_name = Som XHTML (Klickbar bildversion)... +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation= +accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name =Som MindManager tankekarta... +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=Exporterar resurser from RESOURCES-nod till Taskjuggler modul. +accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name= Resurser fr\u00e5n RESOURCES-nod till TaskJuggler fil... +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=Exporterar uppgifter fr\u00e5n TASKS-nod till Taskjuggler modul. +accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name= Uppgifter fr\u00e5n TASKS-nod till Taskjuggler fil... +accessories/plugins/FitToPage.properties_documentation = Justerar zoomningen till att passa in i aktuellt f\u00f6nster. +accessories/plugins/FitToPage.properties_name = Zooma f\u00f6r passa in i aktuell sida +accessories/plugins/FoldAll.properties_documentation = G\u00f6mmer markerade noder och alla subnoder. +accessories/plugins/FoldAll.properties_name = G\u00f6m alla +accessories/plugins/FoldOneLevel.properties_documentation = G\u00f6mmer markerade noder med en niv\u00e5. +accessories/plugins/FoldOneLevel.properties_name = G\u00f6m en niv\u00e5 +accessories/plugins/FormatCopy.properties_documentation = Kopierar nodens formatering. +accessories/plugins/FormatCopy.properties_name = Kopierar format +accessories/plugins/FormatPaste.properties_documentation = Klistrar in nodens formatering. +accessories/plugins/FormatPaste.properties_name = Klistra in format +accessories/plugins/FormularEditor.properties_documentation = Kopplar en enkel formul\u00e4rredigerare till aktuell anteckning. +accessories/plugins/FormularEditor.properties_name = Formul\u00e4rredigerare +# fc, 18.2.2005: +accessories/plugins/HierarchicalIcons.properties_documentation= Om en av noderna har en ikon, kommer jag ocks\u00e5 att visa ikonen fast i mindre format. +accessories/plugins/HierarchicalIcons.properties_name= Visa ikonerna rangordnade +accessories/plugins/IconSelectionPlugin.properties_documentation = H\u00e4r kan du v\u00e4lja en ikon genom att anv\u00e4nda ett nytt f\u00f6nster. +accessories/plugins/IconSelectionPlugin.properties_name = V\u00e4lj ikon... +# fc, 3.7.2005: +accessories/plugins/ImportMindmanagerFiles.properties_name= MindManager X5 tankekarta... +# fc, 1.3.06: +accessories/plugins/ManagePatterns.dialog.title= Redigera m\u00f6nster... +accessories/plugins/ManagePatterns.not_found= M\u00f6nsterfilen kan inte laddas. +accessories/plugins/ManagePatterns.properties_documentation= \u00c4ndra definierade m\u00f6nster i patterns.xml med en redigerare. Resultatet sparas automatiskt. +accessories/plugins/ManagePatterns.properties_name= Redigera m\u00f6nster... +accessories/plugins/NewEncryptedMap.properties_documentation = Skapa en ny krypterad tankekarta +accessories/plugins/NewEncryptedMap.properties_name = Skapa krypterad tankekarta... +accessories/plugins/NewParentNode.properties_documentation = Alla markerade \u00e4r skickade till en ny grundnod. +accessories/plugins/NewParentNode.properties_name = Ny grundnod +accessories/plugins/NodeHistoryBack.properties_documentation=Hoppar bak\u00e5t +accessories/plugins/NodeHistoryBack.properties_name=Tillbaka +accessories/plugins/NodeHistoryForward.properties_documentation=Hoppar fram\u00e5t +accessories/plugins/NodeHistoryForward.properties_name=Fram\u00e5t +accessories/plugins/NodeNote.properties_documentation = Kopplar en enkel textredigerare till aktuell nod. +accessories/plugins/NodeNote.properties_name = Anteckningar +# fc, 10.11.2006: +accessories/plugins/NodeNote_hide_show.properties_documentation= \u00c4r en menygenv\u00e4g f\u00f6r de sm\u00e5 pilarna p\u00e5 delningslinjen. +accessories/plugins/NodeNote_hide_show.properties_name= Visa/G\u00f6m anteckningsf\u00f6nster +# fc, 11.10.06: +accessories/plugins/NodeNote_jumpto.properties_documentation= V\u00e4xla till resp. fr\u00e5n anteckningsf\u00f6nster +accessories/plugins/NodeNote_jumpto.properties_name= V\u00e4xla redigerare f\u00f6r anteckningar +accessories/plugins/PMCalculation.properties_documentation = Kalkylerar insatser f\u00f6r olika uppgifter. +accessories/plugins/PMCalculation.properties_name = PMKalkylering +accessories/plugins/RemoveNote.properties_documentation =Tar bort inneh\u00e5llet i flera anteckningar. +accessories/plugins/RemoveNote.properties_name =Ta bort anteckningar +accessories/plugins/RevisionPlugin.properties_documentation = Markerar bakgrunden f\u00f6r varje \u00e4ndrad nod. +accessories/plugins/RevisionPlugin.properties_name = Visar omarbetning gulmarkerad +# fc, 25.5.2006: +accessories/plugins/SaveAll.properties_documentation= Spara alla \u00f6ppna tankekartor +accessories/plugins/SaveAll.properties_name= Spara alla +accessories/plugins/SaveAll.properties_save_all_cancelled= Uppgiften kunde inte slutf\u00f6ras. +# fc, 30.12.06: +accessories/plugins/SortNodes.properties_documentation= Sortera alla subnoder i alfabetisk ordning. +accessories/plugins/SortNodes.properties_name= Sortera subnoder +accessories/plugins/SplitNode.properties_documentation = Noden \u00e4r delad +accessories/plugins/SplitNode.properties_name = Dela noden +accessories/plugins/UnfoldAll.properties_documentation = Visar markerade noder och alla subnoder. +accessories/plugins/UnfoldAll.properties_name = Visa alla +accessories/plugins/UnfoldOneLevel.properties_documentation = Visar markerade noder med en niv\u00e5. +accessories/plugins/UnfoldOneLevel.properties_name = Visa en niv\u00e5 +add=&L\u00e4gg till +# added at 09.10.2004 +add_link = L\u00e4gg till grafisk l\u00e4nk +add_local_link = L\u00e4gg till lokal hyperl\u00e4nk +antialias_all = J\u00e4mna ut alla +antialias_edges = J\u00e4mna ut kanter +antialias_none = J\u00e4mna inte ut +apply= Till\u00e4mpa +arrow_link_color = F\u00e4rg p\u00e5 pill\u00e4nk... +as_parent = Som huvudnod +attribute_delete= Ta bort alla v\u00e4rden +attribute_delete_value= Ta bort detta v\u00e4rde +attribute_font_size_tooltip= Egenskaper teckenstorlek +attribute_list_box_label_text= Befintliga v\u00e4rden +attribute_replace= Ers\u00e4tt med +attribute_top= Alla k\u00e4nda egenskaper f\u00f6r de inladdade tankekartorna +attributes_adding_empty_attribute_error= Kan inte anv\u00e4nda en tom textstr\u00e4ng som egenskapsnamn +# dimitri, 10.07.2005 +attributes_all= Alla egenskaper +attributes_apply= Anv\u00e4nd +attributes_assign_dialog= Ange egenskaper +attributes_attribute= Egenskaper +attributes_close= St\u00e4ng +attributes_deselect_all= Ingenting +attributes_dialog= Egenskapshanterare +attributes_dialog_title=Hanterare av attribut +attributes_edit= Redigera +attributes_edit_in_place= Redigera egenskaper +attributes_edit_tooltip= Redigera egenskaper +attributes_for_selected= Markerade noder +attributes_for_visible= Alla synliga noder +attributes_hide_all = G\u00f6m alla egenskaper +attributes_import= Importera +attributes_import_tooltip= Importera egenskaper fr\u00e5n andra inladdade tankekartor +attributes_no_import_candidates_found= Inga nya egenskaper hittades +attributes_popup_delete= Ta bort +attributes_popup_down= Ned +attributes_popup_edit= Redigera +attributes_popup_hide= G\u00f6m +attributes_popup_new= Ny egenskap +attributes_popup_optimal_width= Optimal bredd +attributes_popup_up= Upp +attributes_refresh= Aktualisera +attributes_restricted_attributes_tooltip= Begr\u00e4nsa egenskaper +attributes_restricted_values_tooltip= Begr\u00e4nsa antal v\u00e4rden f\u00f6r aktuell egenskap +attributes_restriction= Begr\u00e4nsade egenskaper +attributes_select_all= Alla +attributes_select_all_tooltip= Markera / avmarkera alla +attributes_show= Visa +attributes_show_all = Visa alla egenskaper +attributes_show_selected = Visa markerade egenskaper +attributes_skip_root= Hoppa \u00f6ver huvudnoden +attributes_visible= Markerad synlig +attributes_visible_tooltip= Markerad synlig +# fc, 2.9.06: +automatically_save_message= Tankekartan sparades automatiskt (med filnamnet {0}) ... +background = Bakgrund +bezier = Bezier +blend_color = Blanda f\u00e4rg +bold = Fet stil +boldify_branch = G\u00f6r fetare +branch = F\u00f6rgrening +# fc, 12.1.2006: if you create a translation of the documentation file, change this value (see german translation): +browsemode_initial_map = ./doc/freemind.mm +bubble = Bubbla +cancel = Avbryt +cannot_add_parent_diff_parents = Alla noder m\u00e5ste ha samma basnod f\u00f6r att kunna anv\u00e4nda funktionen. +cannot_add_parent_to_root = Basnoden kan inte adderas till en ny basnod. +cannot_delete_root =Basnoden kan inte raderas eller klippas ut. +cannot_join_nodes_with_children = Kan inte f\u00f6rena noder med subnoder + +# fc, 28.11.2004: +cannot_move_to_child = Kan inte flytta nod till en av de egna subnoderna. +center = Centrera +change_arrows_in_arrow_link = \u00c4ndra pilarna p\u00e5 pill\u00e4nken +change_link_arrows=change_link_arrows +choose_background_color = V\u00e4lj bakgrundsf\u00e4rg: +choose_cloud_color = V\u00e4lj molnets f\u00e4rg: +# added at 25.8.2004, fc: +choose_edge_color = V\u00e4lj kantlinjens f\u00e4rg +choose_node_background_color = V\u00e4lj nodens bakgrundsf\u00e4rg: +choose_node_color = V\u00e4lj nodens f\u00e4rg: +close = St\u00e4ng +cloud = Moln +cloud_color = F\u00e4rg p\u00e5 moln... +#new from 30.08.2004, Dimitri +combined = Kombinerad +confirmation=Bekr\u00e4ftelse +copy = Kopiera +copy_single = Kopiera enskild +cut = Klipp ut +decrease_branch_font_size = Mindre teckensnitt +decrease_node_font_size = Mindre teckensnitt +delete=&Ta bort +delete_child = Ta bort nod +documentation = Dokumentation +edge = Kantlinje +edge_color = F\u00e4rg p\u00e5 kantlinje... +edge_style = Kantlinjens stil +# Beware: "Edge Width " and "Edge Style " must end with space. +edge_width = Kantlinjens bredd +edge_width_parent = Huvudnod +edge_width_thin = Tunn +edit = Redigera +edit.decision=HTML redigerare +edit.edit_rich_text=Vill du anv\u00e4nda format som fet- och kursiv stil? +edit_attributes = Redigera/g\u00f6m attribut +edit_link_manually = Redigera hyperl\u00e4nk manuellt... +edit_long_node = Redigera ut\u00f6kad nod... +edit_node = Redigera nod +enter_base_url = Jag kommer att klistra in relativa l\u00e4nkar. Skriv in bas-URL. +enter_confirms = Enter bekr\u00e4ftar +error = Fel +# fc, 6.9.06: +error_applying_template= Fel vid anv\u00e4ndning av XSL mall. +error_creating_directory = Kan inte skapa mapp f\u00f6r export. +export_branch_new =Del som ny tankekarta... +#export_branch = F\u00f6rgrening... +export_branch_to_html = F\u00f6rgrening som HTML +export_pdf_text = Portable Document Format (PDF) +export_svg_text = Scalable Vector Graphic (SVG) +export_to_html = Som HTML +extension_menu = Fysisk stil +# new from 14.12.2003, fc +FAQ = FAQ +file = Arkiv +file_already_exists = Filen {0} finns redan. Vill du skriva \u00f6ver filen? +file_not_found = Fil $1 hittades inte +filter_add= L\u00e4gg till +filter_and= Och +filter_conditions = Filter +filter_contains= Inneh\u00e5ller +filter_delete= Ta bort +filter_dialog= Kombinera filter +filter_does_not_exist= Existerar inte +filter_edit= Redigera +filter_edit_description= Redigera filterlista +filter_enter_value= Fyll i v\u00e4rde +filter_exist= Existerar +filter_icon= Ikon +filter_ignore_case= Bortse fr\u00e5n gemener/versaler +filter_is_equal_to= \u00e4r lika med +filter_is_not_equal_to= \u00e4r inte lika med +filter_no_filtering= Ingen filtrering +filter_node= Nodtext +filter_not= Inte +filter_off= Filter av +filter_on= Filter p\u00e5 +filter_or= Eller +filter_select= Markera +filter_selected_node_view= Markerade noder +filter_show_ancestors= Visa sl\u00e4ktnoder +filter_show_descendants= Visa ursprung +filter_show_descenders= Visa ursprungsnoder +filter_show_flat= J\u00e4mn +# dimitri, 8.05.05 +filter_toolbar= Filtrera +filter_unfold_ancestors= Visa filtrerade noder +find = S\u00f6k... +find_next = S\u00f6k n\u00e4sta +find_what = S\u00f6k efter +fit_to_page = Rym p\u00e5 en sida +fold = G\u00f6m f\u00f6rgrening +follow_graphical_link=G\u00e5 till: +# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above +follow_link = \u00d6ppna hyperl\u00e4nk: +font = Teckensnitt +font_family = Teckensnitt +font_size = Teckenstorlek +fork = Dela sig +format_menu_edge_styles= Kantstilar +format_menu_edge_widths= Kantbredder +FreeMind=Freeminds hemsida +FreeMind.progress.buildScreen= Laddar sk\u00e4rmbild... +FreeMind.progress.createController= Skapar kontroll\u00f6r... +FreeMind.progress.createInitialMode= Skapar anv\u00e4ndars\u00e4tt... +FreeMind.progress.endStartup= Avslutar uppstart. +# fc, 30.7.06: +FreeMind.progress.gettingPreferenceDirectories= H\u00e4mtar katalog f\u00f6r inst\u00e4llningar... +FreeMind.progress.gettingPreferences= H\u00e4mtar inst\u00e4llningar... +FreeMind.progress.loadMaps= Laddar kartor... +FreeMind.progress.propageteLookAndFeel= Skapar gr\u00e4nssnittsk\u00e4nslan... +FreeMind.progress.settingPreferences= Skapar inst\u00e4llningar... +FreeMind.progress.startCreateController= Startar kontroll\u00f6r... +FreeMind.progress.updateLookAndFeel= Uppdaterar gr\u00e4nssnittsk\u00e4nsla +# the prefix for the reconstructed map (revert + undo). +freemind_reverted=Freemind_Reverted_ +goto_link_node_action = G\u00e5 till l\u00e4nk +GrabKeyDialog.common.cancel= Avbryt +GrabKeyDialog.common.ok= OK +GrabKeyDialog.grab-key.assigned-to= Angiven till +GrabKeyDialog.grab-key.assigned-to.none= F\u00f6rn\u00e4rvarande inte angiven +GrabKeyDialog.grab-key.caption= +GrabKeyDialog.grab-key.clear=Rensa +GrabKeyDialog.grab-key.remove= Ta bort +GrabKeyDialog.grab-key.remove-ask= \u00c4r du s\u00e4ker p\u00e5 att du vill ta bort denna tangentkombination? +# fc, 12.5.2005: +GrabKeyDialog.grab-key.title= Mata in ny tangent +help = Hj\u00e4lp +html_export_based_on_headings = HTML Export - Baserad p\u00e5 Rubriker +html_export_fold_all = HTML Export - G\u00f6m alla +html_export_fold_currently_folded = HTML Export - G\u00f6m nuvarande g\u00f6mda f\u00f6rgreningar +html_export_no_folding = HTML Export - Fullt utvecklad +icon_attach = Titta h\u00e4r +icon_back = Tillbaka +icon_bell = Kom ih\u00e5g +icon_bookmark = Utm\u00e4rkt +icon_broken-line =Bruten +icon_button_cancel = Inte OK +icon_button_ok = OK +icon_calendar =Datum +icon_clanbomber = Farligt +icon_clock =Tid +icon_closed =St\u00e4ngd +icon_decrypted =Ol\u00e5st +icon_desktop_new = Gl\u00f6m inte +icon_down =Ner +icon_edit =Redigera +icon_encrypted =L\u00e5st +icon_family=Familj +icon_fema=Kvinnligt +icon_female1=Kvinnligt1 +icon_female2=Kvinnligt2 +#Tveksam till \u00f6vers\u00e4ttningen +icon_flag = Flagga +icon_flag-black =Svart flagga +icon_flag-blue =Bl\u00e5 flagga +icon_flag-green =Gr\u00f6n flagga +icon_flag-orange =Orange flagga +icon_flag-pink =Rosa flagga +icon_flag-yellow =Gul flagga +icon_folder =Mapp +icon_forward = Fram\u00e5t +icon_freemind_butterfly =FrreMind +icon_full-0Prioritet 0=Prioritet 0 +# fc, 1.3.2005: +icon_full-1 = Prioritet 1 +icon_full-2 = Prioritet 2 +icon_full-3 = Prioritet 3 +icon_full-4 = Prioritet 4 +icon_full-5 = Prioritet 5 +icon_full-6 = Prioritet 6 +icon_full-7 = Prioritet 7 +icon_full-8 = Prioritet 8 +icon_full-9 = Prioritet 9 +icon_go=Gr\u00f6nt trafikljus +icon_gohome = Hem +icon_group=Grupp +icon_help = Fr\u00e5ga +icon_hourglass =V\u00e4ntar +icon_idea = Id\u00e9 +icon_info=Info +icon_kaddressbook = Telefon +icon_kmail =E-post +icon_knotify = Musik +icon_korn = Brevl\u00e5da +icon_ksmiletris = Jag \u00e4r glad +icon_launch=K\u00f6r +icon_licq = Bra +icon_list=Lista +icon_Mail = Mejl +icon_male1=Manligt1 +icon_male2=Manligt2 +# Daniel Polansky: This way of maintaining icon text +# will ultimately lead to unbearable overheads. +icon_menu = Ikoner +icon_messagebox_warning = Viktigt +icon_password = L\u00f6senord +icon_pencil = F\u00f6rb\u00e4ttras +icon_penguin = Linux +icon_prepare=Gult trafikljus +icon_smiley-angry =Arg +icon_smiley-neutral =Neutral +icon_smiley-oh =\u00d6veraskning +# fc, 15.2.06 +icon_smily_bad = Jag \u00e4r inte road +icon_stop = Stopp +icon_stop-sign =Stopp +icon_up =Upp +icon_wizard = Magisk +icon_xmag = Diskuteras +icon_yes =Viktigt +import = Importera +import_branch = F\u00f6rgrening... +import_explorer_favorites = Explorer favoriter... +import_folder_structure = Mappstruktur... +import_linked_branch = L\u00e4nkad f\u00f6rgrening +# add at 16.9.2004, fc: +import_linked_branch_no_link = Den valda noden har ingen l\u00e4nk att importera fr\u00e5n. +import_linked_branch_without_root = (L\u00e4nkad f\u00f6rgrening) utan basnod... +increase_branch_font_size = St\u00f6rre teckensnitt +increase_node_font_size = St\u00f6rre teckensnitt +italic = Kursiv +italicise_branch = Kursivera +join_nodes = Anslut noder +KeyDoc=Genv\u00e4gsbeskrivning iPDF +less_than_two_selected_nodes = Du m\u00e5ste markera minst tv\u00e5 noder f\u00f6r att kunna l\u00e4nka. +license = Licens +license_text = FreeMind - A Program for creating and viewing Mindmaps\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +linear = Linj\u00e4r +link_not_available_any_more = L\u00e4nken \u00e4r inte giltig l\u00e4ngre. Noden \u00e4r borttagen. +# fc, 1.2.06 +link_not_found = L\u00e4nk $1 saknas. +load =&Ladda +locking_failed_by_open = L\u00e5sningen av tankekartan $1 misslyckades. \u00d6ppnas enbart med l\u00e4sr\u00e4ttighet. +locking_failed_by_save_as = L\u00e5sningen av tankekartan $1 misslyckades. Spara som... ignoreras. Action Save As aborted. +locking_old_lock_removed = Tankekartan $1 \u00e4r l\u00e5st av anv\u00e4ndaren $2. L\u00e5set har tagits bort, pga att det \u00e4r f\u00f6r gammalt.. +long_node_changed_cancel = Du har f\u00f6r\u00e4ndrat noden. Vill du ta bort \u00e4ndringen? +long_node_changed_submit = Du har f\u00f6r\u00e4ndrat noden. Vill du spara f\u00f6r\u00e4ndringen? +lots_of_links_warning = Du h\u00e5ller p\u00e5 att skapa m\u00e5nga l\u00e4nkar till samma nod. Vill du verkligen skapa alla l\u00e4nkarna? +ManagePatternsPopupDialog.Actions=&Funktioner +ManagePatternsPopupDialog.add= L\u00e4gg till nytt m\u00f6nster +ManagePatternsPopupDialog.apply=Anv\u00e4nd +# fc, 13.4.06: +ManagePatternsPopupDialog.duplicate= Duplicera m\u00f6nster +ManagePatternsPopupDialog.DuplicateNameMessage= Du har redan anv\u00e4nt namnet. \u00c4ndra detta innan du st\u00e4nger dialogrutan. +ManagePatternsPopupDialog.from_nodes= Skapa ett m\u00f6nster fr\u00e5n markerade noder +# fc, 19.3.06: +ManagePatternsPopupDialog.remove= Ta bort m\u00f6nster +ManagePatternsPopupDialog.Save= Spara och \u00e5terg\u00e5 +map_already_exists = Tankekartan finns redan. Vill du ers\u00e4tta befintlig tankekarta? +map_corrupted = Tankekartan felaktig. Visa detaljer? +map_locked_by_open = Tankekartan $1 redigeras av anv\u00e4ndaren $2. \u00d6ppnas enbart med l\u00e4sr\u00e4ttigheter. +map_locked_by_save_as = Tankekartan $1 redigeras av anv\u00e4ndaren $2. Spara som... ignoreras. +# fc, 13.8.06: +map_not_saved= Tankekartan sparades inte f\u00f6rut. +menu_attributes = Egenskaper +menu_extras = Verktyg +menu_file_export = Exportera +menu_file_import = Importera +menu_format = Formatera +menu_insert = Infoga +menu_navigate = Navigera +menu_view = Visa +mindmap = Tankekarta +mindmaps = Tankekartor +mindmaps_desc = Tankekartor (*.mm) +mindmaps_filter_desc =Filter (*.mmfilter) +mode_Browse=Bl\u00e4ddrar-l\u00e4ge +mode_File=fil-l\u00e4ge +mode_MindMap=Tankekarta-l\u00e4ge +mode_na = Arbetss\u00e4ttet \u00e4r inte tillg\u00e4ngligt +mode_status = Arbetss\u00e4ttet \u00e4ndrat till {0} arbetss\u00e4tt +mode_title = FreeMind - {0} arbetss\u00e4tt +modes = Arbetss\u00e4tt +# added at 22.5.2004, fc: +most_recent_files = Nyligen anv\u00e4nda filer +move_to_root = Flytta till basnod +new = Ny +new_child = Ny subnod +new_mindmap = Ny tankekarta +new_node = Ny nod +new_node_as_sibling_not_possible_for_the_root = Ny syskonnod \u00e4r inte m\u00f6jlig f\u00f6r basnoden, +new_sibling_before = Ny f\u00f6reg\u00e5ende syskonnod +new_sibling_behind = Ny syskonnod +next_map = N\u00e4sta karta +no = Nej +no_format_copy_before_format_paste = Du kan inte klistra in en formattering innan du kopierat en. +no_found_from = Ingen "$1"  hittades fr\u00e5n "$2". +no_more_found_from = Inga fler "$1"  hittades fr\u00e5n "$2" +no_previous_find = Ingen f\u00f6reg\u00e5ende tr\u00e4ff. +node = Nod +# added at 5.6.2004, fc: +node_background_color = Nodens bakgrundsf\u00e4rg... +node_changed_discard_changes = Du har \u00e4ndrat noden. Vill du \u00f6verge f\u00f6r\u00e4ndringen? +node_color = Nodf\u00e4rg... +node_down = Nod ned\u00e5t +node_is_write_protected=Noden \u00e4r skrivskyddad. +node_location_help=Att dra \u00e4ndrar nodens plats, ctrl+dra \u00e4ndrar avst\u00e5nd, dubbelklick och ctrl+dubbelklick \u00e5terst\u00e4ller dem. +node_up = Nod upp\u00e5t +nonboldify_branch = Ta bort fet stil +nonitalicise_branch = Ta bort kursiv stil +normal = Normal +not_saved_for_link_error = Tankekartan m\u00e5ste sparas innan du kan l\u00e4nka dokument. +ok = OK +open = \u00d6ppna... +option_changes_may_require_restart= F\u00f6r att se effekten av de nya inst\u00e4llningarna beh\u00f6ver du f\u00f6rmodligen starta om FreeMind. +OptionalDontShowMeAgainDialog.cancel=&Nej +OptionalDontShowMeAgainDialog.dontShowAgain=&Fr\u00e5ga inte igen. +OptionalDontShowMeAgainDialog.ok=&Ja +OptionalDontShowMeAgainDialog.rememberMyDescision=&Kom ih\u00e5g mitt val. +OptionPanel.absolute= Absolut +OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName= Automatiskt layoutm\u00f6nster +OptionPanel.antialias= Kantutj\u00e4mning +# fc, 2.6.2005: +OptionPanel.antialias.tooltip=Tar reda p\u00e5 tankekartans kvalitet. Mer kantutj\u00e4mning tar l\u00e4ngre tid. +OptionPanel.antialias_all= Kantutj\u00e4mna alla +OptionPanel.antialias_edges= Kantutj\u00e4mna kanter +OptionPanel.antialias_none= Ingen kantutj\u00e4mning +OptionPanel.Appearance= Framtr\u00e4dande +# fc, 3.1.07: +OptionPanel.ar= Ar +OptionPanel.as_parent= Som basnod +OptionPanel.ask=Fr\u00e5ga +OptionPanel.automatic= Automatisk +OptionPanel.automaticFormat_level= Automatisk stillayout +OptionPanel.automaticFormat_level1= Formattera basnoden +OptionPanel.automaticFormat_level2= 1. Niv\u00e5 formattering av nod +OptionPanel.Behaviour= Uppf\u00f6rande +OptionPanel.bezier= Bezier +OptionPanel.browsemode_initial_map= Bl\u00e4dderbar f\u00f6rsta tankekarta +OptionPanel.browsemode_initial_map.tooltip=Tankekartans URL som \u00e4r laddad n\u00e4r bl\u00e4ddring \u00e4r m\u00f6jlig. +OptionPanel.bubble= Bubbla +OptionPanel.Cancel= Avbryt +OptionPanel.ColorProperty.ResetColor= \u00c5terst\u00e4ll f\u00e4rg +OptionPanel.combined= Kombinerad +OptionPanel.cs=Cs +OptionPanel.cut_nodes_without_question.tooltip=Om detta \u00e4r valt klipps noderna ut utan bekr\u00e4ftelse. Detta kan inneb\u00e4ra f\u00f6rlust av information om du inte \u00e4r uppm\u00e4rksam. +OptionPanel.de= De +OptionPanel.default= Standard +OptionPanel.default_browser_command_mac= Standard webbl\u00e4sarkommando MAC +OptionPanel.default_browser_command_mac.tooltip= och MAC: (tack till Nick!) +OptionPanel.default_browser_command_other_os= Standard webbl\u00e4sarkommando andra OS +OptionPanel.default_browser_command_other_os.tooltip= Detta \u00e4r typiskt f\u00f6r Linux: +OptionPanel.default_browser_command_windows_9x= Standard webbl\u00e4sarkommando Windows 9x +OptionPanel.default_browser_command_windows_9x.tooltip=F\u00f6r Windows ( "" m\u00e5ste anv\u00e4ndas vid l\u00e4nkar, som har "=" i sina URL). +OptionPanel.default_browser_command_windows_nt= Standard webbl\u00e4sarkommando Windows NT +OptionPanel.default_browser_command_windows_nt.tooltip=F\u00f6r Windows ( "" m\u00e5ste anv\u00e4ndas vid l\u00e4nkar, som har "=" i sina URL). +OptionPanel.defaultfont= Standard teckensnitt +OptionPanel.defaultfont.tooltip=Standard teckensnitt. Fungerar enbart om teckensnittet (TrueTypeFont) \u00e4r installerat +OptionPanel.defaultfontsize= Standard teckenstorlek +OptionPanel.defaultfontsize.tooltip=Standard teckensnittsstrolek f\u00f6r nya noder. +OptionPanel.defaultfontstyle= Standard teckenstil +OptionPanel.Defaults= Standardv\u00e4rden +OptionPanel.delete_automatic_saves_at_exit= Ta bort autospara vid avslutning +OptionPanel.delete_automatic_saves_at_exit.tooltip= Om filerna ska tas bort automatiskt vid normal avslutning av Freemind ska f\u00f6ljande varibel vara ikryssad (sant) +OptionPanel.delete_nodes_without_question=Ta bort noder utan bekr\u00e4ftelse? +OptionPanel.delete_nodes_without_question.tooltip=Om detta \u00e4r f\u00f6rkryssat kommer noderna raderas utan bekr\u00e4ftelse. Detta kan inneb\u00e4ra f\u00f6rlust av information. +OptionPanel.disable_cursor_move_paper= Ta bort mark\u00f6r Flytta karta +OptionPanel.disable_cursor_move_paper.tooltip=Visa inte 'flytta' mark\u00f6r n\u00e4r kartan flyttas +OptionPanel.disable_key_type= Ta bort infogade tangenter +OptionPanel.disable_key_type.tooltip=Tangenter: Om anv\u00e4nds noden redigeras +OptionPanel.dk= Dk +OptionPanel.docmapurl_since_version_0_7_0= Docmapurl +OptionPanel.draganddrop= Dra och sl\u00e4pp +OptionPanel.draganddrop.tooltip=Om dra och sl\u00e4pp \u00e4r m\u00f6jliggjord. +OptionPanel.el=El +OptionPanel.el__buttons_position= Knapparnas position +OptionPanel.el__buttons_position.tooltip= \u00f6ver / under +OptionPanel.el__enter_confirms_by_default= Enter bekr\u00e4ftar som standard +OptionPanel.el__max_default_window_height= Maxstandard f\u00f6r f\u00f6nstrets h\u00f6jd +OptionPanel.el__max_default_window_width= Maxstandard f\u00f6r f\u00f6nstrets bredd +OptionPanel.el__min_default_window_height= Ministandard f\u00f6r f\u00f6nstrets h\u00f6jd +OptionPanel.el__min_default_window_width= Ministandard f\u00f6r f\u00f6nstrets bredd +OptionPanel.el__position_window_below_node= F\u00f6nsterposition under nod +OptionPanel.el__show_icon_for_attributes= Visa egenskapsikon +OptionPanel.en= En +OptionPanel.enable_leaves_folding= Till\u00e5t att knoppar g\u00f6ms +OptionPanel.enable_leaves_folding.tooltip=Till\u00e5t att knoppar g\u00f6ms == \u00e4ndra bubbla/gaffel vid utf\u00f6rande (om det inte fungerar kan du alltid anv\u00e4nda nodstil f\u00f6r att f\u00f6r\u00e4ndra) +OptionPanel.Environment= Omgivning +OptionPanel.es= Es +OptionPanel.et=Et +OptionPanel.execute_scripts_without_asking.tooltip=Freemind skript kan utf\u00f6ra vilka uppgifter som helst i din dator.
Anv\u00e4nd d\u00e4rf\u00f6r skript med stor f\u00f6rsiktighet! +OptionPanel.experimental_file_locking_on= Experimentell fill\u00e5sning +OptionPanel.experimental_file_locking_on.tooltip= Experimentell f\u00f6rekomst +OptionPanel.export_icons_in_html= Exportera Ikoner i Html +OptionPanel.export_icons_in_html.tooltip= Ber\u00e4ttar f\u00f6r HTML exporterad fr\u00e5n FreeMind att ikoner ska f\u00f6lja med. Problemet med ikoner \u00e4r att l\u00e4nkar till ikonerna ganska ofta inte hittas i den exporterade HTML-koden. +OptionPanel.Files= Arkiv +OptionPanel.first= F\u00f6rst +OptionPanel.foldingsymbolwidth= G\u00f6m symbolbredd +OptionPanel.foldingsymbolwidth.tooltip=Bredd p\u00e5 mark\u00f6rcirkel (g\u00f6md gren) +OptionPanel.fork= F\u00f6rgrening +OptionPanel.fr= Fr +OptionPanel.gl=Gl +OptionPanel.gtk= Gtk +OptionPanel.hr= Hr +OptionPanel.HTML= HTML +OptionPanel.html_export_based_on_headings= Baserad p\u00e5 rubriker +OptionPanel.html_export_fold_all= V\u00e4ckla in alla +OptionPanel.html_export_fold_currently_folded= V\u00e4ckla in aktuell +OptionPanel.html_export_folding= Html export Inv\u00e4cklad +OptionPanel.html_export_no_folding= Ingen utv\u00e4ckling +OptionPanel.hu= Hu +OptionPanel.icon_order_description=H\u00e4r kan du ordna eller inaktivera standardikoner. Ikonerna separeras med ';'. +OptionPanel.icons.list=Lista med standardikonerna +OptionPanel.id=Id +OptionPanel.it= It +OptionPanel.ja= Ja +OptionPanel.key_type_adds_new= Tangenttryck l\u00e4gger till ny +OptionPanel.key_type_adds_new.tooltip=Tangenttryck: skriver \u00f6ver inneh\u00e5ll (falskt) / skapar ny syskonnod (sant) (beh\u00f6ver: disable_key_type = false) + +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key= Flytta v\u00e4nster +OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key= Flytta h\u00f6ger +OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key= Kopiera formattering +OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key= Klistra in formattering +OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key= Infoga ikon +OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=Hantera stilar +OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key= Indrag noder +OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less= Visa/G\u00f6m anteckningsf\u00f6nster +OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N= V\u00e4xla redigerare f\u00f6r anteckningar +OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=Rensa anteckning +OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key= Dela nod +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END= Visa alla +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME= G\u00f6m alla +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN= Visa en niv\u00e5 +# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note +OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP= G\u00f6m en niv\u00e5 +OptionPanel.keystroke_add= L\u00e4gg till +OptionPanel.keystroke_add_arrow_link_action= L\u00e4gg till h\u00e4ndelse pill\u00e4nk +OptionPanel.keystroke_add_child= L\u00e4gg till subnod +OptionPanel.keystroke_add_child_mac= L\u00e4gg till subnod Mac +OptionPanel.keystroke_add_local_link_action= L\u00e4gg till lokal l\u00e4nkh\u00e4ndelse +OptionPanel.keystroke_add_sibling_before= L\u00e4gg till syskonnod f\u00f6re +OptionPanel.keystroke_apply_pattern_1= Anv\u00e4nd m\u00f6nster 1 +OptionPanel.keystroke_apply_pattern_10= Anv\u00e4nd m\u00f6nster 10 +OptionPanel.keystroke_apply_pattern_11= Anv\u00e4nd m\u00f6nster 11 +OptionPanel.keystroke_apply_pattern_12= Anv\u00e4nd m\u00f6nster 12 +OptionPanel.keystroke_apply_pattern_13= Anv\u00e4nd m\u00f6nster 13 +OptionPanel.keystroke_apply_pattern_14= Anv\u00e4nd m\u00f6nster 14 +OptionPanel.keystroke_apply_pattern_15= Anv\u00e4nd m\u00f6nster 15 +OptionPanel.keystroke_apply_pattern_16= Anv\u00e4nd m\u00f6nster 16 +OptionPanel.keystroke_apply_pattern_17= Anv\u00e4nd m\u00f6nster 17 +OptionPanel.keystroke_apply_pattern_18= Anv\u00e4nd m\u00f6nster 18 +OptionPanel.keystroke_apply_pattern_2= Anv\u00e4nd m\u00f6nster 2 +OptionPanel.keystroke_apply_pattern_3= Anv\u00e4nd m\u00f6nster 3 +OptionPanel.keystroke_apply_pattern_4= Anv\u00e4nd m\u00f6nster 4 +OptionPanel.keystroke_apply_pattern_5= Anv\u00e4nd m\u00f6nster 5 +OptionPanel.keystroke_apply_pattern_6= Anv\u00e4nd m\u00f6nster 6 +OptionPanel.keystroke_apply_pattern_7= Anv\u00e4nd m\u00f6nster 7 +OptionPanel.keystroke_apply_pattern_8= Anv\u00e4nd m\u00f6nster 8 +OptionPanel.keystroke_apply_pattern_9= Anv\u00e4nd m\u00f6nster 9 +OptionPanel.keystroke_assign_attributes= Ange egenskaper... +OptionPanel.keystroke_close= St\u00e4ng +OptionPanel.keystroke_copy= Kopiera +OptionPanel.keystroke_copy_single= Kopiera enskilt +OptionPanel.keystroke_cut= Klipp ut +OptionPanel.keystroke_delete_child= Ta bort subnod +OptionPanel.keystroke_edge_color= Kantf\u00e4rg +OptionPanel.keystroke_edit= Redigera +OptionPanel.keystroke_edit_attributes= Redigera egenskaper +OptionPanel.keystroke_edit_long_node= Redigera ut\u00f6kad nod +OptionPanel.keystroke_export_branch= Exportera f\u00f6rgrening +OptionPanel.keystroke_export_branch_to_html= Exportera f\u00f6rgrening till Html +OptionPanel.keystroke_export_to_html= Exportera till Html +OptionPanel.keystroke_find= S\u00f6k +OptionPanel.keystroke_find_next= S\u00f6k n\u00e4sta +OptionPanel.keystroke_follow_link= F\u00f6lj l\u00e4nk +OptionPanel.keystroke_hide_all_attributes= G\u00f6m alla egenskaper +OptionPanel.keystroke_join_nodes= F\u00f6rena noder +OptionPanel.keystroke_mode_Browse= Arbetss\u00e4tt Bl\u00e4ddra +OptionPanel.keystroke_mode_File= Arbetss\u00e4tt Fil +OptionPanel.keystroke_mode_MindMap= Arbetss\u00e4tt Tankekarta +OptionPanel.keystroke_move_down= G\u00e5 ned +OptionPanel.keystroke_move_left= G\u00e5 v\u00e4nster +OptionPanel.keystroke_move_right= G\u00e5 h\u00f6ger +OptionPanel.keystroke_move_up= G\u00e5 upp +OptionPanel.keystroke_moveToRoot= G\u00e5 till basnoden +OptionPanel.keystroke_newMap= Ny karta +OptionPanel.keystroke_nextMap= N\u00e4sta karta +OptionPanel.keystroke_node_color= Nodf\u00e4rg +OptionPanel.keystroke_node_color_blend= Nodf\u00e4rg blanda +OptionPanel.keystroke_node_decrease_font_size= Nod minska teckenstorlek +OptionPanel.keystroke_node_down= Nod ned +OptionPanel.keystroke_node_increase_font_size= Nod \u00f6ka teckenstorlek +OptionPanel.keystroke_node_toggle_boldface= V\u00e4xla noden fetstil +OptionPanel.keystroke_node_toggle_cloud= V\u00e4xla noden moln +OptionPanel.keystroke_node_toggle_italic= V\u00e4xla noden kursiv +OptionPanel.keystroke_node_toggle_underlined= V\u00e4xla noden understruken +OptionPanel.keystroke_node_up= Nod upp +OptionPanel.keystroke_open= \u00d6ppna +OptionPanel.keystroke_open_first_in_history= \u00d6ppna f\u00f6rsta i historik +# fc, 16.6.2005: +OptionPanel.keystroke_option_dialog= Inst\u00e4llningar +OptionPanel.keystroke_paste= Klistra in +# fc, 4.9.06 +OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate= Utv\u00e4rdera +OptionPanel.keystroke_previousMap= F\u00f6reg\u00e5ende karta +OptionPanel.keystroke_print= Skriv ut +OptionPanel.keystroke_quit= Avsluta +OptionPanel.keystroke_redo= \u00c5terta +OptionPanel.keystroke_remove= Ta bort +OptionPanel.keystroke_save= Spara +OptionPanel.keystroke_saveAs= Spara som +OptionPanel.keystroke_select_all= V\u00e4lj alla +OptionPanel.keystroke_select_branch= V\u00e4lj f\u00f6rgrening +OptionPanel.keystroke_set_image_by_filechooser= V\u00e4lj bild med filv\u00e4ljaren +OptionPanel.keystroke_set_link_by_filechooser= V\u00e4lj l\u00e4nk med filv\u00e4ljaren +OptionPanel.keystroke_set_link_by_textfield= V\u00e4lj l\u00e4nk med textf\u00e4lt +OptionPanel.keystroke_show_all_attributes= Visa alla egenskaper +OptionPanel.keystroke_show_attribute_manager= Visa egenskapshanterare +OptionPanel.keystroke_show_selected_attributes= Visa markerade egenskaper +OptionPanel.keystroke_toggle_children_folded= V\u00e4xla invecklad/utvecklad subnod +OptionPanel.keystroke_toggle_folded= V\u00e4xla invecklad/utvecklad +OptionPanel.keystroke_undo= \u00c5ngra +OptionPanel.keystroke_zoom_in= Zooma in +OptionPanel.keystroke_zoom_out= Zooma ut +OptionPanel.Keystrokes= Tangenttryckningar +OptionPanel.ko=Ko +OptionPanel.language= Spr\u00e5k +OptionPanel.language.tooltip=Detta \u00e4r spr\u00e5ket som kommer att anv\u00e4ndas i programmet. 'automatic' f\u00f6rs\u00f6ker att h\u00e4mta nuvarande anv\u00e4ndares spr\u00e5k. +OptionPanel.last= Sist +OptionPanel.last_opened_list_length= Senast \u00f6ppnad, l\u00e4ngd p\u00e5 lista +OptionPanel.level= Niv\u00e5 +OptionPanel.level1= Formatering av basnod +OptionPanel.level2= 1. Niv\u00e5 formattering av nod +OptionPanel.level3= 2. Niv\u00e5 formattering av nod +OptionPanel.level4= 3. Niv\u00e5 formattering av nod +OptionPanel.level5= Andras formatteringar av nod +OptionPanel.linear= Linj\u00e4r +OptionPanel.links= L\u00e4nkar +OptionPanel.links.tooltip=Anv\u00e4nd relativa eller absoluta l\u00e4nkar +# fc, 23.7.06 +OptionPanel.loadLastMap= \u00d6ppna senaste tankekartan automatiskt +OptionPanel.loadLastMap.tooltip=N\u00e4r Freemind startas, h\u00e4mtas senast anv\u00e4nda tankekarta om f\u00f6rbockad. +OptionPanel.lookandfeel= Gr\u00e4nssnittsk\u00e4nsla +OptionPanel.lookandfeel.tooltip=Gr\u00e4nssnitt som kan anv\u00e4ndas. 'metal','windows','motif', 'gtk' finns tillg\u00e4ngliga, 'mac' finns enbart p\u00e5 MacOS. Standard betyder, att standard gr\u00e4nssnitt anv\u00e4nds. Om du vill skapa din egen vy och k\u00e4nsla kan du, skriva in klassbibliotekets namn h\u00e4r och f\u00f6rvissa dig om att jarfilerna \u00e4r laddade. Om det uppst\u00e5r problem med gr\u00e4nssnittet, kan du v\u00e4lja 'nothing'. Det fungerar med applets. +# fc, 13.8.2005 +OptionPanel.lt= Lt +OptionPanel.mapxsize= Tankekartans-X-storlek (bredd) +OptionPanel.mapxsize.tooltip=Ing\u00e5ngsstorlek f\u00f6r varje tankekarta +OptionPanel.mapysize= Tankekartans-Y-storlek (h\u00f6jd) +OptionPanel.max_node_width= Maximal nodbredd +OptionPanel.max_node_width.tooltip=Standard maximal nodbredd i pixels +#accessories/plugins/NodeNote_jumpfrom.properties_documentation=Switch back from notes to mindmap +#accessories/plugins/NodeNote_jumpfrom.properties_name=Leave note +# fc, 12.10.06 +OptionPanel.max_tooltip_width= Inforuta bredd +OptionPanel.max_tooltip_width.tooltip=Standard inforuta, bredd i pixlar. +OptionPanel.metal= Metall +OptionPanel.motif= Motif +OptionPanel.nb= No +OptionPanel.nl= Nl +OptionPanel.nn= Nn +OptionPanel.nothing= Ingenting +OptionPanel.number_of_different_files_for_automatic_save= Antal olika filer vid autospara +OptionPanel.number_of_different_files_for_automatic_save.tooltip= antal n av olika filer att spara tankekartan i. Den f\u00f6rsta filen autosparas f\u00f6rst, osv. till och med n+1-spara som \u00e5terigen sparas i den f\u00f6rsta filen (cykel) +OptionPanel.OK= Spara +OptionPanel.path_to_automatic_saves= S\u00f6kv\u00e4g till autosparade filer +OptionPanel.path_to_automatic_saves.tooltip= f\u00f6r att \u00e4ndra standard s\u00f6kv\u00e4g ('java.io.tmpdir' f\u00f6r java), skriv in en s\u00f6kv\u00e4g till mappen h\u00e4r: andra m\u00f6jligheter: * freemind_home beskriver mappen, var auto.properties finns. * default pekar p\u00e5 java.io.tmpdir +OptionPanel.patternsfile= M\u00f6nsterfil +OptionPanel.pl= Pl +OptionPanel.placenewbranches= Placera nya f\u00f6rgreningar +OptionPanel.placenewbranches.tooltip=Var placera nya f\u00f6rgreningar. Godk\u00e4nda v\u00e4rden \u00e4r 'f\u00f6rst' och 'sist' +OptionPanel.plugins/scripting/tab_name=Skript +OptionPanel.printonwhitebackground=Vit bakgrund vid utskrift +OptionPanel.printonwhitebackground.tooltip=Anv\u00e4nda alltid vit bakgrund vid utskrift +OptionPanel.pt_BR= Pt BR +OptionPanel.pt_PT= Pt PT +OptionPanel.relative= Relativ +OptionPanel.remind_type_of_new_nodes.tooltip="Fr\u00e5ga" kommer att fr\u00e5ga dig (anv\u00e4nd om os\u00e4ker).
"Ja" visar den avancerade textredigeraren.
"Nej" visar endast enkel textredigerare. +OptionPanel.remind_use_rich_text_in_new_long_nodes=Anv\u00e4nd formateringen i alla noder +OptionPanel.remove_notes_without_question.tooltip=Om denna kryssruta \u00e4r f\u00f6rbockad kommer anteckningar som tillh\u00f6r de valda noderna att raderas utan bekr\u00e4ftelse. Detta kan inneb\u00e4ra f\u00f6rlust av data. +OptionPanel.resources_convert_to_current_version=Automatisk konvertering av tankekartor fr\u00e5n \u00e4ldre versioner av FreeMind
till nuvarande version? +OptionPanel.resources_convert_to_current_version.tooltip=Endast mycket stota tankekartor som inte beh\u00f6ver konverteras
(detta \u00e4r expertkunskap) kan \u00f6ppnas utan konvertering. +OptionPanel.resources_cut_nodes_without_question=Klipp ut noder utan bekr\u00e4ftelse? +OptionPanel.resources_don_t_show_note_icons=Visa inte anteckningsikoner +OptionPanel.resources_execute_scripts_without_asking=K\u00f6ra skript utan bekr\u00e4ftelse? +OptionPanel.resources_execute_scripts_without_exec_restriction=Till\u00e5t k\u00f6rning av andra program (INTE rekommenderat) +OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=Om du vill att dina skript ska k\u00f6ra andra program (som t.ex. en webbl\u00e4sare) utan att fr\u00e5ga(!),
m\u00e5ste du aktivera detta val.
Anv\u00e4nd detta med f\u00f6rst\u00e5nd eftersom skript kan skada din dator! +OptionPanel.resources_execute_scripts_without_file_restriction=Till\u00e5t filhantering (INTE rekommenderat) +OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=Om dina skript beh\u00f6ver k\u00f6ra speciella funktion (\u00f6ppna, st\u00e4ng, l\u00e4s, skriv, ta bort(!)),
m\u00e5ste detta aktiveras h\u00e4r.
Anv\u00e4nd detta med f\u00f6rst\u00e5nd eftersom skript kan skada din dator. +OptionPanel.resources_execute_scripts_without_network_restriction=Till\u00e5t n\u00e4tverkshantering (INTE rekommenderat) +OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=Om dina skript beh\u00f6ver k\u00f6ra s\u00e4rskilda n\u00e4tverksfunktioner,
m\u00e5ste detta aktiveras h\u00e4r.
Anv\u00e4nd detta med f\u00f6rst\u00e5nd eftersom skript kan skada din dator. +OptionPanel.resources_remove_notes_without_question=Ta bort noder utan att fr\u00e5ga? +OptionPanel.resources_save_folding_state=Spara alltid mappinst\u00e4llningar +OptionPanel.resources_save_folding_state.tooltip=Kryssa i h\u00e4r om du vill att \u00f6ppnande av noder (vecklas ut) ska p\u00e5minna dig om att spara tankekartan. +OptionPanel.resources_script_user_key_name_for_signing=Valfri knapp f\u00f6r anv\u00e4ndarsignering +OptionPanel.resources_script_user_key_name_for_signing.tooltip=Skriv in din nyckel h\u00e4r som ska anv\u00e4ndas vid signering av dina skript.
Nyckeln f\u00f6rv\u00e4ntas finnas i det f\u00f6rvalda nyckelhateringssystemet.
L\u00f6senordet m\u00e5ste \u00f6verenst\u00e4mma med de sparade v\u00e4rdena. +OptionPanel.resources_signed_script_are_trusted=Lita p\u00e5 signerade skript (rekommenderat). +OptionPanel.resources_signed_script_are_trusted.tooltip=Om skripten \u00e4r ansedda som p\u00e5litliga (= gjorda av FreeMind eller av dig sj\u00e4lv), kommer dessa att k\u00f6ras utan begr\u00e4nsningar. +OptionPanel.ro=Ro +OptionPanel.ru= Ru +OptionPanel.save_only_intrisically_needed_ids=Spara endast nodernas IDnr +OptionPanel.save_only_intrisically_needed_ids.tooltip=Detta tar bort oanv\u00e4nda IDnr i din tankekarta. Observera att du inte kan l\u00e4nka till externa tankekartor utan noders IDnr. +OptionPanel.se= Se +OptionPanel.selection_method= Urvalsmetod +OptionPanel.selection_method.tooltip= med f\u00f6ljande 'switch' kan du m\u00f6jligg\u00f6ra/ta bort f\u00f6rsenade markeringsschema. Automatiska valm\u00f6jligheter. F\u00f6r\u00e4ndra inte dessa eftersom de kommer att sparas till auto.properties \u00e4nd\u00e5. +OptionPanel.selection_method_by_click= Vid musklick +OptionPanel.selection_method_delayed= F\u00f6rsenad +OptionPanel.selection_method_direct= Direkt +OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName= M\u00f6nster +OptionPanel.separator.anti_alias= Kantutj\u00e4mning +OptionPanel.separator.attributes= Egenskaper +OptionPanel.separator.automatic_save= Autospara +OptionPanel.separator.behaviour= Beteende +OptionPanel.separator.browser= Webbl\u00e4sare +OptionPanel.separator.commands_for_the_program= Kommandon f\u00f6r programmet +OptionPanel.separator.default_colors= Standardf\u00e4rg +OptionPanel.separator.default_fonts= Standard teckensnitt +OptionPanel.separator.default_styles= Standardstil +OptionPanel.separator.edit_long_node_window= Redigera ut\u00f6kat nodf\u00f6nster +OptionPanel.separator.files= Filer +OptionPanel.separator.html_export= Export av Html +OptionPanel.separator.hyperlink_types= Typ av hyperl\u00e4nkar +OptionPanel.separator.icon_properties=Ikoner +OptionPanel.separator.icons=Ikoner i "V\u00e4lj ikoner..." +OptionPanel.separator.initial_map_size= Inledande kartstorlek +OptionPanel.separator.key_typing= Tangenttryckning +OptionPanel.separator.language= Spr\u00e5k +OptionPanel.separator.look_and_feel= Gr\u00e4nssnitt + +# fc, 2.3.07: +OptionPanel.separator.mouse_wheel= Mushjul +OptionPanel.separator.new_node_commands= Nya kommandon f\u00f6r noder +OptionPanel.separator.node_editing_commands= Kommandon f\u00f6r nodredigering +OptionPanel.separator.node_navigation_commands= Kommandon f\u00f6r navigering +OptionPanel.separator.other_defaults= Andra standarder +OptionPanel.separator.others= Andra nyckelbindningar +OptionPanel.separator.patterns= M\u00f6nster +OptionPanel.separator.plugins/scripting/separatorPropertyName=Till\u00e5telser +OptionPanel.separator.resources_notifications=Bekr\u00e4ftelser +OptionPanel.separator.root_node_appearance=Basnodens utseende +OptionPanel.separator.save=Spara +OptionPanel.separator.selection_colors=F\u00e4rgurval +OptionPanel.separator.selection_method= Urvalsmetod +# fc, 10.7.2005: +OptionPanel.separator.undo= \u00c5ngra +OptionPanel.sk=Sk +OptionPanel.sl= Sl +OptionPanel.standardbackgroundcolor= Standard bakgrundsf\u00e4rg +OptionPanel.standardbackgroundcolor.tooltip=Standard bakgrundsf\u00e4rg i htmlkod +OptionPanel.standardcloudcolor= Standard molnf\u00e4rg +OptionPanel.standardcloudcolor.tooltip=Standard molnf\u00e4rg i htmlkod +OptionPanel.standardcloudestyle= Standard molnstil +OptionPanel.standardcloudestyle.tooltip=Standard molnstil. F\u00f6r n\u00e4rvarande finns enbart 'bezier' tillg\u00e4ngligt +OptionPanel.standarddrawrectangleforselection=Visa valda noder i bubblor +OptionPanel.standarddrawrectangleforselection.tooltip=Markera valda noder med bubblor +OptionPanel.standardedgecolor= Standard kantf\u00e4rg +OptionPanel.standardedgecolor.tooltip=Standard kantf\u00e4rg i htmlkod +OptionPanel.standardedgestyle= Standard kantstil +OptionPanel.standardedgestyle.tooltip=Standard kantstil. 'linj\u00e4r' och 'bezier' finns tillg\u00e4ngliga +OptionPanel.standardlinkcolor= Standard l\u00e4nkf\u00e4rg +OptionPanel.standardlinkcolor.tooltip=Standard l\u00e4nkf\u00e4rg i htmlkod +OptionPanel.standardlinkestyle= Standard l\u00e4nkstil +OptionPanel.standardlinkestyle.tooltip=Standard l\u00e4nkstil. F\u00f6r n\u00e4rvarande finns enbart 'bezier' tillg\u00e4ngligt +OptionPanel.standardnodestyle= Standard nodstil +OptionPanel.standardnodestyle.tooltip=F\u00f6ljande standard nodstiler finns. 'fork', 'bubble' 'as_parent' och 'combined' finns tillg\u00e4ngliga +OptionPanel.standardnodetextcolor= Standard nodf\u00e4rg +OptionPanel.standardnodetextcolor.tooltip=Standard nodf\u00e4rg. I htmlkod (#RRGGBB i hexv\u00e4rde) +OptionPanel.standardrootnodestyle= Standard basnodstil +OptionPanel.standardrootnodestyle.tooltip=Basnodstil om ingen annan \u00e4r specificerad. 'fork' och 'bubble' och 'combined' finns tillg\u00e4ngliga +OptionPanel.standardselectednodecolor=Standard vald nodf\u00e4rg +OptionPanel.standardselectednodecolor.tooltip=Standard nodf\u00e4rg om den \u00e4r vald. I htmlkod (#RRGGBB i hexv\u00e4rde) +OptionPanel.standardselectednoderectanglecolor=V\u00e4lj f\u00e4rg f\u00f6r nodens bubbla +OptionPanel.standardselectednoderectanglecolor.tooltip=De markerade nodernas bubbelf\u00e4rg. I html (#RRGGBB i hexv\u00e4rde) +OptionPanel.standardselectednodetextcolor.tooltip= +OptionPanel.time_for_automatic_save= Tid f\u00f6r att spara automatiskt +OptionPanel.time_for_automatic_save.tooltip= tid mellan tv\u00e5 p\u00e5f\u00f6ljande automatiskt sparade filer (i msec): F\u00f6r att ta bort autospara s\u00e4tt v\u00e4rdet till 2000000000. +OptionPanel.time_for_delayed_selection= Tid f\u00f6r f\u00f6rsenat urval +OptionPanel.time_for_delayed_selection.tooltip= F\u00f6rsenad urvalstid av noder n\u00e4r musen f\u00f6rs \u00f6ver (i msec). \u00c4ndra detta v\u00e4rde 1 om du vill ha direkt val n\u00e4r musen f\u00f6rs \u00f6ver. +OptionPanel.tr= Tr +OptionPanel.uk_UA=Uk UA +OptionPanel.undo_levels= \u00c5ngra niv\u00e5er +OptionPanel.undo_levels.tooltip=Fastst\u00e4ller hur m\u00e5nga \u00e5ngrasteg som kan sparas. +OptionPanel.unfold_on_paste=Veckla ut noden vid inklistring +OptionPanel.unfold_on_paste.tooltip=Veckla ut noden vid inklistring eller Drag-och-sl\u00e4pp +OptionPanel.use_common_out_point_for_root_node=Linjerna startar fr\u00e5n samma plats vid basnoden +OptionPanel.use_common_out_point_for_root_node.tooltip=Linjerna startar fr\u00e5n samma plats vid basnoden======= +OptionPanel.use_tabbed_pane=Anv\u00e4nd flikar +OptionPanel.use_tabbed_pane.tooltip=Visar tankekartorna i flikar (som i FireFox :-)). +OptionPanel.userproperties= Anv\u00e4ndaregenskaper +OptionPanel.vi=Vi +OptionPanel.wheel_velocity= Hastighet +OptionPanel.wheel_velocity.tooltip= Ett h\u00f6gre v\u00e4rde resulterar i snabb effekt p\u00e5 tankekartans mushjulsr\u00f6relse. +OptionPanel.windows= Windows +OptionPanel.zh_CN= Zh CN +OptionPanel.zh_TW= Zh +page = Sidinst\u00e4llningar... +paste = Klistra in +PatternDialog.as_parent= Som huduvdnod +PatternDialog.bezier= Bezier +PatternDialog.bubble= Bubbla +PatternDialog.childpattern= Sudnodsm\u00f6nster +PatternDialog.childpattern.tooltip= Det markerade m\u00f6nstret anv\u00e4nds p\u00e5 alla subnoder. +PatternDialog.clear_all_setters= Byt alla +PatternDialog.clear_all_setters.tooltip= Visar eller tar bort alla angivna f\u00f6r\u00e4ndringar. +# fc, 27.2.06: +PatternDialog.ColorProperty.ResetColor= \u00c5terst\u00e4ll f\u00e4rg +PatternDialog.combined= Kombinerad +PatternDialog.edgecolor= Kantf\u00e4rg +PatternDialog.edgecolor.tooltip= Kantegenskap till huvudnod. Alla subnoder \u00e4ndras ocks\u00e5. +PatternDialog.edgestyle= Kantstil +PatternDialog.edgestyle.tooltip= Kantegenskap till huvudnod. Alla subnoder \u00e4ndras ocks\u00e5. +PatternDialog.edgewidth= Kantbredd +PatternDialog.edgewidth.tooltip= Kantegenskap till huvudnod. Alla subnoder \u00e4ndras ocks\u00e5. +PatternDialog.EdgeWidth_1= 1 +PatternDialog.EdgeWidth_2= 2 +PatternDialog.EdgeWidth_4= 4 +PatternDialog.EdgeWidth_8= 8 +PatternDialog.EdgeWidth_parent= Som huvudnod +PatternDialog.EdgeWidth_thin= Smal +PatternDialog.fork= F\u00f6rgrening +PatternDialog.icon= Ikon +PatternDialog.icon.tooltip= Om anv\u00e4nds kommer noden att ha denna ikonen. +PatternDialog.linear= Linj\u00e4r +PatternDialog.nodebackgroundcolor= Nodens bakgrundsf\u00e4rg +PatternDialog.nodebackgroundcolor.tooltip= Nodens bakgrundsf\u00e4rg +PatternDialog.nodecolor= Nodens f\u00e4rg +PatternDialog.nodecolor.tooltip= Nodens f\u00e4rg +PatternDialog.nodefontbold= Fet stil +PatternDialog.nodefontbold.tooltip= Noden fet stil +PatternDialog.nodefontitalic= Kursiv stil +PatternDialog.nodefontitalic.tooltip= Noden kursiv stil +PatternDialog.nodefontname= Nodens teckensnitt +# fc, 14.3.06: +PatternDialog.nodefontname.tooltip= Nodens teckensnitt +PatternDialog.nodefontsize= Nodens teckensnittsstorlek +PatternDialog.nodefontsize.tooltip= Nodens teckensnittsstorlek +PatternDialog.nodestyle= Nodens stil +PatternDialog.nodestyle.tooltip= Nodens stil +PatternDialog.nodetext= Nodtext +PatternDialog.nodetext.tooltip= Nodtext +PatternDialog.patternname= Namn +PatternDialog.patternname.tooltip= Unikt m\u00f6nsternamn +PatternDialog.script=Skript +PatternDialog.script.tooltip=Skriptet som h\u00e4ftgig k\u00e4llkod. +PatternDialog.separator.EdgeControls= Kanter + +PatternDialog.separator.General= Allm\u00e4n +PatternDialog.separator.NodeColors= Nodf\u00e4rger +PatternDialog.separator.NodeFont= Nodens teckesnitt +PatternDialog.separator.NodeStyles= Nodstilar +PatternDialog.separator.ScriptingControl=Skript +PatternDialog.set_property_text= \u00c4ndra +PatternDialog.set_property_text.tooltip=Tom: R\u00f6r inte; Minus=Ta bort egenskap (\u00e5terg\u00e5r till standardv\u00e4rde); Plus=\u00c4ndra egenskaper +PatternDialog.setscript=\u00c4ndra? +PatternDialog.setscript.tooltip=Ett skript kan associeras med en stil. +PatternDialog.sharp_bezier= Skarp Bezier +PatternDialog.sharp_linear= Skarp linj\u00e4r +PatternDialog.undefined_font= Odefinierat teckensnitt +PatternNewNameProperty= Nytt m\u00f6nster +PatternToString.backgroundColor= Bakgrundsf\u00e4rg +PatternToString.Child=Stil p\u00e5 subnode +PatternToString.color= F\u00e4rg +PatternToString.EdgeColor=Kantf\u00e4rg +PatternToString.EdgeStyle=Kantstil +PatternToString.EdgeWidth=Kantbredd +PatternToString.FontBold=Fet +PatternToString.FontItalic=Kursivt +PatternToString.FontName=Teckensnittsnamn +PatternToString.Icon=Ikon +PatternToString.NodeFontSize= Teckensnittsstorlek +pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide.pdf +plugins/ExportPdf.xml_documentation = Exportera till PDF +plugins/ExportPdf.xml_name = Som PDF... +plugins/ExportSvg.xml_documentation = Exportera till SVG +plugins/ExportSvg.xml_name = Som SVG... +plugins/FreemindHelp.xml_documentation = FreeMind ut\u00f6kad hj\u00e4lp +plugins/FreemindHelp.xml_name = Hj\u00e4lp... +plugins/latex/LatexNodeHook.editorTitle =Redigerare, st\u00e4ng f\u00f6r att godk\u00e4nna +plugins/latex/LatexNodeHook.properties_documentation =Latex formel +plugins/latex/LatexNodeHook.properties_name =&Latex +# fc, 13.10.06: renamed: +plugins/NodeList.xml_documentation= Visar alla noder som en s\u00f6kbar lista med filteregenskaper. +# fc, 14.12.2006: renamed: +plugins/NodeList.xml_name= S\u00f6k och ers\u00e4tt... +# fc, 2.5.2005: +plugins/RemoveReminder.xml_documentation= Tar bort en p\u00e5minnelse fr\u00e5n en nod. +plugins/RemoveReminder.xml_name= Ta bort p\u00e5minnelse +plugins/ScriptEditor.cancel=&Ignorera \u00e4ndringarna och avsluta +plugins/ScriptEditor.exit= Avsluta +plugins/ScriptEditor.FORBIDDEN_ACTION=FreeMinds skript \u00e4r begr\u00e4nsade. F\u00f6ljande funktioner {0,choice,0#File|1#Network|2#Exec} \u00e4r inte till\u00e5tna: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Du kan \u00e4ndra detta i programmet inst\u00e4llningar. +plugins/ScriptEditor.menu_actions= Aktion +plugins/ScriptEditor.new_script=Nytt skript +plugins/ScriptEditor.run= K\u00f6r +plugins/ScriptEditor.sign=Signera skriptet... +plugins/ScriptEditor.xml_documentation= M\u00f6jligg\u00f6r att skriva st\u00f6rre script i Freemind. +plugins/ScriptEditor.xml_name= Scriptredigerare... +plugins/ScriptEditor/window.Result= Resultat: +# fc, 24.1.07: +plugins/ScriptEditor/window.title= Scriptredigerare +plugins/ScriptingEngine.xml_documentation= Utv\u00e4rderar befintliga script (Rekursiv ordning, knoppar f\u00f6rst). +plugins/ScriptingEngine.xml_name= Utv\u00e4rdera +plugins/TimeList.xml_Created= Skapad +plugins/TimeList.xml_Date= Datum +plugins/TimeList.xml_documentation= Visar alla schemalagda tider och ber\u00f6rda noder. +plugins/TimeList.xml_Icons= Ikoner +plugins/TimeList.xml_Modified= Modifierad +plugins/TimeList.xml_name= Visa lista p\u00e5 schemal\u00e4ggning ... +# fc, 23.12.06: +plugins/TimeList.xml_Notes= Anteckningar +plugins/TimeList.xml_Text= Text +plugins/TimeManagement.xml_appendButton= Bifoga datum till markerade noder +plugins/TimeManagement.xml_Cancel= Avbryt +plugins/TimeManagement.xml_cancelButton= Avbryt +plugins/TimeManagement.xml_closeButton=St\u00e4ng +# fc, 4.2.05: +plugins/TimeManagement.xml_documentation= Visar kalendermodulen av Kai Toedter. +plugins/TimeManagement.xml_Export= Exportera markerade noder +# fc, 27.8.06: +plugins/TimeManagement.xml_Find= S\u00f6k +plugins/TimeManagement.xml_Goto= G\u00e5 till +plugins/TimeManagement.xml_hour= Timme: +plugins/TimeManagement.xml_menu_actions= Aktion +plugins/TimeManagement.xml_minute= Minut: +plugins/TimeManagement.xml_name= Visa kalender... +plugins/TimeManagement.xml_reminderButton= P\u00e5minn mig vid detta datum +# fc, 3.5.2005: +plugins/TimeManagement.xml_reminderButton_tooltip=N\u00e4r en timer \u00e4r klickad p\u00e5, sker schemal\u00e4ggning till dagens datum. Blinkande ikoner p\u00e5kallar din uppm\u00e4rksamhet.
Om du st\u00e4nger tankekartan, kommer timern att \u00e5teraktiveras n\u00e4sta g\u00e5ng tankekartan \u00f6ppnas. +plugins/TimeManagement.xml_reminderNode_onlyOneDate=F\u00f6r n\u00e4rvarande finns det enbart en p\u00e5minnelse per nod.
Den aktuella p\u00e5minnelsen \u00e4r schemalagd till {0,date} {0,time}, ditt val var {1,date} {1,time}.

Vill du \u00e4ndra nodens p\u00e5minnelstid (Ja)
eller vill du beh\u00e5lla den gamla (Nej)? +plugins/TimeManagement.xml_reminderNode_showNode= Tiden har g\u00e5tt ut f\u00f6r noden " {0} ". Vill du v\u00e4nta ytterligare tio minuter? +plugins/TimeManagement.xml_reminderNode_tooltip= P\u00e5minnelse {0,date} {0,time}. +plugins/TimeManagement.xml_removeReminderButton = Ta bort p\u00e5minnelser +plugins/TimeManagement.xml_removeReminderButton_tooltip = Ta bort alla p\u00e5minnelser fr\u00e5n markerade noder. +plugins/TimeManagement.xml_Replace= Ers\u00e4tt +plugins/TimeManagement.xml_Replace_All= Ers\u00e4tt alla +plugins/TimeManagement.xml_Replace_Selected= Ers\u00e4tt markerade +plugins/TimeManagement.xml_Select= V\u00e4lj +# fc, 5.4.2005 +plugins/TimeManagement.xml_todayButton= Idag +plugins/TimeManagement.xml_WindowTitle= Tidsstyrning +# fc, 10.1.07: +plugins/TimeManagement.xml_WindowTitle_All_Nodes= S\u00f6k och ers\u00e4tt +#Kan vara felaktig \u00f6vers\u00e4ttning - Internal hook for scheduling resubmission tasks. +plugins/TimeManagementReminder.xml_documentation= Intern upph\u00e4ngning f\u00f6r schemalagda \u00e5tertagna uppgifter. +plugins/TimeManagementReminder.xml_name= Intern upph\u00e4ngning f\u00f6r schemalagda \u00e5tertagna uppgifter. +preferences = Inst\u00e4llningar +previous_map = F\u00f6reg\u00e5ende tankekarta +print = Skriv ut +print_dialog = Skriv ut... +print_preview = F\u00f6rhandsgranska utskrift... +print_preview_title =F\u00f6rhandsgranska utskrift +# new from 20.12.2003, fc +printing_settings = Skala utskrift +# fc, 10.5.2005: +property_dialog= Inst\u00e4llningar ... + +quit = Avsluta +read_only = Enbart l\u00e4sr\u00e4ttighet +really_convert_to_current_version=Denna tankekarta skapades med en \u00e4ldre version av FreeMind.
Vill du konvertera den (rekommenderas)?
(Annars anv\u00e4nder du den utan garantier.) +really_cut_node=Vill du verkligen klippa ut noder(na)? +really_execute_script=Vill du verkligen k\u00f6ra skript som finns i denna tankekarta? Detta kan i v\u00e4rsta fall skada din dator. +really_remove_node=Vill du verkligen ta bort noder(na)? +really_remove_notes=Vill du verkligen ta bort anteckning(arna)? +redo = G\u00f6r om +remove_all_icons = Ta bort alla ikoner +remove_arrow_link = Ta bort pill\u00e4nk +remove_last_icon = Ta bort senaste ikonen + +remove_node = Ta bort nod +remove_node_background_color = Ta bort nodens bakgrundsf\u00e4rg +rename=&D\u00f6p om +repair_link = Reparera l\u00e4nk +repair_link_question = Kunde inte ladda in l\u00e4nkad tankekarta. Reparera l\u00e4nken manuellt? +replace= Ers\u00e4tt +# fc, 27.4.2005: +reset_node_position= \u00c5terta position +# fc, 11.3.2005: +RevertAction= \u00c5terg\u00e5 +save = Spara +save_as = Spara som... +save_failed = F\u00f6rs\u00f6k att spara tankekartan $1 misslyckades. +save_unsaved = Spara f\u00f6ljande tankekarta? : +saved = Sparad +scheme_evaluate = Utv\u00e4rdera! + +#fc, 14.2.07: +ScriptEditorPanel.changed_cancel= Script har \u00e4ndrats. Vill du verkligen avst\u00e5 fr\u00e5n \u00e4ndringen? +select_all= V\u00e4lj alla synliga +#fc, 26.4.2005: +select_branch= V\u00e4lj synlig f\u00f6rgrening +select_favorites_folder = V\u00e4lj mappen med dina favoriter +select_folder_for_importing = V\u00e4lj mappen som ska importeras +select_icon=V\u00e4lj en ikon +selection_as_rectangle=Rektangul\u00e4r markering +# changed from 23.1.2004, fc. +selection_method_by_click = Enkelt musklick f\u00f6r att v\u00e4lja +# fc, 2.2.05: +selection_method_delayed= F\u00f6rsenad automatisk markering +selection_method_direct = Peka f\u00f6r att v\u00e4lja +set_image_by_filechooser = Bild (Dokumentv\u00e4ljare eller l\u00e4nk)... +set_link_by_filechooser = Hyperl\u00e4nk (Dokumentv\u00e4ljare)... +set_link_by_textfield = Hyperlink (Textf\u00e4lt)... +sharp_bezier = Skarp Bezier +sharp_linear = Skarp Linj\u00e4r + +# About frame +simplyhtml.aboutFrameTitle= Om applikationen +simplyhtml.aboutLabel=Om SimplyHTML... +simplyhtml.alignCenter= Centrerad +simplyhtml.alignLabel= Justering: +simplyhtml.alignLeft= V\u00e4nster +simplyhtml.alignRight= H\u00f6ger +simplyhtml.allCellsRangeLabel= Alla celler +simplyhtml.allOccurrencesReplaced= Alla f\u00f6rekomster ersatta +simplyhtml.appendTableColLabel= L\u00e4gg till kolumn +simplyhtml.appendTableRowLabel= L\u00e4gg till rad +simplyhtml.applyCellAttrLabel= Till\u00e4mpa p\u00e5 +simplyhtml.backgroundLabel= Bakgrund: +simplyhtml.boldItalicName= Fet kursiv +simplyhtml.boldName= Fet +simplyhtml.borderColorLabel= F\u00e4rg: +simplyhtml.borderWidthLabel= Bredd +simplyhtml.bottomLabel= Nederst: +simplyhtml.cancelBtnName= Avbryt +simplyhtml.cellBorderTabLabel= Kantlinjer +simplyhtml.cellGenTabLabel= Generellt +simplyhtml.cellMarginTabLabel= Marginal +simplyhtml.cellPanelTitle= Cellformatering +simplyhtml.clearFormatLabel= Ta bort formattering +simplyhtml.clearFormatTip= Ta bort formattering +simplyhtml.close= St\u00e4ng +simplyhtml.closeBtnName= Close +simplyhtml.colorLabel= F\u00e4rg +simplyhtml.copyLabel= Kopiera +simplyhtml.copyTip= Kopiera +simplyhtml.cTagNameHead1= Rubrik 1 +simplyhtml.cTagNameHead2= Rubrik 2 +simplyhtml.cTagNameHead3= Rubrik 3 +simplyhtml.cTagNameHead4= Rubrik 4 +simplyhtml.cTagNameHead5= Rubrik 5 +simplyhtml.cTagNameHead6= Rubrik 6 +simplyhtml.cTagNameLink= L\u00e4nk +simplyhtml.cTagNameOL= Numrerad lista + +# Tag names +simplyhtml.cTagNamePara= Stycke +simplyhtml.cTagNameUL= Onumrerad lista +simplyhtml.cutLabel= Klipp ut +simplyhtml.cutTip= Klipp ut +simplyhtml.defaultDocName= Dokumentnamn +simplyhtml.deleteTableColLabel= Ta bort kolumn +simplyhtml.deleteTableRowLabel= Ta bort rad +simplyhtml.docTitleQuery= Namn p\u00e5 dokumenttitel: +simplyhtml.docTitleTitle= Redigerat dokumenttitel + +# SimplyHTML.properties +# +# resource bundle with strings for application SimplyHTML +# - English Language (default) - +# edit menu definition +simplyhtml.editLabel= Redigera +simplyhtml.effectLabel= Effekt +simplyhtml.familyLabel= Familj +simplyhtml.findNext= S\u00f6k n\u00e4sta... + +# Find & replace dialog +simplyhtml.findReplaceDialogTitle= S\u00f6k och ers\u00e4tt +simplyhtml.findReplaceLabel= S\u00f6k och ers\u00e4tt +simplyhtml.findReplaceTip= S\u00f6k och ers\u00e4tt +simplyhtml.fontBoldImage=resources/bold.gif +simplyhtml.fontBoldLabel= Fet +simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif +simplyhtml.fontBoldTip= V\u00e4xla fet p\u00e5/av +simplyhtml.fontColorImage=resources/fontColor.gif +simplyhtml.fontColorLabel=Textf\u00e4rg +simplyhtml.fontColorTip=Textf\u00e4rg + +# Font Dialog +simplyhtml.fontDialogTitle= Formatera teckensnitt +simplyhtml.fontItalicImage=resources/italic.gif +simplyhtml.fontItalicLabel= Kursiv +simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif +simplyhtml.fontItalicTip= V\u00e4xla kursiv p\u00e5/av + +# format menu items +simplyhtml.fontLabel= Teckensnitt... +simplyhtml.fontTabLabel= Teckensnitt +simplyhtml.fontTip= Formattera teckensnitt... +simplyhtml.fontUnderlineImage=resources/uline.gif +simplyhtml.fontUnderlineLabel= Understruken +simplyhtml.fontUnderlineTip= V\u00e4xla understruken p\u00e5/av +simplyhtml.foregroundLabel= F\u00f6rgrund: +# format menu definition +simplyhtml.formatLabel= Formatera +simplyhtml.formatListLabel= Lista... +simplyhtml.formatListTip= \u00c4ndra listformat +simplyhtml.formatParaLabel= Stycke... +simplyhtml.formatParaTip= \u00c4ndra styckeformat +simplyhtml.formatTableLabel= Tabell... +simplyhtml.formatTableTip= Formattera tabell +simplyhtml.helpLabel=Hj\u00e4lp +simplyhtml.htmlTabTitle= HTML-kodvy + +# Miscellaneous text +simplyhtml.imageFileDesc= Bildfiler +simplyhtml.insertTableColLabel= Infoga kolumn + +#insert menu definition +simplyhtml.insertTableLabel= Tabell... +simplyhtml.insertTableMsg= Hur m\u00e5nga kolumner? +simplyhtml.insertTableRowLabel= Infoga rad +simplyhtml.insertTableTitle= Infoga tabell +simplyhtml.italicName= Kursiv +simplyhtml.layoutTabTitle= Layoutvy +simplyhtml.leftLabel= V\u00e4nster: + +# List dialog +simplyhtml.listDialogTitle= Formatera lista +simplyhtml.listIndentTitle= Indrag: +simplyhtml.listPosInside= Inuti +simplyhtml.listPositionLabel= Position: +simplyhtml.listPosOutside= Utanf\u00f6r +simplyhtml.listTypeCircle= Rund punkt +simplyhtml.listTypeDecimal= 1.,2.,3.,4. +simplyhtml.listTypeDisc= Filsymbol som punkt +simplyhtml.listTypeLabel= Listtyp: +simplyhtml.listTypeLowerAlpha= a.,b.,c.,d. +simplyhtml.listTypeLowerRoman= i.,ii.,iii.,iv. +simplyhtml.listTypeNone= Ingen +simplyhtml.listTypeSquare= Fyrkantig punkt +simplyhtml.listTypeUpperAlpha= A.,B.,C.,D. +simplyhtml.listTypeUpperRoman= I.,II.,III.,IV. + +# Margin panel +simplyhtml.marginLabel= Yttre +simplyhtml.matchCase= Matcha gemener/versaler +simplyhtml.newStyleDefaultName= Ny stil +simplyhtml.nextTableCellLabel= N\u00e4sta cell +simplyhtml.noLineLabel= Ingen +simplyhtml.noMoreOccurrencesFound= Inga (fler) f\u00f6rekomster hittade +simplyhtml.okBtnName= OK +simplyhtml.paddingLabel= Inre +simplyhtml.paraAlignCenterLabel= Centrera +simplyhtml.paraAlignCenterTip= Centrera +simplyhtml.paraAlignLeftLabel= V\u00e4nsterjustera +simplyhtml.paraAlignLeftTip= V\u00e4nsterjustera stycke +simplyhtml.paraAlignRightLabel= H\u00f6gerjustera +simplyhtml.paraAlignRightTip= H\u00f6gerjustera stycke + +# Paragraph style dialog +simplyhtml.paraStyleDialogTitle= Styckestil +simplyhtml.paraTabLabel= Stycke +simplyhtml.pasteLabel= Klistra in +simplyhtml.pasteTip= Klistra in +simplyhtml.plainName= Enkel +simplyhtml.previewLabel= F\u00f6rhandsgranska +simplyhtml.previewText= F\u00f6rhandsgranska text +simplyhtml.prevTableCellLabel= F\u00f6reg\u00e5ende cell +simplyhtml.redoLabel= \u00c5terta +simplyhtml.redoTip= \u00c5terta +simplyhtml.replace= Ers\u00e4tt... +simplyhtml.replaceAll= Alla +simplyhtml.replaceDone= F\u00e4rdig +simplyhtml.replaceNo= Nej +simplyhtml.replaceThisQuery= Ers\u00e4tt denna f\u00f6rekomst +simplyhtml.replaceWith= Ers\u00e4tt med: +simplyhtml.replaceYes= Ja +simplyhtml.rightLabel= H\u00f6ger: +simplyhtml.searchDown= S\u00f6k ned\u00e5t +simplyhtml.searchFromStart= S\u00f6k fr\u00e5n b\u00f6rjan +simplyhtml.searchUp= S\u00f6k upp\u00e5t +simplyhtml.selectAllLabel= Markera alla +simplyhtml.sizeLabel= Storlek +simplyhtml.standardStyleName= Standard +simplyhtml.strikeLabel= Genomstruken +simplyhtml.styleLabel= Stil +simplyhtml.styleNameInputText= Namn p\u00e5 ny stil? +simplyhtml.styleNameInputTitle= Spara stil +simplyhtml.tableBgColLabel= Bakgrundsf\u00e4rg: + +# Table dialog +simplyhtml.tableDialogTitle= Formatera tabell + +# table menu definition +# table menu items +simplyhtml.tableLabel= Tabell +simplyhtml.tablePanelTitle= Tabellformatering +simplyhtml.tableWidthLabel= Bredd: + +# Paragraph style panel +simplyhtml.textIndentLabel= Indrag: +simplyhtml.textToFind= S\u00f6k efter text: +simplyhtml.thisCellRangeLabel= Denna cellen +simplyhtml.thisColRangeLabel= Denna kolumn +simplyhtml.thisRowRangeLabel= Denna rad +simplyhtml.toggleBulletsLabel= Punktlista p\u00e5/av +simplyhtml.toggleBulletsTip= Punktlista p\u00e5/av +simplyhtml.toggleNumbersLabel= Nummerlista p\u00e5/av +simplyhtml.toggleNumbersTip= Nummerlista p\u00e5/av +simplyhtml.topLabel= \u00d6verst: + +# Font panel +simplyhtml.uLineLabel= Understruken +simplyhtml.unableToOpenFileError=Filen kan inte \u00f6ppnas +simplyhtml.unableToRedoError= Om\u00f6jligt att \u00e5terta: + +# Error messages +simplyhtml.unableToUndoError= Om\u00f6jligt att \u00e5ngra: + +# edit menu items +simplyhtml.undoLabel= \u00c5ngra +simplyhtml.undoTip= \u00c5ngra +simplyhtml.valignBaseline= Baslinjen +simplyhtml.valignBottom= Underst +simplyhtml.valignLabel= Vert. justerad: +simplyhtml.valignMiddle= Mitten +simplyhtml.valignTop= \u00d6verst +simplyhtml.wholeWordsOnly= Enbart hela ord +split = Dela +style = Stil +toggle_bold_branch = V\u00e4xla fetstil +toggle_children_folded = (V\u00e4xla) g\u00f6m subnod +toggle_folded = V\u00e4xla utf\u00e4lld +toggle_italic_branch = V\u00e4xla kursiv +toggle_left_toolbar = V\u00e4xla v\u00e4nster verktygsf\u00e4lt +toggle_menubar = V\u00e4xla menyrad +toggle_toolbar = V\u00e4xla verktygsf\u00e4lt +#fc, 14.11.2004: +undefined_error = Ett ov\u00e4ntat fel har skett. Skicka en buggrapport. +underline = Stryk under +# added at 27.8.2004, fc: +underlined = Understruken +# added at 2.5.2004, fc: +undo = \u00c5ngra +unfold = Visa f\u00f6rgrening +url_error = URL:en \u00e4r felaktig! +url_load_error = Kunde inte h\u00e4mta URL:ens tankekarta: +use_plain_text = Anv\u00e4nd enkel text +# dan, whenever +use_rich_formatting = Anv\u00e4nd ut\u00f6kad formattering +# removed: follow_link = Goto: +user_defined_zoom = Anv\u00e4ndardefinierad. +user_defined_zoom_status_bar = F\u00f6r\u00e4ndrar zoom till anv\u00e4ndardefinierad zoom med v\u00e4rde {0}%. +user_zoom = Utskrift med zoomfaktor (0.0 - 2.0): +webDocu = Webbdokumentation +width = Bredd +yes = Ja +zoom_in = Zooma in +zoom_out = Zooma ut + +really_convert_to_current_version2=Filen du f\u00f6rs\u00f6ker \u00f6ppna skapades och sparades av en \u00e4ldre version av FreeMind.
FreeMind kommer att konvertera filen till nuvarande format.
Efter konverteringen av filen kommer den inte att kunna \u00f6ppnas med \u00e4ldre versionar av FreeMind igen.
Ska FreeMind konvertera filen? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_sk.properties freemind-0.9.0RC7/Resources_sk.properties --- freemind-0.9.0RC6/Resources_sk.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_sk.properties 2010-02-27 21:48:00.000000000 +0000 @@ -3,7 +3,7 @@ #! encoding:ISO-8859-1 # by Viliam Bur - viliambur about =O programe -about_text = FreeMind - slobodn\u00fd softv\u00e9r na mapovanie my\u0161lienok a budovanie poznatkov\nCopyright \u00a9 2000-2006 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev, a \u010fal\u0161\u00ed.\nTento program je slobodn\u00fd softv\u00e9r zverejnen\u00fd pod V\u0161eobecnou verejnou licenciou GNU.\n\nDom\u00e1ca str\u00e1nka: http://freemind.sourceforge.net/\nVerzia: +about_text = FreeMind - slobodn\u00fd softv\u00e9r na mapovanie my\u0161lienok a budovanie poznatkov\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitri Polivaev, a \u010fal\u0161\u00ed.\nTento program je slobodn\u00fd softv\u00e9r zverejnen\u00fd pod V\u0161eobecnou verejnou licenciou GNU.\n\nDom\u00e1ca str\u00e1nka: http://freemind.sourceforge.net/\nVerzia: accessories/plugins/ApplyFormatPlugin.dialog.title=Zme\u0148 form\u00e1t uzlov accessories/plugins/ApplyFormatPlugin.properties_documentation=Zobraz\u00ed dial\u00f3g, v ktorom mo\u017eno naraz zmeni\u0165 vlastnosti uzlov aj hr\u00e1n. accessories/plugins/ApplyFormatPlugin.properties_name=Zme\u0148 form\u00e1t... @@ -828,3 +828,4 @@ yes =\u00c1no zoom_in =Zv\u00e4\u010d\u0161i zaostrenie zoom_out =Zmen\u0161i zaostrenie +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_sl.properties freemind-0.9.0RC7/Resources_sl.properties --- freemind-0.9.0RC6/Resources_sl.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_sl.properties 2010-02-27 21:44:28.000000000 +0000 @@ -1,7 +1,7 @@ # submitted by miles - film_si about = O programu add=&Dodaj -about_text = FreeMind - prosta programska oprema za risanje miselnih vzorcev in utrjevanje znanja.\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev in drugi.\nTa program je prosta programska oprema (izdana pod licenco GPL).\nDoma\u010Da stran: http://freemind.sourceforge.net/\nU\u017Eivajte!\nRazli\u010Dica: +about_text = FreeMind - prosta programska oprema za risanje miselnih vzorcev in utrjevanje znanja.\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev in drugi.\nTa program je prosta programska oprema (izdana pod licenco GPL).\n\nDoma\u010Da stran: http://freemind.sourceforge.net/\nU\u017Eivajte!\nRazli\u010Dica: antialias_all = Pogladi robove vsega antialias_edges = Pogladi le robove antialias_none = Ne gladi robov @@ -46,7 +46,6 @@ find_what = Najdi niz find_next = Najdi naslednje fold = Prepogni -follow_link = Sledi povezavi font = Pisava fork = &Razvejaj help = Pomo\u010D @@ -94,7 +93,7 @@ italicise_branch = Zale\u017Ei join_nodes = Zdru\u017Ei vozli\u0161\u010Da license = Licenca -license_text = FreeMind - Program za ustvarjanje in ogledovanje miselnih vzorcev\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Program za ustvarjanje in ogledovanje miselnih vzorcev\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Linearno load = &Nalo\u017Ei locking_failed_by_open = Zaklep miselnega vzorca $1 ni uspel. Odpiranje samo za branje. @@ -129,8 +128,8 @@ nonboldify_branch = Razveljavi krepko nonitalicise_branch = Razveljavi le\u017Ee\u010De normal = Obi\u010Dajno -no_found_from = "$1" ni mogo\u010De najti v "$2". -no_more_found_from = Nobenih "$1" ve\u010D ni bilo najdenih v "$2". +no_found_from = $1 ni mogo\u010De najti v $2. +no_more_found_from = Nobenih $1 ve\u010D ni bilo najdenih v $2. no_previous_find = Ni bilo zadetkov od prej. not_saved_for_link_error = Miselni vzorec mora biti shranjen, preden lahko nastavite povezavo z izbirnikom datotek open = Odpri ... @@ -172,7 +171,6 @@ underline = Pod\u010Drtano unfold = Razpostri url_error = Ta URL je nepravilno oblikovan! -url_load_error = Ni mogo\u010De nalo\u017Eiti miselnega vzorca z URL: width = \u0160irina yes = Da zoom_in = Pove\u010Daj @@ -193,7 +191,7 @@ printing_settings = Umerjanje tiskanja fit_to_page = Prilagodi velikosti ene strani user_zoom = Faktor pove\u010Dave tiskanja (0.0 - 2.0): -ok = V redu +ok = V &redu # changed from 23.1.2004, fc. selection_method_by_click = Enkrat klikni za izbiro selection_method_direct = Poka\u017Ei izbiro @@ -211,7 +209,7 @@ menu_format = O&blika menu_extras = O&rodja menu_insert = V&stavi -menu_attributes = Atributi +menu_attributes = &Atributi # Beware: "Edge Width " and "Edge Style " must end with space. edge_style = Slog roba edge_width = \u0160irina roba @@ -289,7 +287,7 @@ accessories/plugins/RevisionPlugin.properties_documentation = Ozna\u010Di ozadje vsakega spremenjenega vozli\u0161\u010Da. accessories/plugins/RevisionPlugin.properties_name = Poka\u017Ei revizije v rumeni accessories/plugins/SplitNode.properties_documentation = Vozli\u0161\u010De je razdeljeno -accessories/plugins/SplitNode.properties_name = Razdeli vozli\u0161\u010De +accessories/plugins/SplitNode.properties_name = Ra&zdeli vozli\u0161\u010De accessories/plugins/UnfoldAll.properties_documentation = Razpostre izbrana vozli\u0161\u010Da in vse njihove otroke. accessories/plugins/UnfoldAll.properties_name = Razpostri vse accessories/plugins/FoldAll.properties_documentation = Prepogne izbrana vozli\u0161\u010Da in vse njihove otroke. @@ -429,7 +427,6 @@ attributes_assign_dialog=Dodeli atribute ... attributes_visible=Vidno attributes_visible_tooltip=Izbor za Pogled->Atribut->Poka\u017Ei izbrane atribute -attributes_visible_tooltip=Izbrano vidno attributes_refresh=Osve\u017Ei attribute_replace=Zamenjaj z attributes_restriction=omejena mno\u017Eica @@ -741,7 +738,7 @@ OptionPanel.ColorProperty.ResetColor=Ponastavi barvo # fc, 16.6.2005: OptionPanel.keystroke_option_dialog=Nastavitve -format_menu_edge_styles=Slogi robov +format_menu_edge_styles=S&logi robov format_menu_edge_widths=\u0160irine robov # fc, 3.7.2005: accessories/plugins/ImportMindmanagerFiles.properties_name=Miselni vzorec MindManager X5 ... @@ -809,7 +806,7 @@ PatternDialog.sharp_linear=ostro linearno PatternDialog.undefined_font=Nedolo\u010Dena pisava accessories/plugins/ApplyFormatPlugin.properties_documentation=Predstavi pogovorno okno, v katerem lahko naenkrat spremenite atribute vozli\u0161\u010Da in robov. -accessories/plugins/ApplyFormatPlugin.properties_name=Spremeni obliko ... +accessories/plugins/ApplyFormatPlugin.properties_name=Sp&remeni obliko ... accessories/plugins/ApplyFormatPlugin.dialog.title=Spremeni obliko vozli\u0161\u010D OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Premakni levo @@ -857,8 +854,8 @@ OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Vzorci PatternToString.color=Barva PatternToString.backgroundColor=Barva ozadja -OptionPanel.automaticFormat_level1=Oblika korenskega vozli\u0161\u010Da -OptionPanel.automaticFormat_level2=Oblika vozli\u0161\u010D 1. ravni +#OptionPanel.automaticFormat_level1=Oblika korenskega vozli\u0161\u010Da +#OptionPanel.automaticFormat_level2=Oblika vozli\u0161\u010D 1. ravni PatternToString.NodeFontSize=Velikost pisave OptionPanel.level1=Oblika korenskega vozli\u0161\u010Da OptionPanel.level2=Oblika vozli\u0161\u010D 1. ravni @@ -940,7 +937,7 @@ plugins/TimeList.xml_Notes=Opombe # fc, 30.12.06: accessories/plugins/SortNodes.properties_documentation=Razvrsti vse otroke vozli\u0161\u010Da po abecedi. -accessories/plugins/SortNodes.properties_name=Razvrsti otroke +accessories/plugins/SortNodes.properties_name=&Razvrsti otroke # fc, 3.1.07: OptionPanel.ar=arabski # fc, 10.1.07: @@ -990,6 +987,9 @@ simplyhtml.fontBoldImage=resources/bold.gif simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif simplyhtml.fontBoldTip=Vklju\u010Di/izklju\u010Di krepko pisavo +simplyhtml.fontColorTip=Barva besedila +simplyhtml.fontColorLabel=Barva besedila +simplyhtml.fontColorImage=resources/fontColor.gif simplyhtml.fontItalicLabel=Le\u017Ee\u010De simplyhtml.fontItalicImage=resources/italic.gif simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif @@ -1198,7 +1198,6 @@ OptionalDontShowMeAgainDialog.rememberMyDescision=&Zapomni si moj odgovor. OptionalDontShowMeAgainDialog.cancel=&Ne OptionalDontShowMeAgainDialog.ok=&Da -OptionPanel.gl=galicijski OptionPanel.separator.resources_notifications=Potrditve OptionPanel.delete_nodes_without_question=\u017Delite izbrisati vozli\u0161\u010Da brez potrditve? OptionPanel.delete_nodes_without_question.tooltip=\u010Ce je to polje potrjeno, se vozli\u0161\u010Da izbri\u0161ejo brez potrditve. Povzro\u010Dite lahko izgubo podatkov, \u010De nehote pritisnete gumb. @@ -1418,3 +1417,7 @@ # new, fc, 20.12.2008 OptionPanel.ro=romunski + +#new, fc, 6.12.2009: +really_convert_to_current_version2=Miselni vzorec, ki ga \u017Eelite odpreti, je bil ustvarjen s starej\u0161o razli\u010Dico programa FreeMind, shranjen je v starem zapisu.
FreeMind bo ta miselni vzorec pretvoril v nov zapis.
Po pretvarjanju in shranjevanju ga s starej\u0161imi razli\u010Dicami FreeMind ne boste ve\u010D mogli odpreti.
Ali naj FreeMind pretvori in odpre miselni vzorec? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_tr.properties freemind-0.9.0RC7/Resources_tr.properties --- freemind-0.9.0RC6/Resources_tr.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_tr.properties 2010-02-27 21:48:00.000000000 +0000 @@ -2,7 +2,7 @@ #! created/edited by Popeye version 0.54 (popeye.sourceforge.net) #! encoding:ISO-8859-1 about = Hakk\u0131nda -about_text = Joerg Mueller'in FreeMind'\u0131\nZihin haritalama tekni\u011finin bilgisayarda uygulanmas\u0131.\nKopyalama Hakk\u0131 (C) 2000-2008 Joerg Mueller \nBu program bir \u00f6zg\u00fcr yaz\u0131l\u0131md\u0131r (GPL)\nAdres: http://freemind.sourceforge.net/\nKeyfini \u00e7\u0131kar\u0131n!\nS\u00fcr\u00fcm: +about_text = Joerg Mueller'in FreeMind'\u0131\nZihin haritalama tekni\u011finin bilgisayarda uygulanmas\u0131.\nKopyalama Hakk\u0131 (C) 2000-2010 Joerg Mueller \nBu program bir \u00f6zg\u00fcr yaz\u0131l\u0131md\u0131r (GPL)\nAdres: http://freemind.sourceforge.net/\nKeyfini \u00e7\u0131kar\u0131n!\nS\u00fcr\u00fcm: antialias_all = Hepsini d\u00fczg\u00fcnle\u015ftir antialias_edges = S\u0131n\u0131rlar\u0131 d\u00fczg\u00fcnle\u015ftir antialias_none = Hi\u00e7 d\u00fczg\u00fcnle\u015ftirme @@ -93,7 +93,7 @@ italicise_branch = Yat\u0131kla\u015ft\u0131r join_nodes = D\u00fc\u011f\u00fcmleri Birle\u015ftir license = Lisans -license_text = FreeMind - Zihin haritalar\u0131 \u00fcretme ve g\u00f6r\u00fcnt\u00fcleme yaz\u0131l\u0131m\u0131\nKopyalama Hakk\u0131 (C) 2000-2008 Joerg Mueller \nAyr\u0131nt\u0131lar i\u00e7in COPYING dosyas\u0131n\u0131 okuyun\n\nBu bir \u00f6zg\u00fcr yaz\u0131l\u0131md\u0131r; bunu GNU Genel Kamu Lisans\u0131'na g\u00f6re istedi\u011finiz gibi da\u011f\u0131t\u0131p de\u011fi\u015ftirebilirsiniz.\n\nBu yaz\u0131l\u0131m faydal\u0131 olaca\u011f\u0131 d\u00fc\u015f\u00fcn\u00fclerek haz\u0131rlanm\u0131\u015ft\u0131r fakat H\u0130\u00c7B\u0130R GARANT\u0130S\u0130 YOKTUR\nBu yaz\u0131l\u0131m GNU lisans\u0131n\u0131n bir kopyas\u0131yla birlikte da\u011f\u0131t\u0131lmal\u0131d\u0131r.\n E\u011fer b\u00f6yle almad\u0131ysan\u0131z l\u00fctfen \u015fu adrese ba\u015fvurun: Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Zihin haritalar\u0131 \u00fcretme ve g\u00f6r\u00fcnt\u00fcleme yaz\u0131l\u0131m\u0131\nKopyalama Hakk\u0131 (C) 2000-2010 Joerg Mueller \nAyr\u0131nt\u0131lar i\u00e7in COPYING dosyas\u0131n\u0131 okuyun\n\nBu bir \u00f6zg\u00fcr yaz\u0131l\u0131md\u0131r; bunu GNU Genel Kamu Lisans\u0131'na g\u00f6re istedi\u011finiz gibi da\u011f\u0131t\u0131p de\u011fi\u015ftirebilirsiniz.\n\nBu yaz\u0131l\u0131m faydal\u0131 olaca\u011f\u0131 d\u00fc\u015f\u00fcn\u00fclerek haz\u0131rlanm\u0131\u015ft\u0131r fakat H\u0130\u00c7B\u0130R GARANT\u0130S\u0130 YOKTUR\nBu yaz\u0131l\u0131m GNU lisans\u0131n\u0131n bir kopyas\u0131yla birlikte da\u011f\u0131t\u0131lmal\u0131d\u0131r.\n E\u011fer b\u00f6yle almad\u0131ysan\u0131z l\u00fctfen \u015fu adrese ba\u015fvurun: Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Do\u011fru locking_failed_by_open = $1 haritas\u0131n\u0131n kilitlenmesi ba\u015far\u0131s\u0131z oldu. Salt okunur olarak a\u00e7\u0131l\u0131yor. locking_failed_by_save_as = $1 haritas\u0131n\u0131n kilitlenmesi ba\u015far\u0131s\u0131z oldu. Farkl\u0131 Kaydetme \u0130ptal Edildi. @@ -609,3 +609,4 @@ OptionPanel.undo_levels=Geri Alma Seviyeleri OptionPanel.undo_levels.tooltip="Geri Al" komutunun ne kadar geri alabilece\u011fini belirler. OptionPanel.lt=Lt +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_uk_UA.properties freemind-0.9.0RC7/Resources_uk_UA.properties --- freemind-0.9.0RC6/Resources_uk_UA.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_uk_UA.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,7 +1,7 @@ # by Serhij Dubyk - dubyk. about = \u041F\u0440\u043E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0443... -#about_text =Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2008 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: -about_text = FreeMind \u0432\u0456\u0434 Joerg Mueller's\ntaking the Concept-mapping approach to Human-computer Interface design.\n\u0410\u0432\u0442\u043E\u0440\u0441\u044C\u043A\u0435 \u043F\u0440\u0430\u0432\u043E (C) 2000-2004 Joerg Mueller \u0442\u0430 \u0456\u043D\u0448\u0456.\n\u0426\u044F \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 - \u0432\u0456\u043B\u044C\u043D\u0435 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043D\u0435 \u0437\u0430\u0431\u0435\u0437\u043F\u0435\u0447\u0435\u043D\u043D\u044F (GPL)\n\u0414\u043E\u043C\u0456\u0432\u043A\u0430: http://freemind.sourceforge.net/\n\u041E\u0442\u0440\u0438\u043C\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u043E\u0432\u043E\u043B\u0435\u043D\u043D\u044F!\n\u0412\u0435\u0440\u0441\u0456\u044F: +#about_text =Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller \nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave Fun!\nVersion: +about_text = FreeMind \u0432\u0456\u0434 Joerg Mueller's\ntaking the Concept-mapping approach to Human-computer Interface design.\n\u0410\u0432\u0442\u043E\u0440\u0441\u044C\u043A\u0435 \u043F\u0440\u0430\u0432\u043E (C) 2000-2010 Joerg Mueller \u0442\u0430 \u0456\u043D\u0448\u0456.\n\u0426\u044F \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 - \u0432\u0456\u043B\u044C\u043D\u0435 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043D\u0435 \u0437\u0430\u0431\u0435\u0437\u043F\u0435\u0447\u0435\u043D\u043D\u044F (GPL)\n\u0414\u043E\u043C\u0456\u0432\u043A\u0430: http://freemind.sourceforge.net/\n\u041E\u0442\u0440\u0438\u043C\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u043E\u0432\u043E\u043B\u0435\u043D\u043D\u044F!\n\u0412\u0435\u0440\u0441\u0456\u044F: antialias_all = \u0417\u0433\u043B\u0430\u0434\u0436\u0443\u0432\u0430\u0442\u0438 \u0443\u0441\u0435 antialias_edges = \u0417\u0433\u043B\u0430\u0434\u0436\u0443\u0432\u0430\u0442\u0438 \u043B\u0456\u043D\u0456\u0457 antialias_none = \u041D\u0456\u0447\u043E\u0433\u043E \u043D\u0435 \u0437\u0433\u043B\u0430\u0434\u0436\u0443\u0432\u0430\u0442\u0438 @@ -92,7 +92,7 @@ italicise_branch = \u0428\u0440\u0438\u0444\u0442 \u0432\u0441\u0456\u0454\u0457 \u0433\u0456\u043B\u043A\u0438 \u043A\u0443\u0440\u0441\u0438\u0432 join_nodes = \u041E\u0431'\u0454\u0434\u043D\u0430\u0442\u0438 \u0432\u0443\u0437\u043B\u0438 license = \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u044F -license_text = Freemind - \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 \u0434\u043B\u044F \u0441\u0442\u0432\u043E\u0440\u0435\u043D\u043D\u044F \u0430\u0441\u043E\u0446\u0456\u0430\u0442\u0438\u0432\u043D\u0438\u0445 \u043A\u0430\u0440\u0442\ncopyright (C) 2000-2008 Joerg Mueller \n\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u0444\u0430\u0439\u043B COPYING \u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u043A\u043B\u0430\u0434\u043D\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457\n\n\u0446\u0435 \u0432\u0456\u043B\u044C\u043D\u0430 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430; \u0432\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u043F\u043E\u0448\u0438\u0440\u044E\u0432\u0430\u0442\u0438 \u0457\u0457 \u0456/\u0430\u0431\u043E\n\u043C\u043E\u0434\u0438\u0444\u0456\u043A\u0443\u0432\u0430\u0442\u0438 \u0457\u0457 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u043E \u0434\u043E \u0423\u043D\u0456\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u043E\u0457 \u0421\u0443\u0441\u043F\u0456\u043B\u044C\u043D\u043E\u0457 \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u0457 Gnu,\n\u043E\u043F\u0443\u0431\u043B\u0456\u043A\u043E\u0432\u0430\u043D\u043E\u0457 \u0424\u043E\u043D\u0434\u043E\u043C \u0412\u0456\u043B\u044C\u043D\u043E\u0433\u043E \u041F\u041E; \u0430\u0431\u043E \u0432\u0435\u0440\u0441\u0456\u0457 2,\n\u0430\u0431\u043E \u0436 (\u0437\u0430 \u0412\u0430\u0448\u0438\u043C \u0432\u0438\u0431\u043E\u0440\u043E\u043C) \u0431\u0443\u0434\u044C-\u044F\u043A\u043E\u0457 \u043F\u0456\u0437\u043D\u0456\u0448\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457.\n\n\u042D\u0442\u0430 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 \u0440\u043E\u0437\u043F\u043E\u0432\u0441\u044E\u0434\u0436\u0443\u0454\u0442\u044C\u0441\u044F \u0432 \u043D\u0430\u0434\u0456\u0457, \u0449\u043E \u0432\u043E\u043D\u0430 \u0431\u0443\u0434\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u043E\u044E,\n\u0430\u043B\u0435 \u0411\u0415\u0417 \u042F\u041A\u0418\u0425-\u041D\u0415\u0411\u0423\u0414\u042C \u0413\u0410\u0420\u0410\u041D\u0422\u0406\u0419; \u043D\u0430\u0432\u0456\u0442\u044C \u0431\u0435\u0437 \u0442\u0438\u0445, \u0449\u043E \u043C\u0430\u044E\u0442\u044C\u0441\u044F \u043D\u0430 \u0443\u0432\u0430\u0437\u0456 \u0433\u0430\u0440\u0430\u043D\u0442\u0456\u0439\n\u043A\u043E\u043C\u0435\u0440\u0446\u0456\u0439\u043D\u043E\u0457 \u0426\u0406\u041D\u041D\u041E\u0421\u0422\u0406 \u0430\u0431\u043E \u041F\u0420\u0418\u0414\u0410\u0422\u041D\u041E\u0421\u0422\u0406 \u0414\u041B\u042F \u041A\u041E\u041D\u041A\u0420\u0415\u0422\u041D\u041E\u0407 \u041C\u0415\u0422\u0418. \u0414\u043B\u044F\n\u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u043A\u043B\u0430\u0434\u043D\u0438\u0445 \u0432\u0456\u0434\u043E\u043C\u043E\u0441\u0442\u0435\u0439 \u0434\u0438\u0432\u0438\u0442\u0435\u0441\u044F \u0423\u043D\u0456\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u0443 \u0421\u0443\u0441\u043F\u0456\u043B\u044C\u043D\u0443 \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u044E GNU.\n\n\u0412\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0431\u0443\u043B\u0438 \u043E\u0442\u0440\u0438\u043C\u0430\u0442\u0438 \u043A\u043E\u043F\u0456\u044E \u0423\u043D\u0456\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u043E\u0457 \u0421\u0443\u0441\u043F\u0456\u043B\u044C\u043D\u043E\u0457 \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u0457 Gnu\n\u0440\u0430\u0437\u043E\u043C \u0437 \u0446\u0456\u0454\u044E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043E\u044E; \u044F\u043A\u0449\u043E \u043D\u0435\u043C\u0430\u0454, \u043D\u0430\u043F\u0438\u0448\u0456\u0442\u044C \u0437\u0430 \u0430\u0434\u0440\u0435\u0441\u043E\u044E: Free Software\nfoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = Freemind - \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 \u0434\u043B\u044F \u0441\u0442\u0432\u043E\u0440\u0435\u043D\u043D\u044F \u0430\u0441\u043E\u0446\u0456\u0430\u0442\u0438\u0432\u043D\u0438\u0445 \u043A\u0430\u0440\u0442\ncopyright (C) 2000-2010 Joerg Mueller \n\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u0444\u0430\u0439\u043B COPYING \u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u043A\u043B\u0430\u0434\u043D\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457\n\n\u0446\u0435 \u0432\u0456\u043B\u044C\u043D\u0430 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430; \u0432\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u043F\u043E\u0432\u0442\u043E\u0440\u043D\u043E \u043F\u043E\u0448\u0438\u0440\u044E\u0432\u0430\u0442\u0438 \u0457\u0457 \u0456/\u0430\u0431\u043E\n\u043C\u043E\u0434\u0438\u0444\u0456\u043A\u0443\u0432\u0430\u0442\u0438 \u0457\u0457 \u0432\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u043E \u0434\u043E \u0423\u043D\u0456\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u043E\u0457 \u0421\u0443\u0441\u043F\u0456\u043B\u044C\u043D\u043E\u0457 \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u0457 Gnu,\n\u043E\u043F\u0443\u0431\u043B\u0456\u043A\u043E\u0432\u0430\u043D\u043E\u0457 \u0424\u043E\u043D\u0434\u043E\u043C \u0412\u0456\u043B\u044C\u043D\u043E\u0433\u043E \u041F\u041E; \u0430\u0431\u043E \u0432\u0435\u0440\u0441\u0456\u0457 2,\n\u0430\u0431\u043E \u0436 (\u0437\u0430 \u0412\u0430\u0448\u0438\u043C \u0432\u0438\u0431\u043E\u0440\u043E\u043C) \u0431\u0443\u0434\u044C-\u044F\u043A\u043E\u0457 \u043F\u0456\u0437\u043D\u0456\u0448\u043E\u0457 \u0432\u0435\u0440\u0441\u0456\u0457.\n\n\u042D\u0442\u0430 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430 \u0440\u043E\u0437\u043F\u043E\u0432\u0441\u044E\u0434\u0436\u0443\u0454\u0442\u044C\u0441\u044F \u0432 \u043D\u0430\u0434\u0456\u0457, \u0449\u043E \u0432\u043E\u043D\u0430 \u0431\u0443\u0434\u0435 \u043A\u043E\u0440\u0438\u0441\u043D\u043E\u044E,\n\u0430\u043B\u0435 \u0411\u0415\u0417 \u042F\u041A\u0418\u0425-\u041D\u0415\u0411\u0423\u0414\u042C \u0413\u0410\u0420\u0410\u041D\u0422\u0406\u0419; \u043D\u0430\u0432\u0456\u0442\u044C \u0431\u0435\u0437 \u0442\u0438\u0445, \u0449\u043E \u043C\u0430\u044E\u0442\u044C\u0441\u044F \u043D\u0430 \u0443\u0432\u0430\u0437\u0456 \u0433\u0430\u0440\u0430\u043D\u0442\u0456\u0439\n\u043A\u043E\u043C\u0435\u0440\u0446\u0456\u0439\u043D\u043E\u0457 \u0426\u0406\u041D\u041D\u041E\u0421\u0422\u0406 \u0430\u0431\u043E \u041F\u0420\u0418\u0414\u0410\u0422\u041D\u041E\u0421\u0422\u0406 \u0414\u041B\u042F \u041A\u041E\u041D\u041A\u0420\u0415\u0422\u041D\u041E\u0407 \u041C\u0415\u0422\u0418. \u0414\u043B\u044F\n\u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u043A\u043B\u0430\u0434\u043D\u0438\u0445 \u0432\u0456\u0434\u043E\u043C\u043E\u0441\u0442\u0435\u0439 \u0434\u0438\u0432\u0438\u0442\u0435\u0441\u044F \u0423\u043D\u0456\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u0443 \u0421\u0443\u0441\u043F\u0456\u043B\u044C\u043D\u0443 \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u044E GNU.\n\n\u0412\u0438 \u043F\u043E\u0432\u0438\u043D\u043D\u0456 \u0431\u0443\u043B\u0438 \u043E\u0442\u0440\u0438\u043C\u0430\u0442\u0438 \u043A\u043E\u043F\u0456\u044E \u0423\u043D\u0456\u0432\u0435\u0440\u0441\u0430\u043B\u044C\u043D\u043E\u0457 \u0421\u0443\u0441\u043F\u0456\u043B\u044C\u043D\u043E\u0457 \u041B\u0456\u0446\u0435\u043D\u0437\u0456\u0457 Gnu\n\u0440\u0430\u0437\u043E\u043C \u0437 \u0446\u0456\u0454\u044E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043E\u044E; \u044F\u043A\u0449\u043E \u043D\u0435\u043C\u0430\u0454, \u043D\u0430\u043F\u0438\u0448\u0456\u0442\u044C \u0437\u0430 \u0430\u0434\u0440\u0435\u0441\u043E\u044E: Free Software\nfoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = \u041F\u0440\u044F\u043C\u0430 locking_failed_by_open = \u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442 $1 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u0456\u043D\u0448\u043E\u044E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043E\u044E \u0456 \u0432\u0456\u0434\u043A\u0440\u0438\u0432\u0430\u0454\u0442\u044C\u0441\u044F \u0442\u0456\u043B\u044C\u043A\u0438 \u0434\u043B\u044F \u0447\u0438\u0442\u0430\u043D\u043D\u044F locking_failed_by_save_as = \u0414\u043E\u043A\u0443\u043C\u0435\u043D\u0442 $1 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0454\u0442\u044C\u0441\u044F \u0456\u043D\u0448\u043E\u044E \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u043E\u044E \u0456 \u043D\u0435 \u043C\u043E\u0436\u0435 \u0431\u0443\u0442\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0438\u0439. @@ -643,4 +643,4 @@ # fc, 13.8.2005 OptionPanel.lt=Lt -OptionPanel.uk_UA=uk_UA \ No newline at end of file +OptionPanel.uk_UA=uk_UAOptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_vi.properties freemind-0.9.0RC7/Resources_vi.properties --- freemind-0.9.0RC6/Resources_vi.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_vi.properties 2010-02-27 21:48:00.000000000 +0000 @@ -1,7 +1,7 @@ about = Gi\u1EDBi thi\u1EC7u # Submitted: Nguyen Dinh Trung ( dinhtrung ) - 2008-09-11 04:50 add=&Th\u00EAm -about_text = FreeMind - ph\u1EA7n m\u1EC1m t\u01B0 do \u0111\u1EC3 v\u1EBD s\u01A1 \u0111\u1ED3 t\u01B0 duy v\u00E0 x\u00E2y d\u1EF1ng ki\u1EBFn th\u1EE9c\nB\u1EA3n quy\u1EC1n \u00A9 2000-2006 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, v\u00E0 m\u1ED9t v\u00E0i ng\u01B0\u1EDDi kh\u00E1c.\nCh\u01B0\u01A1ng tr\u00ECnh n\u00E0y l\u00E0 m\u1ED9t ph\u1EA7n m\u1EC1m t\u1EF1 do theo gi\u1EA5y ph\u00E9p GNU General Public Licence.\n\nTrang ch\u1EE7: http://freemind.sourceforge.net/\nPhi\u00EAn b\u1EA3n: +about_text = FreeMind - ph\u1EA7n m\u1EC1m t\u01B0 do \u0111\u1EC3 v\u1EBD s\u01A1 \u0111\u1ED3 t\u01B0 duy v\u00E0 x\u00E2y d\u1EF1ng ki\u1EBFn th\u1EE9c\nB\u1EA3n quy\u1EC1n \u00A9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, v\u00E0 m\u1ED9t v\u00E0i ng\u01B0\u1EDDi kh\u00E1c.\nCh\u01B0\u01A1ng tr\u00ECnh n\u00E0y l\u00E0 m\u1ED9t ph\u1EA7n m\u1EC1m t\u1EF1 do theo gi\u1EA5y ph\u00E9p GNU General Public Licence.\n\nTrang ch\u1EE7: http://freemind.sourceforge.net/\nPhi\u00EAn b\u1EA3n: antialias_all = L\u00E0m tr\u01A1n t\u1EA5t c\u1EA3 antialias_edges = L\u00E0m tr\u01A1n \u0111\u01B0\u1EDDng n\u1ED1i antialias_none = Kh\u00F4ng l\u00E0m tr\u01A1n @@ -94,7 +94,7 @@ italicise_branch = Ch\u1EEF nghi\u00EAng join_nodes = Gh\u00E9p c\u00E1c n\u00FAt l\u1EA1i license = Gi\u1EA5y ph\u00E9p -license_text = FreeMind - Ph\u1EA7n m\u1EC1m \u0111\u1EC3 t\u1EA1o v\u00E0 xem s\u01A1 \u0111\u1ED3 t\u01B0 duy\nB\u1EA3n quy\u1EC1n (C) 2000-2001 Joerg Mueller \nXem COPYING \u0111\u1EC3 bi\u1EBFt th\u00EAm\n\n\u0110\u00E2y l\u00E0 m\u1ED9t ph\u1EA7n m\u1EC1m t\u1EF1 do; b\u1EA1n c\u00F3 th\u1EC3 ph\u00E2n ph\u1ED1i l\u1EA1i v\u00E0/ho\u1EB7c\ns\u1EEDa \u0111\u1ED5i n\u00F3 theo c\u00E1c \u0111i\u1EC1u kho\u1EA3n c\u1EE7a gi\u1EA5y ph\u00E9p GNU General Public License\ndo Free Software Foundation ph\u00E1t h\u00E0nh; phi\u00EAn b\u1EA3n 2\ntr\u1EDF l\u00EAn.\n\nPh\u1EA7n m\u1EC1m n\u00E0y \u0111\u01B0\u1EE3c ph\u00E2n ph\u1ED1i v\u1EDBi hy v\u1ECDng r\u1EB1ng n\u00F3 s\u1EBD h\u1EEFu \u00EDch,\nnh\u01B0ng KH\u00D4NG \u0110\u01AF\u1ED8C \u0110\u1EA2M B\u1EA2O; k\u1EC3 c\u1EA3 v\u1EC1 m\u1EB7t S\u1EEC D\u1EE4NG hay \nPH\u00D9 H\u1ED8P V\u1EDAI M\u1ED8T M\u1EE4C \u0110\u00CDCH N\u00C0O \u0110\u00D3. Xem\nGNU General Public License \u0111\u1EC3 bi\u1EBFt th\u00EAm.\n\nCh\u01B0\u01A1ng tr\u00ECnh n\u00E0y \u0111i k\u00E8m v\u1EDBi m\u1ED9t b\u1EA3n sao c\u1EE7a gi\u1EA5y ph\u00E9p GNU General Public License\nN\u1EBFu kh\u00F4ng c\u00F3, xin h\u00E3y g\u1EEDi th\u00F4ng b\u00E1o t\u1EDBi Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - Ph\u1EA7n m\u1EC1m \u0111\u1EC3 t\u1EA1o v\u00E0 xem s\u01A1 \u0111\u1ED3 t\u01B0 duy\nB\u1EA3n quy\u1EC1n (C) 2000-2010 Joerg Mueller \nXem COPYING \u0111\u1EC3 bi\u1EBFt th\u00EAm\n\n\u0110\u00E2y l\u00E0 m\u1ED9t ph\u1EA7n m\u1EC1m t\u1EF1 do; b\u1EA1n c\u00F3 th\u1EC3 ph\u00E2n ph\u1ED1i l\u1EA1i v\u00E0/ho\u1EB7c\ns\u1EEDa \u0111\u1ED5i n\u00F3 theo c\u00E1c \u0111i\u1EC1u kho\u1EA3n c\u1EE7a gi\u1EA5y ph\u00E9p GNU General Public License\ndo Free Software Foundation ph\u00E1t h\u00E0nh; phi\u00EAn b\u1EA3n 2\ntr\u1EDF l\u00EAn.\n\nPh\u1EA7n m\u1EC1m n\u00E0y \u0111\u01B0\u1EE3c ph\u00E2n ph\u1ED1i v\u1EDBi hy v\u1ECDng r\u1EB1ng n\u00F3 s\u1EBD h\u1EEFu \u00EDch,\nnh\u01B0ng KH\u00D4NG \u0110\u01AF\u1ED8C \u0110\u1EA2M B\u1EA2O; k\u1EC3 c\u1EA3 v\u1EC1 m\u1EB7t S\u1EEC D\u1EE4NG hay \nPH\u00D9 H\u1ED8P V\u1EDAI M\u1ED8T M\u1EE4C \u0110\u00CDCH N\u00C0O \u0110\u00D3. Xem\nGNU General Public License \u0111\u1EC3 bi\u1EBFt th\u00EAm.\n\nCh\u01B0\u01A1ng tr\u00ECnh n\u00E0y \u0111i k\u00E8m v\u1EDBi m\u1ED9t b\u1EA3n sao c\u1EE7a gi\u1EA5y ph\u00E9p GNU General Public License\nN\u1EBFu kh\u00F4ng c\u00F3, xin h\u00E3y g\u1EEDi th\u00F4ng b\u00E1o t\u1EDBi Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = Th\u1EB3ng load = &M\u1EDF locking_failed_by_open = Kh\u00F4ng kho\u00E1 \u0111\u01B0\u1EE3c s\u01A1 \u0111\u1ED3 $1. \u0110ang m\u1EDF \u1EDF ch\u1EBF \u0111\u1ED9 ch\u1EC9 \u0111\u1ECDc. @@ -1418,3 +1418,5 @@ +really_convert_to_current_version2=S\u01a1 \u0111\u1ed3 t\u01b0 duy m\u00e0 b\u1ea1n \u0111ang mu\u1ed1n m\u1edf c\u00f3 \u0111\u1ecbnh d\u1ea1ng c\u0169, \u0111\u00e3 l\u1ed7i th\u1eddi, m\u00e0 ch\u1ec9 c\u00e1c phi\u00ean b\u1ea3n tr\u01b0\u1edbc \u0111\u00e2y s\u1eed d\u1ee5ng.
FreeMind s\u1ebd chuy\u1ec3n s\u01a1 \u0111\u1ed3 n\u00e0y sang \u0111\u1ecbnh d\u1ea1ng m\u1edbi m\u00e0 phi\u00ean b\u1ea3n n\u00e0y s\u1eed d\u1ee5ng.
L\u01b0u \u00fd l\u00e0 c\u00e1c phi\u00ean b\u1ea3n FreeMind c\u0169 s\u1ebd kh\u00f4ng \u0111\u1ecdc \u0111\u01b0\u1ee3c t\u1eadp tin \u0111\u01b0\u1ee3c l\u01b0u v\u1edbi \u0111\u1ecbnh d\u1ea1ng m\u1edbi n\u00e0y.
B\u1ea1n c\u00f3 mu\u1ed1n FreeMind \u0111\u1ecbnh d\u1ea1ng l\u1ea1i, r\u1ed3i m\u1edf s\u01a1 \u0111\u1ed3 t\u01b0 duy n\u00e0y n\u1eefa kh\u00f4ng? +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_zh_CN.properties freemind-0.9.0RC7/Resources_zh_CN.properties --- freemind-0.9.0RC6/Resources_zh_CN.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_zh_CN.properties 2010-02-27 21:48:00.000000000 +0000 @@ -6,7 +6,7 @@ about = \u5173\u4e8e add=\u6dfb\u52a0(&A) -about_text = FreeMind - \u514d\u8d39\u7684\u601d\u7ef4\u5bfc\u56fe\u548c\u77e5\u8bc6\u521b\u5efa\u8f6f\u4ef6\nCopyright \u00a9 2000-2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: +about_text = FreeMind - \u514d\u8d39\u7684\u601d\u7ef4\u5bfc\u56fe\u548c\u77e5\u8bc6\u521b\u5efa\u8f6f\u4ef6\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev, and others.\nThis program is free software, licenced under GNU General Public Licence.\n\nHome: http://freemind.sourceforge.net/\nVersion: antialias_all = \u5e73\u6ed1\u5168\u90e8 antialias_edges = \u5e73\u6ed1\u8fde\u7ebf antialias_none = \u4e0d\u5e73\u6ed1 @@ -97,7 +97,7 @@ italicise_branch = \u659c\u4f53\u5316\u5206\u679d join_nodes = \u5408\u5e76\u8282\u70b9 license = \u8bb8\u53ef -license_text = FreeMind - \u601d\u7ef4\u5bfc\u56fe(Mindmap)\u521b\u5efa\u53ca\u67e5\u770b\u7a0b\u5e8f\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - \u601d\u7ef4\u5bfc\u56fe(Mindmap)\u521b\u5efa\u53ca\u67e5\u770b\u7a0b\u5e8f\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = \u76f4\u7ebf load = \u52a0\u8f7d(&L) locking_failed_by_open = \u601d\u7ef4\u5bfc\u56fe $1 \u52a0\u9501\u5931\u8d25. \u4ee5\u53ea\u8bfb\u65b9\u5f0f\u6253\u5f00. @@ -1365,3 +1365,4 @@ mode_title =FreeMind - {0} \u6a21\u5f0f OptionPanel.defaultfontsize.tooltip=\u65b0\u8282\u70b9\u7684\u7f3a\u7701\u5b57\u4f53\u5927\u5c0f OptionPanel.ro=\u7f57\u9a6c\u5c3c\u4e9a +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/Resources_zh_TW.properties freemind-0.9.0RC7/Resources_zh_TW.properties --- freemind-0.9.0RC6/Resources_zh_TW.properties 2009-06-24 21:40:19.000000000 +0100 +++ freemind-0.9.0RC7/Resources_zh_TW.properties 2010-02-27 21:48:00.000000000 +0000 @@ -5,7 +5,7 @@ about = \u95dc\u65bc add=\u65b0\u589e -about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2008 Joerg Mueller and others.\nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave fun!\n\u9673\u4fca\u5b89\u4e2d\u6587\u5316(http://blog.fromtw.com)(willyann@gmail.com)\nVersion: +about_text = Joerg Mueller's FreeMind\nTaking the Concept-Mapping approach to Human-Computer Interface design.\nCopyright (C) 2000-2010 Joerg Mueller and others.\nThis program is free software (GPL)\nHome: http://freemind.sourceforge.net/\nHave fun!\n\u9673\u4fca\u5b89\u4e2d\u6587\u5316(http://blog.fromtw.com)(willyann@gmail.com)\nVersion: antialias_all = \u9664\u53bb\u6240\u6709\u92f8\u9f52\u908a antialias_edges = \u9664\u53bb\u92f8\u9f52\u908a antialias_none = \u4e0d\u9664\u53bb\u92f8\u9f52\u908a @@ -50,23 +50,21 @@ find_what = \u5c0b\u627e find_next = \u5c0b\u627e\u4e0b\u4e00\u500b fold = \u647a\u758a -# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above -follow_link = \u958b\u555f\u8d85\u9023\u7d50: font = \u5b57\u578b fork = \u7bc0\u9ede\u5916\u89c0\u6539\u6210\u5e95\u7dda help = \u652f\u63f4 html_export_based_on_headings = \u8a2d\u5b9a\u5982\u4f55\u8f38\u51faMLHTML Export - Based on headings -html_export_no_folding = HTML Export - No folding -html_export_fold_currently_folded = HTML Export - Fold currently folded -html_export_fold_all = HTML Export - Fold All +html_export_no_folding =\u8f38\u51fa\u6210HTML\u6a94(\u4e0d\u5c55\u958b\u7bc0\u9ede) +html_export_fold_currently_folded =\u8f38\u51fa\u6210HTML\u6a94(\u5c55\u958b\u76ee\u524d\u7bc0\u9ede) +html_export_fold_all =\u8f38\u51fa\u6210HTML\u6a94(\u5c55\u958b\u5168\u90e8) # Daniel Polansky: This way of maintaining icon text # will ultimately lead to unbearable overheads. icon_menu = \u5c0f\u5716\u793a icon_help = \u554f\u984c\u9ede icon_messagebox_warning = \u91cd\u8981 icon_idea = \u5275\u610f -icon_button_ok =\u78ba\u5b9a -icon_button_cancel =\u53d6\u6d88 +icon_button_ok = \u78ba\u5b9a +icon_button_cancel = \u53d6\u6d88 icon_back = \u8fd4\u56de icon_forward = \u5f80\u524d icon_attach = \u6709\u9644\u4ef6! @@ -99,7 +97,7 @@ italicise_branch = \u659c\u7dda join_nodes = \u5408\u4f75\u7bc0\u9ede license = \u6388\u6b0a -license_text = FreeMind - \u5fc3\u667a\u5716\u7de8\u8f2f\u8edf\u9ad4\nCopyright (C) 2000-2008 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +license_text = FreeMind - \u5fc3\u667a\u5716\u7de8\u8f2f\u8edf\u9ad4\nCopyright (C) 2000-2010 Joerg Mueller \nSee COPYING for Details\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. linear = \u76f4\u7dda load =\u8f09\u5165 locking_failed_by_open =\u6a94\u6848 $1 \u70ba\u552f\u8b80\u72c0\u614b(\u7121\u6cd5\u9396\u5b9a). @@ -112,7 +110,7 @@ mindmap = \u5fc3\u667a\u5716 mindmaps = \u5fc3\u667a\u5716 mindmaps_desc = \u5fc3\u667a\u5716 (*.mm) -mindmaps_filter_desc =Filters(*.mmfilter) +mindmaps_filter_desc =\u904e\u6ffe\u6a94(*.mmfilter) mode_na = \u7d50\u9ede\u4e0d\u5b58\u5728 modes = \u5207\u63db\u6a21\u5f0f move_to_root = \u79fb\u5230\u4e3b\u7bc0\u9ede @@ -136,8 +134,8 @@ normal = \u4e00\u822c no_found_from = No "$1" found from "$2". no_more_found_from = No more "$1" found from "$2". -no_previous_find = No previous find. -not_saved_for_link_error = The map must be saved before you can set a link by file chooser +no_previous_find =\u627e\u4e0d\u5230 +not_saved_for_link_error =\u5728\u8a2d\u5b9a\u9023\u7d50\u4e4b\u524d, \u6b64\u5716\u9700\u5148\u5b58\u6a94. open = \u958b\u555f... page = \u8a2d\u5b9a\u5217\u5370\u683c\u5f0f... paste = \u8cbc\u4e0a @@ -177,7 +175,6 @@ underline = \u5e95\u7dda unfold = \u5c55\u958b url_error = URL\u683c\u5f0f\u932f\u8aa4! -url_load_error = \u4e0d\u80fd\u8b80\u53d6\u8a72URL\u7684\u5fc3\u667a\u5716: width = \u5bec\u5ea6 yes = \u662f zoom_in = \u653e\u5927 @@ -189,7 +186,7 @@ arrow_link_color =\u6539\u8b8a\u9023\u7d50\u984f\u8272 # \u79fb\u9664 follow_link = \u524d\u5f80: user_defined_zoom = \u500b\u4eba\u5316\u8a2d\u5b9a. -user_defined_zoom_status_bar = Changing the zoom to the user defined zoom value of {0}%. +user_defined_zoom_status_bar = \u66f4\u6539\u4f7f\u7528\u8005\u5b9a\u7fa9\u7684\u7e2e\u653e\u6bd4 {0}%. # new from 14.12.2003, fc FAQ = \u5e38\u898b\u554f\u984c\u89e3\u7b54 webDocu =\u7db2\u9801\u6587\u4ef6 @@ -252,13 +249,13 @@ accessories/plugins/AutomaticLayout.properties_name =\u81ea\u52d5\u6392\u7248 accessories/plugins/BlinkingNodeHook.properties_documentation =\u9019\u6703\u8b93\u7bc0\u9ede\u9583\u720d, \u8acb\u5c0f\u5fc3 accessories/plugins/BlinkingNodeHook.properties_name =\u9583\u720d\u7bc0\u9ede -accessories/plugins/CreationModificationPlugin.properties_documentation=This is a jython plugin that keeps track of node creation and modification times. +accessories/plugins/CreationModificationPlugin.properties_documentation=\u6b64\u529f\u80fd\u8ffd\u8e64\u7bc0\u9ede\u7684\u4fee\u6539\u6642\u9593. accessories/plugins/CreationModificationPlugin.properties_name =\u986f\u793a\u4fee\u6539\u7684\u6642\u9593 accessories/plugins/ExportToImage_PNG.properties_documentation =\u5c07\u8a72\u7bc0\u9ede\u8f49\u6210PNG\u6a94 accessories/plugins/ExportToImage_PNG.properties_name =\u8f49\u6210 PNG ... accessories/plugins/ExportToImage_JPEG.properties_documentation =\u5c07\u8a72\u7bc0\u9ede\u8f49\u6210JPEG\u6a94 accessories/plugins/ExportToImage_JPEG.properties_name =\u8f49JPEG... -accessories/plugins/ExportWithXSLT.properties_documentation = This is an uniform export method using XSLT scripts. +accessories/plugins/ExportWithXSLT.properties_documentation =\u4f7f\u7528XSLT\u7bc4\u672c\u7684\u6a19\u6e96\u8f38\u51fa\u65b9\u5f0f. accessories/plugins/ExportWithXSLT.properties_name =\u4f7f\u7528 XSLT ... accessories/plugins/ExportWithXSLT_HTML.properties_name =\u8f49\u6210 XHTML(javaSrcipt) accessories/plugins/ExportWithXSLT_HTML3.properties_name =\u8f49\u6210XHTML(Clickable map) @@ -269,13 +266,21 @@ accessories/plugins/FormatCopy.properties_name =\u8907\u88fd\u683c\u5f0f accessories/plugins/FormatPaste.properties_documentation =\u8cbc\u4e0a\u7bc0\u9ede\u683c\u5f0f accessories/plugins/FormatPaste.properties_name =\u8cbc\u4e0a\u7bc0\u9ede\u683c\u5f0f +accessories/plugins/FormularEditor.properties_documentation = Associates a simple formular editor to the current note. +accessories/plugins/FormularEditor.properties_name = Formular Editor +accessories/plugins/IconSelectionPlugin.properties_documentation = Here you can select an icon using a subwindow. accessories/plugins/IconSelectionPlugin.properties_name =\u9078\u64c7\u5716\u793a... +accessories/plugins/NewParentNode.properties_documentation = \u6240\u6709\u9078\u5230\u7684\u7bc0\u9ede\u5c07\u8a2d\u5b9a\u65b0\u7684\u7236\u7bc0\u9ede +accessories/plugins/NewParentNode.properties_name =\u65b0\u589e\u7236\u7bc0\u9ede +accessories/plugins/NodeNote.properties_documentation = Associates a simple note editor to the current note. accessories/plugins/NodeNote.properties_name =\u8a3b\u89e3 +accessories/plugins/PMCalculation.properties_documentation = Calculates the efforts for different tasks. +accessories/plugins/PMCalculation.properties_name = PMCalculation accessories/plugins/RemoveNote.properties_documentation = \u79fb\u9664\u7684\u8a3b\u89e3\u53ef\u80fd\u4e5f\u5305\u542b\u5f88\u591a\u8a3b\u89e3. accessories/plugins/RemoveNote.properties_name =\u79fb\u9664\u8a3b\u89e3 accessories/plugins/RevisionPlugin.properties_documentation =\u5c07\u6240\u6709\u8b8a\u66f4\u904e\u7684\u7bc0\u9ede\u6a19\u793a\u51fa\u4f86 accessories/plugins/RevisionPlugin.properties_name =\u986f\u793a\u7248\u672c(\u9ec3\u8272) -accessories/plugins/SplitNode.properties_documentation =\u7bc0\u9ede\u5df2\u5207\u5272\u5b8c\u7562 +accessories/plugins/SplitNode.properties_documentation =\u7bc0\u9ede\u5c07\u88ab\u5207\u5272\u6210\u591a\u7bc0\u9ede accessories/plugins/SplitNode.properties_name =\u5207\u5272\u7bc0\u9ede(\u7bc0\u9ede\u5167\u5bb9\u5fc5\u9808\u5169\u884c\u4ee5\u4e0a) accessories/plugins/UnfoldAll.properties_documentation =\u5c55\u958b\u8a72\u7bc0\u9ede(\u4ee5\u53ca\u8a72\u7bc0\u9ede\u4e4b\u5f8c\u6240\u6709) accessories/plugins/UnfoldAll.properties_name =\u5c55\u958b @@ -303,7 +308,7 @@ accessories/plugins/EncryptNode.properties_2 = \u8f38\u5165\u5bc6\u78bc: accessories/plugins/EncryptNode.properties_3 = \u518d\u8f38\u5165\u4e00\u6b21: accessories/plugins/EncryptNode.properties_4 = \u8f38\u5165\u5bc6\u78bc. -accessories/plugins/EncryptNode.properties_5 = Remember, that the strength of the encryption
depends nearly completely on the quality of your password. +accessories/plugins/EncryptNode.properties_5 = \u63d0\u9192\u60a8, \u52a0\u5bc6\u7684\u5f37\u5ea6
\u53d6\u6c7a\u65bc\u60a8\u5bc6\u78bc\u7684\u54c1\u8cea. accessories/plugins/EncryptNode.properties_6 =\u78ba\u5b9a accessories/plugins/EncryptNode.properties_7 =\u53d6\u6d88 accessories/plugins/EncryptNode.properties_wrong_password = \u5bc6\u78bc\u932f\u8aa4. @@ -314,7 +319,7 @@ # fc, 2.2.05: selection_method_delayed=\u9078\u53d6\u6a21\u5f0f\u6539\u6210\u6ed1\u9f20\u6307\u6a19(\u4f46\u6703\u5ef6\u9072\u4e00\u4e0b\u624d\u9078\u64c7\u7bc0\u9ede) # fc, 4.2.05: -plugins/TimeManagement.xml_documentation=Shows the calendar module by Kai Toedter. +plugins/TimeManagement.xml_documentation=\u986f\u793a\u51faKai Toedter\u958b\u767c\u51fa\u4f86\u7684\u65e5\u66c6\u6a21\u7d44. plugins/TimeManagement.xml_name= \u986f\u793a\u65e5\u66c6... plugins/TimeManagement.xml_appendButton= \u52a0\u4e0a\u65e5\u671f plugins/TimeManagement.xml_reminderButton= \u6b64\u65e5\u671f\u5230\u7684\u6642\u5019\u63d0\u9192\u6211 @@ -333,8 +338,8 @@ plugins/latex/LatexNodeHook.properties_name =Latex plugins/latex/LatexNodeHook.editorTitle =\u7de8\u8f2f\u8996\u7a97(\u95dc\u9589\u7acb\u5373\u5132\u5b58) # fc, 18.2.2005: -accessories/plugins/HierarchicalIcons.properties_documentation=If one of the (grand)children of me has an icon, I will show this icon in little format, too. -accessories/plugins/HierarchicalIcons.properties_name=\u5c07\u5b50\u7d50\u9ede\u6240\u6709\u7684ICON,\u5728\u4e3b\u7bc0\u9ede\u986f\u793a\u51fa\u4f86 +accessories/plugins/HierarchicalIcons.properties_documentation=\u5047\u5982\u5b50\u7bc0\u9ede\u6709\u8a2d\u5b9a\u5716\u793a,\u6211\u5c07\u986f\u793a\u51fa\u4f86. +accessories/plugins/HierarchicalIcons.properties_name=\u5c07\u5b50\u7bc0\u9ede\u6240\u6709\u7684ICON,\u5728\u4e3b\u7bc0\u9ede\u986f\u793a\u51fa\u4f86 # fc, 1.3.2005: icon_full-1 = \u7b2c\u4e00\u6b65 icon_full-2 = \u7b2c\u4e8c\u6b65 @@ -367,7 +372,7 @@ plugins/RemoveReminder.xml_documentation=\u79fb\u9664\u7bc0\u9ede\u6240\u8a2d\u5b9a\u7684\u63d0\u9192\u8a2d\u5b9a plugins/RemoveReminder.xml_name=\u79fb\u9664\u63d0\u9192\u529f\u80fd # fc, 3.5.2005: -plugins/TimeManagement.xml_reminderButton_tooltip=When pressed a timer is scheduled to the date given. Then blinking icons calls your attention.
If you close the map, the timers are reactivated the next time, the map is opened. +plugins/TimeManagement.xml_reminderButton_tooltip=\u7576\u9019\u500b\u65e5\u671f\u5230\u7684\u6642\u5019,\u5c07\u6703\u51fa\u73fe\u4e00\u500b\u9583\u720d\u7684\u5716\u793a\u5f15\u8d77\u4f60\u7684\u6ce8\u610f.
\u4e0b\u6b21\u958b\u555f\u6b64\u5fc3\u667a\u5716\u6642,\u9084\u662f\u6703\u51fa\u73fe. filter_toolbar=\u904e\u6ffe\u529f\u80fd filter_dialog=\u904e\u6ffe\u7de8\u8f2f\u5668 filter_no_filtering=\u6c92\u6709\u904e\u6ffe\u689d\u4ef6 @@ -400,6 +405,8 @@ attribute_delete_value=\u522a\u9664\u5c6c\u6027 attributes_edit=\u7de8\u8f2f attributes_edit_in_place=\u7de8\u8f2f\u5c6c\u6027 +attributes_edit_tooltip=Edit Set +attribute_font_size_tooltip=Attribute Font Size attributes_dialog=\u5c6c\u6027\u7ba1\u7406\u5e2b attributes_dialog_title=\u5c6c\u6027\u7ba1\u7406\u5e2b attributes_import=\u532f\u5165 @@ -429,6 +436,7 @@ attributes_show_all =\u986f\u793a\u6240\u6709\u7684\u5c6c\u6027 attributes_show_selected =\u986f\u793a\u5c6c\u6027 attributes_hide_all =\u96b1\u85cf\u5c6c\u6027 +attribute_top=All known Attributes for the loaded Maps attributes_skip_root=\u8df3\u904e\u4e3b\u7bc0\u9ede attributes_no_import_candidates_found=\u6c92\u6709\u65b0\u7684\u5c6c\u6027 attributes_adding_empty_attribute_error=\u5c6c\u6027\u540d\u7a31\u4e0d\u80fd\u662f\u7a7a\u5b57\u4e32 @@ -438,13 +446,13 @@ OptionPanel.de=\u5fb7\u6587 OptionPanel.dk=\u4e39\u9ea5 OptionPanel.en=\u82f1\u6587 -OptionPanel.es=Es +OptionPanel.es=\u897f\u73ed\u7259 OptionPanel.fr=\u6cd5\u6587 OptionPanel.gl=\u683c\u9675\u862d OptionPanel.hu=\u5308\u7259\u5229 OptionPanel.it=\u7fa9\u5927\u5229 OptionPanel.ja=\u65e5\u6587 -OptionPanel.ko=\u97d3\u6587 +OptionPanel.ko=\u97d3\u570b OptionPanel.nl=\u5c3c\u52a0\u62c9\u74dc OptionPanel.pl=Pl OptionPanel.pt_BR=\u5df4\u897f @@ -479,11 +487,11 @@ OptionPanel.Environment=\u74b0\u5883\u8a2d\u5b9a OptionPanel.Files=\u6a94\u6848 OptionPanel.language=\u8a9e\u7cfb -OptionPanel.language.tooltip=This is the language that should be used in the program. 'automatic' tries to load the current user's language. +OptionPanel.language.tooltip=\u9019\u662f\u7a0b\u5f0f\u4f7f\u7528\u7684\u9810\u8a2d\u8a9e\u8a00. "\u81ea\u52d5\u5075\u6e2c"\u5617\u8a66\u8f09\u5165\u76ee\u524d\u4f7f\u7528\u8005\u7684\u8a9e\u7cfb . OptionPanel.experimental_file_locking_on=\u5be6\u9a57\u6027\u5c07\u6a94\u6848\u9396\u4f4f OptionPanel.experimental_file_locking_on.tooltip= Experimental feature OptionPanel.draganddrop=\u62d6\u66f3\u529f\u80fd -OptionPanel.draganddrop.tooltip=If dnd is enabled. +OptionPanel.draganddrop.tooltip=\u662f\u5426\u555f\u7528\u62d6\u66f3\u529f\u80fd OptionPanel.userproperties=\u4f7f\u7528\u8005\u8a2d\u5b9a\u6a94 OptionPanel.patternsfile=\u6a23\u677f\u6a94\u6848 OptionPanel.docmapurl_since_version_0_7_0=\u6559\u5b78\u6587\u4ef6\u6a94 @@ -632,11 +640,11 @@ OptionPanel.keystroke_apply_pattern_18=\u6a23\u677f18 OptionPanel.Behaviour=\u7de8\u8f2f\u884c\u70ba\u8a2d\u5b9a OptionPanel.placenewbranches=\u65b0\u7bc0\u9ede\u653e\u7f6e\u8655 -OptionPanel.placenewbranches.tooltip=Where to place new branches. Valid values are 'first' and 'last' -OptionPanel.disable_cursor_move_paper=Disable Cursor Move Paper -OptionPanel.disable_cursor_move_paper.tooltip=Don't display 'move' cursor during paper dragging +OptionPanel.placenewbranches.tooltip=\u78ba\u8a8d\u65b0\u7bc0\u9ede\u5c07\u7522\u751f\u5728\u5f8c\u9762\u9084\u662f\u524d\u9762 +OptionPanel.disable_cursor_move_paper=\u53d6\u6d88"\u79fb\u52d5"\u6e38\u6a19 +OptionPanel.disable_cursor_move_paper.tooltip=\u7576\u62d6\u66f3\u6642,\u4e0d\u986f\u793a\u51fa"\u79fb\u52d5"\u7684\u5716\u793a OptionPanel.enable_leaves_folding=Enable Leaves Folding -OptionPanel.enable_leaves_folding.tooltip=Enable leaves folding == changing bubble/fork for fold action (although if false, you can always use node style to change it) +OptionPanel.enable_leaves_folding.tooltip= changing bubble/fork for fold action (although if false, you can always use node style to change it) OptionPanel.foldingsymbolwidth=\u7bc0\u9ede\u647a\u758a\u7b26\u865f\u5bec\u5ea6 OptionPanel.foldingsymbolwidth.tooltip=Width of the folding marking circle OptionPanel.disable_key_type=Disable Key Type @@ -703,14 +711,16 @@ OptionPanel.keystroke_show_attribute_manager=\u986f\u793a\u5c6c\u6027\u7ba1\u7406\u54e1 OptionPanel.keystroke_assign_attributes=\u6307\u5b9a\u5c6c\u6027 ... # fc, 2.6.2005: -OptionPanel.antialias.tooltip=Determines the quality of the map. More antialias needs more time. +OptionPanel.antialias.tooltip=\u6b64\u52d5\u4f5c\u5c07\u6c7a\u5b9a\u5fc3\u667a\u5716\u7684\u6548\u7387.\u5927\u91cf\u7684\u53bb\u92f8\u9f52\u52d5\u4f5c\u9700\u8981\u82b1\u66f4\u591a\u6642\u9593. OptionPanel.antialias=\u53bb\u92f8\u9f52 OptionPanel.antialias_edges=\u5c07\u9023\u7d50\u7dda\u53bb\u92f8\u9f52 OptionPanel.antialias_all=\u5168\u90e8\u53bb\u92f8\u9f52 OptionPanel.antialias_none=\u4e0d\u53bb\u92f8\u9f52 -OptionPanel.cs=Cs +OptionPanel.cs=\u6377\u514b OptionPanel.nb=Nb -OptionPanel.ColorProperty.ResetColor=Reset Color +# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above +follow_link = \u958b\u555f\u8d85\u9023\u7d50: +OptionPanel.ColorProperty.ResetColor=\u91cd\u65b0\u8a2d\u5b9a\u984f\u8272 # fc, 16.6.2005: OptionPanel.keystroke_option_dialog=\u500b\u4eba\u5316\u8a2d\u5b9a format_menu_edge_styles=\u9023\u7d50\u7dda\u6a23\u5f0f @@ -718,19 +728,19 @@ # fc, 3.7.2005: accessories/plugins/ImportMindmanagerFiles.properties_name=MindManager X5... # fc, 5.7.2005: -accessories/plugins/ExportToOoWriter.properties_documentation=Unfolded nodes form the structure, folded nodes the content of the document. +accessories/plugins/ExportToOoWriter.properties_documentation=The visible structure (ie. all unfolded nodes) build up the chapter structure of the document.
The hidden nodes (ie. the folded nodes) are put inside these chapters as lists or paragraphs. accessories/plugins/ExportToOoWriter.properties_name= \u532f\u51fa\u6210Open Office \u6587\u4ef6 # fc, 10.7.2005: OptionPanel.separator.undo=\u56de\u5fa9 OptionPanel.undo_levels=\u56de\u5fa9\u6b21\u6578 OptionPanel.undo_levels.tooltip=\u6c7a\u5b9a\u5132\u5b58\u591a\u5c11\u56de\u5fa9\u6b21\u6578. -OptionPanel.lt=Lt +OptionPanel.lt=\u7acb\u9676\u5b9b browsemode_initial_map =./doc/freemind.mm link_not_found =\u627e\u4e0d\u5230 $1 \u9023\u7d50 icon_smily_bad =\u4e0d\u6109\u5feb -OptionPanel.hr=Hr +OptionPanel.hr=\u514b\u7f85\u5730\u4e9e OptionPanel.nn=Nn -OptionPanel.se=Se +OptionPanel.se=\u745e\u5178 OptionPanel.unfold_on_paste=\u8cbc\u4e0a\u7684\u6642\u5019\u5c55\u958b\u7bc0\u9ede OptionPanel.unfold_on_paste.tooltip=\u8cbc\u4e0a\u6216\u662f\u62d6\u66f3\u7bc0\u9ede\u7684\u6642\u5019\u5c55\u958b\u7bc0\u9ede accessories/plugins/ExportWithXSLT_Applet.properties_documentation=\u532f\u51fajava applet \u7248 @@ -738,7 +748,9 @@ accessories/plugins/ExportWithXSLT_Applet.properties_webpage=\u7db2\u9801 accessories/plugins/ExportWithXSLT_Flash.properties_documentation=\u532f\u51fa\u6210Flash accessories/plugins/ExportWithXSLT_Flash.properties_name=\u532f\u51fa\u6210Flash +accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=On the left of root the node(s) is/are shifted downwards. It/they become children of its above sibling. On the right of root the node(s) are shifted upwards. Directly at root, the node(s) change sides. accessories/plugins/ChangeNodeLevelAction_left.properties_name=\u5c07\u7bc0\u9ede\u79fb\u5230\u5de6\u908a +accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=On the right of root the node(s) is/are shifted downwards. It/they become children of its above sibling. On the left of root the node(s) are shifted upwards. Directly at root, the node(s) change sides. accessories/plugins/ChangeNodeLevelAction_right.properties_name=\u5c07\u7bc0\u9ede\u79fb\u5230\u53f3\u908a PatternDialog.ColorProperty.ResetColor=\u91cd\u65b0\u8a2d\u5b9a\u8272\u5f69 PatternDialog.EdgeWidth_1=1 @@ -750,8 +762,12 @@ PatternDialog.as_parent=\u8ddf\u4e3b\u7bc0\u9ede\u76f8\u540c PatternDialog.bezier=\u8c9d\u6c0f\u66f2\u7dda PatternDialog.bubble=\u6ce1\u6ce1 +PatternDialog.combined=Combined +PatternDialog.edgecolor.tooltip=Property of the edge to the parent node (is also applied to all child nodes) PatternDialog.edgecolor=\u9023\u7d50\u7dda\u80cc\u666f\u8272 +PatternDialog.edgestyle.tooltip=Property of the edge to the parent node (is also applied to all child nodes) PatternDialog.edgestyle=\u9023\u7d50\u7dda\u6a23\u5f0f +PatternDialog.edgewidth.tooltip=Property of the edge to the parent node (is also applied to all child nodes) PatternDialog.edgewidth=\u9023\u7d50\u7dda\u5bec\u5ea6 PatternDialog.fork=Fork PatternDialog.linear=\u76f4\u7dda @@ -799,6 +815,7 @@ PatternDialog.childpattern.tooltip=\u9078\u5b9a\u7684\u6a21\u677f\u5957\u7528\u5230\u6240\u6709\u5b50\u7bc0\u9ede PatternDialog.childpattern=\u5b50\u6a21\u677f ManagePatternsPopupDialog.Save=\u5132\u5b58\u5f8c\u8fd4\u56de +PatternDialog.icon.tooltip=\u5982\u679c\u5957\u7528\u4e86,\u6b64\u7bc0\u9ede\u5c07\u4f7f\u7528\u9019\u500b\u5716\u793a. PatternDialog.icon=icon PatternDialog.set_property_text=\u66f4\u6539 PatternDialog.set_property_text.tooltip=\u7a7a\u503c: \u4e0d\u53ef\u9ede\u9078; \u8ca0\u865f: \u79fb\u9664\u5c6c\u6027(\u9810\u8a2d\u503c); \u52a0\u865f=\u6539\u8b8a\u5c6c\u6027 @@ -807,8 +824,6 @@ OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u6a23\u677f PatternToString.color=\u984f\u8272 PatternToString.backgroundColor=\u80cc\u666f\u8272 -OptionPanel.automaticFormat_level1=\u4e3b(\u6839)\u7bc0\u9ede\u683c\u5f0f -OptionPanel.automaticFormat_level2=1. Level Node Format PatternToString.NodeFontSize=\u5b57\u578b\u5927\u5c0f OptionPanel.level1=\u4e3b\u7bc0\u9ede\u683c\u5f0f OptionPanel.level2=1. \u7bc0\u9ede\u683c\u5f0f @@ -836,7 +851,7 @@ FreeMind.progress.loadMaps=\u8f09\u5165\u5fc3\u667a\u5716... FreeMind.progress.buildScreen=\u5efa\u7acb\u8996\u7a97... FreeMind.progress.endStartup=\u555f\u52d5\u5b8c\u6210 -OptionPanel.tr=Tr +OptionPanel.tr=\u571f\u8033\u5176 OptionPanel.level=Level map_not_saved=\u8a72\u5716\u5c1a\u672a\u5b58\u6a94 plugins/TimeManagement.xml_Find=\u5c0b\u627e @@ -856,7 +871,7 @@ accessories/plugins/NodeNote_jumpto.properties_name=\u7e2e\u6392\u8a3b\u89e3\u5167\u5bb9 OptionPanel.max_tooltip_width=ToolTip \u5bec\u5ea6 OptionPanel.max_tooltip_width.tooltip=ToolTip \u5bec\u5ea6\u55ae\u4f4d\u662fpixels. -plugins/NodeList.xml_documentation=Shows all nodes with its creation/modification dates\ufffd. +plugins/NodeList.xml_documentation=Shows all nodes as a searchable list with filter properties. OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=\u7e2e\u6392\u8a3b\u89e3\u5167\u5bb9 OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=\u986f\u793a/\u96b1\u85cf \u8a3b\u89e3\u8996\u7a97 OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=\u6e05\u9664\u8a3b\u89e3 @@ -870,9 +885,9 @@ plugins/TimeList.xml_Notes=\u8a3b\u89e3 accessories/plugins/SortNodes.properties_documentation=\u6392\u5e8f\u5b50\u7bc0\u9ede accessories/plugins/SortNodes.properties_name=\u6392\u5e8f\u5b50\u7bc0\u9ede -OptionPanel.ar=Ae +OptionPanel.ar=\u963f\u62c9\u4f2f plugins/TimeManagement.xml_WindowTitle_All_Nodes=\u641c\u5c0b(\u53d6\u4ee3) -plugins/ScriptEditor.xml_documentation=\u5141\u8a31\u5728\u5beb\u5165freemind\u7cfb\u7d71\u5beb\u5165\u5927\u91cf\u6307\u4ee4\u6a94 +plugins/ScriptEditor.xml_documentation=\u5141\u8a31\u5beb\u5165freemind\u7cfb\u7d71\u5beb\u5165\u5927\u91cf\u6307\u4ee4\u6a94 plugins/ScriptEditor.xml_name=\u6307\u4ee4\u7de8\u8f2f\u5668 plugins/ScriptEditor/window.title=\u6307\u4ee4\u7de8\u8f2f\u5668 plugins/ScriptEditor.menu_actions=\u53ef\u57f7\u884c\u7684\u52d5\u4f5c @@ -901,21 +916,24 @@ simplyhtml.fontBoldLabel=\u7c97\u9ad4 simplyhtml.fontBoldImage=resources/bold.gif simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif -simplyhtml.fontBoldTip=\u5207\u63db\u7c97\u9ad4/\u4e00\u822c +simplyhtml.fontBoldTip=\u7c97\u9ad4 +simplyhtml.fontColorTip=\u6587\u5b57\u984f\u8272 +simplyhtml.fontColorLabel=\u6587\u5b57\u984f\u8272 +simplyhtml.fontColorImage=resources/fontColor.gif simplyhtml.fontItalicLabel=\u659c\u9ad4 simplyhtml.fontItalicImage=resources/italic.gif simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif -simplyhtml.fontItalicTip=\u5207\u63db\u659c\u9ad4/\u4e00\u822c +simplyhtml.fontItalicTip=\u659c\u9ad4 simplyhtml.fontUnderlineLabel=\u5e95\u7dda simplyhtml.fontUnderlineImage=resources/uline.gif -simplyhtml.fontUnderlineTip=\u5207\u63db\u5e95\u7dda/\u4e00\u822c +simplyhtml.fontUnderlineTip=\u5e95\u7dda simplyhtml.formatTableLabel=\u8868\u683c... simplyhtml.formatTableTip=Format table -simplyhtml.toggleBulletsLabel=\u65b9\u683c\u6392\u5217 -simplyhtml.toggleBulletsTip=\u65b9\u683c\u6392\u5217 -simplyhtml.toggleNumbersLabel=\u6578\u5b57\u6392\u5217 -simplyhtml.toggleNumbersTip=\u6578\u5b57\u6392\u5217 -simplyhtml.formatListLabel=\u5217\u8868... +simplyhtml.toggleBulletsLabel=\u4ee5\u65b9\u683c\u6392\u5217 +simplyhtml.toggleBulletsTip=\u4ee5\u65b9\u683c\u6392\u5217 +simplyhtml.toggleNumbersLabel=\u4ee5\u6578\u5b57\u6392\u5217 +simplyhtml.toggleNumbersTip=\u4ee5\u6578\u5b57\u6392\u5217 +simplyhtml.formatListLabel=\u6392\u5217... simplyhtml.formatListTip=\u66f4\u6539\u683c\u5f0f simplyhtml.formatParaLabel=\u6bb5\u843d... simplyhtml.formatParaTip=\u6539\u8b8a\u6bb5\u843d\u683c\u5f0f @@ -963,12 +981,25 @@ simplyhtml.valignTop=\u5f80\u4e0a\u8abf\u6574 simplyhtml.valignMiddle=\u7f6e\u4e2d simplyhtml.valignBottom=\u5f80\u4e0b\u8abf\u6574 +simplyhtml.valignBaseline=baseline +simplyhtml.marginLabel=Outer +simplyhtml.paddingLabel=Inner +simplyhtml.tableDialogTitle=Format Table simplyhtml.tablePanelTitle=\u8868\u683c\u683c\u5f0f simplyhtml.cellPanelTitle=\u683c\u5b50\u683c\u5f0f simplyhtml.tableWidthLabel=\u5bec: simplyhtml.tableBgColLabel=\u80cc\u666f\u8272: +simplyhtml.cellMarginTabLabel=Margin +simplyhtml.cellBorderTabLabel=Borders simplyhtml.borderWidthLabel=\u5bec simplyhtml.borderColorLabel=\u984f\u8272: +simplyhtml.thisCellRangeLabel=this cell +simplyhtml.thisColRangeLabel=this column +simplyhtml.thisRowRangeLabel=this row +simplyhtml.allCellsRangeLabel=all cells +simplyhtml.applyCellAttrLabel=Apply to +simplyhtml.cellGenTabLabel=General +simplyhtml.paraStyleDialogTitle=Paragraph Style simplyhtml.fontTabLabel=\u5b57\u578b simplyhtml.paraTabLabel=\u6bb5\u843d simplyhtml.cTagNamePara=\u6bb5\u843d @@ -978,6 +1009,10 @@ simplyhtml.cTagNameHead4=\u6a19\u984c4 simplyhtml.cTagNameHead5=\u6a19\u984c5 simplyhtml.cTagNameHead6=\u6a19\u984c6 +simplyhtml.cTagNameLink=Link +simplyhtml.cTagNameUL=Unordered List +simplyhtml.cTagNameOL=Ordered List +simplyhtml.listDialogTitle=\u9805\u76ee\u7b26\u865f simplyhtml.listTypeLabel=\u985e\u578b: simplyhtml.listPositionLabel=\u4f4d\u7f6e: simplyhtml.listIndentTitle=\u7a7a\u683c: @@ -1002,6 +1037,9 @@ simplyhtml.replaceWith=\u53d6\u4ee3: simplyhtml.textToFind=\u5c0b\u627e\u6587\u5b57: simplyhtml.replace=\u53d6\u4ee3... +simplyhtml.noMoreOccurrencesFound=no (more) occurrences found +simplyhtml.allOccurrencesReplaced=All occurrences replaced +simplyhtml.replaceThisQuery=replace this occurrence of simplyhtml.replaceYes=\u662f simplyhtml.replaceNo=\u5426 simplyhtml.replaceAll=\u5168\u90e8\u53d6\u4ee3 @@ -1023,16 +1061,21 @@ simplyhtml.close=\u95dc\u9589 simplyhtml.standardStyleName=standard simplyhtml.styleNameInputTitle=\u5132\u5b58\u6a23\u5f0f +simplyhtml.styleNameInputText=Name of new style? +simplyhtml.newStyleDefaultName=new style +simplyhtml.docTitleTitle=Edit Document Title +simplyhtml.docTitleQuery=Set title to: simplyhtml.layoutTabTitle=\u9810\u89bd simplyhtml.htmlTabTitle=HTML\u539f\u59cb\u78bc ScriptEditorPanel.changed_cancel=\u8a9e\u6cd5\u5df2\u88ab\u66f4\u52d5, \u8acb\u554f\u4f60\u8981\u653e\u68c4\u9019\u4e9b\u8b8a\u52d5\u55ce? OptionPanel.separator.mouse_wheel=\u6efe\u8f2a\u6ed1\u9f20 OptionPanel.wheel_velocity=\u901f\u5ea6 +OptionPanel.wheel_velocity.tooltip=\u8f03\u9ad8\u7684\u6578\u503c\u5c07\u6703\u4f7f\u6ed1\u9f20\u6efe\u8f2a\u79fb\u5ea6\u901f\u5ea6\u8f03\u5feb. accessories/plugins/NodeHistoryBack.properties_name=\u8fd4\u56de accessories/plugins/NodeHistoryBack.properties_documentation=\u8fd4\u56de accessories/plugins/NodeHistoryForward.properties_name=\u5f80\u524d accessories/plugins/NodeHistoryForward.properties_documentation=\u5f80\u524d -OptionPanel.use_tabbed_pane.tooltip=\u985e\u4f3cFireFox\u6216IE7\u7684\u9801\u7c3d\u529f\u80fd +OptionPanel.use_tabbed_pane.tooltip=\u985e\u4f3cFireFox\u7684\u9801\u7c3d\u529f\u80fd OptionPanel.use_tabbed_pane=\u9801\u7c3d\u6a21\u5f0f accessories/plugins/ExportWithTWiki.properties_name=\u5b58\u6210TWiki\u683c\u5f0f accessories/plugins/ExportWithTWiki.properties_documentation=\u5c07\u5fc3\u667a\u5716\u532f\u51fa\u6210TWiki\u6587\u4ef6 @@ -1052,22 +1095,28 @@ OptionPanel.ask=\u8a62\u554f really_execute_script=\u4f60\u78ba\u5b9a\u8981\u57f7\u884c\u5728\u6b64\u5716\u88e1\u8a2d\u5b9a\u7684\u6307\u4ee4\u55ce?(\u9019\u53ef\u80fd\u6703\u5371\u5bb3\u60a8\u7684\u96fb\u8166) OptionPanel.resources_execute_scripts_without_asking=\u6307\u4ee4\u53ef\u4ee5\u76f4\u63a5\u57f7\u884c(\u4e0d\u9700\u78ba\u8a8d) +OptionPanel.execute_scripts_without_asking.tooltip= FreeMind\u8173\u672c\u80fd\u5920\u5728\u60a8\u7684\u96fb\u8166\u4e0a\u57f7\u884c\u4efb\u4f55\u6307\u4ee4\u3002
\u56e0\u6b64\uff0c\u4f60\u4e0d\u61c9\u8a72\u57f7\u884c\u4f60\u4e0d\u77e5\u9053\u662f\u5426\u5b89\u5168\u7684\u8173\u672c. PatternToString.EdgeStyle=\u9023\u7d50\u7dda\u6a23\u5f0f PatternToString.EdgeColor=\u9023\u7d50\u7dda\u984f\u8272 PatternToString.EdgeWidth=\u9023\u7d50\u7dda\u5bec\u5ea6 PatternToString.FontBold=\u7c97\u9ad4 PatternToString.FontItalic=\u659c\u9ad4 +PatternToString.FontName=\u5b57\u578b\u540d\u7a31 PatternToString.Icon=\u5716\u5f62 PatternToString.Child=\u5b50\u7bc0\u9ede\u6a23\u5f0f ManagePatternsPopupDialog.Actions=\u57f7\u884c node_location_help=\u62d6\u66f3\u53ef\u4ee5\u8b8a\u66f4\u7bc0\u9ede\u4f4d\u7f6e, \u96d9\u64ca\u6ed1\u9f20\u5de6\u5c31\u53ef\u4ee5\u9084\u539f\u6b64\u7bc0\u9ede\u539f\u672c\u8a2d\u5b9a +really_convert_to_current_version=\u9019\u500b\u5fc3\u667a\u5716\u4f7f\u7528\u820a\u683c\u5f0f\u7684FreeMind.
\u8981\u8f49\u63db\u6210\u65b0\u683c\u5f0f\u55ce?(\u5efa\u8b70\u8981)
\u5426\u5247\u4e0d\u4fdd\u8b49\u80fd\u7528 OptionPanel.resources_convert_to_current_version=\u81ea\u52d5\u5c07\u820a\u7248freemind\u8f49\u63db\u6210\u65b0\u7248\u683c\u5f0f? OptionPanel.resources_convert_to_current_version.tooltip=\u53ea\u6709\u975e\u5e38\u5927\u7684\u5716\u4e0d\u9700\u8981\u8f49\u63db
(\u5c08\u5bb6\u77e5\u8b58)\u4f60\u4e5f\u53ef\u4ee5\u958b\u555f\u6c92\u6709\u8f49\u63db\u904e\u7684\u820a\u7248\u5fc3\u667a\u5716. OptionPanel.separator.root_node_appearance=\u4e3b\u7bc0\u9ede\u5916\u89c0 OptionPanel.use_common_out_point_for_root_node=\u9023\u7d50\u7dda\u5f9e\u4e3b\u7bc0\u9ede +OptionPanel.use_common_out_point_for_root_node.tooltip=Edges start from one point at root node======= ManagePatternsPopupDialog.apply=\u5957\u7528 PatternDialog.setscript=\u78ba\u8a8d\u8b8a\u66f4? +PatternDialog.setscript.tooltip=A script can be associated to the style. PatternDialog.script=\u6307\u4ee4 +PatternDialog.script.tooltip=The script as groovy source code. OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=\u7ba1\u7406\u6a23\u5f0f toggle_menubar = \u5207\u63db\u9078\u55ae\u5217 toggle_toolbar = \u5207\u63db\u5de5\u5177\u5217 @@ -1076,6 +1125,7 @@ selection_as_rectangle=\u77e9\u5f62\u5f0f\u7684\u6307\u6a19 really_cut_node=\u78ba\u5b9a\u8981\u526a\u4e0b\u7bc0\u9ede? OptionPanel.resources_cut_nodes_without_question=\u526a\u4e0b\u7bc0\u9ede(\u4e0d\u518d\u78ba\u8a8d) +OptionPanel.cut_nodes_without_question.tooltip=\u5047\u5982\u8a2d\u5b9a\u526a\u4e0b\u7bc0\u9ede(\u4e0d\u9700\u78ba\u8a8d),\u4ee5\u5f8c\u5c07\u4e0d\u518d\u6709\u4efb\u4f55\u63d0\u9192. follow_graphical_link=Go to: accessories/plugins/NodeNote_hide_show.properties_documentation=Lets the note window appear resp. disappear. plugins/ScriptEditor.new_script=\u65b0\u6307\u4ee4 @@ -1087,12 +1137,17 @@ OptionPanel.resources_execute_scripts_without_file_restriction=\u5141\u8a31\u6a94\u6848\u76f8\u95dc\u64cd\u4f5c OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=\u5047\u5982\u4f60\u8981\u57f7\u884c\u6a94\u6848\u7684\u65b0\u589e\u522a\u9664\u4fee\u6539\u7b49\u6b0a\u9650,\u4f60\u5fc5\u9808\u555f\u7528\u9019\u500b OptionPanel.resources_execute_scripts_without_network_restriction=\u5141\u8a31\u7db2\u8def\u76f8\u95dc\u64cd\u4f5c +OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=If your Groovy Scripts need to execute special network actions,
you have to enable this option.
But use it with care, as now malicious scripts can disclosure your secrets! OptionPanel.resources_execute_scripts_without_exec_restriction=\u5141\u8a31\u57f7\u884c\u61c9\u7528\u7a0b\u5f0f +OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=If your Groovy Scripts need to execute special other applications (like a browser) without asking(!),
you have to enable this option.
But use it with care, as now malicious scripts can hurt your computer! +plugins/ScriptEditor.FORBIDDEN_ACTION=FreeMind groovy scripts are restricted. The following {0,choice,0#File|1#Network|2#Exec} operation is forbidden: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. You can change this in the program settings. plugins/ScriptEditor.cancel=\u96e2\u958b(\u4e0d\u5132\u5b58) plugins/ScriptEditor.exit=\u5132\u5b58\u5f8c\u96e2\u958b plugins/TimeManagement.xml_closeButton=\u95dc\u9589 PatternDialog.nodebackgroundcolor.tooltip=\u672a\u88ab\u9078\u64c7\u4e4b\u7bc0\u9ede\u80cc\u666f\u8272 PatternDialog.nodecolor.tooltip=\u672a\u88ab\u9078\u64c7\u4e4b\u7bc0\u9ede\u524d\u666f\u8272 +PatternDialog.nodestyle.tooltip=The style describes the outer form of a node.
Possible values:
fork: without surrounding box,
bubble: node with a surrounding rectangle,
As parent: take the style from the parent node
or the default root node style for the root node,
Combined: Bubble when node is folded, fork otherwise.
+PatternDialog.nodetext.tooltip=Here, you can define the node's text. The former text is discarded when such a pattern is applied. PatternDialog.nodefontname=\u7bc0\u9ede\u5b57\u578b\u540d\u7a31 PatternDialog.nodefontsize=\u7bc0\u9ede\u5b57\u578b\u5927\u5c0f PatternDialog.separator.ScriptingControl=\u6307\u4ee4\u57f7\u884c\u6b0a\u9650 @@ -1100,10 +1155,12 @@ FreeMind=FreeMind\u7684\u9996\u9801 really_remove_notes=\u771f\u7684\u8981\u79fb\u9664\u8a3b\u89e3\u55ce? OptionPanel.resources_remove_notes_without_question=\u79fb\u9664\u8a3b\u89e3 +OptionPanel.remove_notes_without_question.tooltip=If this check box is set the notes belonging to the selected nodes are removed without confirmation. This can cause loss of information if pressed without intention. OptionPanel.resources_save_folding_state=\u5132\u5b58\u5c55\u958b/\u647a\u758a\u72c0\u614b OptionPanel.resources_save_folding_state.tooltip=\u82e5\u72c0\u614b\u6539\u8b8a, \u6703\u63d0\u9192\u662f\u5426\u5132\u5b58\u6a94\u6848 plugins/ScriptEditor.sign=\u5c07\u6307\u4ee4\u52a0\u7c3d\u8b49 OptionPanel.resources_script_user_key_name_for_signing=(Optional)User Key Alias for Signing +OptionPanel.resources_script_user_key_name_for_signing.tooltip=If you want to sign your scripts, enter the alias of the key here.
The key is expected to reside in the default keystore.
The password of the key's secret key must coincide with the keystore password (this is the default). OptionPanel.resources_signed_script_are_trusted=\u81ea\u52d5\u4fe1\u4efb\u7f72\u540d\u904e\u7684\u6307\u4ee4 OptionPanel.resources_signed_script_are_trusted.tooltip=\u5047\u5982\u6b64\u6307\u4ee4\u662f\u7f72\u540d\u904e\u7684\u6307\u4ee4,\u5982: FreeMind\u7684\u4f5c\u8005, \u6b64\u6307\u4ee4\u662f\u53ef\u4ee5\u4e0d\u53d7\u9650\u5236\u5c31\u57f7\u884c. export_branch_new =\u5c07\u5206\u652f\u7684\u7bc0\u9ede\u53e6\u5b58\u65b0\u7684\u5fc3\u667a\u5716 @@ -1155,96 +1212,20 @@ OptionPanel.icons.list=\u5217\u51fa\u54ea\u4e9b\u5c0f\u5716\u793a OptionPanel.icon_order_description=\u8acb\u4f7f\u7528";"\u5340\u9694\u5c0f\u5716\u793a\u4ee3\u865f OptionPanel.sk=\u65af\u6d1b\u4f10\u514b -OptionPanel.et=\u8863\u7d22\u5339\u4e9e +OptionPanel.el=\u5e0c\u81d8\u8a9e +OptionPanel.et=\u611b\u6c99\u5c3c\u4e9e OptionPanel.id=\u5370\u5c3c OptionPanel.uk_UA=\u70cf\u514b\u862d OptionPanel.vi=\u7f8e\u5c6c\u8655\u5973\u5cf6 +select_icon=\u9078\u5716\u793a mode_MindMap=\u5fc3\u667a\u5716\u6a21\u5f0f mode_Browse=\u700f\u89bd\u5668\u6a21\u5f0f mode_File=\u6a94\u6848\u7e3d\u7ba1\u6a21\u5f0f mode_status =\u8b8a\u66f4\u6210{0}\u6a21\u5f0f mode_title =FreeMind - {0} \u6a21\u5f0f OptionPanel.defaultfontsize.tooltip=\u9810\u8a2d\u7bc0\u9ede\u5b57\u578b\u5927\u5c0f -atributes_no_import_candidates_found=\u627e\u4e0d\u5230\u65b0\u7684\u5c6c\u6027 -OptionPanel.zh=\u6b63\u9ad4\u4e2d\u6587 -icon_smiley-sad =\u60b2\u50b7 -plugins/ExportSvg.xml_name=\u532f\u51faSVG... -mode_status=\u6a21\u5f0f\u66f4\u6539\u6210 {0} -toggle_bold_branch = \u5207\u63db\u7c97\u9ed1\u5b57\u578b -toggle_italic_branch = \u5207\u63db\u659c\u7dda -# added at 2.5.2004, fc: -undo=\u56de\u5fa9\u524d\u4e00\u52d5\u4f5c -redo=\u56de\u5230\u4e0b\u4e00\u52d5\u4f5c -delete_child=\u522a\u9664\u7bc0\u9ede -# added at 22.5.2004, fc: -most_recent_files=\u6700\u8fd1\u7de8\u8f2f\u904e\u7684\u6a94\u6848 -menu_view=\u6aa2\u8996 -menu_navigate=\u5c0e\u89bd -menu_format=\u683c\u5f0f -menu_extras=\u5de5\u5177 -menu_insert=\u65b0\u589e -# add at 16.9.2004, fc: -import_linked_branch_no_link=The selected node admits no link to import from. -# added at 09.10.2004 -add_link=\u5728\u6307\u5b9a\u7684\u5169\u500b\u9023\u7d50(node)\u52a0\u4e0a\u9023\u7d50\u7dda -less_than_two_selected_nodes=\u4f60\u5fc5\u9808\u6700\u5c11\u9078\u64c7\u5169\u500b\u7d50\u9ede. -choose_node_background_color=\u9078\u64c7\u7bc0\u9ede\u80cc\u666f\u8272: -choose_node_color=\u9078\u64c7\u7bc0\u9ede\u984f\u8272: -choose_background_color=\u9078\u64c7\u80cc\u666f\u8272: -choose_cloud_color=\u9078\u64c7\u96f2\u72c0\u5716\u7684\u984f\u8272: -change_arrows_in_arrow_link=Change arrows of an arrow link -add_local_link=\u65b0\u589e\u7d50\u9ede\u6377\u5f91 -link_not_available_any_more=\u6b64\u6377\u5f91\u7121\u6cd5\u4f7f\u7528.\u6377\u5f91\u4e4b\u9593\u7684\u7d50\u9ede\u5df2\u7d93\u88ab\u522a\u9664 . -error_creating_directory=\u532f\u51fa\u7684\u76ee\u9304\u7121\u6cd5\u65b0\u589e. -export_svg_text=Scalable vector graphic (SVG) -export_pdf_text=Portable document format (PDF) -goto_link_node_action=\u524d\u5f80\u6377\u5f91 -#fc, 14.11.2004: -undefined_error=\u51fa\u73fe\u975e\u9810\u671f\u932f\u8aa4 -cannot_add_parent_diff_parents=All nodes must have the same parent to use this function. -cannot_add_parent_to_root=\u6b64\u70ba\u4e3b\u7d50\u9ede\u4e0d\u80fd\u518d\u65b0\u589e\u7236\u7d50\u9ede. -no_format_copy_before_format_paste=You can't paste a format until you've copied one. -#fc, 15.11.2004: -accessories/plugins/AutomaticLayout.properties_documentation=Fixes the layout of the map.
Please, apply this action to the root of your map and try to insert some new nodes in different levels.
The first level is black, the second blue, etc. -accessories/plugins/AutomaticLayout.properties_name=\u81ea\u52d5\u6392\u7248 -accessories/plugins/BlinkingNodeHook.properties_documentation=This is a java plugin for demo purposes. But be careful. Do not associate it to many nodes, and not twice or together with other plugins to the same node -accessories/plugins/BlinkingNodeHook.properties_name=\u7d50\u9ede\u5448\u73fe\u9583\u720d\u72c0\u6cc1 -accessories/plugins/CreationModificationPlugin.properties_name=\u986f\u793a\u4fee\u6539\u6642\u9593 -accessories/plugins/ExportToImage_PNG.properties_documentation=Exports the map in the current folding to an PNG-image. -accessories/plugins/ExportToImage_PNG.properties_name=\u532f\u6210PNG\u6a94... -accessories/plugins/ExportToImage_JPEG.properties_documentation=Exports the map in the current folding to an JPEG-image. -accessories/plugins/ExportToImage_JPEG.properties_name=\u532f\u6210JPEG\u6a94... -accessories/plugins/ExportWithXSLT.properties_documentation=This is an uniform export method using XSLT scripts. -accessories/plugins/ExportWithXSLT.properties_name=\u4f7f\u7528XSLT\u683c\u5f0f\u532f\u51fa... -accessories/plugins/ExportWithXSLT_HTML.properties_name=\u532f\u6210XHTML\u683c\u5f0f (JavaScript version)... -accessories/plugins/ExportWithXSLT_HTML3.properties_name=\u532f\u6210XHTML\u683c\u5f0f (Clickable map image version)... -accessories/plugins/FitToPage.properties_documentation=This is a simple Java class that tests the map hook possibilites -accessories/plugins/FitToPage.properties_name=\u8abf\u6574\u5716\u7b26\u5408\u9801\u9762\u5927\u5c0f -accessories/plugins/FormatCopy.properties_documentation=Copies the format of a node. -accessories/plugins/FormatCopy.properties_name=\u8907\u88fd -accessories/plugins/FormatPaste.properties_documentation=Pastes the format of a node. -accessories/plugins/FormatPaste.properties_name=\u8cbc\u4e0a -accessories/plugins/FormularEditor.properties_documentation=Associates a simple formular editor to the current note. -accessories/plugins/IconSelectionPlugin.properties_documentation=This is a java plugin for icon selection -accessories/plugins/IconSelectionPlugin.properties_name=\u9078\u53d6\u5c0f\u5716\u793a... -accessories/plugins/NewParentNode.properties_documentation=All selected are sent to a new parent. -accessories/plugins/NewParentNode.properties_name=\u65b0\u589e\u4e00\u500b\u7236\u7bc0\u9ede -accessories/plugins/NodeNote.properties_documentation=Associates a simple note editor to the current note. -accessories/plugins/NodeNote.properties_name=\u8a3b\u89e3 -accessories/plugins/PMCalculation.properties_documentation=alculates the efforts for different tasks. -accessories/plugins/PMCalculation.properties_name=PMCalculation -accessories/plugins/RevisionPlugin.properties_documentation=Marks the background of each changed node. -accessories/plugins/RevisionPlugin.properties_name=\u4ee5\u984f\u8272(\u9ec3\u80cc\u666f\u8272)\u6a19\u793a\u51fa\u4fee\u6539\u904e\u7684\u7bc0\u9ede -accessories/plugins/UnfoldAll.properties_documentation=Unfolds the selected nodes and all their children. -accessories/plugins/UnfoldAll.properties_name=\u5c55\u958b\u6240\u6709\u7bc0\u9ede -accessories/plugins/FoldAll.properties_documentation=Folds the selected nodes and all their children. -accessories/plugins/FoldAll.properties_name=\u647a\u758a\u6240\u6709\u7bc0\u9ede -accessories/plugins/UnfoldOneLevel.properties_documentation=Unfolds the selected nodes by one level. -accessories/plugins/UnfoldOneLevel.properties_name=\u5c55\u958b\u4e00\u500b\u968e\u5c64 -accessories/plugins/FoldOneLevel.properties_documentation=Folds the selected nodes by one level. -accessories/plugins/FoldOneLevel.properties_name=\u647a\u758a\u4e00\u500b\u968e\u5c64 -plugins/FreemindHelp.xml_documentation=Freemind help -plugins/FreemindHelp.xml_name=\u7dda\u4e0a\u652f\u63f4... -plugins/ExportPdf.xml_documentation=\u532f\u51faPDF\u683c\u5f0f -plugins/ExportPdf.xml_name=\u532f\u51faPDF\u683c\u5f0f... -plugins/ExportSvg.xml_documentation=SVG-Export +OptionPanel.ro=\u7f85\u99ac\u5c3c\u4e9e +really_convert_to_current_version2=\u60a8\u6b63\u5617\u8a66\u958b\u555f\u820a\u683c\u5f0f\u7684FreeMind.
FreeMind\u5373\u5c07\u8f49\u63db\u6210\u65b0\u7684\u683c\u5f0f.
\u8f49\u63db\u6210\u65b0\u683c\u5f0f\u5f8c,\u5c07\u7121\u6cd5\u4f7f\u7528\u820a\u7248\u672c\u7684FreeMind\u958b\u555f.
\u8acb\u554f\u60a8\u9858\u610f\u55ce? + + +OptionPanel.eu=Eu diff -Nru freemind-0.9.0RC6/version.properties freemind-0.9.0RC7/version.properties --- freemind-0.9.0RC6/version.properties 2009-10-22 18:58:09.000000000 +0100 +++ freemind-0.9.0RC7/version.properties 2010-02-27 21:56:08.000000000 +0000 @@ -1,3 +1,3 @@ #Build Number for ANT. Do not edit! -#Thu Oct 22 19:58:09 CEST 2009 -build.number=11 +#Sat Feb 27 22:56:08 CET 2010 +build.number=178