Added:
trunk/doc/freemind/debian/patches/012_unescape_unicode_entities.patch
Modified:
trunk/doc/freemind/debian/changelog
trunk/doc/freemind/debian/patches/001_show_oem_version.patch
trunk/doc/freemind/debian/patches/002_utf8_file_encoding.patch
trunk/doc/freemind/debian/patches/003_save_split_mm.patch
trunk/doc/freemind/debian/patches/004_join_mm_with_mmx.patch
trunk/doc/freemind/debian/patches/005_messages_zh_cn.patch
trunk/doc/freemind/debian/patches/007_freemind.startup.patch
trunk/doc/freemind/debian/patches/008_build_xml.patch
trunk/doc/freemind/debian/patches/009_filter_all_illegal_xml_characters.patch
trunk/doc/freemind/debian/patches/010_freemind_default_settings.patch
trunk/doc/freemind/debian/patches/011_worldhello_extension_settings.patch
trunk/doc/freemind/debian/patches/series
Log:
Upgrade to 0.9.0_beta19_wh_14; Unescape utf8 entities in xml rich text node and note.
已修改: trunk/doc/freemind/debian/changelog
===================================================================
--- trunk/doc/freemind/debian/changelog 2008-05-25 05:02:09 UTC (rev 78)
+++ trunk/doc/freemind/debian/changelog 2008-08-01 16:20:39 UTC (rev 79)
@@ -1,3 +1,21 @@
+ossxp-freemind (0.9.0.Beta.19+wh-14) unstable; urgency=low
+
+ * unescape utf8 entities in xml rich text node and note.
+
+ -- Jiang Xin <worldhe...@gmail.com> Fri, 01 Aug 2008 22:18:39 +0800
+
+ossxp-freemind (0.9.0.Beta.19+wh-13) unstable; urgency=low
+
+ * upstream upgrad;
+
+ -- Jiang Xin <worldhe...@gmail.com> Fri, 01 Aug 2008 09:03:56 +0800
+
+ossxp-freemind (0.9.0.Beta.18+wh-13) unstable; urgency=low
+
+ * upstream upgrad;
+
+ -- Jiang Xin <worldhe...@gmail.com> Wed, 04 Jun 2008 20:30:09 +0800
+
ossxp-freemind (0.9.0.Beta.17+wh-13) unstable; urgency=low
* Change default properties:
已修改: trunk/doc/freemind/debian/patches/001_show_oem_version.patch
===================================================================
--- trunk/doc/freemind/debian/patches/001_show_oem_version.patch 2008-05-25 05:02:09 UTC (rev 78)
+++ trunk/doc/freemind/debian/patches/001_show_oem_version.patch 2008-08-01 16:20:39 UTC (rev 79)
@@ -2,7 +2,7 @@
===================================================================
--- a/freemind/freemind/controller/Controller.java (修订版 2510)
+++ b/freemind/freemind/controller/Controller.java (工作拷贝)
-@@ -1128,7 +1128,7 @@
+@@ -1156,7 +1156,7 @@
this.controller = controller;
}
public void actionPerformed(ActionEvent e) {
@@ -49,7 +49,7 @@
===================================================================
--- a/freemind/freemind/main/FreeMind.java (修订版 2510)
+++ b/freemind/freemind/main/FreeMind.java (工作拷贝)
-@@ -82,6 +82,9 @@
+@@ -81,6 +81,9 @@
public class FreeMind extends JFrame implements FreeMindMain {
已修改: trunk/doc/freemind/debian/patches/002_utf8_file_encoding.patch
===================================================================
--- trunk/doc/freemind/debian/patches/002_utf8_file_encoding.patch 2008-05-25 05:02:09 UTC (rev 78)
+++ trunk/doc/freemind/debian/patches/002_utf8_file_encoding.patch 2008-08-01 16:20:39 UTC (rev 79)
@@ -26,7 +26,7 @@
===================================================================
--- a/freemind/freemind/main/FreeMind.java (修订版 2512)
+++ b/freemind/freemind/main/FreeMind.java (工作拷贝)
-@@ -84,6 +84,9 @@
+@@ -83,6 +83,9 @@
// OSSXP.COM: set oem version.
public static final String hackedversion = "(worldhello.net, <REVISION>)";
@@ -50,7 +50,7 @@
getXml(fileout);
if(!isInternal) {
-@@ -281,10 +282,14 @@
+@@ -280,10 +281,14 @@
* @throws IOException
*/
private void getXml(Writer fileout, boolean saveInvisible) throws IOException {
@@ -66,7 +66,7 @@
getRegistry().save(fileout);
(getRootNode()).save(fileout, this.getLinkRegistry(), saveInvisible, true);
fileout.write("</map>\n");
-@@ -360,7 +365,28 @@
+@@ -359,7 +364,28 @@
int versionInfoLength;
versionInfoLength = EXPECTED_START_STRINGS[0].length();
// reading the start of the file:
@@ -96,3 +96,32 @@
// the resulting file is accessed by the reader:
Reader reader = null;
for(int i = 0; i < EXPECTED_START_STRINGS.length; i++){
+--- a/freemind/freemind/main/HtmlTools.java 2008-08-01 09:52:03.000000000 +0800
++++ b/freemind/freemind/main/HtmlTools.java 2008-08-01 09:53:07.000000000 +0800
+@@ -332,7 +332,7 @@
+ for (int i = 0; i < text.length(); ++i) {
+ myChar = text.charAt(i);
+ intValue = (int) text.charAt(i);
+- if (intValue < 32 || intValue > 126) {
++ if (intValue < 32 || !Resources.getInstance().getBoolProperty("wh_nonascii_in_utf8") && intValue > 126) {
+ result.append("&#x").append(Integer.toString(intValue, 16))
+ .append(';');
+ } else {
+--- a/freemind/freemind/modes/mindmapmode/MindMapHTMLWriter.java 2008-08-01 09:57:47.000000000 +0800
++++ b/freemind/freemind/modes/mindmapmode/MindMapHTMLWriter.java 2008-08-01 09:58:08.000000000 +0800
+@@ -92,7 +92,7 @@
+ for (int i = 0; i < len; ++i) {
+ myChar = text.charAt(i);
+ intValue = (int) text.charAt(i);
+- if (intValue >= 128) {
++ if (!Resources.getInstance().getBoolProperty("wh_nonascii_in_utf8") && intValue >= 128) {
+ result.append(convertSpecialChar(myChar));
+ }
+ else {
+@@ -694,4 +694,4 @@
+ return Resources.getInstance().getProperty(key);
+ }
+
+-}
+\ No newline at end of file
++}
已修改: trunk/doc/freemind/debian/patches/003_save_split_mm.patch
===================================================================
--- trunk/doc/freemind/debian/patches/003_save_split_mm.patch 2008-05-25 05:02:09 UTC (rev 78)
+++ trunk/doc/freemind/debian/patches/003_save_split_mm.patch 2008-08-01 16:20:39 UTC (rev 79)
@@ -126,7 +126,7 @@
import freemind.main.Tools;
import freemind.main.XMLElement;
import freemind.modes.attributes.Attribute;
-@@ -953,11 +954,42 @@
+@@ -955,11 +956,42 @@
return controller.getNodeID(this);
}
@@ -170,7 +170,7 @@
// if (!isNodeClassToBeSaved()) {
node.setName(XMLElementAdapter.XML_NODE);
// } else {
-@@ -966,6 +998,9 @@
+@@ -968,6 +1000,9 @@
// }
/** fc, 12.6.2005: XML must not contain any zero characters. */
@@ -180,7 +180,7 @@
String text = this.toString().replace('\0', ' ');
if(!HtmlTools.isHtmlNode(text)) {
node.setAttribute(XMLElementAdapter.XML_NODE_TEXT,text);
-@@ -985,6 +1020,7 @@
+@@ -987,6 +1022,7 @@
node.addChild(htmlElement);
}
@@ -188,7 +188,7 @@
// save additional info:
if (getAdditionalInfo() != null) {
node.setAttribute(XMLElementAdapter.XML_NODE_ENCRYPTED_CONTENT,
-@@ -992,15 +1028,26 @@
+@@ -994,15 +1030,26 @@
}
// ((MindMapEdgeModel)getEdge()).save(doc,node);
@@ -216,7 +216,7 @@
Vector linkVector = registry.getAllLinksFromMe(this); /* Puh... */
for(int i = 0; i < linkVector.size(); ++i) {
if(linkVector.get(i) instanceof ArrowLinkAdapter) {
-@@ -1008,10 +1055,30 @@
+@@ -1010,10 +1057,30 @@
node.addChild(arrowLinkElement);
}
}
@@ -250,7 +250,7 @@
// fc, 17.12.2003: Remove the left/right bug.
// VVV save if and only if parent is root.
if (!(isRoot()) && (getParentNode().isRoot())) {
-@@ -1065,6 +1132,9 @@
+@@ -1067,6 +1134,9 @@
.getLastModifiedAt()));
}
//font
@@ -260,7 +260,7 @@
if (font!=null) {
XMLElement fontElement = new XMLElement();
fontElement.setName("font");
-@@ -1080,6 +1150,10 @@
+@@ -1082,6 +1152,10 @@
if (isUnderlined()) {
fontElement.setAttribute("UNDERLINE","true"); }
node.addChild(fontElement); }
@@ -271,7 +271,7 @@
for(int i = 0; i < getIcons().size(); ++i) {
XMLElement iconElement = new XMLElement();
iconElement.setName("icon");
-@@ -1087,18 +1161,28 @@
+@@ -1089,18 +1163,28 @@
node.addChild(iconElement);
}
@@ -302,7 +302,7 @@
node.writeClosingTag(writer);
} else {
node.write(writer);
-@@ -1110,13 +1194,17 @@
+@@ -1112,13 +1196,17 @@
return map.getModeController();
}
@@ -326,7 +326,7 @@
===================================================================
--- a/freemind/freemind/modes/mindmapmode/MindMapMapModel.java (修订版 2516)
+++ b/freemind/freemind/modes/mindmapmode/MindMapMapModel.java (工作拷贝)
-@@ -255,7 +255,26 @@
+@@ -254,7 +254,26 @@
}
// OSSXP.COM: save file using default character set.
BufferedWriter fileout = new BufferedWriter( new OutputStreamWriter( new FileOutputStream(file), FreeMind.DEFAULT_CHARSET ) );
@@ -354,7 +354,7 @@
if(!isInternal) {
setFile(file);
-@@ -280,8 +299,12 @@
+@@ -279,8 +298,12 @@
/** writes the content of the map to a writer.
* @throws IOException
@@ -368,7 +368,7 @@
// OSSXP.COM: write xml declare.
fileout.write("<?xml version=\"1.0\" encoding=\"" + FreeMind.DEFAULT_CHARSET + "\"?>\n");
fileout.write("<map ");
-@@ -290,17 +313,33 @@
+@@ -289,17 +312,33 @@
// OSSXP.COM: add notice for this hacked version.
fileout.write("<!-- This file is saved using a hacked version of FreeMind. visit: http://www.worldhello.net, http://ossxp.com -->\n");
fileout.write("<!-- Orignal FreeMind, can download from http://freemind.sourceforge.net -->\n");
已修改: trunk/doc/freemind/debian/patches/004_join_mm_with_mmx.patch
===================================================================
--- trunk/doc/freemind/debian/patches/004_join_mm_with_mmx.patch 2008-05-25 05:02:09 UTC (rev 78)
+++ trunk/doc/freemind/debian/patches/004_join_mm_with_mmx.patch 2008-08-01 16:20:39 UTC (rev 79)
@@ -2,10 +2,10 @@
===================================================================
--- a/freemind/freemind/main/Tools.java (修订版 2519)
+++ b/freemind/freemind/main/Tools.java (工作拷贝)
-@@ -82,6 +82,12 @@
- import javax.xml.transform.stream.StreamResult;
- import javax.xml.transform.stream.StreamSource;
+@@ -87,6 +87,12 @@
+ import freemind.view.mindmapview.NodeView;
+
+//OSSXP.COM: classes for .mm and .mmx join.
+import javax.xml.parsers.DocumentBuilder;
+import javax.xml.parsers.DocumentBuilderFactory;
@@ -15,7 +15,7 @@
/**
* @author foltin
*
-@@ -960,16 +966,125 @@
+@@ -985,16 +991,125 @@
return new StringReader(writer.getBuffer().toString());
}
else{
@@ -195,7 +195,7 @@
===================================================================
--- a/freemind/freemind/modes/mindmapmode/MindMapMapModel.java (修订版 2519)
+++ b/freemind/freemind/modes/mindmapmode/MindMapMapModel.java (工作拷贝)
-@@ -433,7 +433,7 @@
+@@ -435,7 +435,7 @@
}
if (mapStart.startsWith(EXPECTED_START_STRINGS[i])) {
// actual version:
@@ -204,7 +204,7 @@
break;
}
}
-@@ -447,7 +447,7 @@
+@@ -449,7 +449,7 @@
OptionalDontShowMeAgainDialog.ONLY_OK_SELECTION_IS_STORED)
.show().getResult();
if(showResult != JOptionPane.OK_OPTION) {
@@ -217,7 +217,7 @@
===================================================================
--- a/freemind/build.xml (修订版 2519)
+++ b/freemind/build.xml (工作拷贝)
-@@ -327,6 +327,7 @@
+@@ -336,6 +336,7 @@
<include name="Resources*"/>
<include name="mindmap_menus.xml"/>
<include name="**/freemind_version_updater.xslt"/>
已修改: trunk/doc/freemind/debian/patches/005_messages_zh_cn.patch
===================================================================
--- trunk/doc/freemind/debian/patches/005_messages_zh_cn.patch 2008-05-25 05:02:09 UTC (rev 78)
+++ trunk/doc/freemind/debian/patches/005_messages_zh_cn.patch 2008-08-01 16:20:39 UTC (rev 79)
@@ -2,950 +2,274 @@
===================================================================
--- a/freemind/Resources_zh_CN.properties (修订版 2510)
+++ b/freemind/Resources_zh_CN.properties (工作拷贝)
-@@ -1,28 +1,30 @@
--# simplified-chinese version by wonder365 (li...@ylchkj.com)
+@@ -1,10 +1,6 @@
+-#!
+-#! created/edited by Popeye version 0.54 (popeye.sourceforge.net)
+-#! encoding:ISO-8859-1
+-# simplified-chinese version updated by zhb, leijp
about = \u5173\u4e8e
+-add=\u6dfb\u52a0
--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:
-+add=\u6dfb\u52a0&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/\nVersion:
- antialias_all = \u5168\u5f00\u6297\u952f\u9f7f
- antialias_edges = \u8fb9\u7f18\u6297\u952f\u9f7f
- antialias_none = \u5173\u95ed\u6297\u952f\u9f7f
-+apply=\u5e94\u7528
- background = \u80cc\u666f
- bezier = \u8d1d\u585e\u5c14\u66f2\u7ebf
- blend_color = \u8272\u5f69\u6df7\u5408
- bold = \u7c97\u4f53
--boldify_branch = \u52a0\u7c97\u5206\u652f(branch)
--cloud = \u4e91\u6846
--cloud_color = \u4e91\u6846\u989c\u8272...
--branch = \u5206\u652f\uff08branch)
-+boldify_branch = \u52a0\u7c97\u5206\u652f
-+branch = \u5206\u652f
- bubble = \u6ce1\u6846
- cancel = \u53d6\u6d88
- cannot_join_nodes_with_children = \u6709\u5b50\u8282\u70b9\u7684\u7684\u8282\u70b9\u4e0d\u80fd\u5408\u5e76
- center = \u5c45\u4e2d
-+cloud = \u4e91\u6846
-+cloud_color = \u4e91\u6846\u989c\u8272...
- close = \u5173\u95ed
- copy = \u590d\u5236
- copy_single = \u5355\u4e00\u590d\u5236
- cut = \u526a\u5207
- decrease_branch_font_size = \u7f29\u5c0f\u5b57\u4f53
- decrease_node_font_size = \u7f29\u5c0f\u5b57\u4f53
-+delete=\u5220\u9664&D
- documentation = \u6587\u6863
- edge = \u8fde\u7ebf
- edge_color = \u8fde\u7ebf\u989c\u8272...
-@@ -33,6 +35,7 @@
- edit_long_node = \u7f16\u8f91\u957f\u8282\u70b9...
++add=\u6dfb\u52a0
+ 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:
+ antialias_all = \u5e73\u6ed1\u5168\u90e8
+ antialias_edges =\u5e73\u6ed1\u8fde\u7ebf
+@@ -40,6 +36,7 @@
enter_base_url = \u5c06\u7c98\u8d34\u76f8\u5bf9\u94fe\u63a5\u3002\u8bf7\u8f93\u5165\u57fa\u7840 URL \u3002
enter_confirms = Enter \u786e\u8ba4
-+error = \u9519\u8bef
- #export_branch = \u5bfc\u51fa\u8282\u70b9\u4e3a\u601d\u7ef4\u5bfc\u56fe ...
+ error = \u9519\u8bef
++#export_branch = \u5206\u652f...
export_branch_to_html = \u5bfc\u51fa\u8282\u70b9\u4e3a HTML
export_to_html = \u5bfc\u51fa\u4e3aHTML
-@@ -65,7 +68,6 @@
- icon_ksmiletris = \u9ad8\u5174
- icon_clanbomber = \u5371\u9669
- icon_desktop_new = \u5907\u5fd8
--icon_flag = \u6807\u8bb0
- icon_gohome = \u5bb6
- icon_kaddressbook = \u7535\u8bdd
- icon_knotify = \u97f3\u4e50
-@@ -94,6 +96,7 @@
- license = \u8bb8\u53ef
- license_text = FreeMind - \u601d\u7ef4\u5bfc\u56fe(Mindmap)\u521b\u5efa\u53ca\u67e5\u770b\u7a0b\u5e8f\nCopyright (C) 2000-2008 Joerg Mueller <joergm...@bigfoot.com>\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
- locking_failed_by_open = \u601d\u7ef4\u5bfc\u56fe $1 \u52a0\u9501\u5931\u8d25. \u4ee5\u53ea\u8bfb\u65b9\u5f0f\u6253\u5f00.
- locking_failed_by_save_as = \u601d\u7ef4\u5bfc\u56fe $1 \u52a0\u9501\u5931\u8d25. \u4fdd\u5b58\u52a8\u4f5c\u88ab\u4e2d\u6b62.
- locking_old_lock_removed = \u601d\u7ef4\u5bfc\u56fe $1 \u88ab\u7528\u6237 $2 \u52a0\u9501. \u65e7\u9501\u5df2\u88ab\u79fb\u9664.
-@@ -104,6 +107,7 @@
- mindmap = \u601d\u7ef4\u5bfc\u56fe
- mindmaps = \u601d\u7ef4\u5bfc\u56fe
- mindmaps_desc = \u601d\u7ef4\u5bfc\u56fe (*.mm)
-+mindmaps_filter_desc = \u8fc7\u6ee4\u5668 (*.mmfilter)
- mode_na = \u6a21\u5f0f\u4e0d\u53ef\u7528
- mode_status = \u6a21\u5f0f\u5207\u6362\u4e3a {0} \u6a21\u5f0f
- mode_title =\u601d\u7ef4\u5bfc\u56fe - {0} \u6a21\u5f0f
-@@ -113,12 +117,14 @@
- new_child = \u63d2\u5165\u5b50\u8282\u70b9
- new_mindmap = \u65b0\u589e\u601d\u7ef4\u5bfc\u56fe
- new_node = \u65b0\u589e\u8282\u70b9
--new_sibling_behind = \u63d2\u5165\u5e73\u884c\u8282\u70b9\uff08\u4e0b\u65b9\uff09
- new_sibling_before = \u63d2\u5165\u5e73\u884c\u8282\u70b9\uff08\u4e0a\u65b9\uff09
-+new_sibling_behind = \u63d2\u5165\u5e73\u884c\u8282\u70b9\uff08\u4e0b\u65b9\uff09
- next_map = \u4e0b\u4e00\u4e2a\u56fe
- no = \u5426
- node = \u8282\u70b9
- node_changed_discard_changes = \u60a8\u786e\u8ba4\u653e\u5f03\u5bf9\u8282\u70b9\u6240\u505a\u66f4\u6539?
-+long_node_changed_submit =\u60a8\u5df2\u7ecf\u4fee\u6539\u4e86\u8282\u70b9\u3002\u60a8\u8981\u4fdd\u5b58\u53d8\u66f4\u4e48\uff1f
-+long_node_changed_cancel =\u60a8\u5df2\u7ecf\u4fee\u6539\u4e86\u8282\u70b9\u3002\u60a8\u786e\u8ba4\u653e\u5f03\u5bf9\u8282\u70b9\u6240\u505a\u7684\u66f4\u6539\uff1f
- node_color = \u8282\u70b9\u989c\u8272 ...
- node_down = \u4e0b\u79fb
- node_up = \u4e0a\u79fb
-@@ -137,11 +143,15 @@
- previous_map = \u524d\u4e00\u5f20\u56fe
- print = \u6253\u5370
- print_dialog = \u6253\u5370...
-+print_preview = \u6253\u5370\u9884\u89c8...
-+print_preview_title = \u6253\u5370\u9884\u89c8
- quit = \u9000\u51fa
--remove_node = \u5220\u9664\u8282\u70b9
- read_only = \u53ea\u8bfb
-+remove_node = \u5220\u9664\u8282\u70b9
-+rename=\u91cd\u547d\u540d&R
- repair_link = \u4fee\u590d\u94fe\u63a5
- repair_link_question = \u4e0d\u80fd\u52a0\u8f7d\u94fe\u63a5\u56fe\u3002\u624b\u52a8\u4fee\u590d\u94fe\u63a5\uff1f
-+replace=\u66ff\u6362
- save = \u4fdd\u5b58
- save_as = \u53e6\u5b58\u4e3a...
- save_failed = \u56fe $1 \u5b58\u50a8\u5931\u8d25.
-@@ -157,13 +167,10 @@
+ extension_menu = \u6837\u5f0f
+@@ -49,7 +46,6 @@
+ find_what = \u67e5\u627e
+ find_next = \u67e5\u627e\u4e0b\u4e00\u4e2a
+ fold = \u6298\u53e0
+-# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above
+ follow_link = \u6253\u5f00\u8d85\u94fe\u63a5:
+ font = \u5b57\u4f53
+ fork =\u53c9\u72b6
+@@ -171,8 +167,10 @@
sharp_linear = \u6e10\u7a84\u76f4\u7ebf
split = \u5206\u5272
style = \u98ce\u683c
--toggle_bold_branch = \u5207\u6362\u7c97\u4f53
+#toggle_bold_branch = \u5207\u6362\u7c97\u4f53
toggle_children_folded = \u5c55\u5f00/\u6298\u53e0\u5b50\u8282\u70b9
toggle_folded = \u5c55\u5f00/\u6298\u53e0\u8282\u70b9
--toggle_italic_branch = \u5207\u6362\u659c\u4f53
--toggle_menubar = \u83dc\u5355\u680f
--toggle_toolbar = \u5de5\u5177\u680f
--toggle_left_toolbar = \u5de6\u4fa7\u5de5\u5177\u680f
+#toggle_italic_branch = \u5207\u6362\u659c\u4f53
underline = \u4e0b\u5212\u7ebf
unfold = \u5c55\u5f00
url_error = URL \u683c\u5f0f\u9519\u8bef!
-@@ -182,11 +189,13 @@
- user_defined_zoom_status_bar = \u7f29\u653e\u4e3a\u7528\u6237\u5b9a\u4e49\u7684 {0}%.
- # new from 14.12.2003, fc
- FAQ = FAQ
-+# new from 09.12.2006, Dimitri
-+webDocu = Web \u6587\u6863
- # new from 20.12.2003, fc
- printing_settings = \u6253\u5370\u6bd4\u4f8b
- fit_to_page = \u9002\u5408\u9875\u9762
- user_zoom = \u6253\u5370\u7f29\u653e\u7cfb\u6570 (0.0 - 2.0):
--ok = OK
-+ok = &OK
- # changed from 23.1.2004, fc.
- selection_method_by_click = \u5355\u51fb\u65f6\u9009\u5b9a
- selection_method_direct = \u6307\u5411\u65f6\u9009\u5b9a
-@@ -204,9 +213,10 @@
- menu_format = \u683c\u5f0f
- menu_extras = \u5de5\u5177
- menu_insert = \u63d2\u5165
-+menu_attributes = \u5c5e\u6027
- # Beware: "Edge Width " and "Edge Style " must end with space.
--edge_width = \u8fde\u7ebf\u5bbd\u5ea6
- edge_style = \u8fde\u7ebf\u98ce\u683c
-+edge_width = \u8fde\u7ebf\u5bbd\u5ea6
- menu_file_import = \u5bfc\u5165
- menu_file_export = \u5bfc\u51fa
- edit_node = \u7f16\u8f91\u8282\u70b9
-@@ -237,8 +247,9 @@
- goto_link_node_action = \u8df3\u5230\u94fe\u63a5
- #fc, 14.11.2004:
- undefined_error = \u5f02\u5e38\u9519\u8bef\u53d1\u751f. \u8bf7\u53d1\u9001bug\u62a5\u544a.
--cannot_add_parent_diff_parents = \u6240\u6709\u8282\u70b9\u4e0d\u9700\u5728\u540c\u4e00\u7236\u8282\u70b9\u4e0b\u624d\u80fd\u5e94\u7528\u6b64\u529f\u80fd.
- cannot_add_parent_to_root = \u6839\u8282\u70b9\u4e0d\u80fd\u6dfb\u52a0\u7236\u8282\u70b9.
-+cannot_delete_root = \u6839\u8282\u70b9\u4e0d\u80fd\u88ab\u5220\u9664\u6216\u8005\u526a\u5207\u3002
-+cannot_add_parent_diff_parents = \u6240\u6709\u8282\u70b9\u4e0d\u9700\u5728\u540c\u4e00\u7236\u8282\u70b9\u4e0b\u624d\u80fd\u5e94\u7528\u6b64\u529f\u80fd.
- no_format_copy_before_format_paste = \u590d\u5236\uff08\u683c\u5f0f\uff09\u540e\u624d\u53ef\u7c98\u8d34\u683c\u5f0f.
- #fc, 15.11.2004:
- accessories/plugins/AutomaticLayout.properties_documentation = <html>\u786e\u5b9a\u56fe\u7684\u5e03\u5c40. <br>\u7b2c\u4e00\u7ea7\u9ed1\u8272, \u7b2c\u4e8c\u7ea7\u84dd\u8272, \u7b49\u7b49.</html>
-@@ -257,6 +268,8 @@
- accessories/plugins/ExportWithXSLT_HTML.properties_name = XHTML\u683c\u5f0f (JavaScript \u7248\u672c)...
- accessories/plugins/ExportWithXSLT_HTML3.properties_documentation=
- accessories/plugins/ExportWithXSLT_HTML3.properties_name = XHTML\u683c\u5f0f (\u53ef\u70b9\u51fb\u56fe\u50cf\u7248\u672c)...
-+accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name = MindManager MindMap\u683c\u5f0f...
-+accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation=
- accessories/plugins/FitToPage.properties_documentation = \u8c03\u8282\u7f29\u653e\u6bd4\u4f8b, \u4f7f\u6574\u4e2a\u56fe\u9002\u5408\u5f53\u524d\u7a97\u4f53.
- accessories/plugins/FitToPage.properties_name = \u7f29\u653e\u9002\u5408\u9875\u9762
- accessories/plugins/FormatCopy.properties_documentation = <html>\u590d\u5236\u8282\u70b9\u7684\u683c\u5f0f.</html>
-@@ -273,8 +286,12 @@
- accessories/plugins/NodeNote.properties_name = \u6ce8\u91ca
- accessories/plugins/PMCalculation.properties_documentation = <html>\u8ba1\u7b97\u4e0d\u540c\u4efb\u52a1\u7684\u6210\u7ee9.</html>
- accessories/plugins/PMCalculation.properties_name = PM\u8ba1\u7b97
-+accessories/plugins/RemoveNote.properties_documentation = <html>\u5220\u9664\u6ce8\u91ca\u5185\u5bb9\u3002</html>
-+accessories/plugins/RemoveNote.properties_name = \u5220\u9664\u6ce8\u91ca
- accessories/plugins/RevisionPlugin.properties_documentation = <html>\u9010\u4e00\u6807\u8bb0\u66f4\u6539\u8fc7\u7684\u8282\u70b9\u7684\u80cc\u666f.</html>
- accessories/plugins/RevisionPlugin.properties_name = \u4ee5\u989c\u8272\uff08\u9ec4\u8272\u80cc\u666f\uff09\u663e\u793a\u66f4\u6539
-+accessories/plugins/SplitNode.properties_documentation = <html>\u8282\u70b9\u88ab\u5206\u5272</html>
-+accessories/plugins/SplitNode.properties_name = \u5206\u5272\u8282\u70b9
- accessories/plugins/UnfoldAll.properties_documentation = <html>\u5c55\u5f00\u6240\u9009\u8282\u70b9\u53ca\u4ed6\u4eec\u7684\u5b50\u8282\u70b9.</html>
- accessories/plugins/UnfoldAll.properties_name = \u5c55\u5f00\u5168\u90e8\uff08\u6240\u9009\u53ca\u5b50\u8282\u70b9\uff09
- accessories/plugins/FoldAll.properties_documentation = <html>\u6298\u53e0\u6240\u9009\u8282\u70b9\u53ca\u4ed6\u4eec\u7684\u5b50\u8282\u70b9.</html>
-@@ -328,6 +345,11 @@
- plugins/TimeManagement.xml_minute= \u5206:
- plugins/TimeManagement.xml_hour= \u65f6:
- plugins/TimeManagement.xml_WindowTitle=\u65f6\u95f4\u7ba1\u7406
+@@ -372,6 +370,8 @@
+ plugins/TimeList.xml_documentation=\u663e\u793a\u6240\u6709\u65e5\u7a0b\u53ca\u76f8\u5e94\u8282\u70b9.
+ plugins/TimeList.xml_name=\u663e\u793a\u65e5\u7a0b\u5b89\u6392 ...
+ remove_node_background_color = \u5220\u9664\u8282\u70b9\u80cc\u666f\u989c\u8272
++#plugins/NodeList.xml_documentation=\u663e\u793a\u6240\u6709\u8282\u70b9\u7684\u521b\u5efa/\u5220\u9664\u65e5\u671f\u3002
++#plugins/NodeList.xml_name=\u663e\u793a\u8111\u56fe\u5386\u53f2 ...
+ plugins/TimeList.xml_Modified=\u4fee\u6539
+ plugins/TimeList.xml_Created=\u521b\u5efa
+ plugins/TimeList.xml_Date=\u65e5\u671f
+@@ -430,6 +430,7 @@
+ attributes_import_tooltip=\u4ece\u52a0\u8f7d\u7684\u5176\u4ed6\u5bfc\u56fe\u4e2d\u5bfc\u5165\u5c5e\u6027
+ attributes_assign_dialog=\u6307\u5b9a\u5c5e\u6027(&g)...
+ attributes_visible=\u9009\u5b9a\u53ef\u89c1
+
-+plugins/latex/LatexNodeHook.properties_documentation = <html>Latex \u516c\u5f0f</html>
-+plugins/latex/LatexNodeHook.properties_name = &Latex
-+plugins/latex/LatexNodeHook.editorTitle = \u7f16\u8f91\u5668\uff0c\u5173\u95ed\u4ee5\u63a5\u53d7
-+
- # fc, 18.2.2005:
- accessories/plugins/HierarchicalIcons.properties_documentation=\u4e0d\u8bba\u5b50\u3001\u4e3b\u8282\u70b9\u7684\u56fe\u6807\uff0c\u90fd\u5c06\u7f29\u5c0f\u663e\u793a.
- accessories/plugins/HierarchicalIcons.properties_name=\u68af\u7ea7\u56fe\u6807\u663e\u793a
-@@ -366,6 +388,76 @@
- plugins/RemoveReminder.xml_name=\u5220\u9664\u63d0\u9192
- # fc, 3.5.2005:
- plugins/TimeManagement.xml_reminderButton_tooltip=<html>\u5f53\u7ed9\u5b9a\u65f6\u95f4\u6709\u4e00\u4e2a\u5b9a\u65f6\u5668\u88ab\u8bbe\u7f6e. \u901a\u8fc7\u95ea\u70c1\u56fe\u6807\u63d0\u9192\u4f60.<br> \u5173\u95ed\u56fe\u518d\u6b21\u6253\u5f00\u56fe\u65f6\uff0c\u5b9a\u65f6\u5668\u5c06\u6fc0\u6d3b.</html>
-+# dimitri, 8.05.05
-+filter_toolbar=\u8fc7\u6ee4\u5668
-+filter_dialog=\u8fc7\u6ee4\u5668\u7f16\u8f91\u5668
-+filter_no_filtering=\u65e0\u8fc7\u6ee4
-+filter_selected_node_view=\u5f53\u524d\u9009\u62e9\u7684\u8282\u70b9
-+filter_conditions = \u8fc7\u6ee4\u5668
-+filter_edit=\u7f16\u8f91
-+filter_edit_description=\u7f16\u8f91\u8fc7\u6ee4\u5217\u8868
-+filter_unfold_ancestors=\u6298\u53e0\u8fc7\u6ee4\u7684\u8282\u70b9
-+filter_icon=\u56fe\u6807
-+filter_node=\u8282\u70b9\u5185\u5bb9
-+filter_exist=\u5b58\u5728
-+filter_does_not_exist=\u4e0d\u5b58\u5728
-+filter_contains=\u5305\u542b
-+filter_is_equal_to=\u7b49\u4e8e
-+filter_is_not_equal_to=\u4e0d\u7b49\u4e8e
-+filter_ignore_case=\u5ffd\u7565\u5927\u5c0f\u5199
-+filter_enter_value=\u8f93\u5165\u503c
-+filter_add=\u6dfb\u52a0
-+filter_delete=\u5220\u9664
-+filter_select=\u9009\u62e9
-+filter_not=\u4e0d
-+filter_and=\u4e0e
-+filter_or=\u6216
-+filter_show_ancestors=\u663e\u793a\u7956\u5148
-+filter_show_descendants=\u663e\u793a\u540e\u7ee7
-+# dimitri, 10.07.2005
-+attributes_all=\u6240\u6709\u5c5e\u6027
-+attributes_attribute=\u5c5e\u6027
-+attributes_close=\u5173\u95ed
-+attribute_delete=\u5220\u9664\u6240\u6709\u503c
-+attribute_delete_value=\u5220\u9664\u8be5\u503c
-+attributes_edit=\u7f16\u8f91
-+attributes_edit_in_place=\u7f16\u8f91\u5c5e\u6027
-+attributes_edit_tooltip=\u7f16\u8f91
-+attribute_font_size_tooltip=\u5b57\u4f53\u5c5e\u6027
-+attributes_dialog=\u5c5e\u6027\u7ba1\u7406...
-+attributes_dialog_title=\u5c5e\u6027\u7ba1\u7406
-+attributes_import=\u5bfc\u5165
-+attributes_import_tooltip=\u4ece\u5176\u4ed6\u52a0\u8f7d\u7684\u8111\u56fe\u5bfc\u5165\u5c5e\u6027
-+attributes_assign_dialog=\u8bbe\u7f6e\u5c5e\u6027...
-+attributes_visible=\u9009\u62e9\u53ef\u89c1
-+attributes_visible_tooltip=\u901a\u8fc7 \u89c6\u56fe->\u5c5e\u6027->\u663e\u793a\u9009\u62e9\u7684\u5c5e\u6027
-+#attributes_visible_tooltip=\u9009\u62e9\u53ef\u89c1
-+attributes_refresh=\u5237\u65b0
-+attribute_replace=\u66ff\u6362
-+attributes_restriction=\u9650\u5236\u96c6\u5408
-+attributes_restricted_attributes_tooltip=\u5c5e\u6027\u7684\u9650\u5236\u96c6\u5408
-+attributes_restricted_values_tooltip=\u5f53\u524d\u5c5e\u6027\u7684\u53d6\u503c\u7684\u9650\u5236\u96c6\u5408
-+attributes_select_all=\u6240\u6709
-+attributes_select_all_tooltip=\u9009\u62e9 / \u53cd\u9009\u6240\u6709
-+attributes_for_selected=\u9009\u62e9\u7684\u8282\u70b9
-+attributes_for_visible=\u6240\u6709\u53ef\u89c1\u8282\u70b9
-+attributes_deselect_all=Nothing
-+attribute_list_box_label_text=\u5b58\u5728\u7684\u503c
-+attributes_popup_edit=\u7f16\u8f91
-+attributes_popup_optimal_width=\u9002\u5408\u5bbd\u5ea6
-+attributes_popup_hide=\u9690\u85cf
-+attributes_popup_new=\u65b0\u5c5e\u6027
-+attributes_popup_delete=\u5220\u9664
-+attributes_popup_up=\u4e0a
-+attributes_popup_down=\u4e0b
-+attributes_show=\u663e\u793a
-+attributes_show_all = \u663e\u793a\u6240\u6709\u5c5e\u6027
-+attributes_show_selected = \u663e\u793a\u9009\u62e9\u7684\u5c5e\u6027
-+attributes_hide_all = \u9690\u85cf\u6240\u6709\u5c5e\u6027
-+attribute_top=\u52a0\u8f7d\u8111\u56fe\u7684\u6240\u6709\u5df2\u77e5\u5c5e\u6027
-+attributes_skip_root=\u5ffd\u7565\u6839\u8282\u70b9
-+atributes_no_import_candidates_found=\u672a\u53d1\u73b0\u65b0\u5c5e\u6027
-+attributes_adding_empty_attribute_error=\u5c5e\u6027\u540d\u79f0\u65e0\u6cd5\u4f7f\u7528\u7a7a\u5b57\u7b26\u4e32
- # fc, 10.5.2005:
- property_dialog=\u9996\u9009\u9879 ...
- OptionPanel.automatic=\u81ea\u52a8
-@@ -374,6 +466,7 @@
- OptionPanel.en=\u82f1\u8bed
- OptionPanel.es=\u897f\u73ed\u7259\u8bed
- OptionPanel.fr=\u6cd5\u8bed
-+OptionPanel.gl=Gl
- OptionPanel.hu=\u5308\u7259\u5229\u8bed
- OptionPanel.it=\u610f\u5927\u5229\u8bed
- OptionPanel.ja=\u65e5\u8bed
-@@ -440,12 +533,19 @@
- OptionPanel.standardnodetextcolor.tooltip=<html>\u6807\u51c6\u8282\u70b9\u989c\u8272. html \u7b26\u53f7\u8868\u793a (#RRGGBB 16\u8fdb\u5236) </html>
- OptionPanel.standardselectednodecolor=\u6807\u51c6\u8282\u70b9\u9009\u4e2d\u989c\u8272
- OptionPanel.standardselectednodecolor.tooltip=<html>\u8282\u70b9\u9009\u4e2d\u65f6\u7684\u6807\u51c6\u989c\u8272. html \u7b26\u53f7\u8868\u793a (#RRGGBB 16\u8fdb\u5236) </html>
-+OptionPanel.standardselectednoderectanglecolor=\u9009\u62e9\u8282\u70b9\u7684\u6ce1\u6846\u989c\u8272
-+OptionPanel.standardselectednoderectanglecolor.tooltip=<html>\u9009\u62e9\u7684\u8282\u70b9\u7684\u6ce1\u6846\u7684\u989c\u8272\u3002\u4ee5html\u8bb0\u6cd5(\u5341\u516d\u8fdb\u5236\u7684 #RRGGBB) </html>
-+OptionPanel.standarddrawrectangleforselection=\u4ee5\u6ce1\u6846\u663e\u793a\u9009\u62e9\u7684\u8282\u70b9
-+OptionPanel.standarddrawrectangleforselection.tooltip=<html>\u4ee5\u6ce1\u6846\u6807\u8bb0\u9009\u62e9\u7684\u8282\u70b9\u3002</html>
- OptionPanel.standardedgecolor=\u6807\u51c6\u8fb9\u6846\u989c\u8272
- OptionPanel.standardedgecolor.tooltip=<html>html \u7b26\u53f7\u8868\u793a\u6807\u51c6\u8fb9\u6846\u989c\u8272 </html>
- OptionPanel.standardlinkcolor=\u6807\u51c6\u94fe\u63a5\u989c\u8272
- OptionPanel.standardlinkcolor.tooltip=<html>html \u7b26\u53f7\u8868\u793a\u6807\u51c6\u94fe\u63a5\u989c\u8272</html>
- OptionPanel.standardbackgroundcolor=\u6807\u51c6\u80cc\u666f\u989c\u8272
- OptionPanel.standardbackgroundcolor.tooltip=<html>html \u7b26\u53f7\u8868\u793a\u6807\u51c6\u80cc\u666f\u989c\u8272 </html>
-+OptionPanel.printonwhitebackground=<html>\u4ee5\u767d\u80cc\u666f\u6253\u5370</html>
-+OptionPanel.printonwhitebackground.tooltip=<html>\u603b\u662f\u4ee5\u767d\u8272\u80cc\u666f\u6253\u5370</html>
-+
- OptionPanel.standardcloudcolor=\u6807\u51c6\u4e91\u6846\u989c\u8272
- OptionPanel.standardcloudcolor.tooltip=<html> html \u7b26\u53f7\u8868\u793a\u6807\u51c6\u4e91\u6846\u989c\u8272 </html>
- OptionPanel.defaultfont=\u9ed8\u8ba4\u5b57\u4f53
-@@ -476,6 +576,7 @@
- OptionPanel.el__min_default_window_width=\u9ed8\u8ba4\u7a97\u53e3\u6700\u5c0f\u5bbd\u5ea6
- OptionPanel.el__max_default_window_width=\u9ed8\u8ba4\u7a97\u53e3\u6700\u5927\u5bbd\u5ea6
- OptionPanel.el__enter_confirms_by_default=\u9ed8\u8ba4\u8fdb\u5165\u786e\u8ba4
-+OptionPanel.el__show_icon_for_attributes=\u4e3a\u5c5e\u6027\u663e\u793a\u56fe\u6807
- OptionPanel.Keystrokes=\u6309\u952e
- OptionPanel.keystroke_newMap=\u65b0\u5efa
- OptionPanel.keystroke_open=\u6253\u5f00
-@@ -603,6 +704,7 @@
- OptionPanel.separator.automatic_save=\u81ea\u52a8\u4fdd\u5b58
- OptionPanel.separator.default_styles=\u9ed8\u8ba4\u98ce\u683c
- OptionPanel.separator.default_colors=\u9ed8\u8ba4\u989c\u8272
-+OptionPanel.separator.selection_colors=\u9009\u62e9\u989c\u8272
- OptionPanel.separator.default_fonts=\u9ed8\u8ba4\u5b57\u4f53
- OptionPanel.separator.other_defaults=\u5176\u5b83\u9ed8\u8ba4\u8bbe\u5b9a
- OptionPanel.separator.look_and_feel=\u5916\u89c2\u611f\u89c9
-@@ -620,6 +722,14 @@
- OptionPanel.separator.selection_method=\u9009\u4e2d\u65b9\u5f0f
- OptionPanel.separator.browser=\u6d4f\u89c8\u5668
- OptionPanel.separator.html_export=Html\u5bfc\u51fa
-+OptionPanel.separator.attributes=\u5c5e\u6027
-+OptionPanel.separator.icons=\u201c\u9009\u62e9\u56fe\u6807...\u201d\u4e2d\u7684\u56fe\u6807
-+OptionPanel.keystroke_edit_attributes=\u7f16\u8f91\u5c5e\u6027
-+OptionPanel.keystroke_show_all_attributes=\u663e\u793a\u6240\u6709\u5c5e\u6027
-+OptionPanel.keystroke_show_selected_attributes=\u663e\u793a\u9009\u62e9\u7684\u5c5e\u6027
-+OptionPanel.keystroke_hide_all_attributes=\u9690\u85cf\u6240\u6709\u5c5e\u6027
-+OptionPanel.keystroke_show_attribute_manager=\u663e\u793a\u5c5e\u6027\u7ba1\u7406\u5668
-+OptionPanel.keystroke_assign_attributes=\u8bbe\u7f6e\u5c5e\u6027 ...
- # fc, 2.6.2005:
- OptionPanel.antialias.tooltip=<html>\u786e\u5b9a\u56fe\u7684\u8d28\u91cf. \u8d8a\u5e73\u6ed1\u5904\u7406\u65f6\u95f4\u8d8a\u957f.</html>
- OptionPanel.antialias=\u6297\u952f\u9f7f
-@@ -643,4 +753,618 @@
- # fc, 10.7.2005:
- OptionPanel.separator.undo=\u64a4\u6d88
- OptionPanel.undo_levels=\u64a4\u9500\u6b21\u6570
--OptionPanel.undo_levels.tooltip=<html>\u51b3\u5b9a\u5b58\u50a8\u201c\u64a4\u9500\u201d\u7684\u6700\u5927\u6b65\u6570.</html>
-\ No newline at end of file
-+OptionPanel.undo_levels.tooltip=<html>\u51b3\u5b9a\u5b58\u50a8\u201c\u64a4\u9500\u201d\u7684\u6700\u5927\u6b65\u6570.</html>
-+#==================== \u5c1a\u672a\u7ffb\u8bd1 ====================
-+# 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 not found.
-+# fc, 15.2.06
-+icon_smily_bad = I'm not amused
-+OptionPanel.hr=Hr
-+OptionPanel.nn=Nn
-+OptionPanel.se=Se
-+
-+OptionPanel.unfold_on_paste=Unfold node on paste
-+OptionPanel.unfold_on_paste.tooltip=Unfold node on paste or Drag-And-Drop
-+
-+# fc, 16.2.06
-+accessories/plugins/ExportWithXSLT_Applet.properties_documentation=Exports the map as a java browser applet.
-+accessories/plugins/ExportWithXSLT_Applet.properties_name=As Java Applet...
-+accessories/plugins/ExportWithXSLT_Applet.properties_webpage=Web page
-+accessories/plugins/ExportWithXSLT_Flash.properties_documentation=Exports the map as a flash application.
-+accessories/plugins/ExportWithXSLT_Flash.properties_name=As Flash...
-+# fc, 21.2.06
-+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=Node left
-+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 right
-+# fc, 27.2.06:
-+PatternDialog.ColorProperty.ResetColor=ResetColor
-+PatternDialog.EdgeWidth_1=1
-+PatternDialog.EdgeWidth_2=2
-+PatternDialog.EdgeWidth_4=4
-+PatternDialog.EdgeWidth_8=8
-+PatternDialog.EdgeWidth_parent=As parent
-+PatternDialog.EdgeWidth_thin=thin
-+PatternDialog.as_parent=As parent
-+PatternDialog.bezier=bezier
-+PatternDialog.bubble=Bubble
-+PatternDialog.combined=Combined
-+PatternDialog.edgecolor.tooltip=Property of the edge to the parent node (is also applied to all child nodes)
-+PatternDialog.edgecolor=Edge color
-+PatternDialog.edgestyle.tooltip=Property of the edge to the parent node (is also applied to all child nodes)
-+PatternDialog.edgestyle=Edge style
-+PatternDialog.edgewidth.tooltip=Property of the edge to the parent node (is also applied to all child nodes)
-+PatternDialog.edgewidth=Edge width
-+PatternDialog.fork=Fork
-+PatternDialog.linear=linear
-+PatternDialog.nodebackgroundcolor=Node background color
-+PatternDialog.nodecolor=Node color
-+PatternDialog.nodestyle=Node style
-+PatternDialog.nodetext=Node text
-+PatternDialog.separator.EdgeControls=Edges
-+PatternDialog.separator.NodeColors=Node colors
-+PatternDialog.separator.NodeStyles=Node styles
-+PatternDialog.sharp_bezier=sharp bezier
-+PatternDialog.sharp_linear=sharp linear
-+PatternDialog.undefined_font=Undefined font
-+accessories/plugins/ApplyFormatPlugin.properties_documentation=Presents a dialog in which node and edge attributes can be changed at once.
-+accessories/plugins/ApplyFormatPlugin.properties_name=&Change format ...
-+accessories/plugins/ApplyFormatPlugin.dialog.title=Change format of nodes
-+
-+OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=Move left
-+OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=Move right
-+OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=Copy format
-+OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=Paste format
-+OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=Insert icon
-+OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=Indent nodes
-+OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=Split node
-+# OptionPanel.keystroke_accessories/plugins/NodeNote.properties_key=Insert a note
-+OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=Fold one level
-+OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=Unfold on level
-+OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=Fold all
-+OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=Unfold all
-+OptionPanel.separator.others=Other key bindings
-+
-+PatternDialog.separator.General=General
-+PatternDialog.clear_all_setters=Switch all
-+PatternDialog.clear_all_setters.tooltip=Enables or disables all change indications.
-+# fc, 1.3.06:
-+accessories/plugins/ManagePatterns.dialog.title=Manage Patterns...
-+accessories/plugins/ManagePatterns.not_found=Pattern file can't be loaded.
-+accessories/plugins/ManagePatterns.properties_documentation=Change the patterns defined in patterns.xml in an editor. The result is automatically saved.
-+accessories/plugins/ManagePatterns.properties_name=Manage Patterns...
+ attributes_visible_tooltip=\u9009\u5b9a\u53ef\u89c1
+ attributes_refresh=\u5237\u65b0
+ attribute_replace=\u66ff\u6362\u4e3a
+@@ -737,6 +738,8 @@
+ OptionPanel.antialias_none=\u4e0d\u5e73\u6ed1
+ OptionPanel.cs=\u6377\u514b\u8bed
+ OptionPanel.nb=\u632a\u5a01\u8bed(\u4f2f\u514b\u6885\u5c14)
++# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above
++follow_link = \u6253\u5f00\u8d85\u94fe\u63a5
+ OptionPanel.ColorProperty.ResetColor=\u91cd\u8bbe\u989c\u8272
+ # fc, 16.6.2005:
+ OptionPanel.keystroke_option_dialog=\u9996\u9009\u9879
+@@ -833,6 +836,7 @@
+ accessories/plugins/ManagePatterns.not_found=\u6a21\u5f0f\u6587\u4ef6\u4e0d\u80fd\u88ab\u52a0\u8f7d.
+ accessories/plugins/ManagePatterns.properties_documentation=\u5728\u7f16\u8f91\u5668\u4e2d\u4fee\u6539 patterns.xml \u5b9a\u4e49\u7684\u6a21\u5f0f. \u7ed3\u679c\u81ea\u52a8\u4fdd\u5b58.
+ accessories/plugins/ManagePatterns.properties_name=\u7ba1\u7406\u6a21\u5f0f...
+# fc, 14.3.06:
-+PatternDialog.nodefontbold=Bold font
-+PatternDialog.nodefontitalic=Italic font
-+PatternDialog.separator.NodeFont=Node Font
-+# fc, 19.3.06:
-+ManagePatternsPopupDialog.remove=Remove Pattern
-+ManagePatternsPopupDialog.add=Add new Pattern
-+PatternDialog.patternname=Name
-+PatternDialog.patternname.tooltip=Unique pattern name
-+PatternNewNameProperty=New Pattern
-+ManagePatternsPopupDialog.DuplicateNameMessage=You have chosen a name twice. Please change this before leaving this dialog.
-+PatternDialog.childpattern.tooltip=The selected pattern is applied to all children.
-+PatternDialog.childpattern=Child Pattern
-+ManagePatternsPopupDialog.Save=Save and Return
-+PatternDialog.icon.tooltip=If applied, the node will have exactly this icon.
-+PatternDialog.icon=Icon
-+PatternDialog.set_property_text=Change
-+PatternDialog.set_property_text.tooltip=Empty: Don't touch; Minus=Remove property (set default values); Plus=Change property
-+accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Change pattern
-+OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automatic layout patterns
-+OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Patterns
-+PatternToString.color=Color
-+PatternToString.backgroundColor=Background Color
-+OptionPanel.automaticFormat_level1=Root Node Format
-+OptionPanel.automaticFormat_level2=1. Level Node Format
-+PatternToString.NodeFontSize=Font Size
-+OptionPanel.level1=Format of the Root Node
-+OptionPanel.level2=1. Level Node Format
-+OptionPanel.level3=2. Level Node Format
-+OptionPanel.level4=3. Level Node Format
-+OptionPanel.level5=Other's Node Format
-+OptionPanel.automaticFormat_level=Automatic Layout Styles
-+# fc, 13.4.06:
-+ManagePatternsPopupDialog.duplicate=Duplicate Pattern
-+ManagePatternsPopupDialog.from_nodes=Create Pattern From Selected Nodes
-+# fc, 25.5.2006:
-+accessories/plugins/SaveAll.properties_documentation=Saves all open maps.
-+accessories/plugins/SaveAll.properties_name=Save &All
-+accessories/plugins/SaveAll.properties_save_all_cancelled=Operation was not completed successfully.
-+# fc, 23.7.06
-+OptionPanel.loadLastMap=Automatically open last map
-+OptionPanel.loadLastMap.tooltip=<html>When FreeMind starts, it fetches the last opened map automatically if checked.</html>
-+# dan, whenever
-+use_rich_formatting = Use Rich Formatting
-+use_plain_text = Use Plain Text
-+# fc, 30.7.06:
-+FreeMind.progress.gettingPreferenceDirectories=Getting Preference Directories...
-+FreeMind.progress.gettingPreferences=Getting Preferences...
-+FreeMind.progress.updateLookAndFeel=Update Look And Feel...
-+FreeMind.progress.createController=Create Controller...
-+FreeMind.progress.settingPreferences=Setting Preferences...
-+FreeMind.progress.propageteLookAndFeel=Propagete Look And Feel...
-+FreeMind.progress.createInitialMode=Create Initial Mode...
-+FreeMind.progress.startCreateController=Start Create Controller...
-+FreeMind.progress.loadMaps=Load Maps...
-+FreeMind.progress.buildScreen=Build Screen...
-+FreeMind.progress.endStartup=Finish Startup.
-+OptionPanel.tr=Tr
-+OptionPanel.level=Level
-+# fc, 13.8.06:
-+map_not_saved=The map was not saved before.
-+# fc, 27.8.06:
-+plugins/TimeManagement.xml_Find=Find
-+plugins/TimeManagement.xml_Replace=Replace
-+plugins/TimeManagement.xml_Select=Select
-+plugins/TimeManagement.xml_Export=Export Selected Nodes
-+plugins/TimeManagement.xml_Replace_All=Replace All
-+plugins/TimeManagement.xml_Replace_Selected=Replace Selected
-+plugins/TimeManagement.xml_Goto=Goto
-+plugins/TimeManagement.xml_Cancel=Cancel
-+# fc, 2.9.06:
-+automatically_save_message=Map was automatically saved (using the file name {0}) ...
-+plugins/ScriptingEngine.xml_documentation=Evaluates all contained scripts (recursive order, leaves first).
-+plugins/ScriptingEngine.xml_name=Evaluate
-+# fc, 4.9.06
-+OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=Evaluate
-+# fc, 6.9.06:
-+error_applying_template=Error applying XSL template.
-+# fc, 11.10.06:
-+accessories/plugins/NodeNote_jumpto.properties_documentation=Switch to resp. from note window
-+accessories/plugins/NodeNote_jumpto.properties_name=Note Edit Switch
-+#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=ToolTip Width
-+OptionPanel.max_tooltip_width.tooltip=<html>The default tooltip width in pixels.</html>
-+# fc, 13.10.06: renamed:
-+plugins/NodeList.xml_documentation=Shows all nodes as a searchable list with filter properties.
-+# fc, 10.11.2006:
-+OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=Note Edit Switch
-+OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=Show/Hide Note Window
-+# Dimitry 25.10
-+OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=Clear Note
-+# aki 19.10.06: (TJI support)
-+accessories/plugins/ExportWithXSLT_Applet.properties_tji= Task Juggler Include Files
-+accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=<html>Exports tasks from TASKS node to Taskjuggler module. </html>
-+accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=Tasks from TASKS node to TaskJuggler file...
-+accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=<html>Exports resources from RESOURCES node to Taskjuggler module. </html>
-+accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=Resources from RESOURCES node to TaskJuggler file...
-+# fc, 14.12.2006: renamed:
-+plugins/NodeList.xml_name=Find and Replace...
-+plugins/TimeManagement.xml_menu_actions=Actions
-+# fc, 23.12.06:
-+plugins/TimeList.xml_Notes=Notes
-+# fc, 30.12.06:
-+accessories/plugins/SortNodes.properties_documentation=Sorts all children of a node alphabetically.
-+accessories/plugins/SortNodes.properties_name=&Sort Children
-+# fc, 3.1.07:
-+OptionPanel.ar=Ar
-+# fc, 10.1.07:
-+plugins/TimeManagement.xml_WindowTitle_All_Nodes=Search & Replace
-+plugins/ScriptEditor.xml_documentation=Enables to write larger scripts within FreeMind.
-+plugins/ScriptEditor.xml_name=S&cript Editor...
-+# fc, 24.1.07:
-+plugins/ScriptEditor/window.title=Script Editor
-+plugins/ScriptEditor.menu_actions=&Actions
-+plugins/ScriptEditor.run=&Run
-+plugins/ScriptEditor/window.Result=Result:
+ PatternDialog.nodefontbold=\u7c97\u4f53
+ PatternDialog.nodefontitalic=\u659c\u4f53
+ PatternDialog.separator.NodeFont=\u8282\u70b9\u5b57\u4f53
+@@ -955,6 +959,7 @@
+ #
+ # resource bundle with strings for application SimplyHTML
+ # - English Language (default) -
+
-+# SimplyHTML.properties
-+#
-+# resource bundle with strings for application SimplyHTML
-+# - English Language (default) -
+ # edit menu definition
+ simplyhtml.editLabel=\u7f16\u8f91
+
+@@ -1012,6 +1017,7 @@
+ simplyhtml.paraAlignRightTip=\u8bbe\u7f6e\u6bb5\u843d\u53f3\u5bf9\u9f50
+
+ # table menu definition
+
-+# edit menu definition
-+simplyhtml.editLabel=Edit
+ # table menu items
+ simplyhtml.tableLabel=\u8868\u683c
+ simplyhtml.nextTableCellLabel=\u4e0b\u4e00\u4e2a\u5355\u5143\u683c
+@@ -1194,6 +1200,7 @@
+ OptionalDontShowMeAgainDialog.rememberMyDescision=\u8bb0\u4f4f\u6211\u7684\u51b3\u5b9a(&R).
+ OptionalDontShowMeAgainDialog.cancel=\u5426(&N)
+ OptionalDontShowMeAgainDialog.ok=\u662f(&Y)
++OptionPanel.gl=\u683c\u9675\u5170\u8bed
+ OptionPanel.separator.resources_notifications=\u786e\u8ba4
+ OptionPanel.delete_nodes_without_question=\u65e0\u9700\u786e\u8ba4\u5373\u5220\u9664\u8282\u70b9?
+ OptionPanel.delete_nodes_without_question.tooltip=\u5982\u679c\u52fe\u9009\u6b64\u590d\u9009\u6846\uff0c\u5c06\u65e0\u9700\u786e\u8ba4\u5373\u5220\u9664\u8282\u70b9. \u8fd9\u53ef\u80fd\u5bfc\u81f4\u65e0\u610f\u4e2d\u4e22\u5931\u4fe1\u606f.
+@@ -1232,6 +1239,8 @@
+ OptionPanel.separator.root_node_appearance=\u6839\u8282\u70b9\u5916\u89c2
+ OptionPanel.use_common_out_point_for_root_node=\u4ece\u6839\u8282\u70b9\u5f00\u59cb\u8fde\u7ebf
+ OptionPanel.use_common_out_point_for_root_node.tooltip=\u4ece\u6839\u8282\u70b9\u5f00\u59cb\u8fde\u7ebf
+
-+# edit menu items
-+simplyhtml.undoLabel=Undo
-+simplyhtml.undoTip=undo
-+simplyhtml.redoLabel=Redo
-+simplyhtml.redoTip=redo
-+simplyhtml.cutLabel=Cut
-+simplyhtml.cutTip=cut
-+simplyhtml.copyLabel=Copy
-+simplyhtml.copyTip=copy
-+simplyhtml.pasteLabel=Paste
-+simplyhtml.pasteTip=paste
-+simplyhtml.selectAllLabel=Select all
-+simplyhtml.findReplaceLabel=Find & Replace
-+simplyhtml.findReplaceTip=find & replace
-+
-+#insert menu definition
-+simplyhtml.insertTableLabel=Table...
-+# format menu definition
-+simplyhtml.formatLabel=Format
-+
-+# format menu items
-+simplyhtml.fontLabel=Font...
-+simplyhtml.fontTip=Format font...
-+simplyhtml.clearFormatLabel=Remove Formatting
-+simplyhtml.clearFormatTip=Remove Formatting
-+simplyhtml.fontBoldLabel=Bold
-+simplyhtml.fontBoldImage=resources/bold.gif
-+simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif
-+simplyhtml.fontBoldTip=switch bold on/off
-+simplyhtml.fontItalicLabel=Italic
-+simplyhtml.fontItalicImage=resources/italic.gif
-+simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif
-+simplyhtml.fontItalicTip=switch italic on/off
-+simplyhtml.fontUnderlineLabel=Underline
-+simplyhtml.fontUnderlineImage=resources/uline.gif
-+simplyhtml.fontUnderlineTip=switch underline on/off
-+simplyhtml.formatTableLabel=Table...
-+simplyhtml.formatTableTip=Format table
-+simplyhtml.toggleBulletsLabel=Bulleted list on/off
-+simplyhtml.toggleBulletsTip=bulleted list on/off
-+simplyhtml.toggleNumbersLabel=Numbered list on/off
-+simplyhtml.toggleNumbersTip=numbered list on/off
-+simplyhtml.formatListLabel=List...
-+simplyhtml.formatListTip=change list format
-+simplyhtml.formatParaLabel=Paragraph...
-+simplyhtml.formatParaTip=Change paragraph format
-+simplyhtml.paraAlignLeftLabel=Align left
-+simplyhtml.paraAlignLeftTip=Set paragraph left alignment
-+simplyhtml.paraAlignCenterLabel=Align center
-+simplyhtml.paraAlignCenterTip=Set paragraph center alignment
-+simplyhtml.paraAlignRightLabel=Align right
-+simplyhtml.paraAlignRightTip=Set paragraph right alignment
-+
-+# table menu definition
-+
-+# table menu items
-+simplyhtml.tableLabel=Table
-+simplyhtml.nextTableCellLabel=Next cell
-+simplyhtml.prevTableCellLabel=Previous cell
-+simplyhtml.insertTableRowLabel=Insert row
-+simplyhtml.insertTableColLabel=Insert column
-+simplyhtml.appendTableRowLabel=Append row
-+simplyhtml.appendTableColLabel=Append col
-+simplyhtml.deleteTableRowLabel=Delete row
-+simplyhtml.deleteTableColLabel=Delete column
-+
-+# help menu items
-+simplyhtml.helpLabel=Help
-+simplyhtml.aboutLabel=About SimplyHTML...
-+
-+# About frame
-+simplyhtml.aboutFrameTitle=About this application
-+
-+# Font Dialog
-+simplyhtml.fontDialogTitle=Format Font
-+
-+# Font panel
-+simplyhtml.uLineLabel=Underline
-+simplyhtml.strikeLabel=Strikethrough
-+simplyhtml.previewLabel=Preview
-+simplyhtml.previewText=Preview text
-+simplyhtml.familyLabel=Family
-+simplyhtml.sizeLabel=Size
-+simplyhtml.plainName=plain
-+simplyhtml.boldName=bold
-+simplyhtml.italicName=italic
... ...
... ...
800 more lines...
... ...
... ...
_______________________________________________
Svn mailing list
S...@list.worldhello.net
http://www.worldhello.net/mailman/listinfo/svn