freeplane-1.7.10/0040755 0000000 0000000 00000000000 13554640351 012301 5ustar000000000 0000000 freeplane-1.7.10/bin.dist.gradle0100644 0000000 0000000 00000000730 13147065166 015173 0ustar000000000 0000000 task binZip(type: Zip) { destinationDir = new File(globalDist) archiveName = 'freeplane_bin-' + distVersion + '.zip' from(globalBin) { include('**') exclude('freeplane.sh') } from(globalBin) { include('freeplane.sh') fileMode = 0755 } from(rootDir) { include('license.txt') } into('freeplane-' + distVersion) for (p in subprojects) { dependsOn p.tasks.getByPath("build") } } freeplane-1.7.10/build.gradle0100644 0000000 0000000 00000020142 13552535625 014561 0ustar000000000 0000000 plugins { id "nebula.ospackage" version "5.0.4" } Properties props = new Properties() props.load(new FileInputStream(rootDir.path + '/freeplane/src/viewer/resources/version.properties')) allprojects { //buildscript { // repositories { // mavenCentral() // } // dependencies { // classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:4.4.0' // } //} // in a multi-project setup, all projects must have the same version number! // the real (specific) version number is in freeplane/viewer-resources/version.properties! ext.majorVersion = props['freeplane_version'] ext.versionStatus = props['freeplane_version_status'] ext.minorVersion = System.getProperty('minor', '') ext.distVersion = "$majorVersion${versionStatus.empty?'':'-'+versionStatus}${minorVersion.empty?'':'-pre' + minorVersion}" version = ext.majorVersion // WARNING: this is removed with "gradle clean"!! ext.globalBin = rootDir.path + '/BIN' repositories { mavenCentral() maven { url "http://www.knopflerfish.org/releases/6.1.0/maven2" } maven { url "${project.gradle.gradleUserHomeDir}/local-artifacts" } maven { url "http://dl.bintray.com/freeplane/freeplane" } maven { url "https://repo.spring.io/plugins-release/"} // this is necessary to grab both binary and source jars // for local (git) dependencies flatDir name: 'localGitDepsRepository', dirs: [rootDir.path + "/freeplane/lib", rootDir.path + "/freeplane_plugin_jsyntaxpane/lib"] } } // this is used for (linux) packages, where the dependencies // live on the file system (/usr/share/java/*.jar on Debian): def externalizeJar(File jar) { // do not externalize, jars are copied over to /BUILD // in development workflow! return "lib/${jar.name}" } // this is overridden in linux packages where this might be named // knopflerfish-framework.jar def isKnopflerfishJar(fileName) { return fileName.startsWith('framework-') && fileName.endsWith('.jar'); } def filterAndExternalizePluginDependencies(runtime_files) { return runtime_files.findAll { File file -> !isKnopflerfishJar(file.name) }.findAll { File file -> file.name != "freeplane-${project.version}.jar" && !(file.name.startsWith('freeplane_plugin_') && file.name.endsWith('-' + project.version + '.jar')) }.collect { File file -> externalizeJar(file) } } subprojects { apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'idea' targetCompatibility='1.8' sourceCompatibility='1.8' tasks.withType(JavaCompile) { options.encoding = "UTF-8" } javadoc { options.encoding = "UTF-8" options.docEncoding = "UTF-8" options.charSet = "UTF-8" enabled = false failOnError = false } repositories { maven { url "http://repo1.maven.org/maven2" } } configurations { lib compile.extendsFrom(lib) } dependencies { testCompile 'junit:junit:4.12', 'org.hamcrest:hamcrest-all:1.3', 'org.mockito:mockito-core:2.21.0', 'org.assertj:assertj-core:2.6.0' } task copyEclipseSettings(type: Copy) { from(rootDir.path + "/freeplane_framework/eclipse/settings-templates/") { include("*.prefs") } into(project.file(".settings/")) } eclipseJdt.dependsOn copyEclipseSettings task cleanEclipseSettings(type: Delete) { delete(project.file(".settings")) } cleanEclipseJdt.dependsOn cleanEclipseSettings if (project.hasProperty('TestLoggingFull')) { test { testLogging { events "failed" exceptionFormat "full" } } } } // OSGi projects (/plugin/, freeplane) need this for compilation (e.g. resolve Bundle), // and freeplane_framework needs to copy it to BUILD/framework.jar configure(subprojects.findAll {it.name =~ /plugin/ || it.name =~ /^freeplane$/ || it.name =~ /^freeplane_framework$/}){ dependencies { compile group: 'org.knopflerfish.kf6', name:'framework', version: '8.0.4' } } // common configuration for all OSGi projects... configure(subprojects.findAll {it.name =~ /plugin/ || it.name =~ /^freeplane$/ }) { //apply plugin: 'biz.aQute.bnd.builder' apply plugin: 'osgi' ext.bundleImports = 'nothing.*' ext.bundleExports = '' if (project.name.equals("freeplane")) ext.pluginid = 'org.freeplane.core' afterEvaluate { if (it.name =~ /plugin/) { ext.bundleDeps = filterAndExternalizePluginDependencies(configurations.lib.files) bundleDeps.add(0, "lib/plugin-" + project.version + '.jar') } jar { manifest { name = pluginid symbolicName = pluginid instruction 'Bundle-ClassPath', '., ' + bundleDeps.join(', ') instruction 'Bundle-Vendor', 'Freeplane Project' instruction 'Bundle-Activator', bundleActivator instruction 'Bundle-RequiredExecutionEnvironment', 'JavaSE-1.8' instruction 'Import-Package', bundleImports.replaceAll("\\s+", "") instruction 'Export-Package', bundleExports.replaceAll("\\s+", "") if (it.name =~ /plugin/) { instruction 'Require-Bundle', 'org.freeplane.core' } } //bnd('Bundle-Name': pluginid, // 'Export-Package': bundleExports.replaceAll("\\s+", ""), // 'Bundle-Vendor': 'Freeplane Project', // 'Import-Package': bundleImports.replaceAll("\\s+", ""), // 'Bundle-Activator': bundleActivator, // 'Bundle-RequiredExecutionEnvironment': 'JavaSE-1.8', // 'Bundle-ClassPath': '., ' + bundleDeps.join(', ') // only in plugins: 'Require-Bundle', 'org.freeplane.core' //) } } } // common configuration for all plugins... configure(subprojects.findAll {it.name =~ /plugin/}) { ext.pluginid = project.name.replace("freeplane_plugin_", "org.freeplane.plugin.") ext.bundleActivator = pluginid + ".Activator" task copyOSGiJars(type: Copy) { from ("$buildDir/libs") { include("*.jar") exclude('freeplane-' + project.version + '.jar') exclude('freeplane_plugin_*-' + project.version + '.jar') } from (configurations.lib) { include("*.jar") } from ('lib') { include("*.jar") exclude('*-sources.jar') } into(globalBin + '/plugins/' + pluginid + '/lib/') } task copyOSGiManifest(type: Copy) { from ("$buildDir/tmp/jar/") { include("MANIFEST.MF") } into(globalBin + '/plugins/' + pluginid + '/META-INF/') } task copyOSGiConfig(type: Copy) { from ("OSGI-INF") into(globalBin + '/plugins/' + pluginid + '/OSGI-INF/') } build.dependsOn copyOSGiJars build.dependsOn copyOSGiManifest build.dependsOn copyOSGiConfig // create a separate non-OSGi(!) jar for each plugin! task pluginJar(type: Jar) { baseName = 'plugin' dependsOn classes from (sourceSets.main.output) { include("**") } // unfortunately some resource (xml,properties) files (e.g. preferences.xml in latex plugin) // are in src/main/java... from (sourceSets.main.allSource) { include("**/*.xml") include("**/*.properties") } includeEmptyDirs = false // use a non-OSGi manifest (this jar is referenced from an OSGi bundle)! project.manifest { } } // jar must execute after pluginJar so that the OSGi manifest can still be // picked up from build/tmp/jar (and isn't overwritten by plugin*.jar's non-OSGi // manifest!) jar.dependsOn pluginJar } apply plugin: 'base' // necessary to get the global 'clean' task // remove globalBin/** task cleanBUILD(type: Delete) { delete globalBin } clean.dependsOn(cleanBUILD) task check_translation { dependsOn ':JOrtho_0.4_freeplane:check_translation' dependsOn ':freeplane:check_translation' } task format_translation { dependsOn ':JOrtho_0.4_freeplane:format_translation' dependsOn ':freeplane:format_translation' } apply from: './dist.gradle' apply from: './jdt-config.gradle' freeplane-1.7.10/dist.gradle0100644 0000000 0000000 00000002530 13411636134 014415 0ustar000000000 0000000 ext.globalDist = rootDir.path + '/DIST' task gitinfoDist(type: Copy) { from(globalBin) { include('gitinfo.txt') } from(globalBin + '/resources') { include('gitinfo.properties') } into(globalDist) for (p in subprojects) { dependsOn p.tasks.getByPath("build") } } task historyDist(type:Copy) { from(rootDir.path + '/freeplane/doc/'){ include 'history_en.txt' } into(globalDist) } apply from: './bin.dist.gradle' apply from: './win.dist.gradle' apply from: './mac.dist.gradle' apply from: './src.dist.gradle' apply from: './linux-packages.gradle' // meta task task dist { dependsOn binZip dependsOn srcTarGz dependsOn srcpureTarGz dependsOn windowsInstaller dependsOn windowsPortableInstaller dependsOn gitinfoDist dependsOn historyDist dependsOn freeplaneDeb } // clean task cleanDist(type: Delete) { delete globalDist } clean.dependsOn cleanDist task createGitTag(type: Exec) { def tag = "${versionStatus.empty ? 'release':versionStatus}-$majorVersion${minorVersion.empty ? '':'-pre'+minorVersion}" ignoreExitValue = true doFirst { println "> Press enter to create tag $tag" System.in.newReader().readLine() } commandLine 'git', 'tag', tag } task release { dependsOn (clean, dist, createGitTag) } dist.mustRunAfter clean createGitTag.mustRunAfter dist freeplane-1.7.10/freeplane/0040755 0000000 0000000 00000000000 13554640134 014241 5ustar000000000 0000000 freeplane-1.7.10/freeplane/build.gradle0100644 0000000 0000000 00000026000 13552535625 016521 0ustar000000000 0000000 configurations{ mergedViewerDependencies compile.extendsFrom(mergedViewerDependencies) } dependencies { mergedViewerDependencies 'org.dpolivaev.mnemonicsetter:mnemonicsetter:0.6' lib ':kitfox-svg-salamander-1.1.1-p1' lib 'com.github.robtimus:data-url:1.0.1' lib 'com.bulenkov:darcula:2018.2' lib project(':JOrtho_0.4_freeplane') compile project(':freeplane_api') lib 'commons-lang:commons-lang:2.6', 'commons-io:commons-io:2.4', 'commons-codec:commons-codec:1.8', 'com.jgoodies:jgoodies-forms:1.9.0', 'com.jgoodies:jgoodies-common:1.8.1' lib ('com.lightdev.app.shtm.simplyhtml:SimplyHTML:0.17.3') { exclude module: 'javahelp' exclude module: 'mnemonicsetter' } testRuntime files('src/viewer/resources', 'src/editor/resources', 'src/external/resources') // from flatDir "localGitDepsRepository": lib ':idw-gpl-1.6.1' } sourceSets { viewer {} editor {} external {} } // work around for new gradle bug if subproject name equals to root dir name eclipse { project { name = 'freeplane' } } ext.bundleDeps = configurations.lib.files.collect { externalizeJar(it) } bundleDeps.add(0, "lib/freeplaneosgi-${project.version}.jar") // this is built from :freeplane_mac on a Mac! bundleDeps.add(0, "lib/freeplane_mac-${project.version}.jar") bundleDeps.add(0, "lib/freeplaneeditor-${project.version}.jar") bundleDeps.add(0, "lib/freeplaneviewer.jar") ext.bundleExports = """\ com.inet.jortho, org.freeplane.api, org.freeplane.core.extension, org.freeplane.core.io, org.freeplane.core.io.xml, org.freeplane.core.resources, org.freeplane.core.resources.components, org.freeplane.core.ui, org.freeplane.core.ui.components, org.freeplane.core.ui.components.calendar, org.freeplane.core.ui.components.html, org.freeplane.core.ui.components.resizer, org.freeplane.core.ui.textchanger, org.freeplane.core.ui.menubuilders, org.freeplane.core.ui.menubuilders.action, org.freeplane.core.ui.menubuilders.generic, org.freeplane.core.ui.menubuilders.menu, org.freeplane.core.undo, org.freeplane.core.util, org.freeplane.core.util.collection, org.freeplane.core.util.logging, org.freeplane.features.attribute, org.freeplane.features.attribute.mindmapmode, org.freeplane.features.clipboard, org.freeplane.features.clipboard.mindmapmode, org.freeplane.features.cloud, org.freeplane.features.cloud.mindmapmode, org.freeplane.features.edge, org.freeplane.features.edge.mindmapmode, org.freeplane.features.encrypt, org.freeplane.features.encrypt.mindmapmode, org.freeplane.features.explorer, org.freeplane.features.explorer.mindmapmode, org.freeplane.features.export.mindmapmode, org.freeplane.features.filter, org.freeplane.features.filter.condition, org.freeplane.features.format, org.freeplane.features.help, org.freeplane.features.icon, org.freeplane.features.icon.factory, org.freeplane.features.icon.mindmapmode, org.freeplane.features.link, org.freeplane.features.link.mindmapmode, org.freeplane.features.map, org.freeplane.features.map.clipboard, org.freeplane.features.map.filemode, org.freeplane.features.map.mindmapmode, org.freeplane.features.map.mindmapmode.clipboard, org.freeplane.features.mapio, org.freeplane.features.mapio.mindmapmode, org.freeplane.features.mode, org.freeplane.features.mode.browsemode, org.freeplane.features.mode.filemode, org.freeplane.features.mode.mindmapmode, org.freeplane.features.nodelocation, org.freeplane.features.nodelocation.mindmapmode, org.freeplane.features.nodestyle, org.freeplane.features.nodestyle.filemode, org.freeplane.features.nodestyle.mindmapmode, org.freeplane.features.note, org.freeplane.features.note.mindmapmode, org.freeplane.features.print, org.freeplane.features.script, org.freeplane.features.spellchecker.mindmapmode, org.freeplane.features.styles, org.freeplane.features.styles.mindmapmode, org.freeplane.features.text, org.freeplane.features.text.mindmapmode, org.freeplane.features.time, org.freeplane.features.ui, org.freeplane.features.url, org.freeplane.features.url.mindmapmode, org.freeplane.main.addons, org.freeplane.main.applet, org.freeplane.main.application, org.freeplane.main.application.protocols.freeplaneresource, org.freeplane.main.browsemode, org.freeplane.main.filemode, org.freeplane.main.headlessmode, org.freeplane.main.mindmapmode, org.freeplane.main.mindmapmode.stylemode, org.freeplane.main.osgi, org.freeplane.n3.nanoxml, org.freeplane.plugin.macos, org.freeplane.view.swing.features, org.freeplane.view.swing.features.filepreview, org.freeplane.view.swing.features.nodehistory, org.freeplane.view.swing.features.progress.mindmapmode, org.freeplane.view.swing.features.time.mindmapmode, org.freeplane.view.swing.map, org.freeplane.view.swing.map.attribute, org.freeplane.view.swing.map.cloud, org.freeplane.view.swing.map.edge, org.freeplane.view.swing.map.link, org.freeplane.view.swing.map.mindmapmode, org.freeplane.view.swing.ui, org.freeplane.view.swing.ui.mindmapmode, com.jgoodies.forms.builder, com.jgoodies.forms.debug, com.jgoodies.forms.factories, com.jgoodies.forms.layout, com.jgoodies.forms.util, com.lightdev.app.shtm, org.apache.commons.io, org.apache.commons.io.comparator, org.apache.commons.io.filefilter, org.apache.commons.io.input, org.apache.commons.io.monitor, org.apache.commons.io.output, org.apache.commons.lang, org.apache.commons.lang.builder, org.apache.commons.lang.exception, org.apache.commons.lang.math, org.apache.commons.lang.time """ ext.bundleActivator = 'org.freeplane.main.osgi.Activator' task copyOSGiJars(type: Copy) { from ("$buildDir/libs") { include("*.jar") exclude('freeplane-*.jar') } from (configurations.lib) { include("*.jar") } from ('lib') { include("*.jar") exclude('*-sources.jar') } from (project(':freeplane_mac').jar.outputs.files) into(globalBin + '/core/' + pluginid + '/lib/') } copyOSGiJars.dependsOn project(':freeplane_mac').jar task copyOSGiManifest(type: Copy) { from ("$buildDir/tmp/jar/") { include("MANIFEST.MF") } into(globalBin + '/core/' + pluginid + '/META-INF/') } class PartialJar extends Jar { String[] includedClasses } task editorJar(type: PartialJar) { // use '= project.manifest' to avoid that an OSGi manifest is created! manifest = project.manifest { attributes("Manifest-Version": "1.0", "Main-Class": "org.freeplane.main.application.FreeplaneMain") } baseName = 'freeplaneeditor' dependsOn classes includedClasses = [ "**/application/**", "**/mindmapmode/**", "**/ortho/**", "**/filemode/**", "**/core/resources/ui/**", "translations/**" ] from (sourceSets.main.output) { include(includedClasses) } from (sourceSets.editor.resources) includeEmptyDirs = false } task osgiJar(type: PartialJar) { // use '= project.manifest' to avoid that an OSGi manifest is created! manifest = project.manifest { attributes("Manifest-Version": "1.0") } baseName = 'freeplaneosgi' dependsOn classes includedClasses = [ "**/osgi/**" ] from (sourceSets.main.output) { include(includedClasses) } includeEmptyDirs = false } task viewerJar(type: Jar) { // use '= project.manifest' to avoid that an OSGi manifest is created! manifest = project.manifest { attributes("Manifest-Version": "1.0", "Permissions": "all-permissions", "Codebase": "*", "Application-Library-Allowable-Codebase": "*", "Application-Name": "Freeplane Viewer Applet") } // this must be unversioned because the applet export code relies on this archiveName = 'freeplaneviewer.jar' dependsOn classes from (sourceSets.main.output) { exclude (editorJar.includedClasses) exclude (osgiJar.includedClasses ) } from (sourceSets.viewer.resources) configurations.mergedViewerDependencies.files.each { from(zipTree(it.path)) } includeEmptyDirs = false } apply from: './signjar.gradle' eclipseJdt { doLast { File f = file('.settings/org.eclipse.core.resources.prefs') f.append('''encoding//resources/translations=ISO-8859-1 encoding//viewer-resources/translations=ISO-8859-1 ''') } } apply from: './git.gradle' task copyExternalResources(type: Copy) { from(sourceSets.external.resources) { include('**') } into(globalBin + '/resources') // (exactly) one of these two groups (copy vs. create) is always disabled! dependsOn copyGitTxt dependsOn copyGitProperty dependsOn createGitProperty } task copyDoc(type: Copy) { from('doc/') { include('**') } into(globalBin + '/doc') } jar.dependsOn viewerJar jar.dependsOn editorJar jar.dependsOn osgiJar build.dependsOn copyOSGiJars build.dependsOn copyOSGiManifest build.dependsOn copyExternalResources build.dependsOn copyDoc apply from: './format_translation.gradle' freeplane-1.7.10/freeplane/doc/0040755 0000000 0000000 00000000000 13537427341 015012 5ustar000000000 0000000 freeplane-1.7.10/freeplane/doc/freeplaneApplications.mm0100644 0000000 0000000 00000045374 13371553751 021670 0ustar000000000 0000000

Calculate

freeplane-1.7.10/freeplane/doc/freeplaneApplications_ja.mm0100644 0000000 0000000 00000052744 13371553751 022341 0ustar000000000 0000000

計算する

freeplane-1.7.10/freeplane/doc/freeplaneApplications_nl.mm0100644 0000000 0000000 00000045006 13371553751 022351 0ustar000000000 0000000

Berekenen

freeplane-1.7.10/freeplane/doc/freeplaneFunctions.mm0100644 0000000 0000000 00000113104 13371553363 021174 0ustar000000000 0000000

Hover with the cursor over the different texts to unhide links to Tutorial and Documentation.

N.B. This is text is a Note text..

To switch lthe Note panel on/off:

View > Notes > Displaly note panel.

In node core

See

Text  with in-line hyperlink(s), and:

See

See

Internal arrow-link (one), or:

See

See

See

  • Help > Tutorial Icons 

See

See

See

See

State

See

Standard Style

(double-click free area)

See

Below node core:

Node extensions

See

Text  with in-line hyperlink(s), and:

Node details (text)

See

Can be

hidden

(tooltip)

See

See

Scientific formula

See

Sizeable image (one)

See

  • Help >  Tutorial Image

Drag here

to resize

See

Below node extensions

or in separate window: Note

See

  • Help > Tutorial Note 

See

See

See

 xx 

Indicator tool tip

Indicator Unfold

This text only

appears in

tool tip

Connector

(bilateral)

See

See

Connector

(unilateral)

See

See

Node core in bubble

Protect with password

See

Calculate =3+4

See

The calculated result

does not show if the

map is in read only mode !

Reminder (Calendar)

See

Filter & Sort

See

Template & Style

See

See

Script & Add-on

See

Spell check & Academic Writing suite

See

See

freeplane-1.7.10/freeplane/doc/freeplaneFunctions_ja.mm0100644 0000000 0000000 00000137765 13371553503 021665 0ustar000000000 0000000

チュートリアルマニュアルへのリンクを表示させるには、それぞれのテキスト上でカーソルをホバーリング[カーソルを置いた状態でしばらく待つこと]させてください。

ノート

  • このテキストはノートテキストです。
  • ノートパネルの表示/非表示の切り替えは、「表示 > ノート > ノートパネルを表示」を実行。

ノードコアの機能

参 照

 インライン ハイパーリンク機能付き(複数可)テキスト、及び

参 照

矢印型リンク-同一マップ内向け(1つ)、又は

参 照

参 照

参 照

  • 「ヘルプ > チュートリアル」: アイコン 

参 照

参 照

  • 「ヘルプ > チュートリアル」: 進捗度 

参 照

参 照

参 照

状態

参 照

標準スタイル

(空白部分でダブルクリックして作成)

参 照

ノード拡張情報

 (ノードコアの下)

 の機能

参 照

参 照

インライン ハイパーリンク

機能付き(複数可)テキスト

ノードの詳細 (テキスト)

参 照

非表示に

できます。

(ツールチップ)

参 照

参 照

科学算式

参 照

  • 「ヘルプ >  チュートリアル 科学算式

拡大/縮小可能な画像 (単一)

参 照

  • 「ヘルプ >  チュートリアル」 画   像

サイズ変更は、ここ

をドラッグします。

ノート(拡張情報の下方、又は

独立ウィンドウ表示)の機能

参 照

  • 「ヘルプ > チュートリアル」: ノート 

参 照

参 照

参 照

 xx 

ツールチップ

表示可能の印

折り畳み中の印

このテキストは、

ツールチップにし

か表示されません。

参 照

参 照

参 照

参 照

囲み表示のノードコア

パスワードを使ったデータ保護

参 照

計算 =3+4

参 照

マップ閲覧モード

では、計算結果は

表示されません。

リマインダ(カレンダ

参 照

フィルタ並べ替え

参 照

テンプレートスタイル

参 照

参 照

スクリプトアドオン

参 照

スペルチェックとアカデミック

ライティング・パッケージ

参 照

参 照

freeplane-1.7.10/freeplane/doc/freeplaneFunctions_nl.mm0100644 0000000 0000000 00000110301 13371553503 021655 0ustar000000000 0000000

Beweeg met de cursor over de teksten om hyperlinks zichtbaar te maken naar de Handleiding en de Documentatie.

N.B. Dit is een Notitie tekst..

Om het notitiepaneel aan/uit te schakeln:

  • Beeld > Notities > Toon notitievenster.

See

Tekst  met onderstreepte hyperlink(s), en:

Zie

Zie

Zie

Zie

Zie

Zie

Zie

Zie

Toestand

Zie

Standard Style

Onder de knoopkern:

Knoopuitbreidingen

Zie

Tekst met onderstreepte hyperlink(s), en:

Knoopdetails (tekst)

Zie

Kan verborgen

zijn (tooltip)

Zie

Zie

Wetenschappelijke formule

Zie

Schaalbaar plaatje (één)

Zie

Stel hier

grootte in

Zie

Onder knoopuitbreidingen

of in apart vester: Notitie

Zie

  • Help > Handleiding:  Note 

Zie

Zie

Zie

 xx 

Indicator tool tip

Indicator Openvouwen

This text only

appears in

tool tip

Verbinding

(bilateraal)

Zie

Zie

Verbindingslijn

(unilateraal)

Zie

Zie

(double-click free area)

Zie

Zie

Zie

The calculated result

does not show if the

map is in read only mode !

Zie

Zie

Zie

Script & Add-on

Zie

Spellingscontrole  & Academische schrijver suite

Zie

Zie

freeplane-1.7.10/freeplane/doc/freeplaneTutorial.mm0100644 0000000 0000000 00001424333 13422711013 021022 0ustar000000000 0000000

Tutorial

Freeplane 1.7

Template information

  • Name:
  • Address:

Basically, you just start typing to write text into a node, and end with an

ENTER.

To create a new node press INSERT (on MacOS press TAB) or ENTER.

To navigate nodes use ARROW-KEYS.

To fold/unfold press SPACE.

And to write formatted text you press ALT-ENTER

These are the basics and should give you a feeling of what Freeplane is for

in its core. Have fun, and ask your questions in the freeplane-forum

Freeplane is meant to facilitate thinking, sharing information and getting things done at work, in school and at home. The software supports creating, sharing and using mind maps, which are a kind of information maps. The Wiki Tutorial Freeplane contains concrete examples of  application areas.

The goal of this Tutorial is to describe the most used functions of Freeplane in a simple and systematic way. For more and more detailed information, see the documentation at Help > Documentation.

It is a general practice that people don't like reading manuals. Therefore you only need to read the introduction of this Tutorial to be ready to start mind mapping using the Freeplan main menu bar. The main editing functions are to be found in menu Edit. And some very special functions are to be found in menu Tools.

The chapters after the Introduction are worth reading for the following reason. In Freeplane the same result can be achieved in a number of ways. Using the Freeplane menu generally is not the fastest and most effcient way. The different chapters cover all of the functionality and show what is the most efficient way of doing using socalled context menus. You do not need to read the chapters in order, but can pick the things you are needing at the moment. To help you pick the sections are color coded, with the following meaning:

  1. Beginner (lighter-blue/green): You learn basic elements which could be used for simple but productive tasks like taking notes and brainstorming.
  2. Advanced (yellow): You learn additional elements which could be used for better  organizing information and better communicating meaning.
  3. Professional (orange/brown): You learn about setting preferences and using production and technical tools.

IMPORTANT 

Check here if there exists a language pack add-on for your language.

Check Help > Documentation Maps Online if video guides are available.

Shot cuts or hot keys for most functions.

A mind map is a plane consisting of so called nodes which can display information. In a sense, a node is comparable to a paragraph of a book which can display text, images and other types of information. The difference being that nodes can be moved around and be hidden more easily. This makes maps more versatile in situations where information is being developed or information must be displayed selectively, depending on the users need.

The text you are reading right now is in a node. The text above, "Nodes" is a node. Also the text to the left, "Introduction" is a node. The big oval to the left is a special node called root.

All nodes are connected through lines called edges. The line you see at the left is an

edge. Aseries of connected nodes are similar to branches of a tree. All trees begin in

the root node. Together these branches form a family descendancy. Nodes closer to

the root are called (grand)parents of nodes further away called (grand)children.

Nodes which ar at the same level, but not mutually connected, are called  siblings.

As a rule a node's position is rescricted by its position in the family tree. The exception

to this rule is the so-called free node  which can be positioned independently of all other

nodes.

Generally, you can fold and unfold a node by clicking the node when the circle with plus or minus sign is showing. This circle appears when the cursor is above the node core.  Folding will hide possible children. If a node is folded, it shows a small circle at its child side. Unfolding will reveal hidden children.

If you have me unfolded, to my right you see 4 icons wich also are displayed in the toolbar at the top of the screen. These are icon-buttons with which you can fold/unfold the descendants of a selected node. Right-clicking the folding circle will reveal a context menu with the same icon-buttons for fast access.

Now click on node Introduction  to hide its children  and notice the circle!  And thereafter, click again to continue reading the following node.

Exceptions

  • Clicking the circle with +/- folds/unfolds immediately; clicking elsewhere in the node core folds with a short delay.

  • It is possible to keep a node from folding by setting Edit > Node Group > Always unfolded node (set/unset). This can be useful in cloud groups.
  • If a node being folded has a connector to one of its hidden children. a line (and possibly a label) is visible which can be right-clicked to open the context menu and jump to the connected node..

to display / hide details (such as this and following nodes) select node then press Alt+F2

see screenshot

Go to menubar View > Toolbars and select/deselect the toolbars

Go to menubar View > View Settings and select/deselect options

Menubar > View > Toolbars

menubar  View > Toolbars > Toolbar

View > Toolbars > Filter toolbar

View > Toolbars > F-Bar

View > Toolbars > F-Bar

Much more information about Icons toolbar is available HERE

see screenshot

Preferences is accessed by menubar > Tools > Preferences

Please consider letting Freeplane automatically alert developers when you experience errors.  menubar Tools > Preferences > Environment (tab) > Automatic bug report (section) > Policy (dropdown).  Set to either "Always send" or "Show report dialog".

View > Toolbars > Scrollbars

View > Toolbars > Properties panel

For a detailed discussion of attributes see HERE

For more information see HERE

menubar View > Notes > Note panel position

Format > Map background

> background color

View > View settings > Outline view

Tools > Preferences > Appearance (tab) > Outline view (section)

View > View settings > Full screen mode

Expose any menu item (e.g. Navigate > Goto node with ID...) and hold the Ctrl key down while you click the menu item.

press the key(s) you want to assign for this menu item.  Important: do not press "Enter" or "Return" thinking that is the equivalent of the "OK" button.  You must click the OK button to complete your hotkey assignment.

View > Zoom > Zoom to fit to page

View > View settings > Center selected node

Navigate > Goto root

Navigate > Goto node with ID...

Maps > Maps

Click on the map tab you want to copy, making it the current map.  Then access the menubar View > New map view.

Menubar > View > Hide details

Menubar > View > Toolbars

To open a mind map on Internet, this map must first be copied to your local computer. Menu File > Open map from URL does just this.

The information of a node is displayed in two major area's. One area is called node core because it is situated in the inner area of the node and can have a bubble around it. The text you are reading now is in a node core. The colored area just above the one you are reading now is in the core of another node.

The text in the core can be short like a title, or multi line and can contain different basic display components like images and icons. It can also contain hyperlinks, formulas and components for time mangement and password protection.

Besides in the node core, text can be entered in node details, in notes  and in attributes. These fields are described later.

Core text in-line

When Freeplane first opens you will be greeted by a blank map. It contains one, elliptical form, the root node. The root node contains a text such as "New map". This text is highligted, meaning you can replace it by typing your own text. Simply type your title and press Enter. The Insert  key will add a child node - again just type and press Enter. A second Enter  will add a sibling. That's really all there is to it. If you want to edit an existing node, left-click the node text while keeping Control pressed (META omn MAC OS). It is that simple. You can now easily create a simple map.

Note

  • To add a new line, press Shift + Enter.
  • If you right-click when editing text, a so called context menu for editing text opens, giving quick access to formatting functions like copy and paste.
  • If you first select a text and then right-click, a Format menu is displayed to make text bold etc. This formatting only applies to the selected  text.
  • Editing can be only started using home, end, F2, double click or by starting to type a text

Opens the dialog box associated with the printer on which the map will print.

Creates a new node as a child of  the currently-selected node.

Same effect:

  • press key Ins

Core text in dialog

A second way to edit a node is in a separate dialog. Right-click on the node. This opens the context menu of the node. (This context menu is different from the context menu for editing text !) In this context menu choose Edit core in dialog. You can now type the text and use the shown options to format the text. When you close the dialog by pressing OK, the text will appear in the node. This dialog has more extensive options for formatting text than available wen performing in-line editing.

Note

  • You can also open the edit window in the main menu bar. Choose Edit and then Node core  and you will see Edit node core in dialog.  In the following we write this procedure as Edit > Node core > Edit node core in dialog.

Save the map you just made by pressing the floppy-disk icon in the menu bar (work menu) above, or choose menu File > Save map. Thereafter you can open another map with the map-icon or File > Open saved map.

If you keep Control pressed and click at any free place of a mindmap, a so-called free positional, free floating node opens. This node behaves like a paper post-it: you can move it anywhere, independent of the nodes which are part of the root-hierarchy. The format of this node is determined by the system style Floating node. This standard style can be edited, giving all floating nodes this edited style. A post-it node can be  conected to a hierarchical node by dragging and dropping it on the node of your choice: it will become a child node of this node. For examples of different types of free floating nodes, see the wiki Tutorial Freeplane

The floating nodes with hidden edges are intended for adding meta information to maps like legends, titles, summaries, authors etc. If such informations relates to a whole map, these nodes should have a root node as their parent so that they are always visible and their position does not depend on anything else. Sometimes such information is relevant only for a part of a map. In this case a floating node with hidden edge can be attached to a non root node. For understanding of the context, its parent edge is usually displayed as a dashed line if a node is selected unless its color was set to the map background color.

The free nodes do not require that you hide their edges. The second use case for them is a better use of map space. The automatic layout algorithm does not allow any map branches to overlap. If you want to create more compact maps you can convert some nodes to free nodes. This way they can be placed flexible. And their logical position relative to other sibling nodes now depends on their coordinates. You can see it too if you change to outline view which always reflect logical node positions.

A free node is a node which is freely positionable, independently of the position of the other nodes of the mind map. A free node can be recognized by this behaviour and because the oval handle for moving the node is blue and filled in stead of red and open.  

A new, free node can be generated by keeping Control pressed and clicking a free place of the mind map. The newly generated free node will have the system  style Free floating node, wih proerties rectangular cloud and hidden edge. These properties can be changed in the usual way to e.g. no-cloud and visible edge. It is invisibly connected to the root.

An existing node can be turned into a free node by selecting it and choosing  Edit->Free positioned node (set/reset). In this case the properties of the node (edge, cloud, folding)  stay as they are. You can set the properties for cloud and hidden edge in the usual way . The freed node initially appears near the node it is invisibly connected to and can be moved from there to any desired position by dragging its (blue) oval handle. Moving a free floating node onto another parent / sibling by usual drag and drop cancels its free positioned status.

Note

  • A free node made by clicking a free space of the mind map will be connected to the root node, also if the connecting edge is invisible. This explains why a child node of this free node, if moved onto the upper half of its parent free node, shifts towards the root node.

Hover with the cursor over the left side of me and see my blue, filled oval. Drag me around with this blue handle.

 User-created icons add interest to a node.

from icons toolbar on the left of the Freeplane window

select menubar View > Toolbars > Icons toolbar.

.

or right-click in an empty space of the background and select Icons toolbar

or from icon table

To open, go to menubar Edit > Icons  > Icons from table...

or from icon by category

To open, go to menubar Edit > Icons > Icon by category...

The removing icon buttons are available in the Icons toolbar, Icon from table and in menubar Edit > Icons > Remove icons

Put the file myicon.png in the icons sub directory of the user directory which opens by going in the menubar Tools > Open user directory.

Icons size can be defined in Tool panel > Format tab.

The icons toolbar can be configured to show the icons grouped by category

To configure, go to menubar  Tools > Preferences > Appearance tab > Icons > Structured icon toolbar

To hide or show icons in Freeplane, go to menubar View > View settings > Show icons

The Icon from table can be accessed by creating a keyboard shortcut.

use keyboard arrow keys to select the desired icon and press Enter

To configure icon with keyboard key, go to menubar  Tools > Preferences > Keystrokes tab. Select the icon and press the desired  keyboard key.

Create shortcut from icon by category

Each node core can contain one image which has a fixed "real size".  (If you need a different size, use a drawing program to resize the original image.) To add an image, select the node and choose menu Edit > Node core > Image by choice or link. This same menu can be used to convert the textual hyperlink address of an image to the image itself.

See also

  • Node extensions for adding a scalable image.

An image in a node takes visual space which is scarce.  A hyperlink does not have this disadvantage, while you can still view the image if you press the hyperlink. To add a hyperlink to an image, copy the image source and paste it into the node (this is unlike drag and drop !). If you paste at the upper part of the node, a hyperlink to the image will be added in the node itself. If you paste at the child side of the node a child node will be created with the hyperlink. This hyperlink appears as a red arrow. After pasting, also the textual path to the image will appear. You can safely erase it or replace it with your own text.

Note

  • It is possible to drop an image in stead of a hyperlink-to-an-image by keeping Ctrl pressed while dropping. In this case the image is not in the core, but in node details (resizable image).

See also

  • Inline-hyperlinks (underlined hyperlinks). With these it is possible to have multiple links in the text.

Professional users can add images within text with so-called HTML-code. There is also a script for this. See Help > Documentation.

To add a small progress indicator, select Edit > Core  > Progress >Up. To increase the amount of progress, press   Edit > Core > Progress >Up again (repeatedly).

To ad a large progress indicator, select Edit > Core >Progress > Extended progress. Then to increase the amount of progress %, double click. To decrease: Ctrl-double click.

Note

  • Two images are displayed. The smaller one is a pictogram which is being displayed in the node core. The larger picture is an image displayed in node details.
  • IMPORTANT. The larger image (svg file) cannot be displayed in a Java Applet !

To combine the text of two or more node cores. The default separators are:

  • Joining with line breaks
  • Joining with blank space
  • Joining with comma and blank space

Press ALT + J

or go to menubar

Edit > Node core > Join nodes with "/n"

Go to menubar

Edit > Node core > Join nodes with " "

Go to menubar

Edit > Node core > Join nodes with ", "

Joining node "A" and node "1" using the command "Joining with blank space"

It is possible to configure other types of text separators by going into menubar  Tools > Preferences > Behavior tab and adding the desired separator between double brackets in the Text separator box. For example, adding {{-}} will add the new command in the menubar Edit > Node core > Join nodes with "-".

There are two different actions for splitting nodes. One is called from the main menu, the other from the editor.

  1. A selected, multiline node core can be distributed over several nodes with each node containing one line by selecting the node and choosing menu Edit > Node core > Split node.
  2. When editing a node, the text can be split at the cursor and distributed over two nodes. In the dialog editor, press the Split button. Or in the in-line editor press  Alt + S.

Note

  • Other components like node details are not splitted.
  • See Help > Documentation for the details.

A core text can, like a spreadsheet cell, contain a formula which starts with "=".  If this is the case,  the formula is calculated and only the result is displayed.

Note

  • Scrips can be used to do calculations over branches, hence emulating spreadsheet like behaviour. Click the red arrow to go to the wiki page where this is explained.
  • As a standard setting a node core containing a formula is surrouded by a kind of bubble. You can remove this in View > Node core > Don't mark formula's with a border.
  • The automatic calculation can be prevented by opening the properties panel and setting field  Format  to Text.

You can drag the whole map by:

  • clicking in the background and drag the map around; or
  • pan the map with Ctrl+Shift+Cursor up/down/left/right

You can select a node by just hovering the cursor over it. After a short delay the node will show a blue border indicating it is selected. This is called automatic selection. You can also click a node to select it. Finally also the Goto actions in menu Navigate and method Find will select a node.

The automatic selection of a node can be unpractical in some conditions. You can keep a node selected while moving the cursor over other nodes: select the node and then keep Shift pressed when you move the cursor over other nodes.

With a big map it is easy to get lost. If you press Escape the selection will jump to the root at once.

To disconnect a node from its current parent and connect it to another parent you can simply click and drag it to its new location. As you can read below it makes a difference at which position of the target node you drop. You can also move nodes by sorting.

Each node has two positions where you can drop another node. These positions are visible if the cursor is above it.

  1. If the cursor is near the top of the target node, the whole upper half lights up. If you drop a node here, the node will become a sibling above the target node.
  2. If the cursor is near the child side of the target node, the left or right side of the node lights up. If you drop the node here it will be connected as a child node.

Note

In case of the root it is possible to drop a node to the left or the right side. This is also true in case of a node with a hidden edge.

It is possible to move a whole group of nodes including the summary node:

  1. Select the group : with Shift pressed first select the first node and then select the summary node.
  2. Keep Shift pressed and drag the group to its new location.

After displacing nodes they can be set to their original positions. Select the nodes and choose Edit > Reset node position.

You may want to sort nodes alphabetically. If you select a node, you can sort its children by right-cliking the node and choosing Sort children. More sorting options are available in Edit > Moving and sorting.

Edges are basic relations which define the node hierarchy. You can change the curving of edges, their color and thickness and you can  hide edges. The place to do so is in the Properties panel described below, or  menu Format.

It is possible to connect any two nodes with a line called (bilateral) connector:  right-click a node and drag to the node you want to connect.

The curving of the connector can be changed by left-clicking and dragging the connector. Drag the dotten handle-lines to change the arrow orientation. The style of the connector can be changed and labels can be added to the connector: Right-click the connector and select the options in the context menu that opens.

Note

  • Alternatively you can SHIFT + CTRL + left click to define a connector.

  • You can also select two nodes, then right-click the second node and choose Add connector while keeping Ctrl pressed. After entering a lable, press Enter.

  • For a connector without begin,  a unilateral  connector, right-click the node and drag onto itself.

A group of siblings can be connected to a so called summary node.. This node connects the siblings with an accolade. Select the group of siblings and right-click one of the selected nodes while keeping Ctrl  pressed. Choose New summary node (selected nodes) in the node contextmenu.

Note

  •  There are also more advanced options. Read more about these in the documentation.

It is possible to visually group a whole branch of nodes with a common background called cloud. Right-click the parent of the branch and choose Nodes > Add cloud. You can modify the color and style of the cloud in the Tool panel described below. To prevent the nodes in the node group from folding, select Edit > Node group > All unfolded nodes.

icon-button for Add default cloud

A hyperlink to an address outside the map can be created by right-clicking a node and selecting Link. However, the easiest way to add a hyperlink or group of hyperlinks to external objects, is by drag and drop. Dropping a copy of a directory, file, or web address will generate a child node of the selected node containing a hyperlink. The target address of the hyperlink is contained in the title. This text may be removed or changed without changing the dynamics of the hyperlink itself.

Dropping a group of hyperlinks will generate a group of child nodes, each containing one of the hyperlinks.

To edit the target address of the hyperlink, right-click the node containing the link and choose Links > Add or modify hyperlink (type)... In the dialog that opens you can edit the address. With Ctrl + V a copied address can be pasted in the entry field.

To link to a node in a different mind map, see Link from outside to a particular node.

To remove a hyperlink (arrow-link) or e-mail address, right-click the node and:

  • select Add or modify hyperlink (type)... or press Ctrl + K; and
  • delete the text in the text field ( the address)

Note

  • The appearance of the arrow-hyperlink can be changed in Tool panel, to show the whole node core as underlined text. This is only possible if no other underlined hyperlink(s) is active,
  • If dropping an image file on a node, the image may be shown in stead of the hyperlink. For this keep Ctrl pressed while dropping.

A hyperlink from one node to another node (local hyperlink) can be created by selecting two nodes, then right-clicking one of them while keeping Ctrl pressed, and finally choosing menu Links > Local hyperlink.

To remove a hyperlink (arrow-link) or e-mail address, right-click the node and:

  • select Add or modify hyperlink (type)... or press Ctrl + K; and
  • delete the text in the text field ( the address)

The following procudure makes it easy to make a link between two nodes, especially if two nodes are far apart in the map or are in different maps:

  • right-click one of the nodes to be linked and select Link > Set link anchor
  • right-click the other node to be linked and select Link > Make link from anchor or Link > Make link to anchor.

Note

  • Set link anchor will automatically replace the previous anchor.
  • The anchor will be lost after exiting Freeplane.
  • See below for a different procedure if nodes are more close to each other.
  • See attributes how to set  a link in an attribute value. There is an easy way to link to other nodes as well.

Each node can be assigned an alias as follows:

  • Select Menu item "Set node alias" from node pop-up menu or Edit->Node properties.
  • Enter alias consisting of letters, digits, underscores including at least one letter e.g. #at(:~my_alias). Spaces are not allowed.
  • Check "globally selectable" box end press OK.

Globally selectable nodes without content in alias field can be accessed by their content as described later.

Nodes with global aliases can by linked using a text hyperlink of the form #at(:~my_alias) typed in a hyperlink text dialog

Generally all nodes can be linked using node paths in hyperlinks.

Path examples:

  node.at(":'house'/'kitchen'/~chairs/~2")
     - take global node with text 'house',
     - in its subtree node find with text 'kitchen'
     - find its child node with alias 'chairs'
     - return the second child node of the chairs

  node.at(".. 'house'/**/~dog")
      -- return node with alias 'dog' within subtree 
         of ancestor node with text 'house' 
Following path elements are defined:

Child node:

 'node text' or /"node text" : child node with text 'node text'
 'node...' : child node containing text starting with 'node'
 * or '...' : any child node
 ~1 : child node at position 1 ( any number starting with 1 is allowed)
 ~nodeAlias : child node with alias 'nodeAlias', node alias can not be a number
 because numbers are reserved for the previous selector.

Descendant node:

 /**/ 

Parent node:

 ..

Ancestor node:

 ..'node text' or "node text" : the closest ancestor node with text 'node text'
 ..'node...' : the closest ancestor node containing text starting with 'node'
 ..~2  : second ancestor node also the parent node of the parent node (any positive number is allowed)
 ..~nodeAlias : the closest ancestor node with alias 'nodeAlias', node alias can not be a number
 

Root node

Prefix / as the first path character means the path starts from the root node.
 /'node text' or /"node text" : child node of the root with text 'node text'
 /'node...' : child node of the root containing text starting with 'node'
 /~nodeAlias : child node of the root with alias 'nodeAlias', node alias can not be a number
 

Global node

(allowed only as the first path element). Here global node is a node carrying global flag which can be set using menu or by script.
 :'node text' or :"node text" : global node with text 'node text'
 :'node...' : global node containing text starting with 'node'
 :~nodeAlias : global node with alias 'nodeAlias', 
node alias can not be a number

The simplest way to create an e-mail link which automatically opens your email program is to copy and paste the email address into a node. This will generate a child node of the selected node with the link. The text of the child node will consist of the e-mail address. You may replace this address by e.g. only the name.

If you want to add the e-mail link to a particular node (and not to its newly generated child), right-click the node and choose Add or modify hyperlink (type)... Then enter in the text field:

  • mailto:emailaddress
     e.g. mailto:jokro@freeplane.nl

To remove a hyperlink (arrow-link) or e-mail address, right-click the node and:

  • select Add or modify hyperlink (type)... or press Ctrl + K; and
  • delete the text in the text field ( the address)

Underlined hyperlinks .

To define an underlined hyperlink (HTML-link), first open the text dialog for  Node core, Node details or Note. Then type and select the piece of text to which the link applies. And finally select  in the Edit menu of the dialog window Add hyperlink (choose)... or Add or modify hyperlink (type). In the latter case you can  type the address of the hyperlink or you can paste a copied address by pressing Ctr + V. Example link: This link brings you to the Freeplane Open Forum.

Note

  • To change the text of the hyperlink, simply retype it. This will not alter the hyperlink address.
  • To change the address of the hyperlink, select the whole underlined text and then choose again Add hyperlink (choose)... or Add or modify hyperlink (type).
  • There can be multiple underlined hyperlinks in one Node core, Node details or Note field.
  • If the text is unformatted, or is formatted with the properties panel, the links are blue. If the text is formatted with the menu's of the edit-dialog, it has the color and size set in this dialog.
  • Ta add an internal hyperlink to another node, put #NodeId as address. To get the NodeID, right-click the node and select Copy NodeId. Then paste the NodeId with Ctrl + V in the link address which opens when you selct Add or modify hyperlink (type). Don't forget to put # before the nodeId.
  • To link to a node in a different mind map, see Link from outside to a particular node.
  • To link to a node in the same mindmap, the address should contain #NodeID. NodeID is got by rightclicking and selecting Copy node ID. It can be pasted with Ctrl + V in the fiield for the link address.
  • To remove the address and the text of an underlined hyperlink, delete all underlined text of the hyperlink. To delete only the address, leaving the text:
    • put the cursor inside the underlined text (do not select the text)
    • Choose Edit > Add or modify hyperlink (type)..
    • Delete the address in the dialog that opens.

You can also connect the menu item to a node, so that clicking the node will activate the menu item. To connect a node directly to a menu item, right-click the node and choose Link  > Add hyperlink to menu item...

To remove a hyperlink (arrow-link) or e-mail address, right-click the node and:

  • select Add or modify hyperlink (type)... or press Ctrl + K; and
  • delete the text in the text field ( the address)

If you want to activate a menu item, you have to to navigate to it and click the menu item. To be able to work faster, you can connect a short cut or F-key to the menu item. For this choose Tools > Assign shortcut. You can also save a named sets with short keys for different situations with Tools > Hotkeys > Save presets. To install a previously saved set, just click Tools > Hotkeys and select a set from the list.

To jump from another program or source mind map to a particular node in a target mindmap, the address field of the hyperlink should contain the path to the target mind map and the nodeID, seperated by #. If source and target mind map are in the same directory, the address can be defined  as destination.mm#NodeID, e.g.  as WhatIsMindmapping.mm#ID_930373151.  This has the advantage that if the containing direcory is moved as a whole, the link keeps correct. In the other case the absolute path should be provided. To get the full pathname of a node, right-click the node and select Copy node URI. Next you can paste the address with  Cntrl + V  in the edit field for the link address. 

Note

  • Jumping to a particular node only works for applications which pass the nodeID information. Of course Freeplane does this. Many other applications like MSWord do not pass the nodeID, hence you can only jump to the root node.( A work around in these cases might be to save the mind map in a folding state which shows the node you want to jum to.)

Changes font to Bold of all text in the node core

Changes font to Italic of all text in the node core

You can define the default cloud in menu Tools > Preferences > Defaults tab

Some of the properties in the Tool panel are also available as icons in the tool bar which is below the main menu bar. Examples are italic and bold.

Important

  • Bold and italic set  in the Tool panel, menu Format or with the toolbar, are applied (forced) to the whole node core.
  • To apply bold and italic to a part of the node core, use the method described above in node Beginner map.
  • Using both methods at the same time to the same node may give unexpected effects. For example, it is not possible to remove bold set with the first method by using the second method.

Format menu contains also some properties of a node which cannot be set in the Format tab in the Tool panel.

Go to menu Format and select the format property to modify.

Changes font to Bold of all text in the node

Changes font to Italic of all text in the node

Reset the default color of the text by selecting Use default

The properties in the properties panel are also available through menu Format. Menu Format contains some properties which cannot be set in the properties panel as well. Examples are map background an blinking node (in Core).

This icon-button in the toolbar affects thee whole node text.

  • This icon-button in the toolbar affects the whole node text

The format tab is the most versatile method to change properties of a node.

The tab is in the Tool panel which is visible on the right side of Freeplane window.

Open the Tool panel

Press ALT + P

or select in menubar View > Toolbars > Tool panel.

.

or right-click in a blank area of the mindmap and select Tool panel.

Select the Format tab

The format tab shows the format properties of the node which has the focus.

The groups of format properties that can be changed are:

  • Node style
  • Node conditional styles applied to node
  • Map conditional styles applied to node
  • Color of whole core
  • Core text
  • Node shape
  • Node border
  • Font of whole core
  • Icons
  • Edges
  • Clouds

Applies a style defined as level styles that depends on the level (or hierarchy) in which a node is in the map.

It is possible to increase or decrease this number by adding or removing styles in the window that opens in menu Format > Manage styles > Edit styles and defining  Apply level styles

Template file Bigmap.mm uses automatic edge color for columns.

Each main branch starting from the Root node will have specific colors. These colors will be kept by the branches even when disabling Automatic edge color

Opens a dialogue box to configure the scheme of colors used by Automatic edge color

When node is unfolded, the shape of the node is fork

When node is folded, the shape of the node is bubble

Changing a property will set a check in the Change value, indicating that the specific property has changed.

Uncheck Change value if you want to return to defined style for the node. Also uncheck Change value if you want conditional styles to affect (set) the property.

The Tool panel shows the properties of the node which has the focus. Only the properties of the selected node can be changed. (Generally you select one node, but with some properties it is possible to select and change more than one node at a time.) While the panel is showing, you can select a different node to give it the focus. To change a property, change the value of the property. This will also set a check indicating the changed value applies. Uncheck if you want to return to the default behaviour. Also uncheck if you want conditional styles affect (set) the property.

As a first example, find the properties group named Node Shape and click on Node style. A menu drops down with options like Bubble, Fork  and As parent. Try these options and see what happens. For the node you are reading now option Bubble was chosen. As you may notice, this option only applies to the core.

As a second example, find node group Edges and check the box for Edge style. Clicking next to Edge style will drop down a menu with possible styles like Linear, Smoothly curved, Hidden, and others. Try these to know which styles are possible. Or select me to see a few examples of changed properties in the Tool panel.

Freeplane has many possibilities to to set or change properties which apply to a whole node or all nodes. You can think of the basic color of a node, enclosing a node in a bubble, the size of the text, the width of the node core and much more. The most versatile method to edit properties is in the Tool panel. To open or close the Tool panel, right-click in an empty space of the background and select Tool panel.

Note

  • An alternative way to open or close the panel, choose View > Tool panel.
  • An alternative way to change properties, use menu Format.

By default each new map in Freeplane will generate a different color for each new branch. This supports one of the principles held by the inventor of the mind map, which states that colors help the brain to structure and memorize information more easily. This property is called Automatic edge color. This property can be disabled in the Propertieds panel. To disable automatic edge color, open the Tool panel and find the properties group Node style, at the top of the Properties  panel. Uncheck  Automatic edge color, like I did for the the mind map of this tutorial.

The Properties Panel contains the property automatic node numbering to give a node a number. You can set node numbering for a group of nodes by first selecting the group (keep Shift or Control pressed when you click nodes) and then checking this option in the Properties Panel.

Go to menubar Format > Copy format

or press ALT + SHIFT + C

Go to menubar Format > Paste format

or press ALT + SHIFT + V

For this you have to be in core text edit mode by using commands Edit node core in-line or Edit node core in dialog.

Styles (classes) are a means to quickly  apply or change a group of visual properties or define a template text  for all related nodes at once. Styles can also be used to find, select or filter nodes which are associated with a particular type of content or structure. This Quick reference mind map is also made with styles, see node The making of this mind map.

Freeplane comes with a number of system styles which you can extend with your own styles. The list of styles is displayed in the workmenu bar at the top of the screen in the field next to the cloud-icon.  You can apply a style to the selected node by clicking a style in the list. For the node you are reading now, style TitlesContent was applied.

Note 

Styles are also accessable:

  • In the toolbar
  • In menu Format > Apply style
  • In the Tool panel, in properties group Node Style, in field Style. N.B. To open the Tool panel, right-click in an empty space in the background and select Tool panel.

Normally you select another style, e.g. style Default. When using e.g. Automatic Level Styles, you may have added a style to overrule the automatic style. In that case, use Format > Apply style > Reset node style to remove a manually set style.

You can define a new style by selecting a node and choosing menu Format > Manage style > New style from selection. You will be asked for a unique name for the style and the properties of the selected node will be copied to this style. Alternatively you can open a special style dialog with menu  Format > Manage styles > Edit style. You can add a style by right-clicking one of the styles en selecting New style from selection. Once you have defined a style you can modify the style in the special style dialog with the menus available and the properties panel

Note

  • Read the Documentation

Styles can indicate that a node contains specific information. As an example, the parent node "Äpply multiple styles" of the node you are reading  is made up of two styles: Advanced, and Example. Advanced makes the yellow color and Example adds the eye-icon. To implement this example, first define the two styles and then apply them as node conditional styles by opening the Tool panel and clicking below Node conditional styles for node. Now a dialog opens and in this dialog:

  • click New
  • In the rule that opens, click on Default to open the styles list. Select Advanced.
  • Click New again. Click default again and select Example.
  • Click OK.

After this you will see that your node has both styles applied.

Note

Read more about styles in the Freeplane documentation !

In the node above multiple styles are applied unconditionally. Styles can also be applied conditionally,  if a certain condition is true which is specified in a filter rule. In the following example a conditional style is used to signal if a node is modified after a particular revision date.

Example: Revisions

First a style Revision was defined with a special revision R-icon (see the styles list). Then in the Tool panel  I clicked below Conditional map styles to open its dialog. I pressed New to add a filter. I clicked the new rule and defined a filter (Modified after, date). I selected this filter rule and pressed OK.  

If you are in the conditional styles dialog, you see the rule I defined to be unchecked. I did so because normally you do not want to see the R-icons. Check one of the rules and you will see some revision R-icons appear. To see all revions you have to unfold the nodes.

Note

Read more about conditional node styles and conditional map styles in the Freeplane documentation.

One possible application of conditional node styles is to give each node level a different appearance automatically. Say you need five node levels. Then you define 5 styles, one for each level. Next you define 5 conditional style rules. To make it easy Freeplane has predefined this case for you. In Tool panel you can check  Apply level styles in the properties group Node Style. If checked each node level will get a different appearance automatically. The style for the root node is called style Title. The styles for the other levels are called Header 1, Header 2, Header 3 and Header 4.

If you do not like the styles used for the levels, you can modify them as follows:

  • Select menu Styles > Edit style
  • Select the node level you want (Root, Level 1, Level 2, Level 3 Level 4 Level 5 Level 6)
  • Change its format

If you want more than 5 different level styles, simply add them in Styles > Edit style behind Apply level styles.

If you want to apply less than 5 level styles, remove styles in  Styles > Edit style behind Apply level styles.

Note

You may find more information in the Freeplane documentation.

When making a new map, Freeplane takes so-called map style information from a map called default.mm. In this way all kind of standard settings are the same every time you start a new map. To start a map with your own preferred settings, you could modify default.mm. This map lives in Tools > Open user directory > templates. A preferred alternative way is to open your new map explicitly from a different mind map. For this, use Files > Open map from style.

A node style may contain template like information in the form of predefined text in Details field and in the fields for attributes,  Yyou can copy this so called style related information by hand, select:  Edit  > Node extensions > Copy extensions from style node.

The steps to define a template:

  • define a new style, e.g. MyTemplate
  • open the editor for styles in menu Format > Manage styles > Edit styles
  • edit details of MyTemplate: (Edit > Extensions > ..details)
  • add attributes to MyTemplate (Edit > Extensions > ... attribute)
  • close the styles dialog (save the edited style)
  • open a new node
  • apply the new style MyTemplate ( Edit  > Node extensions > Copy extensions from style node)

The new node should have the text and attributes entered in MyStyle.

Template information

  • Name:
  • Address:

Normally if you paste text from your browser, the formatting will be pasted too. If you install a small program you can paste text without formatting, see http://www.stevemiller.net/puretext/ .

If you want to line up nodes, or simply want a different or fixed width:

  • Format > Set node width limits; or see
  • Tool panel

Note

The node you are reading now has minimum = maximum = 300 pixels

The node core has a global  formatting function which applies to the whole node core. This global core format can be copietd with Edit Node core > Copy format and pasted in another node core with Edit > Node core > Paste.

If you select menu Edit > Paste different paste options will be shown, like pasting text without format (plain text).

Note

  • If you copy text from the internet, the regular paste will also paste  the formatting (color, size etc.). The plain text option let you copy plain text only.
  • If you use this option frequently, consider to define a hot key for it, see Tools > Add hot key.

Before you can find or filter you have to define a rule which determines what you want to find or filter for. You can do this with the Filter toolbar. This toolbar is the horizontal row of icons and entry fields, just above the work area of the map. The find/filter rule consists of:

  • Node component (Core text, Details, Icon, etc.). It is possible to use almost any type of node component in finding and filtering.
  • Type of rule:  component exists, contains, =, > etc.
  • Value of component
  • If value is text, relevancy of case and Approximate search (fuzzy search)

If you have set/entered these elements, you can click icon Quick filter  to do the filtering.  (See to the left which is icon Quick filter). Or you can click icon Find to just find one instance at a time.

The result of Quick filter may be modified by setting one or more so called filter options, see below. To exit filtering, click icon No filtering. (When using Find, it is not necessary to stop this action.)

The Freeplane documentation contains a full description and examples.

Note

You can use a filter rule also to find nodes one by one.

Perform filter action.

To filter for all nodes modified after a certain date, set a filter rule (Date filter, Modified after, date, xxx) and Quick filter for all modified nodes.

See also

  • menu Edit > Find and replace... for an alternative way.

Stop filter action

Find text or other criteria in the selected node and all its descendant nodes. And if not found, search further in other branches. This is called depth first search.

Note

  • The found node is selected.
  • If the found node is folded, it is unfolded.
  • If the found node is outside the screen, the mind map is shifted to bring it in the visible are of the screen.

To the left are shown the icons of the buttons in the Filter toolbar, with their meaning.  

Hides all visible nodes which do not fit the filter rules and options. Icon keeps unset..

See also

  • No Filter to finish filtering.

Note

  • Nodes hidden before the filter was applied, keep hidden.
  • All nodes left visible move towards each other along the their edges.

To filter for all nodes modified after a certain date, set a filter rule (Date filter, Modified after, date, xxx) and Quick filter for all modified nodes.

See also

  • Edit > Find and replace... for an alternative way.

Filters can be defined and kept for reuse on a later moment. Open menu Filter > Filtercomposer and define the filterrules you need. In doing so, you can also combine simple rules with AND and OR operators into more complex rules. And once you have defined a rule you can give it a label. After you have created all the rules you need, you can save the whole set. The set can than be shared with other people who can load it into the Filter composer.

The rules you defined with Filter composer are available in the filter menu bar. To activate a rule, click next to the field showing "No filtering (remove)" which drops down a list of all available rules. Click the rule you want and it will be executed. When you are finished, select "No filtering (remove)" again or click the icon-button No filter.

As an example of using filter sets, the Freeplane directory has a subdirectory doc with a file called freeplaneTutorial.mmfilter. Choose Fiter > Filter composer > Load and find and load this file.

After this you can use the filters as described in the following nodes.

To see only the information at the first level of experience (Beginner):

    1. Click in field with "No filtering (remove)": a list with filters drops down.
    2. Select ane of the shown rules e.g. Beginner
    3. Click Quick filter as shown in the image.

    P.S. Make sure Show ancestors is UNselected.

You can now click on each item to unhide its content. Or you can unhide all hidden information at once by doing the following:

  1. Move the cursor over the central area (root node) to select it
  2. Click on the icon Unfold all to see all selected nodes
  1. Click in an empty area of the background and drag the map around until hou have read all.
  2. Do not forget to press icon No filtering when you are finished.

You can now follow the same procedure for Beginner, Advanced and Professional.

When giving a presentation a map may be greyed except for the nodes having the focus. For this select View > Presentation mode. The nodes can be visisted one by one by pressing Ctrl +Shift + Space or Shift + clicking folding circle.

Print your map with the methods for this in menu File.

In case of larger files it may be practical not to print in the standard map layout but in an Outline layout. Use View >Outline view to set Freeplane in outline mode.

A Java Applet is a small program which allows you to display a mind map without Freeplane being installed on your computer.

To publish your mind map on Internet using a Java Applet, export your mindmap with File > Export and choose for the file format Java Applet. After the export you will have a file yourmap.html and a directory yourmap.Html_files.  If you use images in your map, make sure when developing yourmap.mm these images are in the same directory where yourmap.mm resides. After the export, copy the images to yourmap.html_files. You can now move both yourmap.html and directory yourmap.Html_files to the internet server and start the mindmap by calling yourmap.html. Your mind map will open in a browser for reading, but cannot be modified. You can use the same method to share your map with other user's  who don't have Freeplane installed. Move the file and the directory to their computer in stead of to the Internet server.

Note

  • .svg images cannot be published in a Java applet.
  • See the Freeplane documentation for more options. See this page to publish a map on the Freeplane wiki.
  • See this example how multiple maps can be published in one Java applet.
  • It is possible to set in Tools > Preferences that the folding state must be saved, such that the map opens each time with the same folding.

You can also publish a mind map directly on the Internet or Intranet. In that case Freeplane is needed to view the map. Use  File > Open map from URL.to open the map and enter the full URL-address of the map.

Note

  • In MS Windows, right click the link of the mind map and choose copy hyperlink. Next paste this address in the URL above

The node you see now consistst of a node core with the title  "Edit text in node details". The text below the node core is called node details. This field contains the text you are reading now.  A discriminatig characteristic of this area is that it can be hidden or shown based on a user's need. One way to hide or show this area is to press the small triangle next to the text (try it !).

To create a node like the present one, first create a node as you learned before. Then type the title in the core as you know too. Finally open a dialog window by right-clicking the node and choose Edit details in dialog. Now type the text you want to appear under the title and press OK. Your node will now appear just like the one you are reading,

Note

  • Node details can also be entered with an inline-editor. To open the inline editor, rightclick the node and choose select Edit node details in-line. To reopen existing node details text for editing in this way,  Ctrl + left-click the text. (Double clicking also opens  the editor.) This inline editor behaves the same way as described for the node title text. It has the same context menu.
  • All methods available in context menu's are also accessable through the main menu. For example, the in-line editor is also accessible through Edit > Node extensions > Edit node details in-line

Node content can be hidden permanently, only showing when you are  hovering with the cursor over the node. This has the advantage that the space taken by the node keeps at a minimum.

To prepare a node for hovering, right-click the node and choose  Minimize node to hide all information except the first part of the node core text. To restore the non-hidden state, click Minimize node again.

Note

  • Besides hiding node details it will also limit the length of the core text. So if you have a long title, it will be shortened. And it can also hide features like images, attributes and notes which are described below.
  • See Image below for the deviant behavour of an image in details.

Images are not part of a Freeplane map but can be displayed in a Freeplane map. It makes a difference if the image source is stored on your computer or not. and which method you use to add the image: drag & drop or copy & paste. Note that the image in Node core differs from the image desribed here (node extension).

To add an image to a particular node, drag and drop the image on the upper part of the node. If you drop it on the child side of the node, the image is added to an automatically created new child. In both cases the image can be resized by dragging its lower-right corner.

Alternatives for adding an image are:

  • Right-click a node and select Add image...; or
  • Select Edit > Node features > Add image..

Note

  • Even if the image is displayed in a node, it is not part of the mind map. Every time the mind map opens, the image is read from its original location. As a result, if you move or rename the source image, it is no longer visible in the map.
  • The image is hidden when View > Minimize node is set An image which is hidden this way does not show when hovering (in the tool tip)!
  • You cannot move the position of the image within the node. There is more to learn about (other types of)  images and about publishing and sharing mind maps with images in the Freeplane documentation.
  • If you use copy and paste in stead of drag and drop, not the image but a hyperlink to the image is added - to the node core.
  • The image is a node featture and is displayed below the node core. The node core itself can also have an image. This image cannot be resized.
  • Take care that the image is not in a tempory file. For example, I you want to use an image from an e-mail program like Thunderbird, first copy the image to a non-temporary directory.

An image from an external source like Internet can be added by copy and paste. Likewise, an image  made with PrintScreen, can be added by pasting it. In both cases the image is added to a newly created child node of the node selected when you pressed paste. The pasted image can be resized by dragging its lower-right corner.

Note

The pasted image is not part of the mindmap itself.

  • In case of the source is on the Internet, there must be an Internet connection to see the image. To keep the image, first copy it to your computer.
  • If you paste an image copied with print screen, Freeplane asks where you want to save this image first.
  • If you paste or drop an image from a program which keeps the image in a tempory file (e.g. Thunderbird), the image may show at first but disappear laler. First copy the image to a fixed directory.  
  • If you select and paste more than one image at a time, only the hyperlinks are pasted.

Once an image is created, right-click and select Change to replace the image by a different image.

Node details can contain structured information, in which each unit of information has a name and a value. This couple, name=value, is also called an attribute. Attributes are displayed in Details as a table with two columns.

To create the above example, right-click a node and select Edit attribute in-line. Enter name  in the left field and John. in the right one. To add the second attribute, right-click on the name or the value to open the attribute's context menu and select New attribute.

When you followed the example, you will find that the width of the displayed attributes does not fit the length of the text. You can solve this in two ways. First you can right-click the attribute and select Optimal width. Second you could experiment with moving  the slim bar just above the table.

Note 

Alternative ways to add a node and to apply other attribute methods, see:

  • Tool panel > Calendar & Attributes
  • Edit > Node extensions

Besides entering text as an attribute value, you can add hyperlinks. Right-click on an attribute value to see the options. The differences between types of hyperlinks were described in node Hyperlinking.  Through Properties Panel > Calendar and Attributes you can also add formatted dates and numbers. Click on the field just above the attribute to get a drop down menu with formatting options. Read more about formatting in the Freeplane documentation.

There are several options to change e.g. the names of the attributes and/or values of all nodes. Edit > Node extensions  > Attributes for all available methods and the Freeplane documentation for their description.

It will be described below that hyperlinks can be added to attribute values through the context menu of the attribute value.

If you want to display a scientific formula in a node, this is possible. Use Edit >  Node core > Edit LaTeX to do so.

Note

Read more in the Freeplane documentation.

Notes are a special kind of node details, the main difference being:

  1. By default notes are presented as hover text. In menu View > Note > Display notes in map  it can be set that all (!) notes will be displayed.
  2. Note text can be displayed screen wide and in  a window that stays open when moving from node to node. Consult the Freeplane documentation for more information.
  3. Notes have a note-icon.

Note

In Tools > Preferences the note icon can be set  not to display (for all notes !) for the curent map. Exception: On Intenet (Java applet) the icons keep showing.

The Time manager allows you to set dates, times (reminders) and tasks (reminder texts) in the core of selected nodes. A clock icon signals that a reminder is set.  This icon appears both in the node and its predecessors, except nodes which are within a Summary node group. A flashing clock icon signals that a reminder time has been reached.

There are two locations where these functions can be set or edited.

  • Tools > Time management , with submenu's for Managing time and for managing tasks
  • Tool panel > Calendar and Attributes, NOT for managing task

Opens a dialog to set or change a date (text) or a reminder which has been attached to the selected node. The node and its predecessors show a clock icon. This icon flashes at the reminder time. Also a red exclamation mark flashes in the root node.

Note

  • Properties Panel > Calendar & Attributes for an alternative dialog

Opens a window which displays the reminders of all nodes. For each reminder are displayed:

  • date
  • Title
  • icons
  • time created
  • time last modified
  • Note

The entries can be searched, and changed with search and replace.

Remove the reminder of the selected node. For alternatives:

See also

  • Tools > Time manager...
  • Properties Panel > Calendar & Attributes

This node contains a reminder

It is possible to protect your whole map, or a part of the map, with a password. If you define a password for a node, then all descendants of the node will keep hidden until the right password has been entered. Within the same map you can apply different passwords for different nodes and create layers of protection. To define a password for the children of the selected node, right-click the node and select Password protection.  

Note

  • See also Tools > Password protection.
  • Password protection is implemented with DES type encryption. You can read more about protection (encryption) in the Freeplane documentation.

If you define a new map, you can directly protect is with a password. To do this in one action, choose File > New protected map. This function can be combined with password proction of nodes, to create security layers.

Freeplane has a lot of tuning options. Most used options are available in menu View and the others are available in  Tools > Preferences.  Besides you can write your own scripts to automate things. The Freeplane documentation describes them all.

A new node gets stand style Default. This style can be edited: Format > Manage styles > Edit styles. If you set "bubble" here, all new nodes get a bubble.

Map standard-1.6.mm in  Tools > Open user directory > Templates serves as a map template for each new mind map. Consider adapting the style "default" of this template map to your personal favourites, e.g.

  • Change arrow-links into hyperlinks: in properties panel of Style "default", set Hyperlink to checked.
  • Set a bigger or smaller font for style Default (and the other styles.
  • Set the default style to have a bubble,
  • etc.

In menu View you can set characteristics for node core, like width, selection border, border marking for formulas and the background color of revisions. You can set if and how node details should be displayed, with or without tool tip (hover text) and modification times.  You can set if and which attributes are displayed. Also you can set if and how notes are displayed and with which type of window. Finally it is possible to set some characteristics of icons. Open menu View and select all options one by one to know which options are available. In the preferences much more can be set.

Note

  • Viewing settings contains options for printing (outline view) and presentation (Presentation mode).

Docear is an "academic literature suite". It provides to researchers what an office suite provides to office workers. By that we mean, Docear supports you in doing all the tasks related to literature management:

 

   1. Finding new literature (searching and exploring)

   2. Organizing literature (reading, annotating, and retrieving)

   3. Creating your own literature (drafting, writing, referencing, and publishing)

 

Docear is the successor of SciPlore MindMapping and funded by the European Union and German Federal Ministry of Economics and Technology.

Click the red arrow

The environment preferences let you set the following:

  • one instance or more instances of Freeplane can be running at the same time;
  • protection (experimental file locking) is allowed [ it is no longer experimental !];
  • options for opening and automatic saving of files;
  • if the folding state must be kept when saving a file, to open it with the same folding;
  • the deault character set;
  • if hyperlinks must take relative or absolute addresses
  • and other

The preferences for appearances let you set:

  • the standard properties used
  • height and width of nodes, tool tips etc.
  • icons showing or not showing

The keystrokes preferences let you set hot keys used for predefined icons.

The preferences for Behaviour let you set a.o.:

  • if automatic selection should be used, delay time
  • the characteristics of hovering (tool tip)
  • if the in-line editor should be displayed for all new nodes
  • if edit needs double click
  • if a key press overwrites text, adds a child, adds sibling or has no effect
  • the position of new branches (first, last)
  • the enabling/disabeling of drag and drop
  • the speed of mouse wheel
  • the size of the grid used to position nodes
  • the kind of data parsing and formatting used
  • if confirmation is used with node deletion
  • if text should be treated as numbers in comparisons
  • spell checker options like case sensitivity

Browswer settings and settings for HTML export/import.

Settings for using formula's and scripts.

The vertical spacing between nodes can be set for all nodes of a branch, existing and new ones. Keep Ctrl pressed, select a nodes handle (oval)  and move the cursor up/down to change the vertical space for all nodes.

Note

To reset the original posisitons, select a node and Edit > Set default node positions.

If you use Windows 7 you can make it indexing .mm files. Do as follows:

  • Go to Control Panel -> indexing options; or type in Help  ""indexing"
  • Choose "Professional". This gives you a page with two tabs -- "Index Settings" and "File Types"
  • Choose the "File Types" tab
  • Scroll through the list of files there till you come to ".mm"
  • The filter description will say "File Properties Filter"
  • Click the second radio button beneath, which says "Index Properties and File contents. The filter description should now change to "Plain text filter"
  • Choose OK to leave the dialog. The indexing will restart and when it is finished, the index is available.

Note

  • In the standard mode only node properties are indexed, not content. The above procedure also adds the content to the filtering mechanism

Freeplane has standard short cuts for most actions which can help speed up processing of your mind map. These short cuts are visible to the right of the menu items when you open the menu's in the main menu bar. There is also an automatically generated overview in menu Help. It is also possible to define your own short cut sets, for example for F-keys. See Help > Documentation.

Click the red arrow to read more about extensions on the Interenet.

Check here if there exists a language pack add-on for your language.

Click here to go to the Wiki

Template information

  • Name:
  • Address:

Working on large maps may be difficult if you need to work at two different node locations of the map. For this you can open two views of the same map and work in both views if they were the same map. Choose View > New map view for this. Switch between views by selecting the respective tabs. You cannot see both views at once. For this you could open a second version of Freeplane. However, in that case they are treated as different maps.

To restore from local history select  Menu File > Restore from local history.

All functions in Freeplane are open for use as batch job, in a command line interface. With this you can for example:

  •  run a function on start up
  • execute a script an leave
freeplane-1.7.10/freeplane/doc/freeplaneTutorial_ja.mm0100644 0000000 0000000 00001576255 13371554554 021531 0ustar000000000 0000000

チュートリアル

Freeplane 1.2

Template information

  • Name:
  • Address:

Freeplane は、職場や学校、家庭で、思考、情報の共有、そして GTD(getting things done)を効果的に進められるよう工夫されています。このソフトウェアは、 情報マップ の一種である マインドマップ の作成、共同利用、そして活用を支援するものです。適用分野については、Wiki Tutorial Freeplane で具体例をご覧ください。簡単に Freeplane の使用法をつかむには、Freeplane (ビデオ)ガイド が役立ちます。

この「チュートリアル」は、よく使われるFreeplane の機能について、簡潔に説明することを目的としています。詳しい情報については、 ヘルプ  > マニュアル をご覧ください。

一般に、マニュアルの通読は煩わしいものです。そこで、「チュートリアル」では、「はじめに」を読むだけで、  Freeplane メインメニューバーを使ってマインドマップ作成に取り掛かれるように工夫しています。主要な編集機能は「編集」メニューにあります。また、一部の特殊機能は「ツール」メニューにあります

以下の理由により、「はじめに」より後の各章も一読に値するはずです。Freeplane では、様々な方法によって、同じ動作を実現することができます。通常、Freeplane メニューの使用は、通常、最も手っ取り早い効率のよいやり方ではありません。以下の各章では、すべての機能を説明するとともに、いわゆるコンテキストメニューを使う最も効率のよい方法を紹介していきます。

以後の各章は、順序どおりに読まなくても、時々の必要に応じて拾い読みできるようになっています。情報取得の便宜を考慮して、各項目は、下記の要領で彩色しています。

  1. 初 級(空色/緑色):ノートテイキングやブレーンストーミングといったシンプルな生産的作業に利用できる基本事項を学習します
  2. 中 級(黄色):より高度の情報整理や的確な意思疎通に役立つ追加的機能を学習します。
  3. 上 級(橙色/茶色):環境設定や創作・専門ツールの利用法について学習します。

重 要

   ユーザの使用言語用言語別アドオンパックがあるかどうか、ここをクリックして チェックしてください。

基本事項に関する簡単な紹介については、Freeplane (video) guides の冒頭の3点をご覧ください。

Shot cuts or hot keys for most functions.

マインドマップは、情報を表示するいわゆる「ノード」群からなる平面図です。見方によっては、ノードは、本の「項目」に当たります。そこには、テキストやイメージといった情報を表示することができます。異なるのは、ノードが自由に位置を変えられ、簡単に非表示にできることです。この特徴のおかげで、マップは、状況に応じて多彩な使用法が可能であり、ユーザの必要にしたがって情報を展開したり選択的に表示したりすることができます。

現在ご覧のテキストはノードの中にあります。上方の「ノード」と書かれたテキストは、ノードを形成しています。また、左方にある「はじめに」と書かれたテキストもノードを形成しています。左の大きい楕円形は「ルートノード」と呼ばれる特殊なノードです。

すべてのノードは、「エッジ」と呼ばれる線で結び付けられています。左側に見える線がエッジです。一連の連結されたノードは「木」の枝のように見えます。すべての木はルート(根)ノードを起点としています。これらの枝が集まって、家族系列を形成します。ルートノードに近いノードをノードの「親」(祖父母)と呼び、遠くにあるものを「子」(孫)と呼びます。同じ階層に属すが、相互に連結されていないノードを「兄弟」と呼びます。

一般に、ノードの配置は、家族ツリーのなかで当該ノードがどのような立場を占めるかによって、制限されます。ただし、他のどのノードとも関係なく位置を決められる、いわゆる「フリーノード」については、このルールは当てはまりません。

通常、円囲いの「+」印ないし「-」印が表示中にノードをクリックすると、そのノードを折り畳んだり展開したりできます。この円囲い印は、ノードコア上にカーソルが置かれたときに表示されます。展開すると、非表示になっている子ノードが表示されます。折り畳みは、非表示化可能な子ノードを隠します。ノードが折り畳まれている場合は、子ノード側に小さな丸印が表示されます。このノードが展開中であれば、右側に、表示画面の最上部のツールバーにあるのと同じ4つのアイコンが表示されているはずです。これらは、選択ノードの子孫ノード[訳注:日本語版では「下位ノード」と表示することがあります]を折り畳み/展開するのに使うアイコンボタンです。 


さあ、「はじめに」のノードをクリックして、その子ノード群を隠し、丸印を見てみましょう!そして、次にもう一度クリックして、次のノードを読んでください。

例 外

  • 円囲いの「+」/「-」をクリックすると、間髪いれず折り畳み/展開します。ノードコアの他の部分をクリックした場合、一瞬遅延が生じます。

  • 「編集 > ノードグループ > 常にノードを展開(オン/オフ)」の設定により、該当ノードを折り畳まないようにすることができます。これは、雲によるグループ化時に役立ちます。
  • 折り畳み中のノードに、非表示の子ノード向けコネクタが付されている場合、点線(及びラベル)が表示されます。これを右クリックしてコンテキストメニューが表示させたり、連結先のノードにジャンプすることができます。

選択ノードの下位ノードを徐々にに展開します。一度クリックすると子ノード群が展開されます。もう一度クリックすると孫ノード群が展開されるといった具合です。

選択ノードの下位ノードを、最深階層から徐々に折り畳みます。仮に4つの階層があるとすると、一度クリックすると曾孫ノード群が折り畳まれます。もう一度クリックすると孫ノード群が折り畳まれ、次にクリックすると子ノード群が折り畳まれるといった具合です。

子ノードや孫ノードなど、選択ノードの下位階層にあたるすべてのノードをすべて展開(見えるように)します。

ホットキー

  • 「Space」を押す。
  • ノード上でシングルクリック。
  • 「ツールバー」でアイコンボタンをクリック。

子ノードや孫ノードなど、選択ノードの下位階層にあたるすべてのノードを折り畳み(隠し)ます。

ホットキー

  • 「Space」を押す。
  • ノード上でシングルクリック。
  • 「ツールバー」でアイコンボタンをクリック。

インターネット上にあるマインドマップを開くには、最初に、マップをローカルコンピュータにコピーしなければなりません。これを実行するのが、「ファイル > URL からマップを開く」メニューです。

ノードの情報は、大きくいって2つのエリアに表示されます。1つは、ノードの内部エリアに位置し、囲み表示の場合囲みの中側に含まれるので、「ノードコア」と呼ばれます。現在ご覧のテキストは、ノードコアの中にあります。現在ユーザがご覧のエリアのすぐ上の色付きのエリアは別のノードのコアにあります。

コアのテキストは、見出しのように短縮表示したり、あるいはまた複数行に表示したりできるます。画像やアイコンといった様々な基本表示要素を含めることもできます。また、ハイパーリンクや計算式、時間管理コンポーネント、パスワードによる保護機能が付くこともあります。

テキストは、ノードコア以外に「ノードの詳細」「ノート」「属性」にも入力できます。これらのフィールドについては、後ほど説明します。

コアテキストをインライン編集

ビデオ

Freeplane を初めて起動すると、空白のマップが表示されます。そこには、楕円形のルートノードが表示されます。ルートノードには、「新規マインドマップ」といったテキストが書かれています。このテキストは反転表示されていますが、これは、ユーザが新たにタイプ入力するテキストに置換できることを示しています。表題をタイプ入力し「Enter」を押すだけで十分です。「Insert」キーを押すと、子ノードが付加されるので、ここで再度、テキストを入力して「Enter」を押してください。2度目の「Enter」で、兄弟ノードが付加されるはずです。なすべきことは、たったこれだけです。既存のノードを編集するには、「Ctr」(MAC OS の場合は「META」)を押した状態で当該のノードテキストを左クリックしてください。操作は、極めて簡単です。これで、ユーザは、容易に簡単なマップを作成できます。

ノート

  • 新たに行を付加するには、「Shift + Enter」を押してください。
  • テキスト編集中に右クリックすると、いわゆる「コンテキストメニュー」が開き、コピー&貼り付けといった書式設定機能を簡単に呼び出すことができます。
  • テキストを選択した状態で右クリックすると、テキストを太字に変えるなどの目的に使える「書式」メニューが表示されます。この書式設定は、選択中のテキストに限って適用されます。
  • [テキスト]編集を始めるには、「Home」や「End」、「F2」といったキーの使用、ダブル・クリック、あるいはテキストのタイプ入力開始による方法以外ありません。

表示画面の最上部のツールバーをご覧ください。

ツールバーをご覧ください。

マップを印刷するプリンタ関連のダイアログボックスを開きます。

現在選択中のノードとそのすべての子ノードを切り取ります。

選択ノードとそのすべての子ノードをコピーします。

コピーしたテキストを貼り付けます。選択ノードが編集モード状態の場合、テキストはノードの既存の内容に付加されます。選択ノードが編集モードでない場合は、テキストは子ノードとして付加されます。

現在選択中のノードの子ノードとして、新規ノードを作成します。 

同一動作

  • 「Ins」キーを押す。

コアテキストをダイアログ編集

ビデオ

ノード編集の第2の方法は、独立のダイアログを使うやり方です。ノード上で右クリックして下さい。すると、ノードコンテキストメニューが開きます。(このコンテキストメニューは、テキスト編集中のコンテキストメニューとは別物です。)このコンテキストメニューで、「ノードコアをダイアログ編集」を選んでください。これで、テキストをタイプ入力し、そのテキストに表示されたの書式設定オプションを使うことができます。「OK」を押してダイアログを閉じると、入力したテキストがノードに表示されます。このダイアログには、インライン編集時の書式設定よりも広範なテキスト書式設定オプションがあります。

ノート

  • メインメニューバーで、編集ウィンドウを開くこともできます。「編集」に続けて「ノードコア関連」を選ぶと、「ノードコアをダイアログ編集」が現れます。以下では、この手順を「編集 > ノードコア関連 > ノードコアをダイアログ編集」と表記します。

作成したマップは、上方のメニューバー(作業メニュー)のフロッピーディスクアイコンを押すか、又は「ファイル > マップを(上書き)保存」メニューを選んで保存してください。その後、マップアイコン、又は「ファイル > 保存マップを開く」を使って、別のマップを開くことができます。

表示中のマップを保存するには、ツールバーで上のアイコンボタンを探してください。

名前をつけてマップを保存...

上方のツールバーをご覧ください。

フォーカス状態のマップを閉じます。複数のマップをオープン中の場合、フォーカスは、編集中のタブに合わせられています。

マインドマップの[空白箇所の]どこかで、「Ctr」キーを押した状態でクリックすると、いわゆるフリーフローティングノードが作成されます。このノードは、紙製のポストイットのように動作します。すなわち、ルート-階層関係の一環をなすノード群とは関わりなく、どこにでも配置できます。このノードの書式は、「フローティングノード」のシステムスタイルによって規定されます。この標準スタイルは編集可能ですが、フローティングノードはすべてこの編集されたスタイルによって規定されます。ポストイットノードは、好みのノードへのドラッグ&ドロップで、階層付きノードに連結することができ、このノードの子ノードとなります。各種フリーフローティングノードの事例については、Tutorial Freeplane をご覧ください。

フリーノードは、マインドマップ内で他のノードの位置に関わりなく、自由に位置設定できるノードです。フリーノードは、この動作を特徴とするとともに、ノードの移動に用いる楕円形のハンドルが、赤色ないし空っぽでなく、青色になることで識別できます。

マインドマップの[空白箇所の]どこかで、ダブルクリックすると、新規のフリーノードが作成されます。新規作成されたフリーノードは、標準設定状態で「矩形の雲付きで、(エッジの)線を隠す」プロパティを備えています。これらのプロパティは通常の方法で、例えば「雲無しで、線を表示」に変更できます。

既存のノードを選択し、「編集 > フリーポジションノードに指定/解除」をクリックすると、フリーノードに変わります。この場合、ノードのプロパティ(線、雲)は、従来のままです。通常の方法で、雲の付加や線を隠すといったプロパティの設定ができます。フリーノードは、当初、ルートノード付近に表示されますが、(青色)楕円形のハンドルのドラッグにより、好みの位置に移動できます。通常のドラッグ&ドロップによって、フリーポジションノードを別の親ノード/兄弟ノード上に移動させると、フリーポジション状態が解除されます。

ノート

  • マインドマップの空白部分のクリックkによって作成されたフリーノードは、ルートノードに連結され、また、連結線(エッジ)は非表示になります。このフリーノードの子ノードを、これの親ノードの上半分に移動した場合、 ルートノード方向に移動するのは、このためです。

フリーノードは、マインドマップ内で他のノードの位置に関わりなく、自由に位置設定できるノードです。フリーノードは、この動作を特徴とするとともに、ノードの移動に用いる楕円形のハンドルが、白抜きの赤色でなく、青色に塗りつぶされていることで識別できます。

マインドマップの[空白箇所の]好みの場所で、「Ctr」キーを押した状態でクリックすると、新規のフリーノードが作成されます。新規作成されたフリーノードは、「矩形の雲付きで、(エッジの)線を隠す」プロパティを備えた「フリーフローティングノード」用システムスタイルで表示されます。これらのプロパティは通常の方法で、例えば「雲無しで、線を表示」に変更できます。これらのノードは、眼に見えない形でルートノードに結び付けられています。

既存のノードを選択し、「編集 > フリーポジションノードに指定/解除」をクリックすると、フリーノードに変わります。この場合、ノードのプロパティ(線、雲、折り畳み状態)は、従来のままです。通常の方法で、雲の付加や線を隠すといったプロパティの設定ができます。フリーノードは、当初、選択ノード付近に表示されますが、(青色)楕円形のハンドルのドラッグにより、好みの位置に移動できます。通常のドラッグ&ドロップによって、フリーポジションノードを別の親ノード/兄弟ノード上に移動させると、フリーポジション状態が解除されます。

ノート

  • マインドマップの空白部分のクリックによって作成されたフリーノードは、ルートノードに連結され、また、連結線(エッジ)は非表示になります。このフリーノードの子ノードを、これの親ノードの上半分に移動した場合、 ルートノード方向に移動するのは、このためです。

このノードの左側でカーソルをホバーリングさせると、青色に塗りつぶされた楕円形が現れます。[位置を動かすには]この青色のハンドルを使って、ドラッグしてください。

アイコンとは小さな画像のことです。Freeplane は、アイコンライブラリーを備えています。アイコンを選択するには、何種類かのメニューを利用できます。

  1. 表示画面の横側に表示されるアイコンバー。アイコンバーが表示されてない場合は、「表示 < ツールバー < 左ツールバー」を選択してください。
  2. 「編集 > アイコン > アイコン一覧から選択」選択時に表示されるアイコン一覧。 
  3. 「編集 > アイコン  > 類別アイコン」選択時に現れる、階層表示アイコンメニュー。

アイコンをノードに付加するには、ノードを選択し、次にアイコンを選択します。アイコンを1つずつ削除するには、「最初/最後のアイコンを削除」アイコンを選択してください。これらのアイコンには赤い「×」印が付いています。

ノート

  • 同じノードに複数のアイコンを付加することができます。

  • 詳細フィールドやノートフィールドにアイコンを付けることはできません。
  • ユーザの独自アイコンを定義しツールバーに加えることができます。

ノードコアには、それぞれ1つだけサイズ変更できない「実寸」の画像を付すことができます。(異なるサイズの画像が必要な場合は、お絵かきソフトを使って元の画像をサイズ変更してください。)画像を付すには、ノードを選択した状態で、「編集 > ノードコア関連  > 画像(ファイル選択 or リンクから)」メニューを選択してください。同じメニューを使って、画像ファイル向けハイパーリンクアドレスのテキスト情報を本物の画像に変換することもできます。

参 照

  • サイズ変更可能な画像の付加については、「ノード拡張情報」  を参照。

ノード中の画像は貴重な表示スペースをとります。ハイパーリンクを使うと、ハイパーリンクを押して画像を閲覧できるようにしながら、この欠点を避けられます。ハイパーリンクを付加するには、元の画像をコピーし、ノードに貼り付けてください(ドラッグ&ドロップではありません!)。ノードの上のほうに貼り付けると、画像ファイル向けハイパーリンクは当該ノード自身に付加されます。ノードの子ノード側に貼り付けると、子ノードが作成されそこにハイパーリンクが格納されます。このハイパーリンクは、赤い矢印の形となります。貼り付け後は、画像ファイル向けの文字列パスも表示されます。これを消去したり、別のテキストに書き換えたりしても大丈夫です。

ノート

  • 画像向けハイパーリンクを用いる代わりに、「Ctrl」を押した状態で画像をドロップすることもできます。この場合、画像はコアエリアではなく、ノード拡張情報エリアに格納されます(サイズ変更可能な画像)。

参 照

  • インラインハイパーリンク(下線表示型ハイパーリンク)。このリンクを用いると、テキスト内で複数のリンクを利用できます。

上級ユーザなら、いわゆる HTML コードを使ってテキストのなかに画像を格納することができます。また、これを行なうためのスクリプトもあります。「ヘルプ > マニュアル」をご覧ください。

小さい進捗指標図を付加するには、「編集 > ノードコア関連 > 進捗度 > 進捗度を上げる」を選択してください。進捗度を上げるには、「ノードの機能 > 進捗度 > 進捗度を上げる」を(繰り返し)押してください。

大きい進捗指標図を付加するには、「編集 > ノードコア関連 > 進捗度 > 大きい図を付加」を選択してください。その後、進捗度%を上げるには、ダブルクリップしてください。下げるには、「Ctrl + ダブルクリック」してください。

ノート

  • 2つの画像が表示されます。小さいほうは、絵文字でノードコアに表示されます。大きいほうは、ノード拡張情報部分に表示される画像です。
  • 重要! JAVAアプレットでは、大きいほうの画像 (svg file) を表示できません。

複数のノードを選択して「編集 > ノードコア関連 > ノードを統合」を実行すると、これらのノードコアのテキストを結合することができます。統合されたノードの子ノードは、新規統合ノードの子ノードとなります。

ノート

  • この動作は、ノードにノードの詳細など、他の構成要素が含まれない場合に限って有効です。
  • ホットキー:「Ctrl + J」

ノードの分割は、2つの異なる作動形態に分かれます。1つは、メインメニューから呼び出すもので、今ひとつはエディタから呼び出します。

  1. 複数行からなるノードを選択し、「編集 > ノードコア関連 > ノードを分割」メニューを選択すると、選択中のノードコアを、それぞれ1行からなる複数のノードに分割することができます。
  2. ノード編集中なら、テキストをカーソル位置で分割し、2つのノードに配置することができます。ダイアログエディタ中なら、「分割」ボタンを押してください。インラインエディタなら「Alt + S」を押してください。

ノート

  • ノードの詳細などの他の構成要素は分割されません。
  • 詳細については「ヘルプ > マニュアル」をご覧ください。

コアテキストには、スプレッドシートのセルと同様に、"=" で始まる計算式を内蔵することができます。これに該当する場合は、計算式が実行され、その結果のみが表示されます。

ノート

  • スクリプトを用いれば、枝を跨いだ計算、つまりスプレッドシートのような動作をエミュレートすることができます。この点の説明については、赤い矢印をクリックして Wiki ページをご覧ください。
  • 標準設定では、計算式を含むノードコアは、縁取り表示されます。「表示 > ノードコア案連 > 計算式ノードを縁取り表示しない」を使って、枠囲いを外すことができます。
  • プロパティパネルを開いて「書式」フィールドを「テキスト」に設定すれば、自動計算機能を止めることができます。

マップ全体の表示位置をずらすには、下記の方法があリます。

  • 背景[空白部分]をクリックして、マップをドラッグする、
  • 「Ctrl+Shift+Cursor up/down/left/right」でマップをパンニング表示する。

カーソルをノードの上でホバーリングするだけで、ノードを選択することができます。少し間を置いて、ノードが選択状態であることを示す青い縁取りが表示されるはずです。これを、自動選択と呼びます。ノードをクリックして選択することもできます。最後に、「ナビゲーション」メニューのフォーカス移動や「検索」機能でもノードを選択します。

一定の状況下では、ノードの自動選択が邪魔になることがあります。カーソルを他のノード上を通過させつつ、元のノードを選択したまま保持することもできます。その場合は、ノード選択後に、カーソルを他のノード上を通過させる際に「Shift」を押した状態で操作してください。

大きなマップでは、所在を見失いがちです。「Esc」を押せば、たちどころに選択がルートノードにジャンプします。

すべてのノードを選択する場合は、最初にルートノードを選択し(「Esc」を押す)、次に「Ctrl + A」を押してください。

ビデオ

対象ノードで、別ノードをドロップする際、その位置に応じて2とおりの異なる動作が行なわれます。カーソルを置くと、それらの位置関係が見えるようになります。

  1. カーソルを対象ノードの上部に置くと、ノードの上半分の色が変わります。この状態でノードをドロップすると、そのノードは対象ノードの上方に位置する兄弟ノードとなり ます。
  2. カーソルを対象ノードの子ノード側に置くと、ノードの左側か右側かの色が変わります。この状態でノードをドロップすると、そのノードは対象ノードの子ノードとして連結されます。

ノート

  • ルートノードについては、左側にでも、右側にでもノードをドロップすることができます。これは、線を非表示中のノードにも当てはまります。

ビデオ

まとめノードを含む1つのグループ全体のノードを移動することができます。

  1. グループを選択してください。「Shift」を押した状態で、まずまとめノード群の始点ノードを選択し、次にまとめノードを選択します。
  2. 「Shift」を押したまま、選択ノード群を新しい位置にドラッグしてください。

ノードの位置を変更した後で、元の位置に戻すことができます。対象ノードを選択し、「編集 > ノードの位置をリセット」を選択してください。

ノードをアルファベット順に並べ替えたくなることがあるかもしれません。あるノードを選択しているとすると、ノードを右クリックし「子ノードを並べ替え」を選択すると、子ノードを並べ替えることができます。「編集 > ノードの移動と並べ替え」を使うと、他のオプションもあります。

ノードの階層を定義する基本的な関係付けには、線(エッジ)を使います。線の曲がり具合や色、太さを変えられるほか、線を隠す(非表示にする)こともできます。これらの変更は、下で説明する「プロパティパネル」又は「書式」メニューで行ないます。

任意の2つのノードを(2ノード間)コネクタと呼ばれる線で結びつけることができます。

  • ノードを右クリックし、連結したいノードにドラッグしてください。

コネクタの曲がり具合は、コネクタ上で左クリックしドラッグすることにより変えられます。矢印の向きを変える場合は、点付きのハンドルラインをドラッグしてください。

次のやり方で、コネクタの形状を変えたり、コネクタにラベルを付けたりすることができます。

  • コネクタを右クリックし、開くコンテキストメニューのオプションを選択してください。

ノート

  • コネクタを定義する場合、この他に「Shift + Ctrl + 右クリック」を使うこともできます。
  • 2つのノードを選択したうえで、二番目のノードを右クリックし、「Ctrl」キーを押しながら「コネクタを付加」をクリックすることもできます。
  • 始点のないコネクタ、つまり片道コネクタを作成する場合は、当該ノードを右クリックし同じノードにドラッグしてください。

いわゆるまとめノードを使うと、兄弟ノード群を関係付けることができます。このまとめノードは、兄弟ノードを波括弧で一括りにします。兄弟群を選択し、「Ctrl]を押しながら選択されたノードのどれかを右クリックして、ノードコンテキストメニューの「新規まとめノード(選択ノード群)」を選んでください。

ノート

  • この他の拡張オプションもあります。これらについて詳しくは、「マニュアル」をお読みください。

と呼ばれる共通の背景を付すと、複数のノードからなる枝全体を1つのグループとして視覚的に表現することができます。枝の親に当たるノードを右クリックし、[コンテキストメニューで]「ノード > 雲(標準)を付加」を選択してください。雲の色や形は、下記で説明する「プロパティパネル」で変更できます。ノードグループに属するノードの折り畳みを防ぐ場合は、「編集 > ノードグループ > 常にノードを展開」をオンにしてください。

「雲(標準)を付加」のアイコン

下記の手順を[使うと、特に2つのノードが同一マップ内の離れた位置ににある場合や別々のマップ上にある場合、それらを結び合わせるリンクの作成が容易になります。

  • リンクするノードの一方を右クリックし、「リンク > リンクアンカーをセット」を選択し、
  • リンクするノードのもう片方を右クリックし、「リンク > アンカーからのリンクを作成」、又は「リンク > アンカーへのリンクを作成」を選択します。

ノート

  • 「リンクアンカーをセット」を実行すると、既存のアンカーは削除されます。
  • Freeplane 終了時に、アンカーは削除されます。
  • お互いのノードが近接している場合は、下方に示す別の手順を参照してください。

マップ外のアドレスへのハイパーリンクは、ノードを右クリックして「リンク」を選択するやり方でも作成できます。しかしながら、外部オブジェクト向けのハイパーリンクないしハイパーリンク群を付加する最も簡単な方法は、ドラッグ&ドロップを用いるやり方です。ディレクトリやファイル、ファイルあるいは Web アドレスのコピーをドロップすると、選択されたノードにハイパーリンク付きの子ノードができます。子ノードの見出しにハイパーリンクの対象アドレスが表示されます。このテキストを削除したり変更しても、ハイパーリンク自身の動作には影響しません。

一群のハイパーリンクをドロップすると、照応して一群の子ノードができ、それぞれに1つずつハイパーリンクが格納されます。

ハイパーリンクの対象アドレスを編集するには、リンクを含むノードを右クリックし、「リンク > リンクを指定(タイプ入力)...を選択してください。開いたダイアログで、アドレスを編集することができます。「Ctrl + V」を使えば、コピー済みのアドレスを入力フィールドに貼り付けることができます。

別のマインドマップ上のノードにリンクを張る場合は、外部から特定ノードへのリンク  を参照してください。

ハイパーリンク(矢印型リンク)や E-mail アドレスを削除するには、ノードを右クリックし、

  • 「リンク先を指定(タイプ入力)...」を選択するか、又は「Ctrl + K」を押し、
  • テキストフィールド内のテキスト(アドレス)を削除してください。

ノート

  • プロパティパネルを使って、矢印型ハイパーリンクの表示を、ノードコア全体を下線付きトテキスト形式のリンクに変換することできます。これは、他の下線表示型ハイパーリンクが一切起動されていない場合に限り、有効です。
  • 画像ファイルをノードにドロップすると、ハイパーリンクでなく、画像を表示させることができます。この場合、「Cntl」キーを押した状態でドロップ操作を行なってください。 

[同じマップ上の]1つのノードから別のノードに向けたハイパーリンク(ローカルリンク)を設定するには、2つのノードを選択し、次に「Ctrl」を押しながらどちらかのノードを右クリックし、そして「リンク > ローカルリンク」メニュ-を選んでください。

ハイパーリンク(矢印型リンク)や E-mail アドレスを削除するには、ノードを右クリックし、

  • 「リンク先を指定(タイプ入力)...」を選択するか、又は「Ctrl + K」を押し、
  • テキストフィールド内のテキスト(アドレス)を削除してください。

ユーザの E-mail プログラムを自動的に開く、E-mail リンクを作成する最も簡単な方法は、E-mail アドレスをコピーしてノードに貼り付けるやり方です。これで、選択ノードにリンク付きの子ノードができます。子ノードのテキストは、E-mail アドレスになりますが、これは、例えば、相手氏名だけに書き換えてもかまいません。

(新たな子ノードを形成することなく)特定のノードに、E-mail リンクを付加したい場合は、当該ノードを右クリックして「リンク先を指定(テキスト入力)...」を選択してください。そして、テキストフィールドに下記のように入力してください。

  • 「mailto:emailaddress」
       例: mailto:jokro@freeplane.nl

ハイパーリンク(矢印型リンク)や E-mail アドレスを削除するには、ノードを右クリックし、

  • 「リンク先を指定(タイプ入力)...」を選択するか、又は「Ctrl + K」を押し、
  • テキストフィールド内のテキスト(アドレス)を削除してください。

下線表示型リンク

下線表示型ハイパーリンク(HTML リンク)を定義するには、まず最初に、ノードコア、ノードの詳細、又はノートのテキストダイアログを開いてください。次に、リンクを適用する文字列をタイプ入力し、選択してください。

そして最後に、ダイアログウィンドウの「編集」メニューから、「リンク先を指定(ファイル選択)...」又は「 リンク先を指定(タイプ入力)」を選択してください。後者の場合、ハイパーリンクのアドレスをタイプ入力してもよいし、「Ctrl + V」を押してコピー済みのアドレスを貼り付けることもできます。

  • このリンク をクリックすると、Freeplane Open Forum にジャンプします。

ノート

  • ハイパーリンク適用文字列をに変更を加える場合は、タイプ入力し直すだけです。この操作は、リンク先アドレスに変更を加えるものではありません。

  • リンク先のアドレスを変更する場合は、下線付きの文字列全体を選択して、再度「リンク先を指定(ファイル選択)...」又は「 リンク先を指定(タイプ入力)」を選択してください。
  • 同一のノードコア、ノードの詳細、あるいはノートフィールド内に、複数の下線表示型ハイパーリンクを置くことができます。
  • 文字列が書式設定無し、又はプロパティパネルによる書式設定のみに場合、リンクは青色表示されます。文字列が、編集ダイアログのメニューで書式設定されている場合は、当該のダイアログで設定された色や文字サイズを反映します。
  • 別のノード向けの内部リンクを付加する場合は、アドレスに "#ノードID"を入力してください。ノードIDを取得するには、ノード上で右クリックして「ノードIDをコピー」を選択してください。そして、「リンク先を指定(タイプ入力)」の選択時に開くダイアログの「リンク先を指定」フィールドで「Ctrl + V」を用いてこのノードIDを貼り付けてください。ノードID  の前に"#"を置くことを忘れないでください。
  • 別のマインドマップ上のノード向けリンクを作成する場合は、外部から特定ノードへのリンク を参照してください。
  • 同じマインドマップ上のノード向けリンクを設定する場合、アドレスに "#ノードID" を含めて下さい。ノードIDは、右クリックして「ノードIDをコピー」を選択すると取得できます。コピーしたノードIDは、リンクアドレス入力フィールドに「Ctrl + V」を用いて貼り付けることができます。[○この項目、2つ上の●と内容が重複している!]
  • 下線表示型ハイパーリンクのアドレスと文字列の両方を削除するには、ハイパーリンク適用文字列全体を削除してください。文字列を残し、アドレスだけを削除する場合は、
    • カーソルを下線付き文字列の途中に置き(文字列を選択するのではない)、
    • 「編集 > リンク先を指定(タイプ入力)...」をクリックし、
    • 開いたダイアログのアドレスを削除してください。

メニュー項目をノードに連結し、このノードをクリックして当該のメニュー項目[の機能]を起動できるようにすることもできます。ノードを特定のメニュー項目に直接連結するには、当該ノードを右クリックし「リンク  > 機能リンク(メニューに対応)...」を選択してください。

ハイパーリンク(矢印型リンク)や E-mail アドレスを削除するには、ノードを右クリックし、

  • 「リンク先を指定(タイプ入力)...」を選択するか、又は「Ctrl + K」を押し、
  • テキストフィールド内のテキスト(アドレス)を削除してください。

メニュー項目[の機能]を起動したい時には、そのメニュー項目まで移動しクリックしなければなりません。操作を高速化するために、ユーザは当該メニュー項目に対するショートカットないしFキーを指定することができます。この場合は、「ツール  > ショートカットキーを割り当て」を選んでください。また、「ツール  > ホットキーのプリセット  > プリセットを保存」 を用いれば、様々なシチュエーションでの使用を想定して、ショートカットキーセットに名前を付けて保存することもできます。以前に保存されたセットをインストールするには、「ツール > ホットキーのプリセット」をクリックし、一覧表からセットを1組選び出すだけです。

他のプログラム、ないし他のマインドマップから対象マップ中の特定ノードにジャンプする場合は、ハイパーリンク用アドレス指定フィールドに、"#"を前後挟む形で、対象マインドマップへのパス及びノードIDを記入しなければなりません。リンク元マップとリンク先マップが同じディレクトリにある場合、アドレスは、"リンク先マップ.mm#ノードID" 、例えば、"WhatIsMindmapping.mm#ID_930373151" の形で定義することができます。このやり方は、親ディレクトリ全体を移動しても、リンク関係に問題が生じない点で、優れています。この他の場合は、絶対パスを用いなければなりません。完全パス名を取得するには、ノードを右クリックし「ノードURIをコピー」を選択してください。この後、リンクアドレス編集フィールドで「Cntrl + V」を実行すると、このアドレスが貼付されます。

ノート

  • 特定ノードへのジャンプは、ノードID 情報を受け渡しできるアプリケーションでしか作動しません。もちろん、これには Freeplane も含まれます。MSWord など、他の多くのアプリケーションは、ノードIDを受け渡すことができません。したがって、これらのアプリケーションからは、ルートノードにしかジャンプできません(こうした場合、次善の策として、ジャンプしたいノードだけを表示するように折り畳んだ状態で、マインドマップを保存することが考えられます)。

Freeplane は、ひとつのノード全体、あるいはすべてのノードに適用されるプロパティを様々に設定ないし変更することができます。ノードの基本色やノードの縁取り囲い、テキストの文字サイズ、ノードコアの横幅などについていろいろと思いを広げることができます。プロパティの編集で最も使い勝手の良い手段が、プロパティパネルにあります。プロパティパネルを開いたり閉じたりするには、マップの背景の空白スペースで右クリックし、「プロパティパネル」を選択してください。

ノート

  • 別のパネルの開閉方法として、「表示 > プロパティパネル」の選択があります。
  • 別のプロパティ項目の変更方法として、「書式」メニューの使用があります

Uncheck if you want to return to the default behaviour. Also uncheck if you want conditional styles affect (set) the property.

「プロパティパネル」は、フォーカス状態にあるノードのプロパティーを表示します。選択中のノードのプロパティしか変更できません。(通常ユーザが選択するノードは1つですが、一部のプロパティについては、一度に複数のノードを選択し、変更を加えることができます。)パネルが表示されている間に、ユーザはあちこちのノードを選択しフォーカスを移すことができます。特定のプロパティ項目を変更するには、プロパティの値を変更してください。すると、変更された値の適用を示すチェックもセットされます。デフォルトの動作に戻したい場合は、チェックを外してください。また、条件対応スタイルをプロパティに適用したい場合にも、チェックを外してください。

用例1「ノードの形」というプロパティグループに行き、「ノードスタイル」をクリックしてください。「囲み」、「フォーク」、「親と同じ」といったオプションを含むドロップダウンメニューが現れます。これらのオプションを試して何がおきるかご覧ください。現在閲覧中のノードについては、「囲み」オプションが選択されています。ご覧のように、このオプションの適用範囲はコアに限られます。

用例2「線」プロパティグループに行き、「線の形状」のボックスをチェックしてください。「線の形状」の右隣をクリックすると、「直線」、「緩やかな曲線」、「線を隠す」といった利用可能な形を示すドロップダウンメニューが現れます。これらを試して、どのような形が利用できるのか理解してください。また、ご覧のノードをクリックすると、[プロパティパネル」におけるいくつかプロパティ項目の変更事例を見ることができます。

初期設定では、Freeplane の新規マップは、新しく作られる枝にそれぞれ別の色を付すようになっています。これは、マインドマップ考案者が重視する原則の1つ、すなわち、頭脳がより容易に情報を構造化し記憶するのに彩色が役立つとの考えをサポートするものです。このプロパティは、「線の色を自動選択」と呼ばれ、プロパティパネルで無効にできます。この機能を無効にするには、プロパティパネルを開き、「プロパティパネル」の一番上にある「ノードのスタイル」のプロパティグループを見つけてください。そして、このチュートリアルのマインドマップのように、「線の色を自動選択」のチェックを外してください。

「プロパティパネル」のオプションの1つに、自動的に「ノードに番号振る」があります。ユーザは、まずグループをを選択し(各ノードをクリックする際に、「Shift」ないし「Ctrl」を押したまま操作してください)、次に「プロパティパネル」でこのオプションにチェックを付けることで、ノードグループのノードに番号を振るよう設定することができます。

プロパティパネルのオプション群をよく見てください。「ノードのスタイル」グループのプロパティについては、すぐ後で説明します。他のプロパティの大半は、見れば解るはずです。すべてのプロパティについて、詳しくは Freeplane マニュアルで説明しています。

プロパティパネルのプロパティは、「書式」メニュー経由でも利用できます。「書式」メニューには、プロパティパネルでぱ設定できないプロパティがいくつか含まれます。たとえば、「マップの背景色」「ノードを点滅」(コア部分)などです。

「プロパティパネル」にあるプロパティの一部は、メインメニューバーの下にあるツールバー上のアイコンでも利用できます。右に、斜体太字の事例を示します。

重 要

  • プロパティパネル「書式」メニュー、あるいはツールバーで設定された太字や斜体は、当該のノードコア全体に(強制)適用されます。
  • 太字や斜体をノードコアの一部に適用するには、上方の「初心者マップ」で説明したやり方を使ってください。 
  • 一度に同じノードに両方の方法を使うと、想定外の影響が出るかもしれません。例えば、第1の方法で設定された太字を、第2の方法を使って取り消すことはできません。

ツールバー上にあるこれと同じアイコンボタンは、ノードテキスト全体に作用します。

スタイル(クラス)は、一連の視覚関連プロパティを素早く適用、変更したり、あるいは関連するすべてのノードについて一度に適用されるテンプレートテキストを定義したりする手段です。また、スタイルは、特定種類の内容や構造をもつノードの検索やフィルタ表示にも利用できます。このクィックリファレンスも、スタイルを用いて作成しています。この点については、The making of this mind map のノードを参照してください。

Freeplane は、多数のシステムスタイルを装備していますが、それはユーザ独自のスタイルを用いて拡張することができます。表示画面最上部のワークメニューバーの「雲を付加」アイコン隣のフィールドにスタイルリストが表示されています。このリストからスタイルを1つ選んでクリックすれば、選択ノードにこのスタイルが適用されます。現在閲覧中のノードには、「TitlesContent スタイルが適用されています。

ノート

スタイルは、次の方法でも利用できます。

  • ツールバーを使用
  • 「書式 > スタイルを適用」メニューを使用
  • プロパティパネルの「ノードのスタイル」グループ、「スタイル」フィールドを使用。なお、プロパティパネルは、背景の空白部分で右クリックしプロパティパネルを選ぶと、開きます。

ユーザは、ノードを選択し、「書式 > スタイルを管理 > 選択ノードから新スタイルを作成」を実行することで新しいスタイルを定義することができます。このスタイルに独自名称をつけることを求められ、選択ノードのプロパティがこのスタイルにコピーされます。また、「書式 > スタイルを管理 > スタイルを編集」メニューを用いて、専用のスタイルダイアログ開くこともできます。[ここで、]各種スタイルの1つを右クリックし、「選択ノードから新スタイルを作成」を実行することにより、スタイルを追加することもできます。スタイルを定義してしまった後でも、利用可能なメニューやプロパティパネルの専用のスタイルダイアログを用いてスタイルを修正することができます。

ノート

  • Freeplane マニュアルをご覧ください。

スタイルは、ノードに含まれる情報が特定種類のものであることを示すのに利用できます。一例を挙げれば、ご覧のノードの親に当たる「複数スタイルの適用」というノードは、"Acvanced" と "Example" の2つのスタイルを使っています。"Acvanced" は黄色に着色を施すもので、 "Example" は「眼」のアイコンを付します。この事例を実現するには、まず2つのスタイルを定義し、次に「プロパティパネル」を開き「ノード用条件対応ノードスタイル」の下をクリックして、これらを条件対応ノードスタイルとして適用します。すると、ダイアログが開くので、このダイアログで次のように操作してください。

  • 「新規」をクリックして、
  • 開いたルール行で、「標準スタイル」を[ダブル・]クリックしてスタイルリストを開いてください。[そして、] Advanced を選択してください。
  • 再度「新規」をクリックし、[次に]「標準スタイル」を再度[ダブル]クリックし、Example を選択してください。
  • 「OK」をクリックしてください。

この後、ノードに両方のスタイルが適用されていることを確認してください。

ノート

  • スタイルについて詳しくは、Freeplane マニュアルをお読みください。

 Advanced makes the yellow color and Example adds the eye-icon. To implement this example, first define the two styles and then apply them as node conditional styles by opening the Tool panel and clicking below Node conditional styles for node. Now a dialog opens and in this dialog:

上の用例では、複数の条件が無条件に適用されました。一定のフィルタ条件により特定されるある条件が充たされる場合に限って、スタイルを適用することもできます。次の事例では、一定の更新日以降にノードが修正されているかどうかを示すために、条件対応スタイルを用いています。

用 例:更新(リビジョン)

  • まず、独自の「R」印の更新アイコンを付したまず、独自の「R」印の更新アイコンを付した「Revision」スタイルを定義します(スタイル一覧を参照)。
  • 次に、「プロパティパネル」「マップ用条件対応ノードスタイル」の下方をクリックしてダイアログを開きます。「新規」ボタンをクリックして、フィルタを追加します。この新たにできたルールをクリックし、フィルタ条件(以降に変更された、日付)を定義します。このフィルタルールを選択し、「OK」ボタンを押します。

「条件対応スタイルを管理」ダイアログを見ると、上に定義したルールはチェックが外されているはずです。通常の場合、ユーザにとって「R」アイコンを眼にするのは煩わしいはずなので、あえてそのように設定しました。更新を残さず見るには、ノードを展開しなければなりません。

ノート

  • ノード用条件対応ノードスタイルとマップ用条件対応ノードスタイルについて、詳しくは Freeplane マニュアルをお読みください。

条件対応ノードスタイルの適用の1つに、各ノード階層毎に異なる体裁を自動的に付与することがあります。例えば、ユーザが5段階のノード階層を必要としているとしましょう。その場合、ユーザは各階層に応じて5つのスタイルを定義します。次に、5つの条件対応ノードスタイルルールを定義します。作業の便宜を図るために、このケースについては Freeplane がユーザに代わって事前に定義したものがあります。「プロパティパネル」の「ノードのスタイル」プロパティグループの「自動レイアウト」にチェックするだけです。チェックが付いていれば、各ノード階層毎に、異なる体裁が自動的に付されるはずです。ルートノードのスタイルは、「タイトル」スタイルと呼ばれます。他の階層スタイルは、「見出し1」「見出し2」「見出し3」「見出し4」となります。

各階層に使われているスタイルがお気に召さない場合は、次の手順で変更することができます。

  • スタイル[ダイアログで  「書式]  > スタイルを編集」メニューを選択し、
  • 変更したいノード階層(ルート、第1階層、第2階層、第3階層、第4階層、第5階層、第6階層)を選択し、
  • その書式を変更してください。

5を超える階層別スタイルが欲しい場合は、スタイル[ダイアログの「書式]  > スタイルを編集」 で「自動レイアウトスタイルに新規階層を追加」を実行して、「階層別スタイルを適用」の後にそれらを追加するだけです。

階層別スタイルの適用を4以下にしたい場合は、スタイル[ダイアログの「書式]  > スタイルを編集」 で「階層別スイルを削除」を実行して、「階層別スタイルを適用」の後のスタイルを削除してください。

ノート

  • Freeplane マニュアルに、もっと詳しい情報があります。

新規マップの作成時に、Freeplane は、default.mm という名のマップから、いわゆるマップスタイル情報を取得します。こうして、新規マップ作成時に、すべての標準設定につきが毎回同じ設定がなされることになります。お気に入りの設定でマップを作成できるように、ユーザは default.mm を修正することができます。このマップは、「ツール > ユーザディレクトリを開く > テンプレート」にあります。今ひとつのお薦めは、意識的に別のマインドマップから新規マップを開くことです。これについては、「ファイル > テンプレートから新規マップ」を使ってください。

テンプレート定義の手順は以下のとおりです。a

  • 新しいテンプレート[の名称]を、例えば "MyTemplate" と定義し、
  • 「書式 > スタイルを管理 > スタイルを編集」メニューで、スタイルエディタを開いて
  • "MyTemplate" の詳細を編集し(編集 > ノード拡張情報 > ノードの詳細を..編集)、
  • "MyTemplate" に属性を付加し(編集 > ノード拡張情報 > ノードの属性を..編集)、
  • スタイル編集ダイアログを閉じ(編集済みのスタイルを保存し)、 
  • 新規ノードを開き、
  • 新たに "MyTemplate" スタイルを適用します (編集 > ノード拡張情報 > スタイルノードから拡張情報をコピー)。

これで、新規ノードは、 "MyTemplate"  で入力したテキストと属性を持つはずです。

Template information

  • Name:
  • Address:

通常、ブラウザからテキストを貼り付けると、書式まで貼り付けられてしまいます。次のちょっとしたプログラムをインストールすれば、書式なしのテキストを貼り付けることができます。http://www.stevemiller.net/puretext/ を参照。

ノードを1行ずつに整理したり、あるいは、単に独自の幅、つまり固定幅にしたい場合は、

  • 「書式 > ノードの表示幅を設定」を実行するか、
  • 「プロパティパネル」をご覧下さい

ノート

  • 現在ご覧ののノードは、"最小表示幅=最大表示幅=300 ピクセル" に設定されています。

ノードコアは、ノードコア全体に適用される総合機能を保持しています。このコアの総合書式は、「書式  > 書式のみコピー」でコピーし、「書式  > 書式のみ貼り付け」で別のノードに貼り付けることができます。

書式なしのテキスト(プレーンテキスト)の貼り付けなど、各種オプションについては、「編集 > 貼り付け」をご覧下さい。

ノート

  • インターネットからテキストをコピーする場合、通常の貼り付けを行うと、書式(色や文字サイズ等)まで貼り付けられます。このオプションを使うと、プレーンテキストだけのコピー動作を選択できます。
  • このオプションを頻繁に使う場合は、この機能にショートカットキーを指定することを勧めます。「ツール > ショートカットキーを割り当て」を参照。

マップは、「ファイル」メニューの印刷関連機能を使って印刷してください。

大きなファイルの場合、標準マップレイアウトでなく、アウトラインレイアウトで印刷したほうが実用的かもしれません。Freeplane をアウトラインモードに設定するには、「表示 > アウトラインビュー」を使用してください。

プレゼンテーションに用いる場合、フォーカスを合わせているノード(群)を除いて、マップをグレー表示することができます。そのためには、「表示 > プレゼンテーションモード」を選択してください。「Shift + Space」を押すか、又は「Shift + 折り畳みマークをクリック」を実行すれば、フォーカス表示ノードを次次に移動していくことができます。

Java アプレットは簡単なプログラムですが、これを使うと、Freeplane をインストールしていないコンピュータ上で、マインドマップを表示させることができます。Java アプレットを使って、マインドマップをインターネット上に公開するには、マインドマップを「ファイル > エクスポート」「Java アプレットに」のファイル書式を選んでエクスポートしてください。エクスポートが終わると、「yourmap.html」というファイルと「yourmap.html_files」というディレクトリができます。マップの中で画像を使う場合は、yourmap.mm 作成時に、これらの画像が yourmap.mm と同一ディレクトリに格納されていることを確認してください。[マップの]エクスポート後、画像を yourmap.html_files [ディレクトリ]にコピーしてください。これで、yourmap.html ファイルと yourmap.Html_files ディレクトリをインターネットサーバに移し、yourmap.html を呼び出してマインドマップを起動できるようになります。ユーザのマインドマップは、閲覧用のブラウザで開くことができますが、修正はできません。同じ手法は、Freeplane をインストールしていない他の人と、マップをシェアする場合にも利用できます。上記のファイルとディレクトリを、インターネットサーバの代わりに相手方のコンピュータに移してください。

ノート

  • .svg 画像は、Java アプレットで公開することができません。
  • 他のオプションについては、Freeplane マニュアルを参照してください。Freeplane wiki でのマップの公開については、このページ をご覧ください。
  • 単一の Java アプレットで複数のマップを公開する方法については、この 用例 をご覧下さい。
  • 「ツール > 環境設定」で、マップが毎回同じ折り畳み状態で開くように、折り畳み状態を保存する設定にすることができます。

インターネットやイントラネットで直接マインドマップを公開することもできます。その場合は、マップを表示させるために、Freeplane が必要です。「ファイル > URL からマップを開く」を用いてマップを開き、マップの URLについてはフルアドレスを入力してください。

ノート

  • MS Windows の場合、マインドマップのリンクを右クリックし、「リンクの URL をコピー」を選択してください。次に、上述の URL 欄にこのアドレスをペーストしてください。

適用事例のインデックス

リンクをクリックすると、Freeplane の主要な適用事例を示すマインドマップが開きます。インデックスのリンクにしたがってジャンプするには、インターネットへの接続が必要です。

ノート 

  • インデックスマップからこのマップに戻るには、「ナビゲーション > 前のマップ」(又はアイコンツールバー)を選択してください。

ノードの内容を常時非表示にし、カーソルでノードをホバーリングしているときに限り見えるようにすることができます。これには、当該ノードの占有スペースを最小限にできるという利点があります。

ノードをホバー表示モードにするには、ノードを右クリックして「ノードを短縮表示」を選んでください。ノードコアテキストの冒頭部分以外のすべて情報が隠れます。非表示状態を止めるには、「ノードを短縮表示」を再度クリックしてください。

ノート 

  • この機能は、ノードの詳細を隠すとともに、コアテキストの長さに制限を加えます。したがって、長い見出しが用いられている場合、短縮表示されます。また、この機能を使うと、以下に説明する画像や属性、ノートといった機能も非表示にしなります。
  • 詳細内での画像の例外的動作については、下方の「画像」をご覧ください。

隠された詳細は、ノードコア上でカーソルをホバーリングさせることで、可視化することもできます。これは、ノードの詳細を常時非表示にセットしている場合に、特に有用です。この場合、詳細を表示させるための三角形(△)はなくなります。ノードにこの種の隠されたテキスト、ツールチップとも言いますが、これが内蔵される場合、その目印として、当該ノードの親ノード側に小さな丸印(○)が表示されます。下のノードがその一例です。この上でカーソルをホバーリングさせると、内容が表示されます。(試して下さい!)

画像[データ]は、Freeplane のマップの一環ではありませんが、Freeplane のマップの中に表示することができます。画像のソース[データ]がユーザのコンピュータ内に格納されているかどうか、また、ドラッグ&ドロップとコピー&貼り付けのどちらの手法を用いるかによって、異なる動作を示します。「ノードコア」内の画像は、ここ(ノードの拡張情報)での説明とは別物であることに留意してください。

特定の1つのノードに単一の画像を付す場合は、ノードの上の部分に画像をドラッグ&ドロップしてください。ノードの子ノード側にドロップすると、自動的に新規子ノードが作成され、そこに画像が格納されます。いずれの場合にも、イメージの右下の角をドラッグすることにより、大きさを変更することができます。

単一画像を付加する別の方法として、以下のやり方があります。

  • ノードを右クリックし、「画像を付加...」を選択するか、又は
  • 「編集 > ノードの拡張情報 > 画像を付加...」を選択してください。

ノート

  • イメージは、ノード上に表示されていても、マインドマップ[データ]の一部をなすものではありません。画像は、マインドマップを開くたびに、オリジナルの場所から読み込まれます。したがって、ユーザが、画像の元ファイルを削除したり、名称変更したりすると、マップ上に表示されなくなります。
  • 「表示 > ノードを短縮表示」の設定時には、画像は表示されません。こうした形で非表示にされた画像は、ホバーリング時(のツールチップ内)に表示されません。
  • ノード内で画像の位置を動かすことはできません。(他の種類の)画像に関する詳しい説明、あるいは画像付きマインドマップの公開や共有に関する立入った説明については、Freeplane マニュアルにあります。
  • ドラッグ&ドロップの代わりにコピー & 貼り付けを使うと、画像そのものでなく、画像データへのハイパーリンクがノードコアに付加されます。
  • この画像は、ノードの機能の1つで、ノードコアの下方に表示されます。ノードコア自体に、イメージを格納することもできます。このイメージは、大きさを変えられません。
  • 画像は、一時ファイルではありません。例えば、Thunderbird などの E-mail プログラムから画像を利用したい場合は、まず画像ファイルをテンポラリーファイル用ディレクトリ以外のディレクトリにコピーしてください。

インターネットなどの外部ソースから取得した画像ジを、コピー & 貼り付けの操作によって付加することができます。同様に、プリントスクリーンを用いて作成された表示画面の画像を、貼り付けによって付加することもできます。いずれの場合も、画像は、貼り付け操作時に、選択ノードに新規作成される子ノードに付加されます。貼り付けられた画像は、右下角をドラッグすることにより大きさを変更できます。

 

ノート

  • 貼り付けられた画像は、マインドマップ[ファイル]自体の一部をなすものではありません。
  • ソースがインターネット上にある場合、画像を表示させるには、インターネット接続しておくことが必要です。画像データを手元に置く場合は、まずユーザのコンピュータにデータをコピーしてください。
  • 「プリントスクリーン」機能でコピーした画像を貼り付ける場合、Freeplane は最初にこの画像をどこに保存するか指示を求めます。
  • 一時ファイルに画像データを保持するプログラム(例えば Thanderbird)から画像を貼り付けないしドロップする場合、最初は画像が表示されても、後で表示できなくなることがあります。最初に、特定ディレクトリに画像をコピーしておいてください
  • 同時に複数の画像を選択し貼り付けると、ハイパーリンクしか貼り付けられません。

一度画像が作成されると、右クリックして「画像を変更」を選択することで、画像を別のものに置換することができます。

ノードの詳細に、各情報ユニットに名称と値をもつ構造化された情報を装着することができます。この"名称=値"形式の1対の組み合わせは、属性とも呼ばれます。属性群は、2列のカラムからなる表の形で表示されます。

上の用例を作るには、[まず]ノードを右クリックし「属性をインライン編集」を選択します。ここで左側のフィールドに「Name」を、右側のフィールドに「John」と入力します。2番目の属性を追加するには、属性「名」か属性「値」を右クリックして、属性のコンテキストメニューを開き、「新規属性」を選んでください。

用例をたどっていくと、表示された属性の幅がテキストの長さにあってないことに気づくでしょう。この問題を解決するには2とおりのやり方があります。第1は、属性を右クリックして「表示幅適正化」を選択することです。第2は、表のすぐ上の細いバーをクリック&ドラッグして長さ調整することです。

ノート

属性を作成したり他の属性機能を適用したりする別の方法があります。下記をご覧ください。

  • 「プロパティパネル > カレンダー/属性」
  • 「編集 > ノーの拡張情報」

属性値には、テキストを入力できるだけでなく、ハイパーリンクを付加することができます。オプション値については、属性値を右クリックしてご覧ください。ハイパーリンクの種類別の違いについては、[このマップの]「ハイパーリンク」ノードで説明しています。日付と数字については、「プロパティパネル > カレンダー/属性」経由で指定書式の日付や数値を付加することもできます。書式のオプションについては、属性のすぐ上のフィールドをクリックするとドロップダウンメニューが表示されます。書式の指定について詳しくは、Freeplane マニュアルをお読みください。

例えば、すべてのノードの属性名や属性値を変更する場合、いくつかのオプションを使うことができます。利用可能なすべての機能は、「編集 > ノードの拡張情報 > 属性」にあります。また、その説明については、Freeplane マニュアルをご覧ください。

下で説明するように、属性値関連のコンテキストメニュー経由で、属性値にハイパーリンクを付加できます。

ノード内に科学数式を表示することができます。「編集 > ノード拡張情報 > LaTeX」を使ってください。

ノート

  • 詳しくは、Freeplane マニュアルをお読みください。

機能別インデックス

リンクをクリックすると、Freeplane の主要機能を説明したマインドマップが開きます。テキスト上でホバーリング[マウスカーソルを置いた状態でしばらく待つこと]すると、非表示になっているリンクが表示されます。これらのリンクは、この「クィックリファレンス」、及び「ヘルプ > マニュアル」の当該機能に関する説明にジャンプするよう設定されています。

ノート

  • インデックスマップから、このマップに戻るには、「ナビゲーション > 前のマップ」(又はアイコンツールバー)を選択してください。

FAQ

ノートは、特殊な形態をしたノードの詳細です。主な違いは、下記にあります。

  1. 標準設定では、ノートはホバーテキスト表示されるようになっています。「表示 > ノート > マップ内にノートを表示」メニューを使えば、すべての(!)ノートが表示されるようになります。
  2. ノートテキストは、画面の横幅いっぱいに表示でき、また表示ウィンドウはノードからノードに移動しても開いたままにしておくことができます。詳細な情報については、Freeplane マニュアルをご覧ください。

  3. ノート付きの場合、ノートアイコンが表示されます。

ノート

  • ノートアイコンは、「ツール > 環境設定」で、(すべて)非表示に設定することができます。なお、例外として、インターネット(Java アプレット)上ではアイコンは表示されたままとなります

時間管理を使うと、選択ノードのコアに、日付や時間(リマインダ)、タスク(リマインダテキスト)をセットできます。置時計アイコンがリマインダ設定済みの目印となります。このアイコンは、当該ノードとその上位ノードに表示されます。ただし、上位ノードが同一のまとめノードグループに属する場合は、除きます。置き時計アイコンの点滅は、リマインダの時刻がきている合図です。

これらの機能を設定ないし編集できる場所が2つあります。

  • 「ツール > 時間管理」で、「時間を管理」及び「タスクを管理」のサブメニューあり。
  • 「プロパティパネル  > カレンダー/属性」で、タスク管理はできない。

選択ノードに装着された日付(テキスト)やリマインダをセットしたり変更したりするダイアログを開きます。当該ノードとその上位ノードに置時計アイコンを表示します。リマインダの設定時刻になると、このアイコンが点滅します。また、ルートノードで赤い感嘆符が点滅します。

ノート

  • 別のダイアログとしては、「プロパティパネル > カレンダー/属性」を参照。

すべてのノードのリマインダを表示するウィンドウを開きます。それぞれのリマインダに下記の事項が表示されます。

  • 日付
  • 見出し
  • アイコン
  • 作成時刻
  • 最終編集時刻
  • ノート

選択ノードのリマインダを削除します。別の方法については、下記をご覧ください。

参 照

  • 「ツール > 時間管理」
  • 「プロパティパネル > カレンダー/属性」

This node contains a reminder

検索を実行したりフィルタをかけたりするに先立ち、ユーザは、何について検索ないしフィルタをかけるのかを定義しなければなりません。この作業はフィルタバーを使って実行することができます。このツールバーは、アイコンと入力フィールドからなる水平な行で、マップの作業エリアのすぐ上にあります。検索/フィルタルールは、以下の項目から成り立っています。 

  • 「ノードの構成要素」(コアテキスト、詳細、アイコン など)。検索やフィルタでは、ノードのほとんどすべての構成要素を利用できます。
  • ルールの種類:  構成要素について、「付き」、「⊃(含む)」、「=」、「>」           など。
  • 「構成要素の」。
  • 値がテキストの場合については「大文字/小文字を区別」「曖昧」検索(ファジー検索)オプションの有効/無効。

これらの要素を設定/入力したら、「クィックフィルタ」アイコンをクリックしてフィルタを適用することができます(どれが「クィックフィルタ」アイコンかは、左方を参照)。また、「検索」アイコンをクリックして1件ずつ検索を進めることもできます。

クィックフィルタの結果は、1ないし複数のいわゆるフィルタオプションを設定することによって修正することができます(フィルタオプションについては。下方を参照)。フィルタを中止するには、「フィルタ解除」アイコンをクリックしてください。(検索時には、この動作を止める必要はありません。)

詳しい説明や用例は、Freeplane マニュアルにあります。

ノート

  • 同じフィルタルールを使ってノードを1件ずつ検索することもできます。

フィルタを適用します。

特定の日付以降に修正されたすべてのノードをフィルタ表示するには、(日付フィルタ, 以降に変更された, 日付 xxx)を設定し、すべての修正ノードに関する「クィックフィルタ」を実行してください。

参 照

  • 今ひとつの方法として、「編集 > 検索&置換...」メニューがあります。

フィルタの適用を解除します。

To the left are shown the icons of the buttons in the Filter toolbar, with their meaning.  

前に使われたフィルタコマンドの効果を無効にします。

「フィルタ > フィルタを元に戻す」の実行後に、その前に用いられたフィルタコマンドを再適用します。

マップに変更を加えた後に、改めてフィルタをかけ直します。

表示中のノードのうち、フィルタルールとオプションに適合しないものをすべて隠します。アイコンは非設定時の表示のまま変わりません。

参 照

  • フィルタの適用を終了する場合は、「フィルタ解除」「フィルタ無し」)。

ノート

  • フィルタを掛ける前に非表示にされていたノードは、非表示のままです。
  • [矢印キーを押すと、]可視状態のまま残されたノードはすべて、お互いに線(エッジ)に沿って移動します。

特定の日付以降に更新されたすべてのノードをフィルタ表示させるには、(日付フィルタ, 以降に変更された, 日付, xxx)形式のフィルタルールを指定し、すべての更新ノードを対象に「クィックフィルタ」を実行してください。

参 照 

  • 今ひとつの方法として、「編集 > 検索&置換...」を用いるやり方があります。

フォーカス状態のノードの下位ノード(表示/非表示の両方)につき、フィルタをかけ、[条件に]該当するすべてのものを選択します。そして、それらに挟まれたノードも表示し選択状態に変えます。

フィルタ中の(可視)ノードへの適用/解除を切り替えます。すなわち、結果を絞り込むために、追加のフィルタ条件を付加します。

(「選択ノードに絞って適用」がセットされ、)フィルタが有効の時、フィルタ条件に適合するノードの上位ノードをすべて表示/非表示に切り替えます。

ノート

  • 「クィックフィルタ」実行の前でも後でも設定できます。

(「選択ノードに絞って適用」がセットされ、)フィルタが有効の時、フィルタ条件に適合するノードの下位ノードをすべて表示/非表示に切り替えます。

ノート

  • 「クィックフィルタ」実行の前でも後でも設定できます。

選択ノードの中でテキスト[文字列]などの指標を検索します。検索は、後方検索と逆方向に行ないます。

ノート

  • 見つかったノードは選択状態になります。.
  • 見つかったノードが折り畳み中の場合は、展開されます。
  • 見つかったノードが表示画面の外にある場合は、表示画面の可視エリアに来るように、マインドマップを動かします。

選択ノードとその下位ノードでテキストなどの指標を検索します。見つからない場合は、さらに他の枝も検索します。深さ優先探索方式と呼ばれるやり方です。

ノート

  • 見つかったノードは選択状態になります。.
  • 見つかったノードが折り畳み中の場合は、展開されます。
  • 見つかったノードが表示画面の外にある場合は、表示画面の可視エリアに来るように、マインドマップを動かします。

後に再利用するために、複数のフィルタを定義し保存しておくことができます。「フィルタ > フィルタ条件を指定」を開き、必要なフィルタルールを定義してください。その際には、"And" や "Or" の演算子を用いて簡単なルールを連結し、複雑なルール群を作成することができます。そして、一度定義したルールには、ラベルを付けることができます。必要なルールをすべて作成してから、セット全体を保存することができます。さらに、このセットは、他の人と共有することも可能で、それには、「フィルタ条件を指定」にセットを読み込むだけです。

「フィルタ条件を指定」で定義したルール群は、フィルタメニューバーから使用することができます。ルールを有効にするには、「フィルタ無し」と表示されているフィールドのすぐ横をクリックしてください。これで、利用可能なすべてのルールのリストがドロップダウン表示されます。ご希望のルールをクリックすると、実行されます。作業を終わったら、再度「フィルタ無し」を選択するか、又は「フィルタ解除」のアイコンボタンをクリックしてください。

フィルタセット利用の実例として、Freeplane ディレクトリのサブディレクトリ "doc" に "freeplaneTutorial.mmfilter" というファイルを収めています。 「フィルタ > フィルタ条件を設定  > 読み込む」を実行し、このファイルを探して読み込んでください。

これで、ユーザは、以下のノードに説明するようにこのフィルタを利用することができます。

初歩的な技能情報(初級者向け)に限って閲覧する場合は、

  1. 「フィルタ無し」と表記されたフィールドをクリックしてください、。フィルタ候補群のリストがドロップダウンします。
  2. 表示されるルール群から1つ、たとえば初級者向けを選択してください。
  3. 画像の表示にしたがって、「クィックフィルタ」をクリックしてください。

     なお、「上位ノードも表示」が選択されていないことを確認してください。

各項目をクリックすれば、内容を表示させることができます。あるいは、下記の要領で非表示中の情報をすべて一挙に表示させることもできます。 

  1. 中央エリア(ルートノード)にカーソルを移動して選択し、
  2. 「すべて展開する」のアイコンをクリックして、すべての選択ノードをご覧ください。
  1. 背景の空白部分をクリックし、マップを動かし、全体を読んでください。
  2. 終了時に、「フィルタ解除」アイコンを押すのを忘れないでください。

     「初級者向け」「中級車者向け]「上級者向け」のそれぞれについて、同じ手順を踏めば、

     うまくいきます。

パスワードを使って、マップ全体を保護したり、マップの一部を保護したりすることができます。あるノード用にパスワードを定義すると、当該ノードの下位ノードは、正しいパスワードが入力されない限り、秘匿されたままの状態になります。同一マップ内で、ノードごとに異なるパスワードを定義し、幾重もの保護を課すこともできます。選択ノードの子ノード用のパスワードを定義するには、「パスワードで保護」を選択してください。

ノート

  • 「ツール > パスワードで保護」も参照。
  • パスワードで保護は、 DES 型暗証を用いて行なわれます。保護(暗証)について詳しくは、 Freeplane マニュアルをご覧ください。

新規マップを定義する際に、、パスワードでマップ全体を直接保護するlことができます。これは、「ファイル > 保護(暗証)付き新規マップ」を選択すれば、1操作で実行できます。この機能をノードのパスワード保護と組み合わせて、幾重ものセキュリティ保護をかけることもできます。

Freeplane には、多数のチューニングオプションがあります。よく使われるオプションは、「表示」メニューで利用できます。また、その他のものについては、「ツール > 環境設定」で利用できます。このほか、ユーザが独自スクリプトを書いて、操作を自動化することもできます。これらについてはすべて、Freeplane マニュアルで説明されています。

新規作成ノードは、「標準」スタイルとなります。このスタイルは、「書式 > スタイルを管理 > スタイルを編集」で編集できます。ここで、「囲み」を設定すると、新規ノードはすべて囲みの形状になります。

「ツール > ユーザディレクトリを開く > Template」「standard-1.6.mm」というマップが、新規マインドマップ作成時テンプレートマップとなります。このテンプレートマップの「標準」スタイルを、ユーザーの個人的好みにに合わせて調整することをお薦めします。例えば、

  • 矢印型リンクをハイパーリンクに変える:「標準」スタイルのプロパティパネルで、ハイパーリンクにチェックする。
  • 「標準」スタイル(他のスタイルでもよい)のフォントを拡大/縮小する。
  • 「標準」スタイルに囲みを付する。
  • 等々。

「表示」メニューでは、表示幅や選択時の枠囲い表示、計算式の縁取り表示、更新ノードの背景色など、ノードコア関連の特徴を設定できます。詳細の表示/非表示、表示方法、ホバーリング中のツールチップ表示の有無、更新時刻の表示/非表示を設定することができます。また、属性の表示/非表示や表示する属性の種類を設定することもできます。また、ノートの表示/非表示や表示方法、表示ウィンドウの種類も設定できます。さらに、アイコンに関する一定の特徴を設定することもできます。どのようなオプションが使用できるかは、「表示」メニューを開きすべてのオクションをひとつひとつ選択してみてください。環境設定を使うともっと多くのことを設定することができます。

ノート

  • 表示の設定には、印刷に関連するオプション(アウトラインビュー)やプレゼンテーションに関連するオプション(プレゼンテーションモード)も含まれます。

Docear は、"学術文献データ処理パッケージ" の一種です。オフィス労働者に対してオフィス向けパッケージが提供するのと同様の機能を、研究者に提供するものです。つまり、Docear は、以下のように文献管理関連のあらゆる作業においてユーザを支援するということです。

 

   1. 新規文献の発見  (検索や探索) 

   2. 文献整理(閲読、注記、収録) 

   3. ユーザ自身の文献作成(構想練り、執筆、参考文献一覧の作成、及び公開)

 

Docear は、SciPlore MindMapping の後継アプリで、欧州連合及びドイツ連邦経済技術省から資金助成を受けています。

詳しくは、赤い矢印をクリックしてご覧ください。

「環境」では、次の事項を設定します。

  • 同時に起動できる Freeplane のインスタンスを単一とするか、複数とするか、
  • 保護(「他者と同時編集時はファイルを読込み専用に」)を有効にするかどうか、
  • ファイルの読み込みや自動保存に関する各種オプション、
  • ファイル呼び出し時に再現できるよう、保存時に折り畳み状態を保持するかどうか、
  • 標準的な文字コードの設定。
  • ハイパーリンクに相対アドレス用いるか、絶対アドレスを用いるか、
  • その他。

「画面表示」では、次の事項を設定します。

  • 標準で使用する諸々のプロパティ、
  • ノードやツールチップ等の縦幅と横幅、
  • 特殊アイコンの表示/非表示。

キー設定

「キー設定」では、既成の内蔵アイコン用のホットキーを設定します。

「動作設定」では、次に掲げるような事項を設定します。

  • 自動選択を使用するかどうか、その場合の間合い時間、
  • ホバー(ツールチップ)の効果、
  • すべての新規作成ノードにインラインエディタを表示するかどうか、
  • ダブルクリックで編集に入るかどうか、
  • キータイプがあったとき、「テキスト[内容]を上書き」「子ノードを作成」「兄弟ノードを作成」「何もしない」のいずれの動作にするか、キー入力で確認するかどうか、
  • 「新規枝[ノード]の配置」(冒頭、末尾) 
  • ドラッグ&ドロップの有効/無効の指定、
  • マウスホィールの加速度、
  • ノード位置移動時のグリッドの間隔、
  • 解析するデータの種類と使用する形式、
  • ノード削除時の確認の要否、
  • テキストの比較時に数字を数値比較するかどうか、
  • 大文字/小文字の区別など、スペルチェッカのオプション。

ブラウザの指定、及び HTML ファイルへのエクスポート/ HTML ファイルからのインポート関係の設定です。

計算式とスクリプトを使用するための設定です。

枝毎のすべてのノードについて、既存のものと新規作成のものと両方に適用されるノードの縦間隔を設定することができます。「Ctrl」キーを押した状態で、ノードハンドル(縦長の楕円)を選択し、カーソルを上下させ、ノード間のスペースを調整してください。 

ノート

    元の位置に戻す場合は、ノード(単数)を選択し「編集 > ノードの位置をリセット」を実行します。

Freeplane には、Groovy に準拠した、極めて強力はスクリプト能力が装備されています。これにより、ユーザは、Freeplane に標準装備されていない特殊な機能を作り出すことができます。

Freeplane Wiki に、いくつかの定義済みのスクリプトが公開されています。したがって、プログラムを作成できなくても、スクリプトを利用できます。詳しくは、Freeplane マニュアルを読むか、または、add-ons Wiki 及び  wiki add-on scrips のページをご覧ください。

Windows 7 を使用する場合、ユーザは、*.mm ファイルをインデックスリストに取り込むことができます。以下の要領に従ってください。

  • [Windows 7 の]「コントロールパネル -> インデックスのオプション」に入るか、「ヘルプ」で "インデックス作成" をタイプ入力するかして、
  • 「詳細設定」("Professional")を選択してください。すると、ページ上に「インデックスの設定」「ファイルの種類」の2つのタブが表示されます
  • 「ファイルの種類」のタブを選択してください。
  • ".mm"が現れるまで、ファイル一覧をスクロールしてください。
  • フィルタの説明に「ファイルプロパティのフィルタ」という表記があるはずです。
  • 「プロパティとファイルのコンテンツのインデックスを作成する」と書かれた2番目のラジオボタンをクリックしてください。これで、上のフィルタの記載が「プレーンテキストフィルタ」に変わるはずです。
  • 「OK」を選択して、ダイアログを閉じます。インデックスの作成機能が再開し、作業が終わると、インデックスを利用できるようになります。

ノート

  • 通常のやり方では、ノードプロパティだけのインデックスが作成され、ノードの内容は含まれません。上記の手順をを使えば、ノードの内容部分もフィルタ機能に加えることができます。

標準のスペルチェックは英語に設定されています。他の言語を使う場合は、[下記の要領で辞書をダウンロードしてください。]

  • [まず、このノードの親ノード]ハイパーリンクをクリックしてください。
  • language_XX.ortho(xx は言語を示す2文字コード)をダウンロードし、
  • このファイルを、「ツール > ユーザディレクトリを開く > \resources\ortho」に保存してください。

Freeplane は、マインドマップ作成の高速化に役立つよう、大半の動作について標準のショートカットを装備しています。これらのショートカットは、メインメニューバーの表示時にメニュー項目の右側に表示されます。また、ショートカット一覧が自動作成され、ヘルプメニューにから見ることができます。「Fキー」などについて、ユーザーが独自のショートカットセットを定義することも可能です。

参 照

  • 「ヘルプ > マニュアル」

機能拡張について詳しくは、赤い矢印をクックして、インターネット上の説明をお読みください。

ユーザの使用言語向けの言語別アドオンパックがある場合は、ここ をクリックしてください。

ここをクリック して  Wiki をご覧ください。

ノードに次の特徴を持たせる。 

  • 初級(Begin)、中級(Advanced)、上級(Professiona)のスタイルl
  • 自動連番振り機能
  • ノードの表示幅=180 に固定

内容を示す手短なラベル

以下の特徴をつける。

  • TitlesContent スタイル。
  • 通常、見出し[ノード]の下方に置き、線(エッジ)を隠す。
  • 用例(Example)スタイルは、ノード用条件対応ノードスタイルとして付加(個別のノードごとに適用)。
  • 更新(Revision)スタイルは、マップ用条件対応ノードスタイルとして付加(すべてのノードに適用)。

太字

囲み

ノードの背景色は緑

太字

囲み

ノードの背景色は黄色

太字

囲み

ノードの背景色はオレンジ/茶色

囲みなし

線(エッジ)を隠す

眼のアイコン

Rのアイコン

Template information

  • Name:
  • Address:
  • フリーノード
  • 外部リンク
  • フリーノード
  • 外部リンク

マップが大きいと、マップ上で別々の位置にある2つのノードで作業することが困難なことがあります。こうした場合は、それらが同一マップ上にあれば、同一マップにつき2つのビューを開き、両方のビュー上で作業することができます。それには、「表示 > 新しいマップビューを作成」を選択してください。ビュー間の切り替えは、タブ(representative tabs)を選択してください。一度に両方のビューを表示させることはできません。これ[複数のマップを同時に表示すること]は、Freeplane を複数起動すれば可能です。ただし、その場合、それぞれのマップは別物として扱われます。

使用コンピュータ上にある履歴ファイルからマップを復元する場合は、「ファイル > 履歴ファイルから復元」を選択してください。

Freeplane のすべての機能は、コマンドラインインターフェースを使ったバッチ処理に利用できます。これを用いると、例えば下記のような使い方ができます。

  • スタートアップで特定の機能を起動する。
  • 一定のスクリプトを実行したのち、閉じる。execute a script an leave

方法については、https://www.freeplane.org/wiki/index.php/Freeplane_Batch_Jobs

 をお読みください。

freeplane-1.7.10/freeplane/doc/freeplaneTutorial_nl.mm0100644 0000000 0000000 00000610442 13371554225 021525 0ustar000000000 0000000

Handleiding 

Freeplane 1.2

Template information

  • Name:
  • Address:

Functieindex

Klik op de koppeling om een mindmap te openen met de belangrijkste functies van Freeplane. Beweeg met de muiscursor over de teksten bij de functies om de koppeling naar de beschrijving van deze functie te laten verschijnen, in de handleiding en in de documentatie.

Opmerking

  •  Om uit de handleding terug te keren, kies  Navigeren .> Ga naar vorige mind map of klik op dit pictogram in de werkbalk.

Freeplane heeft tot doel het denken, delen en gebruiken van infrormatie te vergemakkelijken. Freeplane ondersteunt het maken, delen en gebruiken van mindmaps, een soort van  informatiekaarten.  De Freeplane wiki bevat concrete voorbeelden van  toepassingsgebieden. De knoop functieindex  bevat een visueel overzicht van alle functies en hyperlinks naar beschrijvingen van deze functies. Een snelle inleiding is te vinden in de Freeplane videogidsen (zie Help>Online documentatiemindmaps). Het doel van deze Handleiding is om in aanvulling op de videogidsen de mogelijkeheden van Freeplane op een systemaische wijze te presenteren, en met voldoende diepgang voor de meeste gebruikers. Voor meer informatie, of meer details, ga naar de documentatie in menu Help > Documentatie.

De meeste mensen houden er niet van om een handleiding te lezen. Daarom is deze handleiding zo opgezet dat je alleen de inleiding hoeft te lezen. Daarna kun je direkt beginnen met het maken van mindmaps met behulp van de menu's van Freeplane. Menu Bewerken bevat de belangrijkste mogelijkheden om informartie te bewerken en menu Extra bevat een aantal belangrijke hulpmiddelen. De andere menu's spreken voor zich.

Het is niettemin de moeite waard om ook de andere hoofdstukken te lezen, en wel om de volgende reden. In Freeplane kun je de dingen op heel veel verschillende manieren doen. Het gebruik van de menu's is daarbij niet altijd even handig en snel. De volgende hoofdstukken geven een overzicht over wat er mogelijk is en hoe je dit op de snelste en eenvoudigste manier kunt doen, meestal door gebruik te maken van zogenaamde contextmenus. Je hoeft hierbij niet alle hoofdtukken één voor één en na elkaar te lezen, maar je kunt die dingen er uit pikken waar je mee bezig bent. Als hulp hierbij is de informatie met een kleur gecodeerd, waarbij de kleuren vier gebruikersniveaus aangeven:

  1. Beginner (licht-blauw/groen): Kennis die nodig is om een mindmap te kunnen gebruiken voor eenvoudige taken zoals het maken en ordenen van notities en bij brainstormen.
  2. Gevorderde (geel): Kennis die nodig is om informatie te ordenen en betekenis te genereren en te communiceren.
  3. Professional (oranje/bruin): Kennis om Freeplane aan te passen aan je wensen en om de productietools van Freeplane te gebruiken.

BELANGRIJK:

  • Installeer de language add-on NL voor meer uitgebreide ondersteuning..
  • Ga naar Help >Documentatie Online om na te gaan of er al videogidsen beschikbaar zijn.

Sneltoetsen voor de meeste functies.

Een mindmap is een vlak met informatie in zogenaamde knopen. Een knoop is te vergelijken met een paragraaf in een boek. Het verschil is dat je een knoop en zijn informatie eenvoudig kunt verplaatsen en verbergen. Hierdoor kan een mindmap goed worden gebruikt bij het ontwikkelen van nieuwe informatie en bij het aanpassen van getoonde infromatie aan de behoefte van een gebruiker.

De tekst die je nu leest bevindt zich in een knoop. De tekst hierboven, "Knopen" is een knoop.  En de grote ovaal links is een speciale knoop, de stamvaderknoop of stamknoop.,

Knopen zijn verbonden door afstammingslijnen. Een serie knopen verbonden door deze lijnen vormt

een tak. Alle takken beginnen in de stam. Samen vormen de takken een familie (hierarchie).

Een knoop dichter bij de stam is (groot)ouder  van een (klein) kind welke verder weg ligt. Kinderen

van dezelfde ouder zijn (broers en) zussen.

Knopen worden standaard in hun bewegingsruimte beperkt door hun familierelaties. Een uitzondering op deze regel vormt de vrije knoop. Deze knoop kan onafhankelijk van alle andere knopen worden verplaatst.

Je kunt een knoop open- en dichtvouwen door op de knoop te klikken als een cirkel met een plus- of min-teken  verschijnt wanneer de cursor zich boven de knoopkern bevindt. Openvouwen  (uitvouwen) toont verborgen kinderen en dichtvouwen (invouwen) verbergt kinderen. Als een knoop is dichtgevouwen verschijnt een cirketje aan de kindzijde van de knoop.

Als de knoop die je nu leest is opengevouwen, dan zie je aan de rechterkant vier pictogrammen. Deze pictogrammen zie je ook in de werkbalk bovenin het scherm. Door op deze pictogrammen in de werkbalk te klikken kun je knopen op verschillende manieren open- en dichtvouwen. Als je op het cirkeltje voor open/dichtvouwen klikt, verschijnen dezelfde pictrogram-knoppen.

Uitzondering

  • Open en dichtvouwen gebeurt met een vertraging, behalve als op de cirkel wordt geklikt.
  • Als het vinkje achter Extra > open/dichtvouwen bij intern klikken  is gezet, dan hoef je niet op de cirkel met het +/- teken te klikken, maar kun je voor open/dichtvouwen op het hele gebied van de knoopkern klikken. Merk op dat dubbelklikken op de knoopkern dan niet de het bewerkingsvenster opent.
  • Als een knoop wordt dichtgevouwen die een verbindingslijn heeft met een van zijn kindknopen, dan blijft een lijn (en een eventueel label) zichtbaar. Door hier op te rechtsklikken verschijnt het contextmenu waarmee je naar de verbonden, verborgen knopen kunt springen.

Om een mindmap op Internet tr openen moet deze eerst naar de computer gecopieerd worden. Dit gebeurt automatisch door menu Bestand > Openen van URL te kiezen.

De informatie in een knoop is zichtbaar via twee gebieden. Het ene gebied bevindt zich in het midden van de knoop, in de kern en dit veld kan worden omgeven door een kader. De tekst die je nu  leest bevindt zich in de kern. Het gekleurde gebied net boven de tekst die je nu leest bevindt zich ook in een knoopkern (van een andere knoop).

De tekst in de knoopkern kan kort zijn zoals bij een titel, maar kan ook meerdere regels omvatten. Verder kan de tekst verschillende presentatiecomponenten bevatten zoals plaatjes en pictogrammen. De knoopkern kan ook hyperlinks, een formule en componenten voor tijdmanagement en bescherming met een wachtwoord bevatten.

Naast de knoopkern kan tekst voorkomen in velden voor knoopdetails, notities  en attributen. Deze worden op een andere plaats beschreven.

Na het starten van Freeplane is een leeg werkblad zichtbaar. Op het werkblad bevindt zich een elliptische vorm, de stamknoop, met een tekst zoals Nieuwe mindmap. Deze tekst is geaccentueerd. Dit betekent dat je de tekst kunt vervangen door je eigen tekst te typen. Type eenvoudig een titel en sluit af met Enter.  Als je vervolgens op de Insert-toets drukt verschijnt een nieuwe kindknoop. Herhaal deze procedure zo vaak je wilt. Je krijgt zo een keten van knopen. Als je geen kindknoop wilt maar een knoop onder de huidige, klik dan niet éénmaal maar twee maal op Enter. Je kunt zo net zoveel vertakkingen maken als je wilt. Als je een bestaande knoop wilt bewerken, houdt dan Control ingedrukt terwijl je op de knoop linksklikt (META bij MAC OS). Dit is alles wat je moet weten om een mindmap te maken.

Opmerking

  • Om een nieuwe regel toe te voegen, druk op Shift + Enter.
  • Als je tijdens het bewerken rechtsklikt op de te bewerken tekst dan opent een zogenaamd contextmenu. Hiermee heb je snel toegang tot functies zoals kopiëren en plakken.
  • Als je een tekst selecteert en hierop rechtsklikt, dan kun je in het contextmenu functies als vet en schuin toepassen.

Zoek dit pictogram in het werkmenu boven in het scherm.

Maakt ee nieuwe knoop die een kind is van de geselecteerde knoop. .

Zelfde effect:

  • druk op toets Ins

Een tweede manier om een knoop te bewerken is in een afzonderlijk venster welke eigen menuknoppen heeft. Rechtslklik op de knoop en kies in het contextmenu Bewerken knooptitel in venster. Je kunt nu de tekst in het venster typen en de menu's van het venster gebruiken om de tekst te bewerken en op te maken. Druk op OK als je klaar bent. De tekst wordt dan opgenomen in de knoop. Merk op dat de menu's van het venster meer mogelijkheden bieden voor het opmaken van tekst dan Bewerken knooptitel (snel).

Opmerking

  • Als je met de rechter muisknop op een knoop klikt (niet in de bewerkingsmodus) dan opent een context menu. Dit menu bevat de meestgebruikte functies van een knoop.
  • Je kunt alle opdrachten die in het contextmenu staan ook via het hoofdmenu openen. Bijvoorbeeld, om het bewerkingsvenster te openen kies  Bewerken> Knoopkern > Bewerken knooptitel (in venster).

Bewaar de bewerkte mindmap door op het bewaren-pictogram te klikken of Bestand > Bewaren mindmap te kiezen. Je kunt daarna een andere mindmap openen door op het pictogram voor openen te klikken of Bestand > Openen mindmap te kiezen.

Door op een vrije plaats in de mindmap te klikken terwijl Control  is ingedrukt, opent een zogenaamde vrij positioneebare, vrij zwevende knoop. Dezeze knoop is te vergelijken met een post-it (geeltje). Je kunt de knoop verplaatsen zonder dat dit effect heeft op de andere knopen. De opmaak van deze knoop wordt bepaald door de systeemstijl Zwevende knoop. Je kunt deze stijl veranderen, bijvoorbeeld de wolk verwijderen of de takken zichtbaar maken. Je kunt de post-it node aan een knoop in de hierarchie vastmaken door hem op een andere knoop te plaatsen: de post-it wordt dan een kindknoop van deze knoop en is niet langer een vrije knoop. Voor voorbeelden, zie wiki Tutorial Freeplane.

Vrije knopen met een verborgen tak zijn bedoeld om informatie zoals legenda, een titel, samenvatting, auteurs e.d. te tonen. Waar deze informatie betrekking heeft op de mindmap as geheel, dient de vrije knoop te zijn gekoppeld aan de stamknoop zodat de positie onafhankelijk is van de positie vsan andere knopen en de zichtbaarheid is gegarandeerd. Als de informatie betrekking heeft op een bepaalde tak van de mindmap dan kan de vrije knoop aan deze tak worden gekoppeld. De verbinding met de tak wordt dan getoond als een gestippelde lijn. Het is mogelijk de tak naar de vrije knoop als lijn zichtbaar te maken. Het tweede doel van een vrije knoop is om de ruimte van de mindmap beter te benutten. Het automatische mechanisme voor layout zorgt er voor dat knopen niet kunnen overlappen. Bij een vrije knoop kan dit wel.

Een vrije knoop is een knoop die vrij positioneerbaar is, onafhankelijk van de posities van de andere knopen. Een vrije knoop kan worden herkend aan dit gedrag, en aan het blauwe, rood gevulde ovaaltje (handle) waarmee de knoop kan worden verplaatst.

Een nieuwe vrije knoop kan worden gemaakt door Ctrl ingedrukt te houden en te linksklikken op een vrije plek in de achtergrond van de mindmap. Deze knoop krijgt stijl Zwevende knoop, met als eigenschappen rechthoekige wolk, en verborgen tak. Deze kenmerken kunnen op de gebruikelijke wijze worden veranderd met het opmaakvenster.

Een gewone knoop kan in een vrije knoop worden veranderd door de knoop te selecteren en Bewerken > Vrije knoop te kiezen. In dat geval blijft de knoop zijn oorspronkelijke stijl houden. Een wolk en het verbergen van de tak kun je in het opmaakvenster instellen - of je kunt stijl Zwevende knoop kiezen. De vrije knoop verplaats automatisch nabij de knoop waarmee de knoop is verbonden, en kan vervolgens naar de gewenste positie worden verplaatst. Door de vrije knoop op een andere knoop te plaatsen wordt de knoop weer een gewone knoop.

Opmerking

  • Een vrije knoop die is gemaakt door Ctrl + klikken op de achtergrond van de mindmap is met een verborgen tak verbonden met de stamknoop.

Zweef met de cursor over mijn linker zijde tot het blauwe ovaal zichtbaar wordt. Sleep me aan dit blauwe ovaal, mijn handle.

Een pictogram is een klein plaatje. Freeplane bevat een bibliotheek met pictogrammen. Er zijn verschillende manieren om een pictogram toe te voegen.

  1. Met de pictogrammenbalk naast het scherm. Als je deze balk niet ziet, kies dan Beeld > werkbalken > Tonen pictogrammenbalk.
  2. Door de pictogrammen te kiezen uit een tabel: kies Bewerken > Pictogram > Kiezen pictogram uit tabel.
  3. Via een gestructureerde opsomming van pictogrammen: kies Bewerken > Pictogram.

Om een pictogram toe te voegen, ga naar een van de menu's en klik op het pictogram.

Om een pictogram te verwijderen, klik in de menu's op een pictogram met een rood kruis.

Opmerking

  • Het is mogelijk meerdere pictogrammen toe te voegen aan dezelfde knoopkern.
  • Pictogrammen kunnen niet aan knoopkenmerken ot knoopnotities worden toegevoegd.

In en knoopkern kan een plaatje worden opgenomen. Kies Bewerken > Knoopkern > Toevoegen afbeelding of converteren koppeling. Dit plaatje heeft een vaste grootte welke niet kan worden veranderd.

Opmerking

  • Om de grootte van het plaatje te veranderen: laadt het plaatje in een tekenprogramma en bewaar het met minder pixels.
  • Zie Knoopuitbreiding voor schaalbare afbeeldingen.

Plaatjes nemen veel ruimte in, ook als je de knoop niet aan het bekijken bent. Een koppeling naar een plaatje heeft dit nadeel niet: het plaatje is alleen zichtbaar nadat je op de koppeling hebt geklikt. Je kunt een koppeling naar een plaatje in een knoop opnemen met kopiëren en plakken. Als je het gekopieerde plaatje op de bovenzijde van een knoop plakt dan komt het plaatje in de knoop zelf. Als je het plaatje aan de kindzijde plakt dan wordt een kindknoop gemaakt met de koppeling. Het adres van de koppeling verschijnt in de knooptitel. Dit adres mag je wissen of vervangen door een eigen tekst. De koppeling (het pijltje) blijft daarbij staan.

Opmerking

  • Als bij het plakken van een hyperlink de Ctrl toets wordt ingedrukt, wordt een plaatje toegevoegd in knoopdetails.

Zie ook

  • Onderstreepte hyperlinks. Hiermee kunnen in één tekst meerdere hyperlinks naar plaatjes worden gemaakt.
  • Als in het Opmaakpaneel de optie "hyperlink" is aangevinkt wordt de tekst naast het rode pijltje onderstreept en kan ook deze onderstreepte tekst worden gelikt om de hyperlink te openen.

Een % shijf is een pictogram waarmee bijvoorbeeld de voortgang in een proces kan worden weergegeven. Om een kleine schijf toe te voegen, kies Knoopkenmerken > %Shijf > Vermeerderen. Herhaal dit om het percentage te verhogen.

Een grote schijf is een extern plaatje. Bij een grote schijf kan worden gekozen uit 10% of 25% stappen. Om een externe schijf voor 10% stappen toe te voegen, kies Bewerken > Knoopkern >  %Schijf > Schijf met 10% punt.  Om het perccentage met 10% te vergroten dubbelklik op de schijf. Om het percentage met 10% te verkleinen, houdt Ctrl in gedrukt en dubbelklik op het plaatje.

Note

  • Er worden twee afbeeldingen getoond. Het kleinste is een pictogram in de knoopkern. Het andere plaatje is een afbeelding in knoopuitbreiding.
  • BELANGRIJK. het grotere plaatje is een .svg file welke niet in het Java Applet wordt getoond !

Om de teksten van de verschillende knopen samen te voegen in één knoop, selecteer de knopen en kies menu Bewerken > Knoopkern > Samenvoegen knoopkernen. In het in-line bewerkingsvenster heeft Ctrl + J hetzelfde effect.

Opmerking

  • Andere componenten zoals knoopdetails worden niet samengevoegd. Kinderen van de samengevoegde knopen komen alle onder de nieuwe samengestelde knoop.

Er zijn twee verschillende manieren om een knoopkerntekst te verdelen over meerdere knopen, respectievelijk via een actie in het hoofdmenu en via een actie in het bewerkingsvenster.

  1. Een knoopkerntekst van meerdere regels kan worden verdeeld over aparte knopen door de betreffende knoop te selecteren en het kiezen van menu Bewerken > Knoopkern >Splits knoopkern. Als er meerdere regels zijn komen deze alle in een aparte knoop.
  2. Een tekst kan op de plaats van de cursor worden verdeeld over twee  knopen. In het dialoogvenster, kies knop Splitsen. Of in de snelle in-line bewerkingsvenster, kies. Alt + S.

Opmerking

  • Dit werkt alleen goed bij knopen zonder andere componenten zoals knoopdetails.
  • Zie Help > Documentatie voor details.

Een knoopkern kan net als een spreadsheet cel een formule bevatten die begint met "=". Deze formule wordt automatisch uitgevoerd en het resultaat wordt getoond.

Note

  • Berekeningen werken niet  alleen gelezen kan worden, zoals bij de help-bestanden van Freeplane en bij publicatie op Internet (Java Applet).
  • Berekeningen kunnen over meerdere knopen gaan. Klik het rode pijltje voor uitleg.
  • Berekeningen worden standaard omlijnd. De omlijning kan worden verwijderd: Beeld > Knoopkern > Markeer formules niet met een rand.
  • Automatisch berekenen kan voor een knoop worden uitgeschakeld door in het opmaakpaneel in veld Formaat de waarde Tekst te kiezen.

Je kunt de hele mindmap vrij verplaatsen door

  1.  in de achtergrond te klikken en de cursor te slepen; of
  2. Ctrl + Shift ingedrukt houden en de cursor pijlen op/neer/links/rechts te gebruiken (pannen).

Je kunt een knoop selecteren door er met de muiscursor overheen te zweven. Na een korte vertraging zal de knoop dan een blauwe rand krijgen ten teken dat de knoop geselecteerd is. Dit heet automatische selectie. Je kunt ook op een knoop klikken om deze te selecteren.

Het automatisch selecteren van een knoop kan in sommige gevallen onhandig zijn. Je kunt het geselecteerd zijn van een knoop vasthouden door bij het bewegen de Shift toets ingedrukt te houden.

Bij een grote mindmap kun je gemakkelijk verdwalen. Om in die situatie de stamknoop terug te vinden, druk op Escape.

Elke knoop heeft twee posities waar je een gesleepte knoop kunt laten "vallen":

  1. Als de cursor dicht bij de bovenkant van de doelknoop komt, dan licht de hele bovenste helft op. Als je hier loslaat dan komt de knoop boven de doelknoop, als een zusknoop.
  2. Als je de cursor over de kindzijde van de doelknoop beweegt dan licht deze helft van de knoop op. Als je hier loslaat dan wordt de gesleepte knoop een kindknoop van de doelknoop

Opmerking

Bij de stamknoop kun je een gesleepte knoop zowel aan de linkerzijde als aan de rechterzijde loslaten.

Om een groep knopen te verplaatsen moet je alle knopen, inculsief de knoop achter de accollade, selecteren en verplaatsen:

  1. Selecteer de knoopgroep: Houd Shift ingedrukt en selecteer de eerste knoop van de groep en dan de knoopgroep. (Bij een accolade, selecteer ook de knoop achter de accollade; houdt zo nodig Ctrl-ingedrukt)
  2. Met Shift nog steeds ingedrukt: sleep de groep naar zijn nieuwe bestemming.

After displacing nodes they can be set to their original positions. Select the nodes and choose Edit > Reset node position.

De kindknopen van de geselecteerde knoop kun je alfabetisch sorteren op de tekst van de knooptitel. Kies hiervoor Bewerken > Verplaatsen en sorteren.

Een verbindingslijn is een lijn tussen twee willekeurige knopen welke geen afstammingslijn is. Om een verbindingslijn te maken, selecteer twee knopen, rechtklik op één van beide en kiesToevoegen verbindingslijn.

De buiging van een verbindingslijn kan worden veranderd door op de lijn te klikken en de lijn te slepen. Het slepen kan aan de lijn zelf of aan twee hulplijnen die aan de uiteinden verschijnen. De opmaak van een verbindingslijn kan worden aangepast door op de lijn te rechtsklikken. Er verschijnt dan een contextmenu waarin ook tekstlabels  kunnen worden ingevoerd die in het midden of aan de uiteinden van de verdingslijn verschijnen.

Opmerking

  • Om twee of meer knopen tegelijkertijd te selecteren: houdt Ctrl  of Shift ingedrukt bij het selecteren van de knopen.
  • Vergeet na het invoeren van een tekstlabel niet om op Enter te drukken.

Een groep zusknopen kan door een accolade worden verbonden. De knoop achter de accolade wordt groepsknoop genoemd. Selecteer de zussen van de groep, rechtsklik op een van de geselecteerde knopen en kies vervolgens Knoopgroep met accollade toevoegen.

Opmerking

  •  Er zijn geavanceerde functies met betrekking tot de groepsknoop, zie Bewerken > Knoopgroep.  Raadpleeg hiervoor Help > Handleiding.

De samenhang van een ouderknoop en zijn kindknopen kan worden geaccentueerd door een gemeenschappelijke achtergrondkleur, een wolk. Rechtsklik de ouderknoop en kies Toevoegen wolk. De eigenschappen van een wolk kunnen worden ingesteld in het opmaakpaneel, zie onder.

Opmerking

Via Bewerken > Knoopgroep > Knoop altijd opengevouwen kan worden ingesteld dat de knopen binnen de wolk niet dichtvouwen.

Pictogram-knoop voor Toevoegen standaard wolk

Zoek deze knop in de werkbalk

Een dynamische koppeling is een electronische verbinding van een bronknoop naar een bestemming. De bestemming kan een map, bestand, webpagina, applicatie, e-mail, enz. zijn. De koppeling is in de bronknoop zichtbaar als onderstreepte tekst, een rood pijltje (externe hyperlink) of groen pijltje (interne snelkoppeling), of e-mail pictogram. Een knoop kan meerdere onderstreepte hyperlinks hebben en één pijl- of e-mail-hyperlink. Daarnaast kunnen knoopattributen meerdere hyperlinks (één per attribuut) bevatten. Het is ook mogelijk vanuit een andere mindmap of programma naar een bepaalde knoop te linken. Om de onderstreepte hyperlink te activeren, moet je hierop dubbelklikken.

Op de volgende manier kun je gemakkelijk een link leggen tussen twee knopen die verder uit elkaar liggen of die zich in verschillende mindmaps bevinden:

  • rechtsklik een van beide knopen en kies Koppeling > Zet koppelingsanker
  • rechtsklik de andere knoop en kies Koppeling > Maak een link van/naar het anker.

Note

  • Zet koppeelingsanker  vervangt het vorige anker. (Er kan maar één anker zijn).
  • Het anker wordt "vergeten" na het sluiten van Freeplane.
  • Zie onder voor een alternatieve procedure in het geval dat de twee knopen niet ver uitelkaar liggen.

Een pijl-hyperlink kan worden gemaakt door te rechtsklikken op een knoop en Koppeling te kiezen. Het is echter makkelijker om een pijl-link als volgt te maken: Klik op een een bestand, map, webadres of e-mail en sleep deze vervolgens naar een knoop (drag en drop). Als je de muis-toets loslaat dan wordt een kindknoop gemaakt met daarin de hyperlink naar de bestemming. In de knoop is het adres van de bestemming ook als tekst opgenomen. Deze tekst mag je weghalen of vervangen door een andere. Het pijltje blijft daarbij staan.

Je kunt ook meerdere bestemmingen tegelijk selecteren en slepen. Er worden dan meerdere kindknopen gevormd met in elke kindknoop één pijl-hyperlink.

Om een bestemmingsadres te wijzigen, rechtsklik op de knoop met de koppeling en kies Koppeling > Typen of wijzigen koppeling. Wijzig vervolgens het adres. Zo nodig kan met Ctrl-V kan een gekopieerd adres in het tekstveld worden geplakt.

Het is mogelijk via een hyperlink een andere mindmap te openen en een bepaalde knoop te selecteren. Zie Koppeling van buiten naar een bepaalde knoop.

Om een koppeling te verwijderen:

  • kies Koppeling > Koppeling typen of wijzigen... of druk Ctrl + K; en
  • verwijder de tekst (het adres) in het tekstveld

Opmerking

  • In het Opmaakpaneel kan worden ingesteld dat de hele tekst van de knoopkern er uit ziet als een onderstreepte hyperlink. Dit werkt alleen als er geen (echte) onderstreepte hyperlink is gedefinieeerd.

Een koppeling  tussen twee knopen is als een groen pijltje zichtbaar in één van beide knopen, de bronknoop. Als op het pijltje wordt geklikt verschuift de focus naar de andere knoop. Deze koppeling kan worden ingesteld door met Ctrl ingedrukt eerst de bronknoop te selecteren en dan de bestemmingsknooprechtsklikken. Kies vervolgens Koppeling > Snelkoppeling naar andere knoop.

Om een koppeling te verwijderen:

  • rechtsklik op de knoop en kies Koppeling > Koppeling typen of wijzigen... of druk Ctrl + K; en
  • verwijder de tekst (het adres) in het tekstveld

Een e-mail koppeling opent automatisch je email programma maakt een email met het email-adres uit de koppeling.

De eenvoudigste manier om een email-koppeling te maken is door een e-mail adres (tekst) in een knoop te plakken. Er wordt dan een kindknoop gemaakt met de email koppeling.

Om een email-koppeling in een bepaalde knoop te maken, rechtsklik de knoop en kies Koppeling > Typen of wijzigen koppeling. Type in het tekstveld:

  • mailto:emailaddress Voorbeeld:  mailto:jokro@freeplane.nl

Om een koppeling te verwijderen:

  • kies Koppeling > Koppeling typen of wijzigen... of druk Ctrl + K; en
  • verwijder de tekst (het adres) in het tekstveld.

Onderstreepte hyperlinks .

In de knoopkern, knoopdetails en in een Notitie kun je een koppeling naar een interne of externe bestemming maken zolas je dit in bijvoorbeeld Word doet. Je opent de knoop in een venster, selecteert een tekstdeel en kiest in het menu van het bewerkingsvenster Bewerken > Kiezen koppeling of  Bewerken.> Koppeling typen of wijzigen.  In het venster dat opent kun je het adres van de koppeling typen of een gekopieerd adres te plakken door op Ctrl + V te drukken. voorbeeld van een koppeling: Deze koppeling brengt je naar het Freeplane Open Forum.

Opmerking

  • De tekst van de koppeling kan worden bewerkt zonder dat de link (het adres) verandert. Met de menus van het dialoogvenster kan de formattering (kleur, grootte) worden gewijzigd.
  • Het adres van de link kan worden bewerkt door de hele onderstreepte tekst te selecteren en dan Bewerken.> Koppeling typen of wijzigen te kiezen. 
  • Als een knoopkern alleen een onderstreepte koppeling heeft, dan is open/dichtvouwen lastig. Plaats een punt met een of meer spaties aan het begin en eind om ruimte te make waar kan worden geklikt zonder dat de hyperlink opent.
  • Als een hyperlink aan het begin of eind van de tekst wordt geplaatst, dan is het niet mogelijk om later nog tekst voor resp. achter de hyperlink toe te voegen (alleen door naar het HTML-venster te gaan). Zorg dus dat er voor en achter een hyperlink altijd een of meer niet-hyperlink tekens staan (spaties tellen niet mee).
  • Het is mogelijk via een hyperlink een andere mindmap te openen en een bepaalde knoop te selecteren. Zie Koppeling van buiten naar een bepaalde knoop.
  • Voor een interne hyperlink naar een een ander knoop binnen dezelfde mindmap moet als adres #KnoopID worden ingevoerd. Het KnoopID van de doelknoop kan worden bepaald door te rechtsklikken op de doelknoop, Kopieren knoopID te kiezen en in de bronknoop het venster voor Koppeling typen of wijzigen te openen en via Ctrl + V de knoopID te plakken. Vergeet niet # voor het knoopID te typen.

Een bijzondere vorm van een sneltoets is een knoop die je kunt klikken om een specifiek menu item te kiezen. Rechtsklik een knoop en kies Koppeling > Snelkoppeling naar menutoegang om deze link te definieren.

.

Om een koppeling te verwijderen:

  • kies Koppeling > Koppeling typen of wijzigen... of druk Ctrl + K; en
  • verwijder de tekst (het adres) in het tekstveld

Sneltoetsen zijn toetscombinaties of F-toetsen. Door op een sneltoets te drukken wordt een keten van acties uitgevoerd waarmee een specifiek menu wordt gekozen. Een sneltoets kan worden gedefinieer met Extra > Toewijzen sneltoets. Direkt nadat een menu aan een sneltoets is gekoppeld, is deze te gebruiken.

Soms is het handig voor specifieke situaties een aparte sneltoetsenset te definieren die je eenvoudig kunt activeren. Het bewaren van de gedefineerde sneltoetsen als een set kan met Extra > Sneltoetsenset > Bewaren set met sneltoetsen.

Om een bewaarde set later te hergebruiken, kies Extra > Sneltoetsenset en kies de naam waaronder je de set eerder hebt bewaard. 

Om vanuit een andere mindmap (of een ander programma) naar een bepaalde knoop in een bepaalde mindmap te springen, bepaal het adres van de doelknoop als volgt:

  • Ga naar de doelmindmap.
  • Rechtsklik de bestemmingsknoop en kies Kopieren knoop URI.
  • Ga naar de bronlokatie van de hyperlink en plak het adres. In het geval van een mindmap, rechtsklik  de knoop waar de hyperlink moet komen, kies het bewerkingsvenster voor knoopkern, details of notitie, kies Bewerken > Typen of wijzigen koppeling, en plak met Ctrl V het adres van de bestemmingsknoop.
  • Het geplakte adres is een zogenaamd absoluut adres. Als de doelmap wordt verplaatst, dan werkt de koppeling niet meer. Als bronmindmap en doelmindmap in dezelfde map (directory) staan kan een zogenaamd relatief adres worden gebruikt. In dat geval kan het mapje worden verplaatst terwijl de hyperlink blijft werken. Om een relatief adres te maken, wis het eerste deel van het adres tot de naam van de mindmap. Er blijft dan over: doelmap.mm#knoopID. Voorbeelden zijn te vinden in de map Functie index.

Opmerking

  • Sommige programma's geven het knoopnummer (#knoopID) niet automatisch door, ook al is dit in de hyperlink opgenomen. In dat geval is het niet mogelijk on direkt naar een bepaalde knoop te springen.
  • Deze Quick reference bevat twee knopen (Index functies en Index applicaties) die naar een andere mind map verwijzen. Als je deze volgt, dan bevatten deze knopen die weer terug verwijzen naar een bepaalde knoop van deze Quick reference.

Freeplane heeft meerdere mogelijkheden om de eigenschappen van een knoop of alle knopen in te stellen of te veranderen. Denk aan eigenschappen zoals het omlijnen van een knoop, de kleur enz. Het opmaakpaneel is een venster waarin bijna alle mogelijkheden bij elkaar staan. Om het opmaakpaneel te openen of te sluiten, kies Beeld > Opmaakpaneel.

Opmerking

  • Een andere manier om het opmaakpaneel te openen is via Beeld > Opmaakpaneel
  • Een andere manier om eigenschappen in te stellen is via menu Opmaken.

Als het opmaakpaneel open is, toont het de eigenschappen die zijn ingesteld voor de geselecteerde knoop. Als je een andere knoop met andere eigenschappen selecteert, zie je direct de inhoud van het opmaakpaneel veranderen. Om een eigenschap te veranderen, zet eerst een vinkje vóór het element dat je wilt veranderen en verander daarna de instelling.

Als eerste voorbeeld, zoek in het paneel de groep met eigenschappen met de naam Vorm knoop. Zet vervolgens een vinkje voor Omlijning  en klik op de knop achter Omlijning. Er verschijnt nu een lijst met omlijningstypen, zoals knoopomlijning, geen omlijning, enz.. Kies knoopomlijning  en zie wat er gebeurt.

Als tweede voorbeeld, zoek groep Opmaak tak en zet een vinkje voor Vorm tak. Klik op de knop achter vorm tak. Hierdoor verschijnt een lijst met vormen zoals Ronde bocht, verborgen, rechte bocht en andere. Kies een vorm en zie wat er gebeurt.

Freeplane opent standaard met de eigenschap  Automatische takkleur. Deze eigenschap staat in de groep Opmaakstijl knoop en zorgt er voor dat elke nieuwe tak een andere kleur krijgt. Voor deze handleiding is dit uitgezet door het vinkje voor Automatische takkleur weg te halen.

Een handige eigenschap is automatische knoopnummering. Deze eigenschap staat in groep Opmaak knooptitel. Je kunt dit voor alle geselecteerde knopen tegelijk instellen.

De eigenshappen in het opmaakpaneel zijn ook beschikbaar in menu Opmaken. Dit menu bevat ook enkele eigenschappen die niet in het opmaakpaneel staan. Voorbeelden zijn Achtergrondkleur mindmap en Knipperen.

This icon-button in the toolbar affects thee whole node text.

  • This icon-button in the toolbar affects the whole node text

Sommige eigenschappen zijn ook toegankelijk via pictogram-knoppen in het werkmenu boven in het scherm. Voorbeelden zijn schuin (italic) en vet (bold).

Belangrijk

  • Deze eigenschappen beinvloeden de hele knooptitel en niet allen een geselecteerd deel.
  • Om een deel van de tekst apart op te maken, gebruik de mogelijkheden zoals beschreven in de knoop Basis mindmap. Gebruik beide mogelijkheden niet door elkaar heen. Dit kan onverwachte effecten hebben, zoals het niet kunnen verwijderen van een opmaak.

Stijlen (klassen) helpen je om een groep knopen dezelfde opmaak te geven. Ze helpen om knopen te vinden en te filteren. En ze kunnen worden gebruikt om een sjabloon of template met tekst en attributen te maken. Ook de mindmap van deze handleiding is opgemaakt met stijlen, zie Hoe deze mindmap is opgebouwd.

Freeplane heeft een aantal standaardstijlen en je kunt je eigen stijlen hieraan toevoegen. De stijl die op een knoop van toepassing is, wordt weergegeven in het opmaakpaneel in de groep Opmaakstijl, achter Stijlnaam. Meestal is dit de standaard stijl. (Als er meerdere stijlen van toepassing zijn dan kun je dit zien onder Conditionele stijl voor knoop.) Voor de knoop die je nu leest is de stijlnaam  Gevorderde zichtbaar.

Opmerking 

Andere plaatsen waar je de knoopstijl kunt instellen zijn:

  • In de werkbalk bovenin het scherm.
  • In menu Opmaken > Toepassen stijl
  • In het Opmaakpaneel: in de groep Opmaakstijl knoop, achter Stijlnaam.

Normally you select another style, e.g. style Default. When using e.g. Automatic Level Styles, you may have added a style to overrule the automatic style. In that case, use Format > Apply style > Reset node style to remove a manually set style.

Er is een apart venster waarin alle stijlen kunnen worden bewerkt en nieuwe stijlen kunnen worden gemaakt. Je opent dit venster via Stijlen > Bewerken knoopstijlen.

Om in dit venster een nieuwe stijl te maken:

  • Selecteer de standaard knoop stijl
  • Rechtsklik op de stijnaam en kies Selectie bewaren als gebruikerstijl
  • Type een nieuwe naam in en bewaar de stijl
  • Verander de nieuwe stijl via het opmaakpaneel
  • Verlaat het venster door op het kruisje te klikken
  • Antwoord OK waneer gevraagd wordt om de stijl te bewaren.

Een stijl kan worden gebruikt om aan te geven dat een knoop bepaalde informatie bevat. Zo worden in de Freeplane handleiding verschillende stijlen gebruikt voor definites, procedures, voorbeelden enz. Het komt voor dat een knoop een combinatie van deze inhoud bevat. Als voorbeeld, de ouderknoop van de knoop die je nu leest (Meerdere stijlen toepassen op dezelfde knoop)  is gemaakt met twee stijlen. Eén stijl Advanced  zorgt onder andere voor de gele kleur en  stijl Example  zorgt dat de knoop het oog-pictogram krijgt.

Om deze twee stijlen op dezelfde knoop toe te passen open je eerst het opmaakpaneel. Klik vervolgens in het opmaakpaneel onder Conditionele stijl voor knoop. In het venster dat opent:

  • Klik op Nieuw
  • In de regel die opent, klik op Standaard om de lijst met stijlen te zien. Kies in deze lijst  Introduction.
  • Klik nogmaals op Nieuw; klik weer op Standaard en kies nu Example.
  • Klik OK.

Het resultaat is dat je knoop dezelfde vormgeving heeft als de knoop die je nu ziet.

Opmerking

Lees meer over stijlen in de Handleiding Freeplane !

In het voorbeeld hierboven wordt een stijl altijd, onvoorwaardelijk toegepast. Het is mogelijk om een stijl niet altijd, maar alleen in bepaalde gevallen toe te passen. Een voorbeeld is dat de stijl alleen wordt toegepast als de knoop is gewijzigd (revisie).

Voorbeeld: Revisies

 In deze mindmap is de stijl Revision gedefineerd met een R-pictogram. De regel die bepaalt of de stijl moet worden toegepast, wordt opgegeven via een venster voor conditionele sijlen. Open het opmaakpaneel en klik onder Conditionele stijl voor mindmap.  Er open eenzelfde venster als hierboven werd besproken voor Conditionele stijl voor knoop.

  • Klik op Nieuw voor een nieuwe conditionele regel.
  • Klik op deze regel. Het venster voor het componeren van een filterregel verschijnt.
  • Kies als filter condities: Veranderd na, tijdstip; kies de datum waarna je de wijzigingen wilt zien.
  • Klik toevoegen.
  • Selecteer de regel (belangrijk !) en kies OK.
  • De conditionele regel is nu weer te zien. De toe te passen stijl staat nog op Standaard. Verander dit in Revision en verlaat het venster - met de regel geselecteerd.

Als er veranderingen zijn geweest na de door jou aangegeven datum, dan zie je die nu door het verschijnen van het i-pictogram.

Opmerking

  • Het verschil tussen conditionele knoopstijlen en conditionele mindmapstijlen is dat de laatste gelden voor alle knopen.
  • Lees meer over conditionele stijlen in de Handleiding Freeplane.

Een andere toepassing van conditionele stijlen is om knopen op eenzelfde knoopniveau dezelfde, en knopen op verschillende niveau's een andere stijl te geven. Freeplane maakt dit makkelijk omdat deze situatie voor 5 knoopniveau's al is gedefineerd.  Open het opmaakpaneel en zet een vinkje voor Knoopniveau stijlen. Elk knoopniveau krijgt nu een eigen opmaak.

Als je de standaard opmaak wilt veranderen dan kan dit ook. Ga hiervoor naar Opmaken > Beheren stijlen > Bewerken stijlen. En bewerk elke knoopniveau stijl op de wijze zoals hierboven werd besproken. De stijl voor de stamknoop heet stijl Stamknoop. De lagere niveaus heten Nivea1 t/m Niveau 6.

Opmerking

  • Om minder dan 5 niveau's toe te passen, ga naar Opmaken > Beheren stijlen > Bewerken stijlen. verwijder de betreffende knoopniveaustijlen.
  • Om op meer dan 5 niveaus knoopniveaustijlen toe te passen, ga naar Opmaken > Beheren stijlen > Bewerken stijlen. en voeg knoopniveaustijlen toe.

Als je een nieuwe mindmap maakt kopieert Freeplane de inhoud van de mindmap default.mm. Op deze wijze worden alle standaardinstellingen van default.mm overgenomen. Het gaat daarbij om eigenschappen zoals Automatische takkleur, knoopstijlen en sneltoetsen. Als je deze eigenschappen in default.mm verandert, gelden ze in het vervolg voor elke nieuwe mindmap. De mindmap default.mm bevindt zich in  Tools > Open userdirectory > templates.

Een andere manier om hetzelfde effect te bereiken is door een nieuwe mindmap te openen met Bestand > Nieuwe mindmap met stijl... Je kunt dan de mindmap opgeven die je als sjabloon voor de nieuwe mindmap wilt gebruiken.

Een stijl kan informatie bevatten die in elke knoop terugkomt, zoals bij een formulier of sjabloon. Zet deze informatie in de knoopinhoud en de attributen van de stijl. Als je een nieuwe knoop opent en direkt de stijl kiest, wordt deze informatie in de nieuwe knoop gekopieerd. Op een later moment kun je deze informatie alsnog kopiëren, maar dan door het kiezen van Bewerken > Knoopuitbreiding > Kopieer uit stijlsjabloon.

De stapen om een sjabloon of template te definieren:

  • definieer een nieuwe stijl, bijv.  MyTemplate
  • open  Opmaken > Beheren stijlen > Bewerken stijlen
  • bewerk knoopdetails van MyTemplate: (Bewerken > Knoopuitbruiding > ..details)
  • voeg attributen toe aan MyTemplate (Bewerken > Knoopuitbreiding > ... attribuut)
  • sluit het bewerkingvenster voor stijlen (bewaar de bewerkte stijl)
  • open a neeuwe knoop, tik een naam
  • pas de nieuwe stijl MyTemplate toe

De nieuwe knoop heeft nu de inhoud van de knoopdetails en attributen van MyStyle.

Template information

  • Name:
  • Address:

Bij plakken van informatie uit de webbrowser, wordt ook de opmaak geplakt. Het is mogelijk alleen (platte) tekst te plakken, zie  http://www.stevemiller.net/puretext/  .

Om knopen uit te lijnen kun je een vaste minum en/of maximum knoopbreedte in te stellen. Zie

  • Opmaakpaneel; of
  • Opmaken > Instellen grenzen knoopbreedte

N.B. In de knoop die je nu leest is de minimum = maximum knoopbreedte 300 pixels.

De opmaak die geldt voor de hele knoopkern kan worden gekopieerd met  Bewerken > Knoopkern > Kopieren opmaak. En het gekopieerde formaat kan in een andere knoop worden geplakt met Bewerken > Knoopkern > Plakken opmaak..

Zie Bewerken > Plakken als voor andere opties, zoals plakken zonder opmaak.

Opmerking

  • Als je deze optie vaak gebruikt, definieer dan een sneltoets.
  • Als je van Internet kopieert wordt automatisch de opmaak meegenomen. Er zijn hulpmiddelen om dit te voorkómen.

FAQ

Druk je mindmap af met de funties in menu Bestand. Bij grotere mindmaps kan het handig zijn om de mindmap in overzichtsweergave af te drukken. Verander de weergave van de mindmap met Beeld > Overzichtsweergave.

Het uitwisselen van mindmaps met andere gebruikers van Freeplane is eenvoudig: je geeft de andere gebruiker eenvoudig je bestand jouwmap.mm. Als je mindmap plaatjes bevat, dan moet je deze apart meegeven, want in de mindmap zelf bevinden zich geen plaatjes maar alleen links naar plaatjes. Let er op dat op de nieuwe lokatie de plaatjes op dezelfde (relatieve) plaats staan als in jouw computer. Het eenvoudigste is het om bij het maken je mindmap en de plaatjes in dezelfde map (directory) te plaatsen.

Als je een presentatie wilt geven met een mindmap, kunnen de knopen die niet de aandacht hebben grijs worden gemaakt. Selecteer hiervoor Beeld > Beeldinstellingen > Presentatiemode. De knopen kunnen één voor één worden getoond door Navigeren > Volgend kind te kiezen, of Shift + klikken in cirkel voor open/dichtvouwen.

Opmerking

  • De functie Navigeren > Volgend kind kan  aan een sneltoets worden toegewezen.

Een Java Applet is een klein programmaatje waarmee je een mindmap kunt bekijken zonder dat je Freeplane op je computer hebt. Hiertoe kies je Bestand > Exporteren en kies je Java Applet als bestandstype. Na het exporteren heb je een bestand jouwmindmap.html en een mapje jouwmindmap.Html_files. Als je plaatjes in je mindmap gebruikt, dan moet je deze naar jouwmindmap.Html_files kopiëren. Kopieer nu jouwmap.html en het mapje jouwmindmap.Html_files naar de server van Intranet of Internet. Je kunt nu de mindmap in alleen-lezen mode openen door jouwmindmap.html te openen.

Opmerking

  • Afbeeldingen in .svg formaat worden niet getoond.
  • Je kunt deze zelfde werkwijze gebruiken om de mindmap uit te wisselen met een gebruiker die geen Freeplane heeft.
  • Als je wilt dat de mindmap op een bepaalde manier wordt open/dichtgevouwen, kies dan vóór het exporteren Extra > Instellingen > Omgeving > Bewaar situatie van open/dicht vouwen > Altijd.
  • Zie dit voorbeeld hoe je meerdere mindmaps in één Java Applet kunt publiceren.

Het is mogelijk een mindmap direkt op het Intranet op Internet te publiceren. Freeplane moet dan op je computer geinstalleerd zijn om de mind map te bekijken. Kies  Bestand > Open mindmap via URL  en  voeg achter URL het adres toe van de mindmap op Internet. 

Opmerking

  • In windows, rechtsklik op de link van de mindmap en kies hyperlink kopieren. Plak dit adres vervolgens in het URL-adres.

Toepassingen

Klik op de koppeling om een mindmap te openen met de belangrijkste toepassingen van Freeplane. Hiervoor is verbinding met Internet noodzakelijk.

Opmerking

  •  Om uit de index terug te keren, kies  Navigeren .> Ga naar vorige mind map of klik op dit pictogram in de werkbalk.

De knop die je nu ziet bestaat uit een knoopkern met de titel "Bewerken knoopdetails". Hieronder bevindt zich de tekst die je nu leest, in het veld knoopdetails. Het veld knoopdetails heeft links een driehoekje  waarmee je de tekst kunt verbergen of tonen; de tekst van de knoopkern blijft hierbij gewoon zichtbaar.

Om een knoop zoals deze te maken, maak je eerst een nieuwe knoop zoals je boven hebt geleerd. Vervolgens type je de titel van de knoop in de knoopkern, zoals je ook al weet. Je maakt de titel op in een vorm zoals je die wilt. Dan rechtsklik je op de knoop (niet in bewerken modus) en kies je Bewerken knoopdetails (in venster). In het venster dat opent type je de tekst die onder de knoopkern moet komen. Je sluit af door op OK  te drukken. Je tekst is nu zichtbaar onder de knooptitel.

Opmerking

  • Net als bij de knoopkern kun je tekst ook op een snellere manier direkt in de knoop invoeren. Rechtsklik hiervoor op de knoop en kies Bewerken knoopinhoud (snel). Om een tekst die je al hebt ingevoerd opnieuw te bewerken, dubbelklik op de tekst.
  • Alle acties die via een contextmenu mogelijk zijn, kun je ook in het hoofdmenu terugvinden. Bijvoorbeeld, het snelbewerken van knoopinhoud kun je kiezen via Bewerken > Knoopuitbreiding > Bewerken knoopdetails (snel).

Knoopdetails kunnen worden verborgen  tot het moment dat je met de cursor boven de knoop zweeft; dan wordt de verborgen informatie in een pop-up venster (tooltip) getoond.  Dit heeft als voordeel dat de tekst geen ruimte op het scherm inneemt zolang je niet in de knoop bent geïnteresseerd. Bij de knoop hiernaast is dit het geval.

Om een knoop zoals hiernaast te maken, maak eerst een knoop met knoopinhoud. Rechtsklik op de knoop en kies Minimaliseren knoop. Om de tekst weer permanent te zien, kies nogmaals Knoop > Minimaliseren knoop.

Opmerking

  • De keuze van Knoop > Minimaliseren knoop leidt er ook toe dat de lengte van de knoopinhoud wordt beperkt en dat andere kenmerken zoals plaatjes en attributen worden verborgen.
  • Zie hieronder Afbeelding voor afwijkend gedrag van een afbeelding in knoopdetails.

Voorbeeld van verborgen tekst.

Plaatjes zijn geen onderdeel van een mindmap, maar kunnen wel binnen een mindmap worden getoond. Het maakt daarbij uit waar zich het plaatje  bevindt en welke methode wordt gebruikt: klikken en slepen of kopieren en plakken. Merk op dat de eigenschappen van een plaatje in de knoopkern anders zijn dan de hier beschreven plaatjes (knoopuitbrreiding).

Er zijn verschillende manieren waarop met afbeeldingen kan worden gewerkt. Een makkelijke manier is om een plaatje in een knoop te slepen. Als je het plaatje op de bovenzijde van de knoop "laat vallen" (de bovenzijde licht op), komt het plaatje in de knoop zelf. Als je het plaatje op de kindzijde laat vallen (de kindzijde van de knoop licht op), wordt een kindknoop gemaakt en komt het plaatje in de kindknoop. De grootte van het plaatje kan worden veranderd door de hoek rechtsonder te slepen.

Opmerking

  • Het plaatje wordt wel getoond als onderdeel van de mindmap maar wordt buiten de mindmap bewaard. Elke keer als je de mindmap opent wordt het plaatje van zijn oorspronkelijke locatie ingelezen. Als je dit bestand verplaatst of de naam wijzigt, wordt het plaatje niet meer in de mindmap getoond. 
  • Een afbeelding die is verborgen met Instellen zweeftekst (tooltip) blijft bij zweven verborgen.
  • Een alternatieve manier om een plaatje toe te voeten is door een knoop te rechtsklikken of menu Edit > Knoopuitbreiding en vervolgens Toevoegen afbeelding te kiezen.
  • Het is mogelijk met om een plaatje dat met PrintScreen is gecopieerd, te plakken. Freeplane vraagt dan eerst waar het plaatje moet worden bewaard.

Een plaatje van een externe bron zoals Internet kan worden toegevoegd via kopieren en plakken.Op dezelfde wijze kan een schermafbeelding, gemaakt met PrintScreen, worden toegevoegd door plakken te kiezen. In beide gevallen wordt het plaatje in een automatisch gemaakte kindknoop toegevoegd. De grootte van het plaatje kan worden veranderd door de hoek rechtsonder te slepen.

Opmerking

De geplakte afbeelding is geen onderdeel van de mindmap zelf.

  • Het plaatje op Internet, blijft op Internet. Er is dus een Internet verbinding nodig om het plaatje te tonen. Kopieer het plaatje zo nodig naar je computer.

Een knoop kan gestructureerde informatie bevatten. Hierbij bestaat elke informatie-eeheid uit een naam en een waarde. De relatie naam=waarde heet attribuut. Attributen worden in een tabel met twee kolommen getoond:

Er zijn verschillende manieren om een attribuut toe te voegen. Maak eerst een knoop. Rechtsklik op de knoop en kies Toevoegen en bewerken attribuut.

Als je al een attribuut hebt, rechtsklik dan op het attribuut voor meer opties. Zo kun je  Optimale breedte kiezen om de tabel aan te passen aan de tekst. (Beide kolommen hebben een ander contextmenu !)

Opmerking 

Andere manieren om een attribuut toe te voegen zijn:

  • Kies in het opmaakpaneel de tab Agenda en attributen. Onderaan zie je een aantal opties voor attributen. Kies Nieuw attribuut.
  • Kies Bewerken> Knoopuitbreiding > Attributen > Toevoegen attribuut.

Behalve getallen en tekst kun je ook een koppeling als attibuutwaarde opnemen.  Om een koppeling toe te voegen, rechtsklik op een attriuutwaarde en kies het type koppeling. Zie bij Koppelingen maken welke koppelingen er zijn.


Getallen en datums kunnen automatisch worden geformatteerd. Klik in het opmaakpaneel (Agenda en attributen) op het veld boven het attribuutveld. Er wordt dan een lijst met mogelijke formatteringen getoond. Zie de handleiding voor een toelichting.

Er zijn verschillende manieren om attribuutnamen en waarden (in een keer) te veranderen. Zie Bewerken > Knoopuitbreidingen  > Atrributen  voor alle beschikbare manieren, en zie de handleiding.

Hieronder wordt beschreven dat hyperlinks kunnen worden toegevoegd aan attribuutwaarden via het contextmenu van een attribuutwaarde.

Om een wetenschappelijke formule te tonen kan gebruik worden gemaakt van LaTeX, zie Bewerken > Knoopuitbreiding > LaTeX.

Opmerking

Lees meer in Help > Documentatie.

Een knoopnotitie is een bijzonder vorm van knoopinhoud. Het belangrijkste verschil is dat

  1. een knoopnotitie standaard is verborgen (zweeftekst). De knoop kan standaard onder knoopdetails worden getoond via menu Beeld > Knoopnotitie > Tonen notities bij knopen.
  2. een knoopnotitie ook in een afzonderlijk venster kan worden getoond dat net zo breed is als het scherm. Het venster kan op verschillende plaatsen op het scherm worden getoond. Zie Beeld > knoopnotite.
  3. Een knoopnotitie heeft standaard een notitie-pictogram. In Extra > Voorkeuren kan worden ingesteld dat dit pictogram niet moet worden getoond. Op Internet (Java applet) werkt dit laatste niet.

Zie de Handleiding Freeplane voor meer informatie.

De agendafunctie maakt het mogelijk om in de knooptitel datums en tijdstippen in te voegen en herinneringsmomenten in te stellen. Als een herinneringsmoment af gaat, verschijnt een knipperend klokje. Zie Knoopkenmerken > Agenda voor de uitgebreide agenafunctie (ook: Managen taken).

Het opmaakpaneel bevat in tab Agenda en attributen een deel van de functionaliteit (niet: Managen taken).

De betekenis van de agendafuncties staat hieronder.

Herinneringsmoment opnieuw instellen, een bepaalde tijd na het ingestelde moment.

Dit submenu opent een venster met de herinneringen van alle knopen. Voor elke herinnering wordt het volgende getoond:

  • datum
  • knooptitel
  • pictogrammen
  • tijdstip waarop de knoop is gemaakt
  • tijdstip waarop de knoop het laatste is veranderd
  • notitietekst

Deze elementen kunnen met zoeken en vervangen worden veranderd. 

Verwijder de herinnering van de geselecteerde knoop.

Zie ook:

  • Extra > Agenda..
  • Opmaakpaneel > Kalender & attributen

Deze knoop bevat een herinnering.

Voor dat je kunt filteren moet je in de filterwerkbalk een filterregel maken. De filterwerkbalk bevindt zich boven het werkgebied voor de mindmap. Een filterregel bestaat uit de volgende elementen:

  • Knoopcomponent (Knooptitel. Knoopinhoud, Tijdstip, Pictogram, enz)
  • Type regel:  component bestaat, bevat, =, > etc.
  • Waarde van de component
  • Bij tekst: hoofdlettergevoeligheid en Benaderend zoeken (fuzzy search)

Vervolgens kun je op pictogram-knop Filteren mindmap drukken om het filteren uit te voeren. Zie in de volgende knoop welk pictogram dit is. Om het filteren te eindigen, druk op Stoppen filteren.

Het filterresultaat kan worden aangepast door het instellen van onderstaande filteropties, zie onder.

Nadat je een filterregel hebt ingesteld kun je ook Zoeken kiezen om de eerstvolgende knoop te vinden die voldoet aan de filtercondities.

To the left are shown the icons of the buttons in the Filter toolbar, with their meaning.  

Maakt eerdere fiteraktie ongedaan.

Voert filteractie die ongedaan gemaakt is nogmaals uit.

Voert filteractie  uit op het gefilterde deel.

Verbergt alle zichtbare knopen die niet aan de filterregel voldoen.

Zie ook

  • Stop filteren.

Opmerking

  • Knopen die voor het filteren verborgen waren, blijven verborgen.

To filter for all nodes modified after a certain date, ser a filterrrule (Date filter, Modified after, date, xxx) and Quick filter for all modified nodes.

See also

  • Find and replace all nodes... for an alternative way.

Toon alleen de geselecteerde knopen, en optioneel de voorouders en/of afstammelingen. 

Zie ook 

  • Filteren > Tonen voorouders 
  • Filteren > Tonen afstammelingen

Filter en selecteer alle passende afstammelingen (zichbaar en verborgen) van de geselecteerde knoop.

Maak het filteren ongedaan.

Opent venster om filterregels te maken en bewerken.

De eerste regel toont drie velden om een filterregel te maken, initieel gevuld met ("Kern, details of notitie", "Bevat", leeg veld). en een vink-veldje voor Hoofdlettergevoeligheid. Het veld onder deze in te vullen velden bevat een lijst van reeds gedefinieerde filters, initeel is de lijst leeg. Twee regels uit deze lijst kunnen met EN en OF worden gecombineerd tot een nieuwe regel. Met Naam toekennen kan aan de geselecteerde regel een naamlabel worden toegevoegd.

Acties

  1. selecteer og type de condities van de filterregel, bijvoorbeeld (Knooptext, Bevat, filter); Hoofdlettergevoelig (vinkje).
  2. kies Toevoegen om deze regel toe te voegen aan lijst filterregels
  3. herhaal voor alle benodigde filterregels.
  4. druk OK

Opmerking

  • Om twee of meer regels te combineren  selecteer de regels en kies EN  of OF.
  • Om een regel te voorzien van een tekstlabel, selecteer de regel en kies Naam toekennen.

Zie ook

  • 6. Opmaken en stijlen / Stijlen / Conditionele stijlen voor voor een voorbeeld  

Zet AAN om met een extra filterregel eerdere filtering verder te verfijnen.

Zet AAN om ook voorouders van gefilterde knopen te tonen.

Note 

  • Kan zowel voor of na Filteren mindmap AAN/UIT worden gezet.

Zet AAN/UIT om ook afstammelingen die aan de filterregel voldoen WEL/NIET te tonen.

Zoek eerstvolgende knoop die aan de ingestelde filterregel voldoet (zoek eerst in diepte, dan in breedte).

Opmerking

  • De gevonden knoop wordt geselecteerd.
  • Knopen worden zonodig opengevouwen en de mindmap wordt gescrolled om de knoop zichbaar te maken.

Zoek vorige knoop die aan de ingestelde filterregel voldoet.

Opmerking

  • De gevonden knoop wordt geselecteerd.
  • Knopen worden zonodig opengevouwen en de mindmap wordt gescrolled om de knoop zichbaar te maken.

Filterregels kun je maken en bewaren voor gebruik op een later moment of op een andere computer. Je kunt filterregels combineren met EN en OF operatoren en je kunt filterregels een maamlabel geven.

Open menu Filteren > Componeren filter (of klik op het pictogram in de filterbalk) en maak de filterregels die je nodig hebt. Voorzie de filterregels die je wilt hergebruiken van een naamlabel om ze herkenbaar te maken. Kies dan Bewaren voor het bewaren van de set. Op het moment dat je de set nodig hebt kies je (in het venster voor het componeren) Laden voor het opnieuw installeren van de set.

De filterregels zijn beschikbaar in de filter menubalk. Om een regel te kiezen, klik op het venster naast "Niet filteren (verwijderen)".  Je ziet dan de eerder gedefinieerde filters. Klik op de regel naar keuze. Na het filteren klik op pictogram  Stop filter.

As an example of using filter sets, the Freeplane directory has a subdirectory doc with a file called freeplaneTutorial.mmfilter. Choose Fiter > Filter composer > Load and find and load this file.

After this you can use the filters as described in the following nodes.

To see only the information at the first level of experience (Beginner):

    1. Click in field with "No filtering (remove)": a list with filters drops down.
    2. Select ane of the shown rules e.g. Beginner
    3. Click Quick filter as shown in the image.

    P.S. Make sure Show ancestors is UNselected.

You can now click on each item to unhide its content. Or you can unhide all hidden information at once by doing the following:

  1. Move the cursor over the central area (root node) to select it
  2. Click on the icon Unfold all to see all selected nodes
  1. Click in an empty area of the background and drag the map around until hou have read all.
  2. Do not forget to press icon No filtering when you are finished.

You can now follow the same procedure for Beginner, Advanced and Professional.

De inhoud van de kinderen van een knoop (tak) kan met een wachtwoord worden beveiligd. Selecteer hiervoor de ouderknoop en kies Extra > Knoobeveiliging > Opgeven wachtwword. Het is mogelijk binnen de beveiligde tak elke knoop een ander wachtwoord te geven.

Opmerking

  • Beveiligen met een wachtwoord werkt alleen indien in Extra > Voorkeuren is ingesteld dat  beveiligen is toestaan.
  • De knoop waarvoor je een wachtwoord instelt is zelf wel zichtbaar. Dit geldt ook voor zijn knoopinhoud.
  • De beveiliging wordt gerealiseerd met zogenaamde DES encryptie, zie Help > Handleiding.
  • Zie ook: Extra > Knoopbeveiliging.

Bij het maken van een nieuwe mindmap kan deze direkt met een wachtwoord worden beveiligd. Kies hiervoor Bestand > Nieuwe beveiligde mindmap. Deze functie kan worden gecombineerd met wchtwoorbeveiliging van knopen, om meerlaagse beveiliging te maken.

Freeplane heeft vele mogelijkheden om de werking aan je persoonlijke wensen aan te passen. De meestgebruikte staan in menu Beeld. Veel meer staan in  Extra > Instellingen. Daarnaast kun je met zogenaamde scripts en add-ons je eigen uitbredingen op Freeplane maken. Zie Help > Handleiding voor een beschrijving.

Een nieuwe knoop krijgt stijl Standaardstijl. Deze stijl kan worden vernaderd : Opmaken > Beheren stijlen > Bewerken stijlen. Als je omlijning instelt krijgen alle nieuwe knopen een omlijning of kader.

Opmerking

  • De veranderde standaardstijl geldt alleen voor de mindmap waarin je werkt. Om de standaardstijl voor alle nieuwe mindmaps toe te passen, moet je de mindmap standard-1.6.mm aanpassen. Deze bevindt zich in: Extra > Openen gebruikersdirectory > Templates.
  • Overweeg om in standard-1.6.mm de optie "Hyperlinks" aan te vinken. Dit zorgt er voor dat de tekst van een pijl-hyperlink wordt onderstreept en klikbaar is.

In menu Beeld kun je verschillende eigenschappen van de knoopkern instellen zoals de breedte van de tekst, of een selectierand moet worden getoond, of formules met een rand moeten worden omgeven en welke achtergrondkleur voor een revisie moet worden toegepast. Je kunt verder instellen hoe knoopdetails moeten worden getoond, met of zonder zweeftekst en revisies (tijdstippen). Je kunt verder aangeven welke attributen moeten moeten worden getoond of verborgen. En je kunt aangeven of knoopnotities in een apart venster moeten worden getoond dat op het scherm blijft staan, en op welke positie van het scherm.

Opmerking

  • Beeld > Beeldinstellingen bevat opties die belangrijk zijn bij printen (Outline) en presenteren (Presentatiemode).

Docear is an "academic literature suite". It provides to researchers what an office suite provides to office workers. By that we mean, Docear supports you in doing all the tasks related to literature management:

 

   1. Finding new literature (searching and exploring)

   2. Organizing literature (reading, annotating, and retrieving)

   3. Creating your own literature (drafting, writing, referencing, and publishing)

 

Docear is the successor of SciPlore MindMapping and funded by the European Union and German Federal Ministry of Economics and Technology.

Click the red arrow

Je kunt o.a. de volgend eigenschappen zelf instellen:

  • Of er een of meer Freeplane programma's tegelijk kunnen draaien
  • Opties voor het openen en bewaren van bestanden;
  • Of de toestand van open/dichtvouwen bij bewaren ook moet worden bewaard, zodat bij het openen de mindmap in dezelfde toestand begint;
  • Keuze van de standaard karakterset;
  • Of hyperlinks absoluut of relatief zijn.

Hier kun je o.a. instellen:

  • De standaard eigenschappen;
  • Hoogte en breedte van knopen, verborgen tekst (tooltip), enz.;
  • Of bepaalde pictogrammen moeten worden getoond, bijvoorbeeld voor attributen en notitie.

De sneltoetsen die worden gebruikt voor bepaalde pictogrammen

Hier kun je a.o. instellen:

  • Of automatische selectie wordt toegepast en met welke vertraging;
  • De karakteristieken van de zweeftekst (tooltip);
  • Of snelbewerken standaard moet worden toegepast;
  • Of voor bewerken een dubbelklik nodig is;
  • Of een toetsindruk tekst overschrijft, een kind of een zus toevoegt of geen effect heeft;
  • De positie van nieuwe takken (eerste, laatste);
  • Toestaan van slepen (drag en drop);
  • Snelheid van het muiswiel;
  • De afmeting van het raster voor het plaatsen van knopen;
  • Het type formattering van getallen en datums;
  • Of bevestiging nodig is bij het verwijderen van een knoop;
  • Of tekst als getal wordt op gevat bij vergelijkingsoperaties;
  • Of de spellingscontrole hoofdlettergevoelig is.

De instelling van de browser en voor HTML.

Instellingen voor formules en scripts

De vertikale afstand tussen knopen kan als volgt worden veranderd: selecteer een knoop, houdt Ctrl ingedrukt en sleep de blauwe handle van de knoop naar boven of benededen; of gebruik het rolletje op de muis.

Opmerking

  • De verandering beinvloedt (alleen) de broer/zusterknopen.
  • Om de standaardinstelling terug te krijgen: selecteer een knoop en kies Bewerken > Herstellen oorspronkelijke knoopposities.

Freeplane heeft een mogelijkheid om zelf ontbrekende functies toe te voegen met de scripttaal Groovy. Er is een verzameling kant en klare scripts die je kunt gebruiken zonder dat je hoeft te kunnen programmeren.

Read more in the Freeplane documentation,  visit the the wiki on add-ons and the wiki add-on scrips .

Bij gebruik van Windows 7 kun je Windows 7 zo instellen dat ook .mm bestanden worden geindexeerd en dus sneller worden gevonden Dit gaat als volgt:

  • Go to Control Panel -> indexing options; or type in Help  ""indexing"
  • Choose "Advanced". This gives you a page with two tabs -- "Index Settings" and "File Types"
  • Choose the "File Types" tab
  • Scroll through the list of files there till you come to ".mm"
  • The filter description will say "File Properties Filter"
  • Click the second radio button beneath, which says "Index Properties and File contents. The filter description should now change to "Plain text filter"
  • Choose OK to leave the dialog. The indexing will restart and when it is finished, the index is available.

Note

  • In the standard mode only node properties are indexed, not content. The above procedure also adds the content to the filtering mechanism.

Freeplane maakt gebruik van toetcombinaties om snel bepaalde menu's the kunnen benaderen, zie Help > Overzicht van sneltoetsen.  Het is ook mogelijk je eigen sneltoetsenset te definieren,  welke ook is mee te nemen naar een andere computer, zie de documentatie.

Klik op de rode pijl voor meer informatie over uitbreidingen.

Installeer de language add-on NL voor meer uitgebreide ondersteuning.

Klik hier om naar de wiki met voorbeelden op Internet te gaan.

Node with

  • style Begin, Advanced or Professional
  • automatic node number
  • fixed min node width = 180

Short label indicating content

  • Omlijning: Gecombineerd (= alleen omlijnd indien dichtgevouwen)

Template information

  • Name:
  • Address:

Bij een grote mindmap is het lastig om op twee verschillende plaatsen van de mind map te werken. Kies Beeld > Nieuwe mindmap afbeelding om een gekoppelde kopie van de huidige mindmap te maken. Via de tabbladen onderin het scherm kun je tussen beide views heen en weer springen. Freeplane ziet beide als dezelfde mind map. Je kunt de twee views niet naast elkaar zien.

Om een eerdere versie van een mindmap te herstellen, kies menu Bestand > Herstel back-up

All functions in Freeplane are open for use as batch job, in a command line interface. With this you can for example:

  •  run a function on start up
  • execute a script an leave

© Jokro

freeplane-1.7.10/freeplane/doc/Freeplane_LaTeX.mm0100644 0000000 0000000 00000073667 13371553751 020324 0ustar000000000 0000000 freeplane-1.7.10/freeplane/format_translation.gradle0100644 0000000 0000000 00000004210 13341547170 021321 0ustar000000000 0000000 configurations { ant_tasks } dependencies { ant_tasks project(':freeplane_ant') } task format_translation(dependsOn: configurations.ant_tasks) { doLast { ant.taskdef( name: "format_translation", classname: "org.freeplane.ant.FormatTranslation", classpath: configurations.ant_tasks.asPath, onerror: "report" ) ant.format_translation( dir: file("src/editor/resources/translations"), includes: "*.properties", eolstyle: "unix" ) ant.format_translation( dir: file("src/viewer/resources/translations"), includes: "*.properties", eolstyle: "unix" ) } } task check_translation(dependsOn: configurations.ant_tasks) { doLast { ant.taskdef( name: "check_translation", classname: "org.freeplane.ant.FormatTranslationCheck", classpath: configurations.ant_tasks.asPath, onerror: "report" ) ant.check_translation( dir: file('src/editor/resources/translations'), includes: '*.properties', eolstyle: 'unix' ) ant.check_translation( dir: file('src/viewer/resources/translations'), includes: '*.properties', eolstyle: 'unix' ) } } void update(File resourceFile){ def userFile = file('../User' + resourceFile.name) if (userFile.exists()) { Properties properties = new Properties() resourceFile.withInputStream { properties.load(it) } userFile.withInputStream { properties.load(it) } properties.store(resourceFile.newOutputStream(), null) } } task update_translation { doLast { fileTree(dir: './viewer-resources/translations', include: 'Resources_*.properties').each{ File resourceFile -> update(resourceFile) } fileTree(dir: './resources/translations', include: 'Resources_*.properties').each{ File resourceFile -> update(resourceFile) } } } update_translation.finalizedBy format_translation build.dependsOn(check_translation) freeplane-1.7.10/freeplane/git.gradle0100644 0000000 0000000 00000003712 13341547170 016204 0ustar000000000 0000000 // copy gitinfo.txt from root (necessary when building from // src/srcpure because git is not available!) task copyGitTxt(type: Copy) { onlyIf { new File(rootDir, 'gitinfo.txt').exists() } from(rootDir) { include('gitinfo.txt') } into(globalBin) } // copy gitinfo.properties from root (necessary when building from // src/srcpure because git is not available!) task copyGitProperty(type: Copy) { onlyIf { new File(rootDir, 'gitinfo.properties').exists() } from(rootDir) { include('gitinfo.properties') } into(globalBin + '/resources') } task createGitProperty { // for src/srcpure tarballs, /gitinfo.txt exists, so we don't call git // (which is not available) def gitInfoFile = new File(rootDir, 'gitinfo.txt') onlyIf { !gitInfoFile.exists() } doLast { def whoami def revisionHash def execResult try { new ByteArrayOutputStream().withStream { os -> execResult = exec { commandLine 'git', 'config', 'user.name' standardOutput = os ignoreExitValue = true } whoami = os.toString().trim() } if(execResult.exitValue != 0) return new ByteArrayOutputStream().withStream { os -> execResult = exec { commandLine 'git', 'log', '--pretty=format:%H', '-n1' standardOutput = os ignoreExitValue = true } revisionHash = os.toString().trim() } if(execResult.exitValue != 0) return } catch (TaskExecutionException) { return } def timestamp=new Date().format("yyyy-MM-dd'T'HH:mm:ss'Z'", TimeZone.getTimeZone("UTC")) new File(globalBin, 'gitinfo.txt').write "git-revision=$revisionHash $whoami $timestamp" // create gitinfo.properties! copy { from(globalBin) { include('gitinfo.txt') rename('gitinfo.txt', 'gitinfo.properties') filter(org.apache.tools.ant.filters.EscapeUnicode) } into(globalBin + '/resources') } } } freeplane-1.7.10/freeplane/signjar.gradle0100644 0000000 0000000 00000003045 13427556002 017054 0ustar000000000 0000000 def signJarProperties = file('signjar.properties') Properties props = new Properties() if (signJarProperties.exists()) { props.load(new FileInputStream(signJarProperties)) } task signViewerJar(type: Exec) { onlyIf { props['signjar.cardpass'] } def freeplaneViewerJar = files(viewerJar).getSingleFile() commandLine 'jarsigner', '-keystore', 'NONE', '-tsa', props['signjar.tsaurl'], '-storetype', 'PKCS11', '-providerClass', 'sun.security.pkcs11.SunPKCS11', '-providerArg', props['signjar.cfg'], '-storepass', props['signjar.cardpass'], '-certchain', props['signjar.certchain'], freeplaneViewerJar, props['signjar.owner'] dependsOn viewerJar } task signSvgJar(type: Exec) { onlyIf { props['signjar.cardpass'] } def svgJar = file('lib/kitfox-svg-salamander-1.1.1-p1.jar') commandLine 'jarsigner', '-keystore', 'NONE', '-tsa', props['signjar.tsaurl'], '-storetype', 'PKCS11', '-providerClass', 'sun.security.pkcs11.SunPKCS11', '-providerArg', props['signjar.cfg'], '-storepass', props['signjar.cardpass'], '-certchain', props['signjar.certchain'], svgJar, props['signjar.owner'] } task doNotSignViewerJar { onlyIf { !props['signjar.cardpass'] } doLast { println('No ' + rootDir.path + '/freeplane/signjar.properties found') println('Applet is NOT signed!') println('(see ' + rootDir.path + '/freeplane/signjar-example.properties)') } dependsOn viewerJar } // exactly one of three is always enabled (see above)! copyOSGiJars.dependsOn signViewerJar copyOSGiJars.dependsOn doNotSignViewerJar freeplane-1.7.10/freeplane/src/0040755 0000000 0000000 00000000000 13341547170 015030 5ustar000000000 0000000 freeplane-1.7.10/freeplane/src/editor/0040755 0000000 0000000 00000000000 13341547170 016316 5ustar000000000 0000000 freeplane-1.7.10/freeplane/src/editor/resources/0040755 0000000 0000000 00000000000 13341547170 020330 5ustar000000000 0000000 freeplane-1.7.10/freeplane/src/editor/resources/default_accelerators.properties0100644 0000000 0000000 00000000400 13341547170 026610 0ustar000000000 0000000 acceleratorFor.File/ModesMenuAction.File=alt 3 acceleratorFor.File/ModesMenuAction.MindMap=alt 1 acceleratorFor.MindMap/ModesMenuAction.File=alt 3 acceleratorFor.MindMap/ModesMenuAction.MindMap=alt 1 acceleratorFor.MindMap/OpenLastOpenedAction_1=control 1 freeplane-1.7.10/freeplane/src/editor/resources/default_accelerators_mac.properties0100644 0000000 0000000 00000000777 13341547170 027451 0ustar000000000 0000000 acceleratorFor.MindMap/NewChildAction=TAB acceleratorFor.MindMap/NewParentNode=shift TAB acceleratorFor.MindMap/NewSummaryAction=alt shift TAB acceleratorFor.MindMap/SelectNoteAction=meta PERIOD acceleratorFor.MindMap/OpenLastOpenedAction_1=meta 1 acceleratorFor.MindMap/DeleteAction=BACK_SPACE acceleratorFor.File/ModesMenuAction.File=control 3 acceleratorFor.File/ModesMenuAction.MindMap=control 1 acceleratorFor.MindMap/ModesMenuAction.File=control 3 acceleratorFor.MindMap/ModesMenuAction.MindMap=control 1 freeplane-1.7.10/freeplane/src/editor/resources/menu_aliases.properties0100644 0000000 0000000 00000001062 13341547170 025107 0ustar000000000 0000000 # These are aliases for menu entries which are needed if the menu # structure changes. Aliases translate old script or add-on menu # locations to the newer scheme # # Right hand side are the actual menu keys / paths. # Left hand side are aliases for them # # Note: The sequence of the aliases is important! The aliases are # tried one after the other in the sequence as listed in this # file. main_menu_scripting/scripts=//main_menu/extras/scripting main_menu_scripting=//main_menu/extras /menu_bar=main_menu node_popup_scripting=node_popup/node_popup_scripting freeplane-1.7.10/freeplane/src/editor/resources/translations/0040755 0000000 0000000 00000000000 13554635152 023055 5ustar000000000 0000000 freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_af.properties0100644 0000000 0000000 00000216207 13554635152 027620 0ustar000000000 0000000 about_text=Freeplane - programmatuur vir maak van gratis breinkaarte en opbou van kennis AboutAction.text=Oorsig acceleratorPresets=Kortpadinstellings accelerators_loading_error=Kan nie versnellers oplaai van {0} nie accessories/plugins/ApplyFormatPlugin.dialog.title=Verander formaat van nodii accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Verander patroon accessories/plugins/EncryptNode.properties_0=Kies wagwoord vir beskermde (ge\u00EFnkripteerde) nodus accessories/plugins/EncryptNode.properties_1=Wagwoorde is nie gelyk nie of is te kort. accessories/plugins/EncryptNode.properties_2=Sleutel wagwoord in: accessories/plugins/EncryptNode.properties_3=Sleutel weer wagwoord in: accessories/plugins/EncryptNode.properties_4=Sleutel jou wagwoord in. accessories/plugins/EncryptNode.properties_5= Let op: die sterkte van beveiliging
hang af van die kwaliteit van jou wagwoord. accessories/plugins/EncryptNode.properties_6=Reg accessories/plugins/EncryptNode.properties_7=Kanselleer accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Jy kan net die wagwoordbeskerming (enkripsie) staat van 'n ge\u00EBnkripteerde nodus verander. Voeg asseblief so 'n nodus in deur die Nutsmiddels-kieslys te gebruik. accessories/plugins/EncryptNode.properties_select_me=Kies my om voort te gaan! accessories/plugins/EncryptNode.properties_wrong_password=Die wagwoord is nie reg nie. accessories/plugins/Export_JavaWebStart.text=Java Web Begin\u2026 accessories/plugins/Export_JavaWebStart.tooltip=Eksport die kaart vir Java Web Begin. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Eksport die kaart as 'n TWiki dokument. accessories/plugins/ExportWithXSLT.tooltip=Dit is 'n eenvormige eksport metode. accessories/plugins/ExportWithXSLT_Applet.text=Java-minitoepassing\u2026 accessories/plugins/ExportWithXSLT_Applet.tooltip=Eksport die kaart as 'n java blaaier minitoepassing. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (JavaScript weergawe)\u2026 accessories/plugins/ExportWithXSLT_HTML3.text=XHTML (Klikbare kaartbeeld weergawe)\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Hulpbronne van RESOURCES nodus na TaskJuggler l\u00EAer\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Voer hulpbronne van RESOURCES nodus af na Taskjuggler module. accessories/plugins/ExportWithXSLT_TASKSTJI.text=Take van TAKE nodus na TaskJuggler l\u00EAer\u2026 accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Eksport take van TAKE nodus na Taskjuggler module. action_keystroke_in_use_error=Sleuteldruk {0} aangevra vir aksie {1} is reeds in gebruik vir aksie {2} active=Aktief actual_map_styles=Kaart voorwaardelike style toegepas op nodus actual_node_styles=Nodus voorwaardelike style toegepas op nodus add=&Voeg AddConnectorAction.text=Koppel AddElementaryConditionAction.text=Voeg AddExecutionLinkAction.text=Voeg hiperskakel om 'n OS opdrag uit te voer\u2026 AddLocalLinkAction.text=Voeg plaaslike Hiperskakel AddMenuItemLinkAction.text=Voeg hiperskakel by kieslysitem\u2026 AddOnDetailsPanel.authored.by=Deur {0} AddOnDetailsPanel.header.function=Funksie AddOnDetailsPanel.header.menu=Kieslysligging AddOnDetailsPanel.header.shortcut=Kortpad AddOnDetailsPanel.homepage=Tuisblad: addons.installer.canceled=Installasie gekanselleer addons.installer.confirm.licence=

Lisensie

{0}

Aaanvaar jy hierdie lisensie?

addons.installer.failed=Installasie het misluk: {0} addons.installer.freeplaneversion.format.error=Formateringsfout in {0} (waarde: {1}) addons.installer.html.script=Geskrewe inhoud kan nie geformateer word as HTML nie addons.installer.install=Installeer addons.installer.invalid.keyboard.shortcut=Ongeldige kortpad {0}. addons.installer.licence.unchanged=Lisensie is onveranderd addons.installer.map.structure=Fout in kaartstruktuur: {0} addons.installer.missing.child.nodes=Ontbrekende kindnodus: {0} addons.installer.missing.permission.attribute=Skrip {0}: vermiste toestemmings-eienskappe {1} addons.installer.missing.properties=Ontbrekende eienskappe: {0} addons.installer.missing.translation=Ontbrekende vertaling van {0} vir lokaliteit {1} addons.installer.no.scripts=Geen skrip gevind addons.installer.no.zipdata=Geen gekrimpte data gevind addons.installer.nonstandard.permissions=Die skrip vereis die volgende toestemmings wat tans nie geaktiveer is nie: {0}.\u21B5\nMoet hulle by die standaardtoestemmings gevoeg word? addons.installer.one.child.expected=Verwag presies een kind van {0} maar het {1}. addons.installer.script.name.suffix=Skrip naam {0} het nie ''n agtervoegsel soos ".groovy" nie addons.installer.script.no.execution_mode=Geen "execution_mode" eienskap gedefinieer vir {0} addons.installer.script.no.menulocation=Geen "menuLocation" eienskap gedefinieer vir {0} addons.installer.script.no.menutitle=Geen "menuTitleKey" kenmerk gedefinieer vir {0} nie addons.installer.script.no.permissions=Geen toestemming gedefinieer vir {0} addons.installer.success=Installasie is suksesvol.\u21B5\nDie nuwe aanvulling sal beskikbaar wees na 'n herbegin. addons.installer.success.update=Updatering van {0} na {1} is geslaagd.\nSommige funksies is beskikbaar na ''n herbegin. addons.installer.title=Aanvulling installeerder addons.installer.too.new=Huidige weergawe {0} van Freeplane is te nuut. Hierdie aanvulling ondersteun op die meeste {1} addons.installer.too.old=Huidige weergawe {0} van Freeplane is te oud. Hierdie aanvulling moet ten minste {1} he addons.installer.unknown.deinstallation.rules=Onbekende de\u00EFnstalleringsre\u00EBl(s) {0} addons.installer.update=Opdatering vanaf weergawe {0} addons.installer.warning=Jy moet net byvoegsels installeer vanaf bronne wat jy vertrou. Kwaadwillige sagteware kan skade aan jou data veroorsaak of jou privaatheid skend. addons.site=https://www.freeplane.org/addons/ AddStyleAttributes.text=Styleienskappe AddStyleAttributes.tooltip=Voeg eienskappe van stylnodus AllMapsNodeListAction.text=Vind en vervan in al die kaarte always=Altyd AlwaysUnfoldedNodeAction.text=Altyd ongevoude nodus (stel/terugstel) antialias_all=Versag alles antialias_edges=Versag randte antialias_none=Geen versagting apply=&Pas toe ApplyAction.text=Pas toe ApplyFormatPlugin.text=Verander formaat\u2026 ApplyFormatPlugin.tooltip=Bied 'n dialoog waarin die nodus en rand eienskappe gelyktydig verander kan word. ApplyNoFilteringAction.text=Geen filtrering ApplySelectedViewConditionAction.text=Filtreer geselekteerde nodii ApplyToVisibleAction.text=Van toepassing op gefiltreerde nodus as_parent=As ouer AskForHelp.text=Vra vir hulp in die forum AssignAttributesAction.text=Vind en vervang eienskappe\u2026 attribute_delete=Verwyder alle waardes attribute_delete_value=Verwyder hierdie waarde attribute_font_size.tooltip=Eienskap lettergrootte attribute_list_box_label_text=Bestaande waardes attribute_name=Eienskapnaam attribute_name_or_value=Eienskapnaam of waarde attribute_replace=Vervang met attribute_top=Alle bekende eienskappe vir die gelaaide Kaarte attribute_value=Eienskapwaarde attributes_AddAttributeAction.text=Voeg kenmerk in dialoog\u2026 attributes_adding_empty_attribute_error=Eienskapnaam mag nie leeg wees nie attributes_all=Alle eienskappe attributes_assign_dialog=Uitgebreide eienskapredigeerder attributes_attribute=Eienskappe attributes_close=Maak toe attributes_deselect_all=Niks attributes_dialog_title=Eienskapbestuurder attributes_edit=Wysig attributes_edit.tooltip=Redigeer stel attributes_for_selected=Geselekteerde nodii attributes_for_visible=Alle sigbare nodii attributes_import=&Invoer attributes_import.tooltip=Importeer eienskappe vanuit die ander gelaaide kaarte attributes_no_import_candidates_found=Geen nuwe eienskappe gevind attributes_popup_delete=Verwyder attributes_popup_down=Af attributes_popup_edit=Wysig attributes_popup_hide=Versteek attributes_popup_new=Nuwe eienskap attributes_popup_optimal_width=Optimale breedte attributes_popup_up=Op attributes_refresh=Verfris attributes_RemoveAllAttributesAction.text=Verwyder alle eienskappe attributes_RemoveFirstAttributeAction.text=Verwyder eerste eienskap attributes_RemoveLastAttributeAction.text=Verwyder laaste eienskap attributes_restricted_attributes.tooltip=Beperk stel van eienskappe attributes_restricted_values.tooltip=Beperk stel van waardes vir die huidige eienskap attributes_restriction=Beperkte stel attributes_select_all=Alles attributes_select_all.tooltip=Kies/ontkies alles attributes_show=Vertoon attributes_skip_root=Slaan wortelnodus oor attributes_visible=Gekose sigbaar attributes_visible.tooltip=Gekose sigbaar automatic_layout=Outomatiese uitl\u00EAg automatic_layout_disabled=Versperde automatically_save_message=Kaart word outomaties gestoor (die l\u00EAernaam is gebruik {0})\u2026 AutomaticEdgeColor.FOR_BRANCHES=vir takke AutomaticEdgeColor.FOR_COLUMNS=vir kolomme AutomaticEdgeColor.FOR_LEVELS=vir vlakke AutomaticEdgeColor.ON_BRANCH_CREATION=op tak skepping AutomaticEdgeColorHookAction.text=Outomatiese randkleur AutomaticLayout.ALL=vir alle nodii AutomaticLayout.HEADINGS=vir nie-blaar nodii AutomaticLayout.level=Vlak {0} AutomaticLayout.level.root=Wortel AutomaticLayoutAction.text=Pas vlakstyle toe AutomaticLayoutAction.tooltip=Herstel die uitleg van die kaart.
Die eerste vlak is swart, die tweede blou, ens. AutomaticLayoutControllerAction.ALL.text=vir alle nodii AutomaticLayoutControllerAction.COLUMNS.text=vir kolomme AutomaticLayoutControllerAction.HEADINGS.text=vir nie-blaar nodii AutomaticLayoutControllerAction.null.text=versperde BackAction.text=Gaan terug BackAction.tooltip=Spring terug in die kies ketting background=Agtergrond bitmaps=Beeld black=Swart BlinkingNodeHookAction.text=Flikkerende nodus blue=Blou BoldAction.text=Vetdruk boldify_branch=Vetdruk maak branch=Tak browse=Blaai\u2026 calendar_attributes_panel=Kalender en eienskappe calendar_panel=Kalender can_not_clone_encrypted_node=Ge\u00EBnkripteerde nodii mag nie gekloon word nie can_not_connect_to_info_server=Kan nie koppel aan inligtingsbediener can_not_delete_predefined_style=Kan nie vooraf gedefinieerde styl skrap nie can_not_delete_root_style=Kan nie die wortelstyl skrap nie can_not_delete_style_group=Kan nie die groepstyl skrap nie can_not_encrypt_cloned_node=Gekloonde nodii mag nie ge\u00EBnkripteer word nie can_not_save_key_set=Kan nie die snelsleutelstel stoor nie cancel=&Kanselleer CancelAction.text=Kanselleer cannot_add_parent_diff_parents=Alle nodii moet dieselfde ouer h\u00EA om hierdie funksie te gebruik. cannot_add_parent_to_root=Die wortelnodus kan nie by 'n nuwe ouer gevoeg word nie. cannot_delete_root=Die wortel nodus kan nie geskrap of geknip word nie. cannot_join_nodes_with_children=Kan nie nodii met kinders saamvoeg nie cannot_move_into_child_node=Kan nie na kindernodus beweeg nie cannot_move_to_child=Kan nie nodus na een van sy kinders beweeg nie. CenterAction.text=Sentreer ChangeConnectorArrowsAction.backward.text=Trek agtertoe pyl ChangeConnectorArrowsAction.both.text=Trek vorentoe en agtertoe pyl ChangeConnectorArrowsAction.forward.text=Trek vorentoe pyl ChangeConnectorArrowsAction.none.text=Geen ChangeConnectorArrowsAction.text=Verander pyle van verbindingslyn ChangeConnectorShapeAction.CUBIC_CURVE.text=Kromme ChangeConnectorShapeAction.EDGE_LIKE.text=Simuleer rand ChangeConnectorShapeAction.LINE.text=Lyn ChangeConnectorShapeAction.LINEAR_PATH.text=Reglynige pad ChangeNodeLevelLeftsAction.text=Skuif nodus (broers en susters) ChangeNodeLevelRightsAction.text=Skuif nodus (broers en susters se kind) choose_cloud_color=Kies wolkkleur: choose_edge_color=Kies randkleur choose_map_background_color=Kies kaart agtergrondkleur choose_node_background_color=Kies nodus agtergrondkleur: choose_node_color=Kies nodus kleur: ClearLinkAnchorAction.text=Wis skakelanker ClearLinkAnchorAction.tooltip=verwyder voorheen ingestelde nodusanker CloneAction.text=Plak kloon close_btn=&Maak toe CloseAction.text=Maak huidige kaart toe CloseAllMapsAction.text=Maak alle kaarte toe CloseAllOtherMapsAction.text=Maak alle ander kaarte toe cloud_shapes=Wolkvorms CloudAction.text=Voeg / verwyder wolk (verstek) CloudColorAction.text=Wolkkleur\u2026 CloudShapeAction.ARC.text=Boog CloudShapeAction.RECT.text=Reghoek CloudShapeAction.ROUND_RECT.text=Ronde reghoek CloudShapeAction.STAR.text=Ster collection.copy.presentation=Kopieer aanbieding collection.copy.slide=Kopieer skyfie collection.delete=Verwyder collection.down=Af collection.move=Skuif collection.moveTo=Skuif na posisie collection.new.presentation=Nuwe aanbieding collection.new.slide=Nuwe skyfie collection.up=Op ColorProperty.ResetColor=Herstel kleur combined=Gekombineer condition=Voorwaarde confirmation=Bevestiging connector=Verbinder connector_arrows=Verbinderpyle connector_label=Verbinderetiket connector_lines=Verbinderlyne connector_shapes=Verbindervorms ConnectorColorAction.text=Verbinderkleur\u2026 controls=Kontroles ConvertCloneToIndependentNodeAction.text=Ontkloon copy_name={0} (kopieer) CopyAction.text=Kopieer CopyAction.tooltip=Kopieer gekose tak CopyAttributes.text=Kopieer eienskappe CopyIDAction.text=Kopieer nodus ID CopyMapStylesAction.text=Kopieer kaart styl vanaf\u2026 CopyNodeURIAction.text=Kopieer nodus se URI copyright=Kopiereg \u00A9 2000-2019 Freeplane span en ander CopySingleAction.text=Kopieer nodus (enkel) CopySingleAction.tooltip=Kopieer slegs die gekose nodus CopyStyleExtensionsAction.text=Kopieer uitbreidings van stylnodus CopySuggestedReferenceAction.text=Kopieer nodus verwysing corrupt_map=Kaart se inhoud is beskadig CreateConjunctConditionAction.text=En CreateDisjunctConditionAction.text=Of CreateNotSatisfiedConditionAction.text=Nie current_dir=Kaarte CutAction.text=Sny decrease_branch_font_size=Kleiner lettertipe DecreaseNodeFontAction.text=Kleiner lettertipe default=Verstekwaarde defaultAuxiliaryWordList='n, die, van DefaultColorAction.text=Verstekkleur defaultstyle.attributes=Eienskappe defaultstyle.details=Besonderhede defaultstyle.floating=Swewende nodus defaultstyle.note=Nota delete=&Verwyder delete_child=Verwyder nodus DeleteAction.text=Verwyder nodus DeleteConditionAction.text=Verwyder DeleteDetailsAction.text=Verwyder nodus se besonderhede DeleteLevelStyleAction.text=Verwyder vlak styl DeleteStyleAction.text=Verwyder styl DeleteUserStyleAction.text=Skrap gebruikergedefinieerde styl dialect_info.app=Breinkaart l\u00EAer {0} was geskep met program {1}. dialect_info.later_version=Geheuekaartl\u00EAer {0} was geskep met ''n latere weergawe van hierdie program. dialect_info.unknownApp=Breinkaart l\u00EAer {0} is geskep deur ''n onbekende program. dialect_info.unknownURL=Die webwerf is onbekend. dialect_info.url=Besoek program webwerf {0} vir meer inligting. dialect_info.warning=Freeplane kon dit verkeerd oopgemaak, vertoon of gestoor het. DirectHtmlFlavorHandler=HTML as enkelnodus DocumentationAction.text=Dokumentasie down=Af DownConditionAction.text=Af download=Aflaai edge=Rand edge_style=Rand styl edge_width=Randbreedte edge_widths=Randbreedtes EdgeColorAction.text=Randkleur\u2026 EdgeProperties=Rand eienskappe EdgeStyleAction.hide_edge.text=Versteek rand EdgeStyleAction.horizontal.text=Horisontaal EdgeStyleAction.linear.text=Line\u00EAre EdgeStyleAsParentAction.text=As ouer EdgeWidthAction_width_parent.text=Ouer EdgeWidthAction_width_thin.text=Dun edit=&Wysig edit.decision=HTML redigeerder edit_details=Wysig nodus besonderhede edit_end_label=Verbinder
etiket edit_label_font_family=Karaktersoort edit_label_font_size=Karaktergrootte edit_link_manually=Wysig Hiperskakel met die hand\u2026 edit_long_node=Redigeer nodus kern in dialoog edit_middle_label=Middel
etiket edit_note=Wysig Nota edit_source_label=Bron
etiket edit_target_label=Teiken
etiket edit_transparency_label=Deursigtigheid edit_width_label=Breedte editEdgeColors=Redigeer randkleure EditFilterAction.text=Stel filter saam EditNoteInDialogAction.text=Redigeer Nota in dialoog EditScript=Wysig skrip\u2026 EditStylesAction.text=Wysig style EncryptedMap.text=Nuwe beskermde (ge\u00EFnkripteerde) kaart\u2026 EncryptedMap.tooltip=Nuwe beskermde kaart encryption=Enkripsie enter_command=Voer bevel in enter_condition_name=Sleutel nuwe toestand naam in enter_confirms=&Enter bevestig enter_keyset_name=Sleutel naam van kortpadsleutel in enter_map_url=Vul URL van breinkaart in enter_new_style_name=Tik nuwe stylnaam enter_node_id_or_reference=Tik nodus ID of verwysing enter_zoom=Voeg Zoem EnterPassword.text=Sleutel wagwoord in error=Fout error_applying_template=Kon nie XSL-sjabloon toepas nie. error_creating_directory=Kan nie gids vir afvoer skep nie. errornumber={0} foute ExecuteScript.available_modes.tooltip={0} is beskikbaar vir ExecuteScript.script=Skrip ExecuteScriptError.text=Fout met die uitvoering van die skrip:\n {0} ExecuteScriptForAllNodes.text=Voer alle skripte uit ExecuteScripts.noScriptsAvailable=Niks beskikbaar ExecuteScripts.text=Skripte export_failed=Uitvoer het misluk export_pdf_text=Oordraagbare dokument formaat (PDF) export_svg_text=Skaal veranderbare Vektor Grafieka (SVG) ExportAction.text=Kaart afvoer na\u2026 ExportAllPresentationsAction.text=Voer alle aanbiedings uit na PNG-beelde ExportBranchAction.text=Skuif tak na nuwe kaart\u2026 ExportBranchesAction.text=Takke uitvooer\u2026 ExportBranchToHTMLAction.text=Tak as HTML exported_file={0} l\u00EAer ExportPdf.text=PDF ExportPresentationAction.text=Voer huidige aanbieding na PNG beelde ExportSvg.text=SVG ExportToHTMLAction.text=HTML ExportToImage.jpg.text=JPEG ExportToImage.png.text=PNG ExportToOoWriter.text=Open Office Writer Dokument\u2026 extension_menu=Fisiese styl ExternalImage_popupMenu_Change=Wysig\u2026 ExternalImage_popupMenu_Open=Maak oop in blaaier ExternalImage_popupMenu_Remove=Verwyder ExternalImage_popupMenu_ResetZoom=Herstel zoem ExternalImageAddAction.text=Voeg beeld\u2026 ExternalImageChangeAction.text=Verander beeld\u2026 ExternalImageRemoveAction.text=Verwyder beeld ExtractLinkFromTextAction.text=Verander skakel van binne teks ExtractLinkFromTextAction.tooltip=Stel hiperskakel vanaf adres in nodusteks extras=&Gereedskap f_button_unassigned= FaqOpenURLAction.text=VGV file=&L\u00EAer file_already_exists=Die l\u00EAer {0} bestaan reeds. Wil jy dit oor dit skryf? file_not_accessible=L\u00EAer {0} is nie toeganklik nie file_not_found=L\u00EAer {0} nie gevind nie FileListFlavorHandler=Skakels na l\u00EAers FileProperties_BranchLeafCount=Aantal blaarnodii geselekteerde tak(ke): FileProperties_BranchNodeCount=Aantal nodii in geselekteerde tak(ke): FileProperties_ChangesSinceLastSave=Veranderinge sedert laaste stoor: FileProperties_FileName=L\u00EAernaam: FileProperties_FileSaved=L\u00EAer gestoor: FileProperties_FileSize=L\u00EAergrootte: FileProperties_MainBranchCount=Aantal hooftakke: FileProperties_NeverSaved=Nooit gestoor nie FileProperties_NodeSelectionCount=Aantal uitgekose nodii: FileProperties_TotalLeafCount=Totale aantal blaar nodii: FileProperties_TotalNodeCount=Totale aantal nodii: FilePropertiesAction.text=Kaartstatistieke\u2026 FileRevisionsDialog.cancel=&Kanselleer FileRevisionsDialog.file_last_modified=Tydstempel FileRevisionsDialog.file_name=L\u00EAer FileRevisionsDialog.file_size=Grepe FileRevisionsDialog.open=&Maak Oop FileRevisionsDialog.open.tooltip=Maak l\u00EAer oop selfs al is dit verouderd FileRevisionsDialog.question=Weergawes gevind van {0} FileRevisionsDialog.restore=&Herstel FileRevisionsDialog.restore.tooltip=Vervang {0} met {1} FileRevisionsDialog.title=L\u00EAer weergawes filter=&Filter filter_add=&Voeg by filter_alias=Alias filter_and=E&n filter_conditions=Filters filter_contains=Bevat filter_created_after=Geskep na filter_created_before=Geskep voor filter_delete=&Skrap filter_deny=Afwys filter_details=Besonderhede filter_dialog=Filter Samesteller filter_does_not_exist=Bestaan nie filter_edit_description=Redigeer Filterlys filter_enter_value=Sleutel waarde in filter_even_level=Onewe vlak nodus filter_exist=Bestaan filter_global=Globale toeganklike nodus filter_icon=Ikoon filter_is_equal_to=Is gelyk aan filter_is_not_equal_to=Is nie gelyk aan nie filter_leaf=Blaarnodus filter_link=Hiperskakel filter_match_approximately=Benaderd filter_modified_after=Verander na filter_modified_before=Verander voor filter_no_filtering=Geen Filtrering (verwyder) filter_node=Kernteks filter_node_level=Nodusvlak filter_not=&Nie filter_note=Nota filter_odd_level=Ewe vlak nodus filter_or=&Of filter_parent=Ouer teks filter_periodic_level=Periodiek filter_priority=Prioriteit filter_regexp_matches=Passende regexp filter_reminder=Herinnering filter_reminder_after=geskeduleer na filter_reminder_before=geskeduleer voor filter_reminder_executed=reeds afgevuur filter_reminder_later=later geskeduleer filter_root=Wortelnodus filter_script=Skripfilter filter_select=Kie&s filter_selected_node_view=Tans geselekteerde nodii filter_selected_node_view_snapshot=Gestoorde seleksie filter_starts_with=Begin met filter_style=Styl filter_time=Datumfilter FilterCondition=Filtervoorwaardes filterConditions=Gebruiker-gedefinieerde filters filterConditions.noActions=Geen genoemde filters nie filters_not_loaded=Filter kan nie gelaai word nie, l\u00EAer beskadig find=Soek find_what=Waarna om te soek? FindAction.text=Soek\u2026 FindNextAction.text=Soek volgende FindPreviousAction.text=Soek Vorige fit_background_to_page=Pas agtergrondbeeld op een bladsy fit_map_to_page=Pas op een bladsy fit_map_to_page_height=Pas &hoogte op een bladsy fit_map_to_page_width=Pas &breedte op een bladsy FitToPage.text=Zoem om bladsy te pas FitToPage.tooltip=Verstel die Zoem sodat die hele kaart in die huidige venster pas. fold=Vou FoldAllAction.text=Vou almal FoldOneLevelAction.text=Vou een vlak follow_clone=Binne "{0}" follow_graphical_link=Gaan na "{0}" FollowLinkAction.text=Volg skakel font=Lettertipe FontFamilyAction.text=Lettertipenaam FontSizeAction.text=Lettertipegrootte format=F&ormaat format_invalid_pattern=Nie 'n geldige patroon nie format_menu_cloud_shapes=Voeg wolk of verander styl format_menu_edge_styles=Rand style format_menu_edge_widths=Randbreedtes format_panel=Formatteer FormatCopy.text=Kopieer formaat FormatCopy.tooltip=Kopieer die formaat van 'n nodus. FormatPaste.text=Plak Formaat FormatPaste.tooltip=Plak die formaat van 'n nodus. formats_not_loaded=Formate kan nie gelaai word nie, l\u00EAer beskadig formula.ClearDependenciesAction.text=Maak Afhanklikhede skoon formula.EvaluateAllAction.text=Evalueer alles formula.menuname=Formules formula.TraceDependentsAction.text=Spoor afhanklikes na formula.TracePrecedentsAction.text=Spoor voorgangers na formula_editor=Wysig Formule ForwardAction.text=Gaan vorentoe ForwardAction.tooltip=Spring vorentoe in die gekose ketting FreeNodeAction.text=Vrygeplaasde nodus (stel/terugstel) Freeplane.progress.buildScreen=Skerm heropbou\u2026 Freeplane.progress.createController=Skep kontroleur\u2026 Freeplane.progress.createInitialMode=Skep aanvanklike modus\u2026 Freeplane.progress.endStartup=Voltooi aanskakeling. Freeplane.progress.gettingPreferenceDirectories=Kry voorkeur gidse\u2026 Freeplane.progress.gettingPreferences=Kry voorkeure\u2026 Freeplane.progress.loadMaps=Laai kaarte\u2026 Freeplane.progress.propagateLookAndFeel=Versprei voorkoms\u2026 Freeplane.progress.settingPreferences=Instellings Voorkeure\u2026 Freeplane.progress.startCreateController=Begin om kontroleur te skep\u2026 freeplane_reverted=Freeplane_Teruggestel_ FreeplaneHandbook.text=Freeplane handboek FreeplaneHelpStarter.text=Help\u2026 FreeplaneHelpStarter.tooltip=Freeplane uitgebreide hulp globally_accessible=Globale toeganklikheid goto=Gaan na goto.noActions=Geen teiken nodii GotoLinkNodeAction.text=Gaan na skakel GotoNodeAction.text=Gaan na nodus\u2026 GrabKeyDialog.common.cancel=Kanselleer GrabKeyDialog.common.ok=Oukei GrabKeyDialog.grab-key.assigned-to=Toegeken aan GrabKeyDialog.grab-key.assigned-to.none=Tans nie toegeken nie GrabKeyDialog.grab-key.clear=Maak skoon GrabKeyDialog.grab-key.remove=Verwyder GrabKeyDialog.grab-key.title=Voer nuwe sleutel in green=Groen help=&Help HideableAction.tooltip=Merk die agtergrond van elke gewysigde nodus. HideAllAttributesAction.text=Verberg alle kenmerke HierarchicalIconsAction.text=Wys ikone hierargies hot_keys=Kortpadsleutels hot_keys_table=Kortpadsleutels tabel HotKeyInfoAction.text=Sleutelverwysing html_export_based_on_headings=HTML afvoer - gebaseer op opskrifte html_export_fold_all=HTML Afvoer - Vou alles html_export_no_folding=HTML uitvoer - Geen Vouing html_problem= Kan nie html lewer nie

{0} icon_0%=0% icon_100%=100% icon_25%=25% icon_50%=50% icon_75%=75% icon_addition=Byvoeging icon_attach=Kyk hier icon_audio=Klank icon_back=Terug icon_bee=Freeplane icon_bell=Onthou icon_bookmark=Uitstekend icon_broken-line=Gebreek icon_button_cancel=Nie Oukei nie icon_button_ok=Oukei icon_calendar=Datum icon_checked=Gemerk icon_clanbomber=Gevaarlik icon_clock=Tyd icon_clock2=Herinnering icon_closed=Geen toegang icon_decrypted=Ontsluit icon_desktop_new=Moenie vergeet nie icon_division=Afdeling icon_down=Af icon_edit=Verfyn icon_encrypted=Gesluit icon_executable=Uitvoerbaar icon_family=Familie icon_fema=Manlik & Vroulik icon_female1=Vroulik1 icon_female2=Vroulik2 icon_females=Vroue icon_flag=Rooi vlag icon_flag-black=Swart vlag icon_flag-blue=Blou vlag icon_flag-green=Groen vlag icon_flag-orange=Oranje vlag icon_flag-pink=Pienk vlag icon_flag-yellow=Geel vlag icon_folder=Vouer icon_forward=Vorentoe icon_freemind_butterfly=FreeMind icon_full-0=Prioriteit 0 icon_full-1=Prioriteit 1 icon_full-2=Prioriteit 2 icon_full-3=Prioriteit 3 icon_full-4=Prioriteit 4 icon_full-5=Prioriteit 5 icon_full-6=Prioriteit 6 icon_full-7=Prioriteit 7 icon_full-8=Prioriteit 8 icon_full-9=Prioriteit 9 icon_go=Groen Verkeerslig icon_gohome=Tuis icon_group=Groep icon_help=Vraag icon_hourglass=Besig om te wag icon_icon_not_found=Ikoon nie gevind nie icon_idea=Idee icon_image=Beeld icon_info=Info icon_internet=Internet icon_internet_warning=Internet waarskuwing icon_kaddressbook=Telefoon icon_kmail=E-pos icon_knotify=Musiek icon_korn=Posbus icon_ksmiletris=Ek is gelukkig icon_launch=Bekendstelling icon_licq=Mooi icon_list=Lys icon_Mail=Pos icon_male1=Man1 icon_male2=Man2 icon_males=Manne icon_menu=Ikoon icon_messagebox_warning=Belangrik icon_mindmap=Breinkaart icon_multiplication=Vermenigvuldiging icon_narrative=Verhaal icon_negative=Negatief icon_neutral=Neutraal icon_password=Sleutel icon_pencil=Om verfyn te word icon_penguin=Linux icon_positive=Positief icon_prepare=Geel verkeerslig icon_revision=Hersiening icon_revision-green=Hersiening (groen) icon_revision-pink=Hersiening (pienk) icon_revision-red=Hersiening (rooi) icon_smiley-angry=Smiley (kwaad) icon_smiley-neutral=Smiley (neutraal) icon_smiley-oh=Smiley (verbaasd) icon_smily_bad=Smiley (sleg) icon_stop=Verkeerslig (roo) icon_stop-sign=Teken (stop) icon_subtraction=Wiskunde (aftrekking) icon_unchecked=Nie meer gemerk nie icon_up=Op icon_user_icon=Gebruikersikone icon_very_negative=Baie Negatief icon_very_positive=Baie positief icon_video=Video icon_wizard=Kulkuns icon_xmag=Om te bespreek icon_yes=Belangrik IconGroupPopupAction.arrows.text=Pyle IconGroupPopupAction.docs_folders.text=Dokumente en Vouers IconGroupPopupAction.flags.text=Vlae IconGroupPopupAction.math.text=Berekening IconGroupPopupAction.media.text=Media IconGroupPopupAction.miscellaneous.text=Ander IconGroupPopupAction.nature.text=Natuur IconGroupPopupAction.numbers.text=Getalle IconGroupPopupAction.office.text=Kantoor IconGroupPopupAction.people.text=Persone IconGroupPopupAction.rating.text=Gradering IconGroupPopupAction.signs.text=Tekens IconGroupPopupAction.smiley.text=Glimlaggie IconGroupPopupAction.time.text=Tyd IconGroupPopupAction.user.text=Gebruiker ikone IconProgressExtended10Action.text=Uitgebreide vordering 10% IconProgressExtended25Action.text=Uitgebreide vordering 25% IconProgressIconDownAction.text=Vordering af IconProgressIconUpAction.text=Vordering op IconProgressRemoveAction.text=Verwyder vordering icons=Ikone IconSelectionPlugin.text=Ikoon vanuit tabel\u2026 image_covertLink=Omskep skakel na beeld ImageFlavorHandler=Beeld (gebruik aparte l\u00EAer) import=Invoer ImportAction.text=Voer kaart in ImportBranchAction.text=Vertakking\u2026 ImportExplorerFavoritesAction.text=Blaaier gunstelinge\u2026 ImportFolderStructureAction.text=Vouer struktuur\u2026 ImportLinkedBranchAction.text=Gekoppelde vertakkking ImportMindmanagerFiles.text=MindManager X5 kaart\u2026 ImportXmlFile.text=Voer XML-l\u00EAer in increase_branch_font_size=Groter lettertipe IncreaseNodeFontAction.text=Groter lettertipe invalid_export_file=Ongeldige uitvoerl\u00EAernaam invalid_file_msg=Kon nie l\u00EAer vir {0} vind nie invalid_uri=Ongeldige URI {0} invalid_url=Kon nie geldige URL skep nie invalid_url_msg=Kon nie geldige URL vir {0} skep nie ItalicAction.text=Kursief italicise_branch=Kursiveer java_version=Java weergawe: {0} lastOpenedMaps=Mees onlangse kaarte lastOpenedMaps.noActions=Geen kaarte in geskiedenis nie latex_editor=Redigeer LaTeX Formule LatexDeleteLatexAction.text=Verwyder LaTeX formule LatexEditLatexAction.text=Redigeer LaTeX formule\u2026 LatexInsertLatexAction.text=Voeg LaTeX formule\u2026 latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=duim LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px license=Lisensie: GPL 2 of later license_text=Hierdie program is gratis sagteware; jy kan dit herversprei en/of
wysig onder die voorwaardes van die GNU Algemene Publieke lisensie
soos gepubliseer deur die gratis sagteware stigting; \u00F3f weergawe 2
van die lisensie, of (by jou opsie) enige later weergawe.

Hierdie program wort versprei op die hoop dat dit sal nuttig wees,
maar sonder enige waarborg; sonder selfs die ge\u00EFmpliseerde waarborg wat
verband hou met VERHANDELBAARHEID of GESKIKTHEID vir 'n spesifieke doel. Sien die
GNU Algemene Publieke lisensie vir meer besonderhede.

Jy behoort 'n afskrif ontvang het van die GNU Algemene Publieke lisensie
saam met hierdie program; indien nie, skryf aan die Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. link_error=Verkeerde skakel "{0}" nie gelaai nie link_not_available_any_more=Die skakel is nie geldig nie. Nodus {0} is intussen geskrap. link_not_found=Skakel {0} nie gevind nie. links=Skakel load=&Laai load_accelerator_presets=Laai load_accelerator_presets.noActions=Geen voorafinstellings LoadAcceleratorPresetsAction.textPatterns.text=Tekspatrone main_menu=Kieslys main_resource_directory=Installasie hulpbronne: {0} ManageAddOnsAction.text=Aanvullings ManageAddOnsDialog.activate=Aktiveer ManageAddOnsDialog.authored.by=deur {0} ManageAddOnsDialog.configure=Instelling ManageAddOnsDialog.deactivate=Deaktiveer ManageAddOnsDialog.install=&Installeer ManageAddOnsDialog.install.from.known.location=Installeer aanvulling vanaf 'n bekende ligging ManageAddOnsDialog.really.deinstall=Regtig {0} verwyder? ManageAddOnsDialog.search=Soek aanvullings ManageAddOnsDialog.search.file=Soek ManageAddOnsDialog.select.tooltip=Kies l\u00EAer ManageAddOnsDialog.status.downloading=Laai tans l\u00EAer af\u2026 ManageAddOnsDialog.status.installing=Installeer aanvulling\u2026 ManageAddOnsDialog.status.success={0} suksesvol ge\u00EFnstalleer. ManageAddOnsDialog.tab.install=Soek en installeer ManageAddOnsDialog.tab.install.tooltip=Soek en installeer nuwe aanvullings ManageAddOnsDialog.tab.manage=Aanvullings ManageAddOnsDialog.tab.manage.themes=Temas ManageAddOnsDialog.tab.manage.themes.tooltip=Bestuur ge\u00EFnstalleerde temas ManageAddOnsDialog.tab.manage.tooltip=Bestuur ge\u00EFnstalleerde aanvullings ManageAddOnsDialog.visit.addon.page=Besoek aanvullings bladsy\u2026 map_already_exists=Die kaart bestaan alreeds. Wil jy dit oorskryf? map_background=Kaart agtergrond map_background_image=Agtergrondbeeld map_corrupted=Kaart korrup. Bekyk detail? map_load_error=Kon nie kaart {0} laai nie map_locked_by_open=Die kaart {0} word reeds deur die gebruiker {1} geredigeer. Maak as leesalleen oop. map_not_saved=Die kaart is nie voorheen gestoor nie. MapBackgroundClearAction.text=Maak skoon MapBackgroundColorAction.text=Agtergrondkleur MapBackgroundImageAction.text=Agtergrondbeeld\u2026 maps=Kaarte MaxNodeWidth.text=Stel maksimum nodusbreedte menu_applyStyle=Pas styl toe menu_attributes=Kenmerke menu_clouds=Wolke menu_copy=Kopi\u00EBer menu_coreFormat=Noduskern menu_details=Besonderhede menu_displayAttributes=Noduskenmerke menu_encryption=Wagwoordbeskerming menu_extensions=Noduseienskappe menu_group=Nodusgroep menu_hoverView=Wenke menu_iconByCategory=Ikoon per kategorie\u2026 menu_iconView=Ikone menu_image=Beeld menu_insert=Invoeg menu_latex_formula=LaTeX formule menu_manageStyles=Bestuur Style menu_moveNode=Beweeg en sorteer menu_newNode=Nuwe nodus menu_node=Nodus menu_node_features=Noduskenmerke menu_nodes=&Nodii menu_nodeView=Noduskern menu_noteView=Notas menu_openmaps=Kaarte menu_remove_icons=Verwyder ikone menu_removeAttribute=Vertoon eienskappe menu_select=Kies menu_time=Tydsbestuur menu_title=Noduskern menu_viewmode=Bekyk instellings mindmap=Kaart MindMapNodesFlavorHandler=Nodushi\u00EBrargie mindmaps=Kaarte mindmaps_desc=Kaarte (*.mm) mindmaps_filter_desc=Filtreerders (*.mmfilter) MinNodeWidth.text=Stel minimum nodusbreedte mode_Browse=Blaaimodus mode_File=L\u00EAermodus mode_MindMap=Breinkaartmodus mode_na=Modus nie beskikbaar mode_status=Modus het verander na {0} mode_StyleMap=Stylredigering mode_title=Freeplane - {0} modes=Modusse ModesMenuAction.Browse.text=Kaartblaaier ModesMenuAction.File.text=L\u00EAersoeker ModesMenuAction.MindMap.text=Breinkaartredigeerder most_recent_files=Mees onlangse kaarte MoveAction.text=Skuif MoveSelectedNodeAction.CENTER.text=Sentreer geselekteerde nodus MoveSelectedNodeAction.EAST.text=Skuif gekose nodus na regs MoveSelectedNodeAction.WEST.text=Skuif gekose nodus na links MoveToRootAction.text=Gaan na wortel NameConditionAction.text=Stel naam navigate=&Navigeer NavigationNextMapAction.text=Volgende kaart NavigationPreviousMapAction.text=Vorige kaart new=&Nuut new_map_from_user_templates.text=Nuwe kaart vanaf sjabloon\u2026 new_mindmap=Nuwe Breinkaart new_node=Nuwe Nodus new_version_available=Nuwe weergawe '{0}' beskikbaar NewChildAction.text=Nuwe kindnodus NewerFileRevisionsFoundDialog.cancel=&Slaan-oor NewerFileRevisionsFoundDialog.cancel.tooltip=Moenie hierdie l\u00EAer oopmaak nie NewerFileRevisionsFoundDialog.file_last_modified=Tydstip NewerFileRevisionsFoundDialog.file_name=L\u00EAer NewerFileRevisionsFoundDialog.file_size=Grepe NewerFileRevisionsFoundDialog.open=Maak &Oop NewerFileRevisionsFoundDialog.open.tooltip=Maak l\u00EAer oop selfs al is dit verouderd NewerFileRevisionsFoundDialog.question=Nuwer weergawes vir {0} gevind! NewerFileRevisionsFoundDialog.restore=Herstel NewerFileRevisionsFoundDialog.restore.tooltip=Vervang {0} met {1} NewerFileRevisionsFoundDialog.title=Nuwer l\u00EAer weergawes gevind! NewFreeNodeAction.text=Nuwe swewende nodus newmap.install.addon.title=Installeer aanvulling? NewMapAction.text=Nuwe kaart NewMapViewAction.text=Nuwe kaart bekyk NextNodeAction.BACK.text=Gaan na vorige nodus NextNodeAction.BACK_N_FOLD.text=Gaan na vorige nodus (vou) NextNodeAction.FORWARD.text=Gaan na volgende nodus NextNodeAction.FORWARD_N_FOLD.text=Gaan na volgende nodus (vou) no=Nee NO_FORMAT=Teks no_found_from=Geen {0} gevind vanuit "{1}" nie. no_more_found_from=Geen {0} gevind vanuit "{1}" nie. no_previous_find=Geen vorige soeke gevind. no_styles_found_in_map=Geen style in kaart gevind no_translation_strings_found=Geen vertaalbare teks gevind node=Nodus node_popup_scripting=Skripte node_selector_message=Dubbelklik om nodus te kies node_styles=Nodus style NodeBackgroundColorAction.text=Nodus agtergrondkleur\u2026 NodeColorAction.text=Tekskleur\u2026 NodeColorBlendAction.text=Versnit kleur NodeExtensions.EditNodeExtensions=Redigeer nodusuitbreidings NodeExtensions.RemoveNodeExtensions=Verwyder nodusuitbreidings NodeListAction.text=Soek en vervang\u2026 NodeShapeAction.bubble.text=Borrel NodeShapeAction.fork.text=Vurk NodeShapeAction.narrow_hexagon.text=Smal seshoek NodeShapeAction.oval.text=Ovaal NodeShapeAction.rectangle.text=Reghoek NodeShapeAction.wide_hexagon.text=Bre\u00EB seshoek normal=Normaal note_window_location=Notapaneel se posisie notes=Nota NotificationOptions.CLOSE=Maak toe NotificationOptions.REMIND_ME_LATER=Herinner my later NotificationOptions.REMOVE_REMINDER=Verwyder herinnering NotificationOptions.SELECT_NODE=Gaan na herinnering ok=G&oed OKAction.text=Goed OnlineReference.text=Dokumentasiekaarte aanlyn open_asMindMap=Breinkaart OpenAction.text=Maak gestoorde kaart oop\u2026 OpenFreeplaneSiteAction.text=Freeplane se Tuisblad OpenMapsAddLocation.text=Voeg OpenMaps se Ligging\u2026 OpenMapsRemoveLocation.text=Verwyder OpenMaps se Ligging OpenMapsViewLocation.text=Bekyk OpenMaps se Ligging\u2026 OpenPathAction.text=Maak l\u00EAer oop OpenURLMapAction.text=Maak kaart oop vanaf URL\u2026 OpenUserDirAction.text=Maak gebruikersgids oop OptionalDontShowMeAgainDialog.cancel=&Nee OptionalDontShowMeAgainDialog.dontShowAgain=Moet my nie weer vra nie. OptionalDontShowMeAgainDialog.ok=&Ja OptionalDontShowMeAgainDialog.rememberMyDescision=Onthou my besluit. OptionPanel.absolute=Absoluut OptionPanel.addons=Aanvulling OptionPanel.af=Afrikaans OptionPanel.always_fold_all_after_load=Vou almal OptionPanel.always_load_last_maps=Laai vorige kaarte saam met nuwe kaarte OptionPanel.always_save_folding=Altyd OptionPanel.always_unfold_all_after_load=Almal oopvou OptionPanel.antialias=Antialias OptionPanel.antialias_all=Antialias almal OptionPanel.Appearance=Voorkoms OptionPanel.ar=Arabies / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Boog OptionPanel.ask=Vra OptionPanel.automatic=Outomaties OptionPanel.backup_file_number=Aantal behoue rugsteunl\u00EAers OptionPanel.ca=Katalaans, Valencian / Catal\u00E0 OptionPanel.Cancel=Kanselleer OptionPanel.check_updates_automatically=Kontroleer vir bywerkings met program aanvang OptionPanel.cloud=Wolk OptionPanel.cloudcolor=Wolkkleur OptionPanel.cloudshape=Wolkvorm OptionPanel.combined=Gekombineerd OptionPanel.compare_as_number=Vergelyk as getalle OptionPanel.connector_arrows=Verbinderpyle OptionPanel.connector_dash=Lyntipe OptionPanel.copyFormatToNewSibling=Kopieer formaat na nuwe boeties en sussies OptionPanel.copyFormatToNewSiblingIncludesIcons=Kopieer formaat met ikone OptionPanel.cs=Tsjeggies / \u010Desky OptionPanel.cut_nodes_without_question=Sny nodii sonder bevestiging? OptionPanel.cut_out_pictures_when_pasting_html=Beelde van HTML verwyder OptionPanel.da=Deens / dansk OptionPanel.date_format=Standaard datum formaat OptionPanel.date_format.tooltip=SHORT, MEDIUM, LONG of FULL \u00F3f 'n patroon soos "dd/MM/yyyy" OptionPanel.datetime_format=Standaard datum-tydformaat OptionPanel.de=Duits / Deutsch OptionPanel.default=Verstekwaarde OptionPanel.default_attribute_value_column_width=Standaardbreedte kenmerkwaarde OptionPanel.default_browser_command_mac=Verstekblaaierbevel Mac OptionPanel.default_browser_command_mac.tooltip=en MAC: (danksy Nick!) OptionPanel.default_browser_command_other_os=Verstekblaaierbevel op ander bedryfstelsel OptionPanel.default_browser_command_other_os.tooltip=Dit is tipies Linux: OptionPanel.default_browser_command_windows_9x=Verstekblaaierbevel op Windows 9x OptionPanel.default_browser_command_windows_nt=Verstekblaaierbevel op Windows NT OptionPanel.default_charset=Karakterstel OptionPanel.default_save_dir=Verstek Stoorgids OptionPanel.Defaults=Verstekwaardes OptionPanel.delete_automatic_saves_at_exit=Skrap outomatiese stoor by uitgang OptionPanel.delete_nodes_without_question=Skrap nodii sonder bevestiging? OptionPanel.display_node_id=Vertoon nodus ID OptionPanel.edgecolor=Rand kleur OptionPanel.edgedash=Rand lyntipe OptionPanel.edgestyle=Rand styl OptionPanel.edgewidth=Randbreedte OptionPanel.EDIT_CURRENT=Oorskryf inhoud OptionPanel.edit_on_double_click=Redigeer op dubbelkliek OptionPanel.editor_extra_width=Ekstra breedte stap OptionPanel.el=Grieks / \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Knoppies aan die bokant OptionPanel.el__max_default_window_height=Maksimum verstekvenster hoogte OptionPanel.el__max_default_window_width=Maksimum verstekvenster breedte OptionPanel.el__min_default_window_height=Minimum hoogte van verstekventster OptionPanel.el__min_default_window_width=Minimum breedte van verstekventster OptionPanel.en=Engels / English OptionPanel.Environment=Omgewing OptionPanel.es=Spaanse, Kastiliaans / espa\u00F1ol, castellano OptionPanel.et=Estlands / eesti, eesti keel OptionPanel.eu=Baskies OptionPanel.execute_scripts_without_exec_restriction=Staan toe om ander programme uit te voer (NIE aan te bevole NIE) OptionPanel.experimental_file_locking_on=Eksperimentele l\u00EAer sluiting OptionPanel.experimental_file_locking_on.tooltip=Eksperimentele kenmerk OptionPanel.export_icons_in_html=Voer ikone af na Html OptionPanel.Files=L\u00EAers OptionPanel.first=Eerste OptionPanel.fit_to_viewport=Pas agtergrondbeeld binne die venster OptionPanel.fork=Vurk OptionPanel.formula_disable_plugin=Deaktiveer formule-evaluering OptionPanel.fr=Frans / Fran\u00E7ais OptionPanel.gl=Galisies / Galego OptionPanel.grid_size=Rooster gaping grootte OptionPanel.gtk=Gtk OptionPanel.hi=Hindi/\u0939\u093F\u0928\u094D\u0926\u0940 OptionPanel.hide_edge=Versteek rand OptionPanel.hide_single_end_connectors=Versteek enkel eindverbinders OptionPanel.horizontal=Horisontaal OptionPanel.hr=Kroasies / hrvatski OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=Gebaseer op Opskrifte OptionPanel.html_export_fold_all=Vou almal OptionPanel.html_export_no_folding=Geen vou OptionPanel.hu=Hongaars / Magyar OptionPanel.ic_disable=Versper OptionPanel.ic_file=Gebruik skyf OptionPanel.icon=Ikoon OptionPanel.icon_size=Ikoongrootte OptionPanel.icons.list=Lys met vertoonde standaardikone OptionPanel.icons.list.tooltip=Hier kan u die standaardikone bestel of deaktiveer. Die ikone moet met ';' geskei word. OptionPanel.id=Indonesies / Bahasa Indonesi\u00EB OptionPanel.IGNORE=Doen niks nie OptionPanel.ignore_unassigned_f_keys=Ignoreer nie toegekende F-sleutels OptionPanel.image_cache=vir beelde OptionPanel.indentationUsesTabsInTextOutput=Gebruik duimgidse in teks uitset OptionPanel.it=Italiaans / Italiano OptionPanel.ja=Japannees / \u65E5\u672C\u8A9E OptionPanel.JoinNodesAction.textSeparators=Teksverdeler OptionPanel.Keystrokes=Sleuteldrukke OptionPanel.kn=Kannadees / \u0C95\u0CA8\u0CCD\u0CA8\u0CA1 OptionPanel.ko=Koreaans / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Lettertipe familie OptionPanel.label_font_size=Lettertipegrootte OptionPanel.language=Taal OptionPanel.last=Laaste OptionPanel.layout_map_on_text_change.tooltip=Deaktiveer vir beter werksverrigting OptionPanel.linear=Reglynig OptionPanel.links=Skakels OptionPanel.load_folding=By oopmaak OptionPanel.load_folding_from_map_default_fold_all=Laai uit kaart of vou alles OptionPanel.load_last_map=Maak laaste kaart outomaties oop OptionPanel.load_last_maps=Laai al die laaste kaarte OptionPanel.lookandfeel=Voorkoms OptionPanel.lt=Litaus / kalba OptionPanel.max_image_width=Maksimum aanvanklike beeldbreedte OptionPanel.max_menu_item_count=Maksimum aantal kieslysitems OptionPanel.max_node_width=Maksimum nodusbreedte OptionPanel.max_shortened_text_length=Maksimum verkorte teksbreedte OptionPanel.menuItemFontSize=Kieslys item lettertipe grootte OptionPanel.metal=Metaal OptionPanel.min_node_width=Minimum nodusbreedte OptionPanel.monitor_size_inches=Monitor grootte (duim) OptionPanel.motif=Motief OptionPanel.narrow_hexagon=Smal seshoek OptionPanel.nb=Noors / Norsk bokm\u00E5l OptionPanel.never_save_folding=Nooit OptionPanel.nl=Hollands, Vlaams / Nederlands, Vlaams OptionPanel.nn=Noors / Norsk nynorsk OptionPanel.nodebackgroundcolor=Agtergrond OptionPanel.nodecolor=Teks OptionPanel.number_of_different_files_for_automatic_save=Aantal verskillende l\u00EAers vir outomatiese stoor OptionPanel.outline_hgap=Horisontale afstand OptionPanel.outline_vgap=Vertikale afstand OptionPanel.oval=Ovaal OptionPanel.paint_connectors_behind=Verf verbinders agter nodii OptionPanel.parse_data=Herken invoere van getalle en datum-tyd OptionPanel.parse_data.tooltip=Probeer om datum, datum-tyd en getalinvoer te ontleed en standaard formate toe te pas. Voorbeelde: 100 000,00, 12/31, 12/31/99, 1999-12-31 en 1999-12-31 23:59 OptionPanel.parse_formulas=Herken formules OptionPanel.parse_formulas.tooltip=Ontleed formules op nodii wat met 'n gelykstaan teken begin (\u201C=\u201D): sien http://www.freeplane.org/wiki/index.php/Formulas OptionPanel.parse_latex=Herken LaTeX OptionPanel.parse_latex.tooltip=Herken LaTeX-formules volgens formaat of voorvoegsel: Kyk http://www.freeplane.org/wiki/index.php/LaTeX_in_Freeplane. OptionPanel.PASTE_HTML=Plak HTML OptionPanel.PASTE_PLAIN_TEXT=Plak gewone teks OptionPanel.pasteImagesFromFiles=Plak beelde van l\u00EAers OptionPanel.patternname=Naam OptionPanel.patternname.tooltip=Unieke patroonnaam OptionPanel.pl=Pools / polski OptionPanel.placenewbranches=Plaas nuwe takke OptionPanel.placenewbranches.tooltip= Waar om nuwe takke te plaas. Geldige waardes is ' eerste ' en ' laaste ' OptionPanel.plugin.tooltip=Nie-kern invoegtoepassings. OptionPanel.plugins=Invoegtoepassings OptionPanel.Presentation=Aanbieding OptionPanel.presentation.combineAll=Kombineer alle aanbiedings OptionPanel.presentation.exportDirectory=Uitgevoerde aanbiedingagidsnaam OptionPanel.presentation.processesEscapeKey=ESCAPE sleutel be\u00EBindig aanbieding OptionPanel.presentation.processesNavigationKeys=Navigasiesleutels vir aanbiedingsbeheer OptionPanel.presentation.slideDisplaysAllNodes=Ontvou alle skyfie nodusse outomaties OptionPanel.presentation.slowMotion=Stadige beweging OptionPanel.presentation.switchToFullScreen=Aktiveer volskerm OptionPanel.presentation.switchToSpotlight=Aktiveer kollig OptionPanel.presentation.zoom=Gebruik kaartzoem OptionPanel.printonwhitebackground=Wit agtergrond vir drukwerk OptionPanel.printonwhitebackground.tooltip=Gebruik altyd wit agtergrond vir drukwerk OptionPanel.pt_BR=Portugees (Brazili\u00EB) / Portugu\u00EAs (Brasil) OptionPanel.pt_PT=Portugees (Portugal) / Portugu\u00EAs (Portugal) OptionPanel.RECT=Regtehoek OptionPanel.rectangle=Regtehoek OptionPanel.relative=Relatief OptionPanel.reminder.showPastRemindersOnStart=Wys vorige herinneringe OptionPanel.remindersBlink=Herinneringe flikker OptionPanel.remindersStandardDelay=Herinnering vertraag OptionPanel.remove_notes_without_question=Verwyder notas sonder bevestiging? OptionPanel.resources_use_default_font_for_notes_too=Gebruik verstek lettertipe vir notas ook OptionPanel.resources_use_margin_top_zero_for_notes=Verwyder boonste kantlyn vir notas OptionPanel.revision_color=Hersieningskleur OptionPanel.revision_color.tooltip=Agtergrondkleur vir die veranderde nodii. OptionPanel.ROUND_RECT=Ronde regtehoek OptionPanel.ru=Russies / \u0420\u0443\u0441\u0441\u043A\u0438\u0439 OptionPanel.save_folding=Stoor vouing OptionPanel.save_folding_if_map_is_changed=As kaart verander is OptionPanel.save_last_visited_node=Stoor vorige posisie op kaart OptionPanel.save_modification_times=Stoor veranderingstye OptionPanel.script_compilation_disabled_extensions.tooltip=Indien alle skripte van 'n addisioneel ge\u00EFnstalleerde taal (behalwe
Groovy en JavaScript) 'n algemene samestellingsprobleem het
probeer om die l\u00EAeruitbreiding hier by te voeg (Kommageskeide lys). OptionPanel.scrollbar_increment=Spoed OptionPanel.scrolling_speed=Outomatiese kaart rol spoed OptionPanel.selection_method=Metode vir maak van keuse OptionPanel.selection_method_by_click=Deur te klik OptionPanel.selection_method_delayed=Vertraag OptionPanel.selection_method_direct=Direkte OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Patrone OptionPanel.separator.anti_alias=Versagting OptionPanel.separator.attributes=Eienskappe OptionPanel.separator.automatic_save=Outomatiese stoor OptionPanel.separator.behaviour=Gedrag OptionPanel.separator.browser=Blaaier OptionPanel.separator.cache=Tydelike stoor OptionPanel.separator.clones=Klone OptionPanel.separator.cloud=Wolk OptionPanel.separator.CloudControls=Wolke OptionPanel.separator.commands_for_the_program=Bevele vir die program OptionPanel.separator.connectors=Verbindings OptionPanel.separator.data_formats=Dataformatering en verwerking OptionPanel.separator.default_colors=Verstekkleure OptionPanel.separator.default_fonts=Verstek lettertipes OptionPanel.separator.default_styles=Verstekstyle OptionPanel.separator.EdgeControls=Randte OptionPanel.separator.editing=Redigeerder-instellings OptionPanel.separator.export=Uitvoer OptionPanel.separator.files=L\u00EAers OptionPanel.separator.formula=Formules OptionPanel.separator.General=Algemeen OptionPanel.separator.html_export=HTML Uitvoer OptionPanel.separator.html_import=HTML Invoer OptionPanel.separator.hyperlink_types=Hiperskakel tipes OptionPanel.separator.icon_properties=Ikone OptionPanel.separator.IconControls=Ikone OptionPanel.separator.Icons=Ikone OptionPanel.separator.icons=Ikone in "Kies ikoon\u2026" OptionPanel.separator.initial_map_size=Aanvanklike kaartgrootte OptionPanel.separator.JoinNodesAction=Voeg nodii saam OptionPanel.separator.key_typing=Sleutel intik OptionPanel.separator.language=Taal OptionPanel.separator.latex=LaTeX OptionPanel.separator.load=Laai OptionPanel.separator.look_and_feel=Voorkoms OptionPanel.separator.mouse_wheel=Muiswieletjie OptionPanel.separator.new_node_commands=Nuwe nodus bevele OptionPanel.separator.NodeBorder=Nodusrand OptionPanel.separator.NodeColors=Kleur van hele kern OptionPanel.separator.NodeFont=Lettertipe van hele kern OptionPanel.separator.NodeShape=Nodusvorm OptionPanel.separator.NodeStyle=Nodusstyl OptionPanel.separator.NodeText=Kernteks OptionPanel.separator.notifications=Bevestigings OptionPanel.separator.org.freeplane.plugin.bugreport=Outomatiese foutverslag OptionPanel.separator.other_defaults=Ander Verstekwaardes OptionPanel.separator.patterns=Patrone OptionPanel.separator.presentation=Aanbieding OptionPanel.separator.reminderOptions=Herinneringsopsies OptionPanel.separator.RichTextEditor=Teksredigeerder OptionPanel.separator.root_node_appearance=Wortelnodus voorkoms OptionPanel.separator.save=Stoor OptionPanel.separator.scrollbar=Rolbalk OptionPanel.separator.search=Soek OptionPanel.separator.updates=Program bywerkings OptionPanel.set_property_text=Wysig OptionPanel.setscript=Wysig? OptionPanel.shouldCenterSmallMaps=Sentrering van klein kaarte OptionPanel.show_connectors=Wys verbindingslyne OptionPanel.show_connectors.false=slegs pyle OptionPanel.show_connectors.for_selection=vir selektering OptionPanel.show_connectors.never=nooit OptionPanel.show_connectors.true=altyd OptionPanel.show_creation_modification_in_tooltip=Vertoon tye waarop verander OptionPanel.show_icon_for_attributes=Wys ikoon vir kenmerke OptionPanel.show_icons=Wys ikone OptionPanel.show_node_tooltips=Vertoon gereedskapswenke OptionPanel.show_note_icons=Wys nota ikone OptionPanel.signed_script_are_trusted=Vertrou getekende skripte (aanbevole) OptionPanel.single_backup_directory=Gebruik een gids vir rugsteunl\u00EAers OptionPanel.SplitToWordsAction.nodeNumbersInLine=nommer van nodus in ry OptionPanel.standardcloudcolor=Standaard wolkkleur OptionPanel.standardcloudestyle=Standaard wolkstyl OptionPanel.standardcloudestyle.tooltip=Die standaard wolkstyl. OptionPanel.standardcloudshape=Standaard wolkvorm OptionPanel.standarddrawrectangleforselection=Geselekteerde nodii in borrels vertoon OptionPanel.standardlinkcolor=Standaard skakelkleur OptionPanel.standardlinkestyle=Standaard skakelstyl OptionPanel.standardselectednodecolor=Standaard geselekteerde noduskleur OptionPanel.standardselectednoderectanglecolor=Geselekteerde nodus borrelkleur OptionPanel.STAR=Ster OptionPanel.statesymbolwidth=Staat simboolbreedte OptionPanel.structured_html_import=Voer HTML in as nodusstruktuur OptionPanel.structured_icon_toolbar=Gestruktureerde ikoonnutsbalk OptionPanel.summary=Opsomming OptionPanel.sv=Sweeds / svenska OptionPanel.ta=Tamil / \u0BA4\u0BAE\u0BBF\u0BB4\u0BCD OptionPanel.textalignment=Teksbelyning OptionPanel.time_for_automatic_save=Tydsverloop vir outomatiese stoor OptionPanel.toolbar_icon_height=Nutsbalk-ikoonhoogte OptionPanel.tr=Turks / T\u00FCrk\u00E7e OptionPanel.uk_UA=Oekra\u00EFenies / \u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=Ongedefinieerde lettertipe OptionPanel.undo_levels=Ontdoenvlakke OptionPanel.uniform_shape=Eenvormig OptionPanel.use_tabbed_pane=Gebruik oortjies OptionPanel.vertical_child_gap=Kind gaping OptionPanel.vertical_child_gap.tooltip=Vertikale afstand tussen kindernodii OptionPanel.vi=Vi\u00EBtnamees/Ti\u1EBFng Vi\u1EC7t OptionPanel.wheel_velocity=Spoed OptionPanel.wheel_velocity.tooltip='n Ho\u00EBr waarde het 'n vinnige muiswielbewegingsuitwerking op die kaart. OptionPanel.wide_hexagon=Wye seshoek OptionPanel.windows=Vensters OptionPanel.zh_CN=Chinees, vereenvoudig/\u7B80\u4F53\u5B57 OptionPanel.zh_TW=Chinees, tradisioneel / \u7E41\u9AD4\u5B57 org.freeplane.plugin.bugreport.agree=Stuur org.freeplane.plugin.bugreport.always_agree=Stuur altyd org.freeplane.plugin.bugreport.dialog.title=Outomatiese foutverslag org.freeplane.plugin.bugreport.never=Moet my nooit vir hulp vra nie org.freeplane.plugin.bugreport.question=Freeplane het 'n outomatiese fout aanmeldingsenjin. PatternToString.FontBold=Vetdruk PatternToString.FontItalic=Kursief PatternToString.FontName=Lettertipe naam PatternToString.Icon=Ikoon PatternToString.NodeFontSize=Lettertipegrootte periodic_formula={0} * n + {1} PeriodUnit.DAY=dae PeriodUnit.HOUR=ure PeriodUnit.MINUTE=minute PeriodUnit.MONTH=maande PeriodUnit.WEEK=weke PeriodUnit.YEAR=jare plugins/latex/LatexNodeHook.editorTitle=Redigeer LaTeX formule plugins/script_filter=Skrip filter {0} plugins/ScriptEditor.exit=&Stoor en verlaat plugins/ScriptEditor.menu_actions=&Aksies plugins/ScriptEditor.new_script=Nuwe skrip plugins/ScriptEditor.run=&Loop plugins/ScriptEditor.sign=Beveilig skrip\u2026 plugins/ScriptEditor/window.Result=Resultaat: plugins/ScriptEditor/window.title=Redigeer skrip preferences=Voorkeure presentation=Aanbieding presentation.combineAll=Kombineer alle aanbiedings print_preview_title=Druk voorskou PrintAction.text=Druk kaart\u2026 PrintDirectAction.text=Druk PrintPreviewAction.text=Druk voorskou\u2026 QuitAction.text=Sluit Freeplane read_only=Lees net ReadScriptError.text=Fout met die lees van die skrip red=Rooi RedoAction.text=Herdoen reminder.appendButton=Voeg datum in Seleksie reminder.Cancel=Kanselleer reminder.cancelButton=Kanselleer reminder.closeButton=Sluit reminder.Created=Geskep reminder.Details=Besonderhede reminder.Export=Uitvoer van geselekteerde nodii reminder.Find=Soek reminder.Goto=Gaan na reminder.hour=Uur: reminder.Icons=Ikone reminder.Map=Kaart reminder.menu_actions=Aksies reminder.minute=Minuut: reminder.Modified=Gewysig reminder.Notes=Notas reminder.Reminder=Herinnering reminder.Replace_Selected=Vervang gekose reminder.Run_All=Voer alle skripte uit reminder.Run_Selected=Voer gekose skripte uit reminder.Select=Kies reminder.Text=Teks reminder.todayButton=Herstel kalender reminder.WindowTitle=Bestuur herinneringe reminder.WindowTitle_All_Nodes=Soek en vervang reminder.WindowTitle_pastReminders=Afgelope herinneringe reminder_script_error=Fout {0} in herinnering skrip op kaart {1} nodus {2} ReminderHookAction.text=Verwyder herinnering ReminderHookAction.tooltip=Verwyder 'n herinnering van 'n nodus. ReminderListAction.text=Bestuur take\u2026 ReminderListAction.tooltip=Toon alle geskeduleerde herinneringe en die ooreenstemmende nodii. reminderNotification=Herinneringskennisgewing remove_shortcut_question=Vervang kortpad? RemoveAllAlwaysUnfoldedNodeFlagsAction.text=Stel ongevoude nodusse terug RemoveAllIconsAction.text=Verwyder alle ikone RemoveConnectorAction.text=Verwyder verbinder RemoveEncryption.text=Verwyder wagwoord RemoveFormatAction.text=Verwyder formaat RemoveIcon_0_Action.text=Verwyder eerste ikoon RemoveIconAction.text=Verwyder laaste ikoon RemoveNoteAction.text=Verwyder nota rename=&Herbenoem repair_link=Herstel skakel replace=Vervang replace_shortcut_title=Vervang kortpad? ReportBugAction.text=Rapporteer 'n fout reset_to_default=Gebruik verstekwaarde ResetNodeLocationAction.text=Herstel nodusposisie ResetStyleAction.text=Herstel nodusstyl RevertAction.text=Herstel van plaaslike geskiedenis RevisionPluginAction.text=Verander hersienings agtergrondkleur save=&Stoor save_failed=Probeer om die kaart {0} te stoor, het misluk. save_unsaved=Stoor die volgende breinkaart? save_unsaved_styles=Stoor style? SaveAction.text=&Stoor kaart SaveAction_readonlyTitle=Probeer leesalleen-kaart stoor SaveAll.text=Stoor &alle kaarte SaveAll.tooltip=Stoor alle geopende kaarte SaveAsAction.text=Stoor kaart as\u2026 saved=Gestoor saving_canceled=Stoor gekanselleer scheme_evaluate=Evalueer! ScriptEditor.text=Redigeer skrip\u2026 ScriptEditorPanel.changed_cancel=Die skripte is verander. Wil jy regtig die veranderinge laat vaar? scripting=Skripte scripting_api_generator_legend=Legende scripting_api_generator_proxy=Gevolmagtigde scripting_api_generator_title=Skripsie API scripting_api_generator_utilities=Nutsmiddels scripting_api_generator_web=Webhulpbronne ScriptsRunToggleAction.ON_SELECTED_NODE.text=Voer skripte uit op alle gekose nodii select_file_export_to=Kies die l\u00EAer vir uitvoer select_folder_for_importing=Kies die vouer vir invoer select_icon=Kies `n Ikoon select_menu_item_dialog=Kies 'n kieslysitem select_menu_item_root_node=Kieslys select_template=Kies sjabloon SelectAllAction.text=Kies alle sigbare nodii SelectBranchAction.text=Kies sigbare vertakking SelectedPasteAction.text=Plak as\u2026 selection_method_by_click=Enkel-klik om te kies selection_method_delayed=Vertraagde outomatiese seleksie selection_method_direct=Wys om te kies SelectNoteAction.text=Nota Redigeerskakelaar SetAccelerator.dialogTitle=Sneltoets toekenning SetAcceleratorOnNextClickAction.text=Ken snelsleutel toe SetAlwaysUnfoldedNodeFlagsAction.text=Behou ongevoude nodii SetImageByFileChooserAction.text=Beeld volgens keuse of skakel\u2026 SetLinkAnchorAction.text=Stel skakelanker SetLinkByFileChooserAction.text=Voeg hiperskakel (kies)\u2026 SetLinkByTextFieldAction.text=Voeg by of verander hiperskakel (tipe)\u2026 SetNodeAliasAction.text=Stel nodusalias SetNodeLink.text=Stel nodus skakel\u2026 SetNoteWindowPosition.bottom.text=Onder SetNoteWindowPosition.left.text=Links SetNoteWindowPosition.right.text=Regs SetNoteWindowPosition.top.text=Bokant SetShortenerStateAction.text=Minimeer nodus sf_login_required=Source Forge aantekening vereis. Wil jy voortgaan? ShowAllAttributesAction.text=Vertoon alle kenmerke ShowAncestorsAction.text=Wys voorvaders ShowAttributeDialogAction.text=Eienskapbestuurder\u2026 ShowDescendantsAction.text=Vertoon afstammelinge ShowFilterToolbarAction.text=Filtreer nutsbalk ShowFirstSlideAction.text=Eerste skyfie ShowFirstSlideAndStartPresentationAction.text=Loop aanbieding van die begin af ShowFormatPanel.text=Gereedskapskerm ShowHideNoteAction.text=Wys notapaneel ShowLastSlideAction.text=Laaste skyfie ShowNextChildAction.text=Wys volgende kind ShowNextSlideAction.text=Volgende skyfie ShowNotesInMapAction.text=Wys notas op kaart ShowPreferencesAction.dialog=Voorkeure ShowPreferencesAction.text=Voorkeure\u2026 ShowPreviousSlideAction.text=Vorige skyfie ShowSelectedAttributesAction.text=Vertoon gekose eienskappe ShowSelectionAsRectangleAction.text=Kies met reghoek simplyhtml.aboutFrameTitle=Oorsig van hierdie toepassing simplyhtml.aboutLabel=Oorsig van SimplyHTML\u2026 simplyhtml.alignCenter=sentreer simplyhtml.alignLabel=Belyning: simplyhtml.alignLeft=links simplyhtml.alignRight=regs simplyhtml.allCellsRangeLabel=alle selle simplyhtml.allOccurrencesReplaced=Alle voorkomste is vervang simplyhtml.appendTableColLabel=Voeg kolom simplyhtml.appendTableRowLabel=Voeg ry simplyhtml.applyCellAttrLabel=Pas toe op simplyhtml.backgroundLabel=Agtergrond: simplyhtml.blackFontColorLabel=Swart simplyhtml.blueFontColorLabel=Blou simplyhtml.boldItalicName=Vet- en skuinsdruk simplyhtml.boldName=Vetdruk simplyhtml.borderColorLabel=Kleur: simplyhtml.borderWidthLabel=Breedte simplyhtml.bottomLabel=onder: simplyhtml.cancelBtnName=Kanselleer simplyhtml.cellBorderTabLabel=Grense simplyhtml.cellGenTabLabel=Algemeen simplyhtml.cellMarginTabLabel=Kantlyn simplyhtml.cellPanelTitle=Selformaat simplyhtml.clearFormatLabel=Verwyder formatering simplyhtml.clearFormatTip=Verwyder formatering simplyhtml.close=Sluit simplyhtml.closeBtnName=Sluit simplyhtml.colorLabel=Kleur simplyhtml.copyLabel=Kopieer simplyhtml.copyTip=kopieer simplyhtml.cTagNameHead1=Opskrif 1 simplyhtml.cTagNameHead2=Opskrif 2 simplyhtml.cTagNameHead3=Opskrif 3 simplyhtml.cTagNameHead4=Opskrif 4 simplyhtml.cTagNameHead5=Opskrif 5 simplyhtml.cTagNameHead6=Opskrif 6 simplyhtml.cTagNameLink=Skakel simplyhtml.cTagNameOL=Gesorteerde Lys simplyhtml.cTagNamePara=Paragraaf simplyhtml.cTagNameUL=Ongeordende Lys simplyhtml.cutLabel=Knip simplyhtml.cutTip=knip simplyhtml.decreaseFontSizeLabel=Kleiner simplyhtml.defaultDocName=Ongetiteld simplyhtml.deleteTableColLabel=Skrap kolom simplyhtml.deleteTableRowLabel=Skrap ry simplyhtml.docTitleQuery=Stel titel: simplyhtml.docTitleTitle=Redigeer dokument titel simplyhtml.editLabel=Redigeer simplyhtml.effectLabel=Effek simplyhtml.familyLabel=Familie simplyhtml.findNext=Soek volgende\u2026 simplyhtml.findReplaceDialogTitle=Soek en vervang simplyhtml.findReplaceLabel=Soek en vervang simplyhtml.findReplaceTip=Soek en vervang simplyhtml.fontBoldLabel=Vetdruk simplyhtml.fontBoldTip=vetdruk aan/af skakelaar simplyhtml.fontColorLabel=Tekskleur simplyhtml.fontColorTip=Tekskleur simplyhtml.fontDialogTitle=Formateer lettertipe simplyhtml.fontItalicLabel=Kursief simplyhtml.fontItalicTip=Kursief aan/af-skakelaar simplyhtml.fontLabel=Lettertipe\u2026 simplyhtml.fontTabLabel=Lettertipe simplyhtml.fontTip=Formateer lettertipe\u2026 simplyhtml.fontUnderlineLabel=Onderstreep simplyhtml.fontUnderlineTip=skakel onderstreep aan/af simplyhtml.foregroundLabel=Voorgrond: simplyhtml.formatLabel=Formateer simplyhtml.formatListLabel=Lys\u2026 simplyhtml.formatListTip=verander lysformaat simplyhtml.formatParaLabel=Paragraaf\u2026 simplyhtml.formatParaTip=Verander paragraafformaat simplyhtml.formatTableLabel=Tabel\u2026 simplyhtml.formatTableTip=Formateer tabel simplyhtml.greenFontColorLabel=Groen simplyhtml.helpLabel=Help simplyhtml.htmlTabTitle=HTML-kode besigtig simplyhtml.imageFileDesc=Beeldl\u00EAers simplyhtml.increaseFontSizeLabel=Groter simplyhtml.insertTableColLabel=Voeg kolom simplyhtml.insertTableLabel=Tabel\u2026 simplyhtml.insertTableMsg=Hoeveel kolomme? simplyhtml.insertTableRowLabel=Voeg ry in simplyhtml.insertTableTitle=voegTabel simplyhtml.italicName=skuinsdruk simplyhtml.layoutTabTitle=Uitleg besigtig simplyhtml.leftLabel=links: simplyhtml.listDialogTitle=Formaatlys simplyhtml.listIndentTitle=Inkeping: simplyhtml.listPosInside=binne simplyhtml.listPositionLabel=Posisie: simplyhtml.listPosOutside=buite simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeLabel=Tipe: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=geen simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=Buitenste simplyhtml.matchApproximately=Benaderd gepas simplyhtml.newStyleDefaultName=nuwe styl simplyhtml.nextTableCellLabel=Volgende sel simplyhtml.noLineLabel=geen simplyhtml.noMoreOccurrencesFound=geen (meer) ander voorkoms gevind nie simplyhtml.okBtnName=Regso simplyhtml.paddingLabel=Binneste simplyhtml.paraAlignCenterLabel=Belyn met middel simplyhtml.paraAlignCenterTip=Sentreer paragraaf simplyhtml.paraAlignLeftLabel=Links belynd simplyhtml.paraAlignLeftTip=Stel paragraaflinker-belyning simplyhtml.paraAlignRightLabel=Regs belynd simplyhtml.paraAlignRightTip=Stel paragraaf regsbelyning simplyhtml.paraStyleDialogTitle=Paragraafstyl simplyhtml.paraTabLabel=Paragraaf simplyhtml.pasteHTMLLabel=Plak HTML simplyhtml.pasteLabel=Plak simplyhtml.pastePlainTextLabel=Plak gewone teks simplyhtml.pasteTip=plak simplyhtml.plainName=eenvoudig simplyhtml.previewLabel=Voorskou simplyhtml.previewText=Voorskou teks simplyhtml.prevTableCellLabel=Vorige sel simplyhtml.printLabel=Druk\u2026 simplyhtml.redFontColorLabel=Rooi simplyhtml.redoLabel=Oordoen simplyhtml.redoTip=Oordoen simplyhtml.removeFontColorLabel=Verwyder kleur simplyhtml.replace=Vervang\u2026 simplyhtml.replaceAll=Alles simplyhtml.replaceDone=Gedoen simplyhtml.replaceNo=Nee simplyhtml.replaceThisQuery=vervang hierdie voorkoms van simplyhtml.replaceWith=Vervang met: simplyhtml.replaceYes=Ja simplyhtml.rightLabel=regs: simplyhtml.searchDown=Soek na onder simplyhtml.searchDown.tooltip=Soek van bo na onder. simplyhtml.searchFromStart=Soek vanaf die begin simplyhtml.searchUp=Soek opwaarts simplyhtml.searchUp.tooltip=Soek van onder na bo. simplyhtml.selectAllLabel=Kies alles simplyhtml.selectedFontColorLabel=Gekose Lettertipe Kleur simplyhtml.sizeLabel=Grootte simplyhtml.standardStyleName=standaard simplyhtml.strikeLabel=Deurhaal simplyhtml.styleLabel=Styl simplyhtml.styleNameInputText=Naam van nuwe styl? simplyhtml.styleNameInputTitle=Stoor styl simplyhtml.tableBgColLabel=Agtergrondkleur: simplyhtml.tableDialogTitle=Formateertabel simplyhtml.tableLabel=Tabel simplyhtml.tablePanelTitle=Tabelformaat simplyhtml.tableWidthLabel=Breedte: simplyhtml.textIndentLabel=Inkeping: simplyhtml.textToFind=Teks om te soek: simplyhtml.thisCellRangeLabel=hierdie sel simplyhtml.thisColRangeLabel=hierdie kolom simplyhtml.thisRowRangeLabel=hierdie ry simplyhtml.toggleBulletsLabel=Kolpuntlys aan/af simplyhtml.toggleBulletsTip=Kolpuntlys aan/af simplyhtml.toggleNumbersLabel=Genommerde lys aan/af simplyhtml.toggleNumbersTip=genommerde lys aan/af simplyhtml.topLabel=bo: simplyhtml.uLineLabel=Onderstreep simplyhtml.unableToOpenFileError=L\u00EAer kan nie oopgemaak word nie simplyhtml.unableToRedoError=Kan nie oordoen nie: simplyhtml.unableToUndoError=Kon nie ongedaan maak nie: simplyhtml.undoLabel=Ongedaan maak simplyhtml.undoTip=ongedaan maak simplyhtml.valignBaseline=basislyn simplyhtml.valignBottom=onderkant simplyhtml.valignLabel=Vert. belyning: simplyhtml.valignMiddle=middel simplyhtml.valignTop=bokant simplyhtml.wholeWordsOnly=Heel woorde alleenlik simplyhtml.wholeWordsOnly.tooltip=Beperk vergelykings tot die heelwoorde. slide.add=Voeg by slide.at_center.tooltip=in die middel slide.content=Skyfie-inhoud slide.descendants=Vertoon afstammelinge slide.edge=op kantlyn slide.filter=Filter slide.first=Eerste slide.last=Laaste slide.next=Volgende slide.nofilter=Geen filter slide.on_the_left.tooltip=aan die linkerkant slide.on_the_right.tooltip=aan die regterkant slide.placenode=Plaas gekose nodus slide.placenode.tooltip=wanneer die skyfie aangebied word slide.present=Aanbied slide.presentation=Aanbieding slide.presentations=Aanbiedings slide.previous=Vorige slide.remove=Verwyder slide.select=Kies slide.select.tooltip=Kies nodii op kaart vir skyfie slide.set=Instel slide.setfilter=Stel filter in slide.setfoldingstate=Stel vouing staat slide.setzoom=Stel Zoem in slide.showancestors=Wys voorouers slide.showonlyselected=Wys net gekose nodii slide.slides=Skyfies slide.stop=Stop SortNodes.text=Sorteer kinders SortNodes.tooltip=Sorteer alle kinders van 'n nodus alfabeties. split=Verdeel SplitConditionAction.text=Verdeel SplitNode.text=Verdeel nodus SplitNode.tooltip=Nodus is verdeel SplitToWordsAction.text=Verdeel met {0} woorde per re\u00EBl STANDARD_FORMAT=Standaard StartPresentationAction.text=Loop aanbieding StartPresentationOrShowNextSlideAction.text=Loop aanbieding/volgende skyfie stop_processing=Stop StopPresentationAction.text=Stop aanbieding StrikeThroughAction.text=Deurhaal style=Styl style_already_exists=Styl bestaan reeds. styledialog.cancel.text=Kanselleer styledialog.ok.text=Goed styles=St&yle styles.AutomaticLayout=Pas vlakstyle toe styles.connection=Verbinding styles.date=Datum styles.definition=Definisie styles.description=Beskrywing styles.floating_node=Swewende nodus styles.idea=Idee styles.important=Belangrik styles.key=Sleutel styles.list=Lys styles.needs_action=Benodig aksie styles.note=Nota styles.ok=Goed styles.pending=Hangende styles.predefined=Vooraf gedefinieerde style styles.question=Vraag styles.quotation=Aanhaling styles.root_node=Style styles.subsubtopic=Subsubonderwerp styles.subtopic=Subonderwerp styles.topic=Onderwerp styles.user-defined=Gebruikergedefinieerde style styles.website=Webwerf styles_menu=Beskikbare style summary_nodes=Opsommende nodii svg=SVG template_dir=Standaard patrone TextAlignAction.CENTER.text=Gesentreerde teks TextAlignAction.DEFAULT.text=Verstekwaarde TextAlignAction.LEFT.text=Links gespasi\u00EBerde teks TextAlignAction.RIGHT.text=Regs gespasi\u00EBerde teks textalignment=Teks spasi\u00EBring TextChangeHotKeyAction.text=Stel teks verandering snelsleutel TimeManagementAction.text=Bestuur tyd\u2026 TimeManagementAction.tooltip=Wys die kalendermodule deur Kai Toedter. TimePeriodUnits.days=dae TimePeriodUnits.hours=ure TimePeriodUnits.minutes=minute TimePeriodUnits.ms=millisekondes TimePeriodUnits.seconds=sekondes TimePeriodUnits.weeks=weke ToggleChildrenFoldedAction.text=(Ont)vou kinders ToggleDetailsAction.text=Versteek details ToggleFBarAction.text=F-Balk ToggleFoldedAction.text=(Ont)vou ToggleFullScreenAction.text=Volskermmodus ToggleLeftToolbarAction.text=Ikone nutsbalk ToggleMenubarAction.text=Spyskaartbalk ToggleScrollbarsAction.text=Rolbalk ToggleStatusAction.text=Wys statuslyn ToggleToolbarAction.text=Nutsbalk TranslatedElement.BORDER=Grens teks TranslatedElement.TEXT=Teks TranslatedElement.TOOLTIP=Nutswenk TutorialAction.text=Oefening uiTextChanger.originalTextIsNotDefined=Oorspronklike teks is nie gedefinieer nie uiTextChanger.replaceText=Vervang UI teks undefined_error='n Onverwagse fout het voorgekom. Probeer asseblief die fout aanmeld. underline=Onderstreep UnderlineAction.text=Onderstreep underlined=Onderstreep UndoAction.text=Ongedaan maak UndoFilterAction.text=Filter aksie ongedaan maak unfold=Ontvou UnfoldAllAction.text=Alles ontvou UnfoldOneLevelAction.text=Ontvou een vlak unparsedLatexPatternFormat=Onverwerkte LaTeX up=&Op UpConditionAction.text=Op update_failed=Bywerking het misluk met boodskap {0} UpdateCheckAction.text=Kontroleer vir bywerkings updatecheckdialog=Venster vir bywerkingskontrolering updater.component=Komponent updater.goToDownload=Gaan om af te laai updater.version.installed=Ge\u00EFnstalleerde weergawe updater.version.latest=Nuutste weergawe updater.version.noUpdateUrl=Geen bywerking URL of tuisblad vir hierdie byvoegsel. updater.version.unknown=onbekende updater.version.unreachable=Onbereikbare bron: updater.viewChangelog=Kyk na veranderingslys url_error=Hierdie URL is misvormd! url_open_error=Kon nie URL {0} oopmaak nie. UsePlainTextAction.text=Gebruik gewone teks user_config_folder=Gebruikerskonfigurasievouer: {0} user_defined_filters=Gebruiker-gedefinieerde filters user_defined_scale=Gebr&uiker gedefinieerde skaal user_defined_zoom=Gebruikergedefinieerd user_defined_zoom_status_bar=Verander die Zoem na die gebruiker gedefinieerde Zoemwaarde van {0}%. user_icon=Gebruiker ikoon "{0}" user_template_dir=Gebruikerpatrone user_zoom=Druk zoemfaktor (0.0 - 2.0): userScripts=Skripte value_format=Waarde formaat version_up_to_date=Jy gebruik alreeds die nuutste programweergawe view=Besigtig ViewLayoutTypeAction.OUTLINE.text=Oorsig-aansig web_resources=Webhulpbronne WebDocuAction.text=Web Dokumentasie WhatsNewAction.text=Wat is nuut in Freeplane 1.5.x width=Breedte wrong_regexp=Verkeerd reguliere uitdrukking "{0}", fout {1} xslt_export.html=HTML-dokument xslt_export.latex=Latex dokument xslt_export.latexbook=Latex boek xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=Microsoft Excel 2003 XML xslt_export.ms_project=Microsoft Project 2003 XML xslt_export.ms_word=Microsoft Word 2003 XML xslt_export.text=Gewone teks xslt_export_not_possible=Freeplane XSLT eksport nie moontlik nie yes=Ja zoom=Zoem ZoomInAction.text=Zoem in ZoomOutAction.text=Zoem uit freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_ar.properties0100644 0000000 0000000 00000104323 13432225762 027624 0ustar000000000 0000000 AboutAction.text=\u062D\u0648\u0644 accessories/plugins/EncryptNode.properties_7=\u0625\u0644\u063A\u0627\u0621 accessories/plugins/ExportWithXSLT.tooltip=This is an uniform export method using XSLT scripts. antialias_all=Antialias All antialias_edges=Antialias Edges antialias_none=Antialias None attributes_deselect_all=\u0628\u062F\u0648\u0646 AutomaticLayoutAction.tooltip=Fixes the layout of the map.
The first level is black, the second blue, etc. BackAction.text=\u062E\u0644\u0641 background=\u0627\u0644\u062E\u0644\u0641\u064A\u0629 BlinkingNodeHookAction.tooltip=This makes the node blinking. But be careful. Do not associate it to many nodes, and not with other automatic formattings to the same node BoldAction.text=\u0639\u0631\u064A\u0636 boldify_branch=Boldify branch=\u0641\u0631\u0639 cancel=\u0625\u0644\u063A\u0627\u0621 CancelAction.text=\u0625\u0644\u063A\u0627\u0621 cannot_join_nodes_with_children=\u0644\u0627 \u064A\u0645\u0643\u0646 \u0631\u0628\u0637 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0645\u0639 \u0627\u0644\u0627\u0628\u0646\u0627\u0621 CenterAction.text=\u0648\u0633\u0637 ChangeConnectorArrowsAction.backward.text=\u062E\u0644\u0641 ChangeConnectorArrowsAction.forward.text=\u0627\u0645\u0627\u0645 CloseAction.text=\u0625\u063A\u0644\u0627\u0642 CloudAction.text=\u0633\u062D\u0627\u0628\u0629 CloudColorAction.text=\u0644\u0648\u0646 \u0627\u0644\u0633\u062D\u0627\u0628\u0629 ColorProperty.ResetColor=\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0644\u0648\u0646 combined=\u0645\u0648\u062D\u062F CopyAction.text=\u0646\u0633\u062E CopySingleAction.text=\u0646\u0633\u062E \u0641\u0631\u062F\u064A CutAction.text=\u0642\u0635 decrease_branch_font_size=\u062E\u0637 \u0635\u063A\u064A\u0631 DecreaseNodeFontAction.text=\u062E\u0637 \u0635\u063A\u064A\u0631 DeleteAction.text=\u062D\u0630\u0641 \u0639\u0646\u0635\u0631 DocumentationAction.text=\u0627\u0644\u0648\u062B\u0627\u0626\u0642 edge=\u0627\u0644\u062D\u062F\u0648\u062F EdgeColorAction.text=\u0644\u0648\u0646 \u0627\u0644\u062D\u062F\u0648\u062F EdgeStyleAction.bezier.text=\u0645\u0646\u062D\u0646\u0649 EdgeStyleAction.linear.text=\u062E\u0637\u064A EdgeStyleAction.sharp_bezier.text=\u0645\u0646\u062D\u0646\u0649 \u062D\u0627\u062F EdgeStyleAction.sharp_linear.text=\u062E\u0637\u064A \u062D\u0627\u062F EdgeWidthAction_width_parent.text=\u0627\u0644\u0627\u0628 EdgeWidthAction_width_thin.text=\u0631\u0642\u064A\u0642 edit=\u062A\u062D\u0631\u064A\u0631 edit_link_manually=\u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u062A\u0634\u0639\u0628\u064A \u064A\u062F\u0648\u064A\u0627\u064B EditAction.text=\u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0639\u0646\u0635\u0631 EditLongAction.text=\u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0637\u0648\u064A\u0644\u0629 EncryptedMap.tooltip=\u0625\u0646\u0634\u0627\u0621 \u062E\u0631\u064A\u0637\u0629 \u062C\u062F\u064A\u062F\u0629 \u0645\u0634\u0641\u0631\u0629 enter_base_url=\u0633\u064A\u062A\u0645 \u0644\u0635\u0642 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0646\u0633\u0628\u064A. \u0627\u062F\u062E\u0644 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0627\u0633\u0627\u0633\u064A enter_confirms=\u062A\u0623\u0643\u064A\u062F \u0627\u0644\u0625\u062F\u062E\u0627\u0644 ExportBranchToHTMLAction.text=\u0641\u0631\u0639 \u0628\u062A\u0646\u0633\u064A\u0642 HTML ExportToHTMLAction.text=\u0628\u062A\u0646\u0633\u064A\u0642 HTML ExportToOoWriter.text=\u0628\u062A\u0646\u0633\u064A\u0642 \u0648\u062B\u064A\u0642\u0629 Open Office ExportToOoWriter.tooltip=Unfolded nodes form the structure, folded nodes the content of the document. extension_menu=\u0627\u0644\u0646\u0645\u0637 \u0627\u0644\u0645\u0627\u062F\u064A f_button_unassigned=[translate me] FaqOpenURLAction.text=\u0627\u0644\u0627\u0633\u0626\u0644\u0629 \u0627\u0644\u0634\u0627\u0626\u0639\u0629 file=\u0645\u0644\u0641 file_not_found=File {0} not found FindAction.text=\u0628\u062D\u062B fit_map_to_page=\u0645\u0644\u0621 \u0627\u0644\u0635\u0641\u062D\u0629 FitToPage.tooltip=\u0636\u0628\u0637 \u0627\u0644\u062A\u0643\u0628\u064A\u0631 \u062D\u062A\u0649 \u062A\u0645\u0644\u0621 \u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0627\u0644\u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u0645\u062D\u0644\u064A\u0629 fold=\u0637\u064A FoldAllAction.text=\u0637\u064A \u0627\u0644\u062C\u0645\u064A\u0639 FoldAllAction.tooltip=Folds the selected nodes and all their children. FoldOneLevelAction.tooltip=Folds the selected nodes by one level. FollowLinkAction.text=\u0641\u062A\u062D \u0631\u0627\u0628\u0637 font=\u062E\u0637 FontSizeAction.text=\u062D\u062C\u0645 \u0627\u0644\u062E\u0637 format_menu_edge_styles=\u0646\u0645\u0637 \u0627\u0644\u062D\u062F\u0648\u062F format_menu_edge_widths=\u0639\u0631\u0636 \u0627\u0644\u062D\u062F\u0648\u062F FormatCopy.tooltip=Copies the format of a node. FormatPaste.tooltip=Pastes the format of a node. ForwardAction.text=\u0627\u0645\u0627\u0645 freeplane_reverted=Freeplane_Reverted_ FreeplaneHelpStarter.tooltip=Freeplane Extended Help GrabKeyDialog.common.cancel=\u0625\u0644\u063A\u0627\u0621 GrabKeyDialog.grab-key.assigned-to=\u062A\u0639\u064A\u064A\u0646 \u0625\u0644\u0649 GrabKeyDialog.grab-key.assigned-to.none=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u062A\u0639\u064A\u064A\u0646 GrabKeyDialog.grab-key.clear=\u0645\u0633\u062D GrabKeyDialog.grab-key.remove=\u062D\u0630\u0641 GrabKeyDialog.grab-key.remove-ask=\u0647\u0644 \u062A\u0631\u064A\u062F \u062D\u0630\u0641 \u0627\u0644\u0627\u062E\u062A\u0635\u0627\u0631\u061F GrabKeyDialog.grab-key.title=\u0625\u062F\u062E\u0627\u0644 \u0645\u0641\u062A\u0627\u062D \u062C\u062F\u064A\u062F help=\u0645\u0633\u0627\u0639\u062F\u0629 HierarchicalIconsAction.text=\u0639\u0631\u0636 \u0627\u0644\u0631\u0645\u0648\u0632 \u0628\u0634\u0643\u0644 \u0647\u0631\u0645\u064A HierarchicalIconsAction.tooltip=If one of the (grand)children of me has an icon, I will show this icon in little format, too. html_export_based_on_headings=\u062A\u0635\u062F\u064A\u0631 HTML - \u0628\u0646\u0627\u0621 \u0639\u0644\u0649 \u0627\u0644\u0639\u0646\u0627\u0648\u064A\u0646 html_export_fold_all=\u062A\u0635\u062F\u064A\u0631 HTML - \u0637\u064A \u0627\u0644\u062C\u0645\u064A\u0639 html_export_fold_currently_folded=\u062A\u0635\u062F\u064A\u0631 HTML - \u0637\u064A \u0627\u0644\u0645\u062C\u0644\u062F \u0627\u0644\u062D\u0627\u0644\u064A html_export_no_folding=\u062A\u0635\u062F\u064A\u0631 HTML - \u0628\u062F\u0648\u0646 \u0637\u064A icon_attach=\u0627\u0646\u0638\u0631 \u0647\u0646\u0627 icon_back=\u062E\u0644\u0641 icon_bee=Freeplane[translate me] icon_bell=\u062A\u0630\u0643\u0631 icon_bookmark=\u0645\u0645\u062A\u0627\u0632 icon_button_cancel=\u063A\u064A\u0631 \u0645\u0648\u0627\u0641\u0642 icon_calendar=\u0627\u0644\u062A\u0627\u0631\u064A\u062E icon_clanbomber=\u062E\u0637\u0631 icon_desktop_new=\u0644\u0627 \u062A\u0646\u0633\u0649 icon_female1=Female1[translate me] icon_female2=Female2[translate me] icon_flag=\u0639\u0644\u0645 icon_forward=\u0627\u0645\u0627\u0645 icon_freemind_butterfly=FreeMind[translate me] icon_gohome=\u0628\u064A\u062A icon_help=\u0633\u0624\u0627\u0644 icon_kaddressbook=\u0647\u0627\u062A\u0641 icon_knotify=\u0645\u0648\u0633\u064A\u0642\u0649 icon_ksmiletris=\u0623\u0646\u0627 \u0633\u0639\u064A\u062F icon_licq=\u0644\u0637\u064A\u0641 icon_Mail=\u0628\u0631\u064A\u062F icon_male1=Male1[translate me] icon_male2=Male2[translate me] icon_menu=\u0631\u0645\u0648\u0632 icon_messagebox_warning=\u0645\u0647\u0645 icon_password=\u0645\u0642\u062A\u0627\u062D icon_pencil=\u0644\u0644\u062A\u062F\u0642\u064A\u0642 icon_penguin=Linux icon_stop=\u0648\u0642\u0648\u0641 icon_wizard=\u0633\u062D\u0631\u064A icon_xmag=\u0646\u0642\u0627\u0634 icon_yes=\u0645\u0647\u0645 IconSelectionPlugin.tooltip=Here you can select an icon using a subwindow. ImportBranchAction.text=\u0641\u0631\u0639... ImportExplorerFavoritesAction.text=\u062E\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u0633\u062A\u0643\u0634\u0641 ImportFolderStructureAction.text=\u0628\u0646\u064A\u0629 \u0627\u0644\u0645\u062C\u0644\u062F... ImportLinkedBranchAction.text=\u0641\u0631\u0639 \u0645\u0631\u062A\u0628\u0637 ImportMindmanagerFiles.text=MindManager X5 Map... increase_branch_font_size=\u062E\u0637 \u0643\u0628\u064A\u0631 IncreaseNodeFontAction.text=\u062E\u0637 \u0643\u0628\u064A\u0631 ItalicAction.text=\u0645\u0627\u0626\u0644 italicise_branch=\u0645\u0627\u0626\u0644 locking_failed_by_open=Locking of the map {0} failed. Opening as read-only. locking_failed_by_save_as=Locking of the map {0} failed. Action Save As aborted. locking_old_lock_removed=The map {0} was locked by the user {1}. The lock has been removed because it is old. long_node_changed_cancel=\u0644\u0642\u062F \u0642\u0645\u062A \u0628\u062A\u063A\u064A\u064A\u0631 \u0627\u0644\u0639\u0646\u0635\u0631. \u0647\u0644 \u062A\u0631\u064A\u062F \u062A\u062C\u0627\u0647\u0644 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A \u061F lots_of_links_warning=\u0633\u064A\u062A\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0639\u062F\u064A\u062F \u0645\u0646 \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0644\u0646\u0641\u0633 \u0627\u0644\u0639\u0646\u0635\u0631. \u0647\u0644 \u062A\u0631\u064A\u062F \u0627\u0644\u0642\u064A\u0627\u0645 \u0628\u0630\u0644\u0643\u061F map_already_exists=\u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0645\u0648\u062C\u0648\u062F\u0629 \u0645\u0633\u0628\u0642\u0627\u064B. \u0647\u0644 \u062A\u0631\u064A\u062F \u0625\u0633\u062A\u0628\u062F\u0627\u0644\u0647\u0627\u061F map_corrupted=\u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0645\u0639\u0637\u0648\u0628\u0629. \u0647\u0644 \u062A\u0631\u064A\u062F \u0631\u0624\u064A\u0629 \u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644\u061F map_locked_by_open=The map {0} is already being edited by the user {1}. Opening as read-only. map_locked_by_save_as=The map {0} is being edited by the user {1}. Action Save As aborted. mindmap=\u062E\u0631\u064A\u0637\u0629 mindmaps=\u062E\u0631\u0627\u0626\u0637 mindmaps_desc=Maps (*.mm) mode_na=\u0646\u0645\u0637 \u063A\u064A\u0631 \u0645\u0648\u062C\u0648\u062F mode_title=Freeplane - {0} Mode modes=\u0623\u0646\u0645\u0627\u0637 MoveToRootAction.text=\u0627\u0644\u0627\u0646\u062A\u0642\u0627\u0644 \u0625\u0644\u0649 \u0642\u0645\u0647 \u0627\u0644\u0634\u062C\u0631\u0629 NavigationNextMapAction.text=\u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0627\u0644\u062A\u0627\u0644\u064A\u0629 NavigationPreviousMapAction.text=\u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629 new_mindmap=\u062E\u0631\u064A\u0637\u0629 \u062C\u062F\u064A\u062F\u0629 new_node=\u0639\u0646\u0635\u0631 \u062C\u062F\u064A\u062F NewChildAction.text=\u0627\u0628\u0646 \u062C\u062F\u064A\u062F NewMapAction.text=\u062C\u062F\u064A\u062F NewParentNode.tooltip=All selected are sent to a new parent. NewPreviousSiblingAction.text=\u0627\u062E \u062C\u062F\u064A\u062F \u0628\u0639\u062F\u0647 NewSiblingAction.text=\u0627\u062E \u062C\u062F\u064A\u062F \u0642\u0628\u0644\u0647 no=\u0644\u0627 no_found_from=No "{0}" found from "{1}". no_more_found_from=No more "{0}" found from "{1}". no_previous_find=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0641\u064A \u0627\u0644\u0633\u0627\u0628\u0642 node=\u0639\u0646\u0635\u0631 node_changed_discard_changes=\u0644\u0642\u062F \u0642\u0645\u062A \u0628\u062A\u063A\u064A\u064A\u0631 \u0627\u0644\u0639\u0646\u0635\u0631. \u0647\u0644 \u062A\u0631\u064A\u062F \u062A\u062C\u0627\u0647\u0644 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A \u061F NodeBackgroundColorAction.text=\u0644\u0648\u0646 \u062E\u0644\u0641\u064A\u0629 \u0627\u0644\u0639\u0646\u0635\u0631 NodeColorAction.text=\u0644\u0648\u0646 \u0627\u0644\u0639\u0646\u0635\u0631 NodeColorBlendAction.text=\u0644\u0648\u0646 \u0634\u0641\u0627\u0641 NodeDownAction.text=\u0627\u0644\u0639\u0646\u0635\u0631 \u0644\u0627\u0633\u0641\u0644 NodeListAction.text=\u0639\u0631\u0636 \u0645\u062D\u0641\u0648\u0638\u0627\u062A \u0627\u0644\u062E\u0631\u064A\u0637\u0629 NodeListAction.tooltip=\u0639\u0631\u0636 \u062C\u0645\u064A\u0639 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0645\u0639 \u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0625\u0646\u0634\u0627\u0621 \u0648 \u0627\u0644\u062A\u0639\u062F\u064A\u0644 NodeShapeAction.bubble.text=\u0641\u0642\u0627\u0639\u0629 NodeShapeAction.fork.text=Fork NodeUpAction.text=\u0627\u0644\u0639\u0646\u0635\u0631 \u0644\u0627\u0639\u0644\u0649 nonboldify_branch=Unboldify nonitalicise_branch=Unitalicise normal=\u0639\u0627\u062F\u064A not_saved_for_link_error=\u064A\u062C\u0628 \u062D\u0641\u0638 \u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0642\u0628\u0644 \u062A\u0639\u064A\u064A\u0646 \u0631\u0627\u0628\u0637 ok=\u0645\u0648\u0627\u0641\u0642 OKAction.text=\u0645\u0648\u0627\u0641\u0642 OpenAction.text=...\u0641\u062A\u062D option_changes_may_require_restart=\u0642\u0645 \u0628\u0625\u0639\u0627\u062F\u0629 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062C \u0644\u062A\u0641\u0639\u064A\u0644 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A. OptionPanel.absolute=\u0645\u0637\u0644\u0642 OptionPanel.antialias=Antialias OptionPanel.antialias.tooltip=Determines the quality of the map. More antialias needs more time. OptionPanel.antialias_all=Antialias All OptionPanel.antialias_edges=Antialias Edges OptionPanel.antialias_none=No Antialias OptionPanel.Appearance=\u0627\u0644\u0645\u0638\u0647\u0631 OptionPanel.as_parent=\u0643\u0623\u0628 OptionPanel.automatic=\u062A\u0644\u0642\u0627\u0626\u064A OptionPanel.Behaviour=\u0627\u0644\u0633\u0644\u0648\u0643 OptionPanel.bezier=\u0645\u0646\u062D\u0646\u0649 OptionPanel.bubble=\u0641\u0642\u0627\u0639\u0629 OptionPanel.Cancel=\u0625\u0644\u063A\u0627\u0621 OptionPanel.combined=\u0645\u0648\u062D\u062F OptionPanel.cs=Cs OptionPanel.da=Dk OptionPanel.de=De OptionPanel.default=\u0625\u0641\u062A\u0631\u0627\u0636\u064A OptionPanel.default_browser_command_mac=\u0623\u0645\u0631 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u0627\u0644\u0625\u0641\u062A\u0631\u0627\u0636\u064A \u0641\u064A Mac OptionPanel.default_browser_command_mac.tooltip= and MAC: (thanks to Nick!) OptionPanel.default_browser_command_other_os=\u0623\u0645\u0631 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u0627\u0644\u0625\u0641\u062A\u0631\u0627\u0636\u064A \u0641\u064A \u0623\u0646\u0638\u0645\u0629 \u0623\u062E\u0631\u0649 OptionPanel.default_browser_command_other_os.tooltip= This is typically Linux: OptionPanel.default_browser_command_windows_9x=\u0623\u0645\u0631 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u0627\u0644\u0625\u0641\u062A\u0631\u0627\u0636\u064A \u0641\u064A Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=For Windows (the "" signs are necessary due to links, that have "=" in their URL). OptionPanel.default_browser_command_windows_nt=\u0623\u0645\u0631 \u062A\u0634\u063A\u064A\u0644 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u0627\u0644\u0625\u0641\u062A\u0631\u0627\u0636\u064A \u0641\u064A Windows Nt OptionPanel.default_browser_command_windows_nt.tooltip=For Windows (the "" signs are necessary due to links, that have "=" in their URL). OptionPanel.Defaults=\u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0627\u062A OptionPanel.delete_automatic_saves_at_exit=\u062D\u0630\u0641 \u0627\u0644\u0645\u062D\u0641\u0648\u0638\u0627\u062A \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A\u0629 \u0639\u0646\u062F \u0627\u0644\u062E\u0631\u0648\u062C OptionPanel.delete_automatic_saves_at_exit.tooltip= If the files should be deleted automatically on a normal shutdown of Freeplane set the following variable to true OptionPanel.disable_cursor_move_paper.tooltip=Don't display 'move' cursor during paper dragging OptionPanel.el__enter_confirms_by_default=\u0625\u062F\u062E\u0627\u0644 \u0627\u0644\u062A\u0623\u0643\u064A\u062F \u0628\u0634\u0643\u0644 \u0625\u0641\u062A\u0631\u0627\u0636\u064A OptionPanel.el__max_default_window_height=\u0627\u0644\u0642\u064A\u0645\u0629 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 \u0644\u0627\u0642\u0635\u0649 \u0627\u0631\u062A\u0641\u0627\u0639 \u0644\u0644\u0646\u0627\u0641\u0630\u0629 OptionPanel.el__max_default_window_width=\u0627\u0644\u0642\u064A\u0645\u0629 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 \u0644\u0627\u0642\u0635\u0649 \u0639\u0631\u0636 \u0644\u0644\u0646\u0627\u0641\u0630\u0629 OptionPanel.el__min_default_window_height=\u0627\u0644\u0642\u064A\u0645\u0629 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 \u0644\u0627\u0642\u0644 \u0627\u0631\u062A\u0641\u0627\u0639 \u0644\u0644\u0646\u0627\u0641\u0630\u0629 OptionPanel.el__min_default_window_width=\u0627\u0644\u0642\u064A\u0645\u0629 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 \u0644\u0627\u0642\u0644 \u0639\u0631\u0636 \u0644\u0644\u0646\u0627\u0641\u0630\u0629 OptionPanel.el__position_window_below_node=\u0648\u0636\u0639 \u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u062A\u062D\u062A \u0627\u0644\u0639\u0646\u0635\u0631 OptionPanel.en=En OptionPanel.Environment=\u0627\u0644\u0628\u064A\u0626\u0629 OptionPanel.es=Es OptionPanel.experimental_file_locking_on=\u0625\u0642\u0641\u0627\u0644 \u0645\u0644\u0641 \u0627\u0644\u062A\u062C\u0627\u0631\u0628 OptionPanel.experimental_file_locking_on.tooltip= Experimental feature OptionPanel.export_icons_in_html=\u062A\u0635\u062F\u064A\u0631 \u0627\u0644\u0631\u0645\u0648\u0632 \u0628\u062A\u0646\u0633\u064A\u0642 HTML OptionPanel.export_icons_in_html.tooltip= Tell if HTML exported from Freeplane should contain icons. The trouble with icons is that quite often the links to icons will not be found in the exported HTML. OptionPanel.Files=\u0627\u0644\u0645\u0644\u0641\u0627\u062A OptionPanel.first=\u0627\u0644\u0627\u0648\u0644 OptionPanel.foldingsymbolwidth=Folding Symbol Width OptionPanel.foldingsymbolwidth.tooltip=Width of the folding marking circle OptionPanel.fork=Fork OptionPanel.fr=Fr OptionPanel.gtk=Gtk OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=\u0628\u0646\u0627\u0621 \u0639\u0644\u0649 \u0627\u0644\u0639\u0646\u0627\u0648\u064A\u0646 OptionPanel.html_export_fold_all=\u0637\u064A \u0627\u0644\u062C\u0645\u064A\u0639 OptionPanel.html_export_fold_currently_folded=\u0637\u064A \u0627\u0644\u0645\u062C\u0644\u062F \u0627\u0644\u062D\u0627\u0644\u064A OptionPanel.html_export_folding=Html Export Folding OptionPanel.html_export_no_folding=\u0628\u062F\u0648\u0646 \u0637\u064A OptionPanel.hu=Hu OptionPanel.it=It OptionPanel.ja=Ja OptionPanel.Keystrokes=\u0627\u062E\u062A\u0635\u0627\u0631\u0627\u062A \u0627\u0644\u0645\u0641\u0627\u062A\u064A\u062D OptionPanel.ko=Kr OptionPanel.language=\u0627\u0644\u0644\u063A\u0629 OptionPanel.language.tooltip=This is the language that should be used in the program. 'automatic' tries to load the current user's language. OptionPanel.last=\u0627\u0644\u0623\u062E\u064A\u0631 OptionPanel.last_opened_list_length=\u0639\u062F\u062F \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0641\u064A \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0627\u0644\u0623\u062E\u064A\u0631\u0629 OptionPanel.linear=\u062E\u0637\u064A OptionPanel.links=\u0631\u0648\u0627\u0628\u0637 OptionPanel.links.tooltip=Set Links either relative or absolute OptionPanel.lookandfeel=\u0627\u0644\u0645\u0638\u0647\u0631 OptionPanel.lookandfeel.tooltip=The Look&Feel to use. 'metal','windows','motif', 'gtk' are supported, 'mac' is available only on MacOS. default means, that the default look and feel is used. If you want to put your own L&F, please, enter the class name here and assure that the corresponding jar file(s) are loaded. If there are problems with the look and feel, then choose 'nothing' here. It work for applets OptionPanel.lt=Lt OptionPanel.max_node_width=\u0623\u0642\u0635\u0649 \u0639\u0631\u0636 \u0644\u0644\u0639\u0646\u0635\u0631 OptionPanel.max_node_width.tooltip=The default maximal node width in pixels OptionPanel.metal=\u0645\u0639\u062F\u0646\u064A OptionPanel.motif=Motif OptionPanel.nb=Nb OptionPanel.nl=Nl OptionPanel.nothing=\u0628\u062F\u0648\u0646 OptionPanel.number_of_different_files_for_automatic_save=\u0639\u062F\u062F \u0627\u0644\u0645\u0644\u0641\u0627\u062A \u0627\u0644\u0645\u062E\u062A\u0644\u0641\u0629 \u0644\u0644\u062D\u0641\u0638 \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A OptionPanel.number_of_different_files_for_automatic_save.tooltip= number n of different files to store the maps into. The first automatic save is done in the first file, and so on up to the n+1-save which is again stored in the first file (cyclic) OptionPanel.OK=\u062D\u0641\u0638 OptionPanel.pl=Pl OptionPanel.placenewbranches=\u0648\u0636\u0639 \u0641\u0631\u0648\u0639 \u062C\u062F\u064A\u062F\u0629 OptionPanel.placenewbranches.tooltip=Where to place new branches. Valid values are 'first' and 'last' OptionPanel.pt_BR=Pt BR OptionPanel.pt_PT=Pt PT OptionPanel.relative=\u0646\u0633\u0628\u064A OptionPanel.ru=Ru OptionPanel.selection_method=\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631 OptionPanel.selection_method.tooltip= with the following switch you can enable/disable the delayed selection scheme. Auto options. Do not modify these as they will be saved to auto.properties anyway. OptionPanel.selection_method_by_click=\u0639\u0646\u062F \u0627\u0644\u0646\u0642\u0631 OptionPanel.selection_method_delayed=\u0627\u0644\u062A\u0623\u062E\u064A\u0631 OptionPanel.selection_method_direct=\u0645\u0628\u0627\u0634\u0631 OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u0627\u0644\u0627\u0646\u0645\u0627\u0637 OptionPanel.separator.anti_alias=Antialias OptionPanel.separator.automatic_save=\u062D\u0641\u0638 \u062A\u0644\u0642\u0627\u0626\u064A OptionPanel.separator.behaviour=\u0627\u0644\u0633\u0644\u0648\u0643 OptionPanel.separator.browser=\u0627\u0644\u0645\u0633\u062A\u0639\u0631\u0636 OptionPanel.separator.commands_for_the_program=\u0627\u0644\u0627\u0648\u0627\u0645\u0631 \u0644\u0644\u0628\u0631\u0646\u0627\u0645\u062C OptionPanel.separator.default_colors=\u0627\u0644\u0627\u0644\u0648\u0627\u0646 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 OptionPanel.separator.default_fonts=\u0627\u0644\u062E\u0637\u0648\u0637 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 OptionPanel.separator.default_styles=\u0627\u0644\u0627\u0646\u0645\u0627\u0637 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629 OptionPanel.separator.edit_long_node_window=\u0646\u0627\u0641\u0630\u0629 \u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0637\u0648\u064A\u0644\u0629 OptionPanel.separator.files=\u0627\u0644\u0645\u0644\u0641\u0627\u062A OptionPanel.separator.html_export=\u062A\u0635\u062F\u064A\u0631 HTML OptionPanel.separator.hyperlink_types=\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0627\u0644\u062A\u0634\u0639\u0628\u064A\u0629 OptionPanel.separator.icon_properties=\u0627\u0644\u0631\u0645\u0648\u0632 OptionPanel.separator.initial_map_size=\u062D\u062C\u0645 \u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0627\u0644\u0623\u0648\u0644\u064A OptionPanel.separator.key_typing=\u0645\u0641\u0627\u062A\u064A\u062D \u0627\u0644\u0637\u0628\u0627\u0639\u0629 OptionPanel.separator.language=\u0627\u0644\u0644\u063A\u0629 OptionPanel.separator.look_and_feel=\u0627\u0644\u0645\u0638\u0647\u0631 OptionPanel.separator.new_node_commands=\u0627\u0648\u0627\u0645\u0631 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u062C\u062F\u064A\u062F OptionPanel.separator.node_editing_commands=\u0627\u0648\u0627\u0645\u0631 \u062A\u062D\u0631\u064A\u0631 \u0627\u0644\u0639\u0646\u0635\u0631 OptionPanel.separator.node_navigation_commands=\u0627\u0648\u0627\u0645\u0631 \u0627\u0633\u0643\u0634\u0627\u0641 \u0627\u0644\u0639\u0646\u0635\u0631 OptionPanel.separator.other_defaults=\u0627\u062E\u0631\u0649 OptionPanel.separator.patterns=\u0627\u0644\u0627\u0646\u0645\u0627\u0637 OptionPanel.separator.save=\u062D\u0641\u0638 OptionPanel.separator.selection_method=\u0637\u0631\u064A\u0642\u0629 \u0627\u0644\u0627\u062E\u062A\u064A\u0627\u0631 OptionPanel.separator.undo=\u062A\u0631\u0627\u062C\u0639 OptionPanel.sl=Sl OptionPanel.standardbackgroundcolor=\u0644\u0648\u0646 \u0627\u0644\u062E\u0644\u0641\u064A\u0629 \u0627\u0644\u0627\u0633\u0627\u0633\u064A OptionPanel.standardbackgroundcolor.tooltip=The standard background color in html notation OptionPanel.standardcloudcolor=\u0644\u0648\u0646 \u0627\u0644\u0633\u062D\u0627\u0628\u0629 \u0627\u0644\u0627\u0633\u0627\u0633\u064A OptionPanel.standardcloudcolor.tooltip=The standard cloud color in html notation OptionPanel.standardcloudestyle=\u0646\u0645\u0637 \u0627\u0644\u0633\u062D\u0627\u0628\u0629 \u0627\u0644\u0627\u0633\u0627\u0633\u064A OptionPanel.standardcloudestyle.tooltip=The standard cloud style. currently, only 'bezier' is supported OptionPanel.standardlinkcolor=\u0644\u0648\u0646 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0627\u0633\u0627\u0633\u064A OptionPanel.standardlinkcolor.tooltip=The standard link color in html notation OptionPanel.standardlinkestyle=\u0646\u0645\u0637 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0627\u0633\u0627\u0633\u064A OptionPanel.standardlinkestyle.tooltip=The standard link style. currently, only 'bezier' is supported OptionPanel.standardselectednodecolor=\u0644\u0648\u0646 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0645\u062D\u062F\u062F \u0627\u0644\u0627\u0633\u0627\u0633\u064A OptionPanel.standardselectednodecolor.tooltip=The standard node color if selected. In html notation (#RRGGBB in hex values) OptionPanel.time_for_automatic_save=\u0627\u0644\u0648\u0642\u062A \u0644\u0644\u062D\u0641\u0638 \u0627\u0644\u062A\u0644\u0642\u0627\u0626\u064A OptionPanel.time_for_automatic_save.tooltip= time between two consecutive automatic saving actions (in msec): To disable automatic saving set this number to 2000000000. OptionPanel.time_for_delayed_selection=\u0648\u0642\u062A \u062A\u0623\u062E\u064A\u0631 \u0627\u0644\u0623\u062E\u062A\u064A\u0627\u0631 OptionPanel.time_for_delayed_selection.tooltip= Selection time delay of nodes when mouse is over (in msec). Change this value to 1 if you want direct selection on mouse over. OptionPanel.undo_levels=\u0645\u0633\u062A\u0648\u064A\u0627\u062A \u0627\u0644\u062A\u0631\u0627\u062C\u0639 OptionPanel.undo_levels.tooltip=Determines how many steps are stored that can be undone via "Undo". OptionPanel.windows=\u0627\u0644\u0646\u0648\u0627\u0641\u0630 OptionPanel.zh_CN=Zh CN OptionPanel.zh_TW=Zh PageAction.text=...\u0625\u0639\u062F\u0627\u062F\u0627\u062A \u0627\u0644\u0635\u0641\u062D\u0629 PasteAction.text=\u0644\u0635\u0642 PatternToString.FontBold=\u0639\u0631\u064A\u0636 preferences=\u062A\u0641\u0636\u064A\u0644\u0627\u062A PrintAction.text=...\u0637\u0628\u0627\u0639\u0629 PrintDirectAction.text=\u0637\u0628\u0627\u0639\u0629 printing_settings=\u0645\u0642\u064A\u0627\u0633 \u0627\u0644\u0637\u0628\u0627\u0639\u0629 QuitAction.text=\u062E\u0631\u0648\u062C read_only=\u0644\u0644\u0642\u0631\u0627\u0621\u0629 \u0641\u0642\u0637 reminder.appendButton=\u0625\u062F\u0631\u0627\u062C \u0627\u0644\u0648\u0642\u062A \u0625\u0644\u0649 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0645\u062D\u062F\u062F reminder.Cancel=\u0625\u0644\u063A\u0627\u0621 reminder.cancelButton=\u0625\u0644\u063A\u0627\u0621 reminder.Created=\u062A\u0645 \u0625\u0646\u0634\u0627\u0621\u0629 reminder.hour=Hour: reminder.Icons=\u0627\u0644\u0631\u0645\u0648\u0632 reminder.Map=\u062E\u0631\u064A\u0637\u0629 reminder.minute=Minute: reminder.Modified=\u062A\u0645 \u0627\u0644\u062A\u0639\u062F\u064A\u0644 reminder.reminderButton=\u0627\u0644\u062A\u0630\u0643\u064A\u0631 \u0639\u0646\u062F \u0647\u0630\u0627 \u0627\u0644\u0648\u0642\u062A reminder.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. reminder.reminderNode.tooltip=Reminder scheduled at {0,date} {0,time}. reminder.reminderNode_onlyOneDate=Currently, there may only be one reminder per node.
The current remnider is scheduled at {0,date} {0,time}, your choice was {1,date} {1,time}.

Do you want to change the node's reminder time (YES)
or do you want to keep the old one (NO)? reminder.removeReminderButton=Remove Reminder reminder.Text=\u0627\u0644\u0646\u0635 reminder.todayButton=\u0627\u0644\u064A\u0648\u0645 reminder.WindowTitle=\u0625\u062F\u0627\u0631\u0629 \u0627\u0644\u0648\u0642\u062A ReminderHookAction.text=Remove Reminder ReminderHookAction.tooltip=Removes a reminder from a node. ReminderListAction.text=\u0639\u0631\u0636 \u0642\u0627\u0626\u0645\u0629 \u062C\u062F\u0648\u0644\u0629 \u0627\u0644\u0648\u0642\u062A ReminderListAction.tooltip=\u0639\u0631\u0636 \u0627\u0644\u0623\u0648\u0642\u0627\u062A \u0627\u0644\u0645\u062C\u062F\u0648\u0644\u0629 \u0648 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0645\u062C\u062F\u0648\u0644\u0629 RemoveAllIconsAction.text=\u062D\u0630\u0641 \u062C\u0645\u064A\u0639 \u0627\u0644\u0631\u0645\u0648\u0632 RemoveIconAction.text=\u062D\u0630\u0641 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0627\u062E\u064A\u0631 repair_link=\u0625\u0635\u0644\u0627\u062D \u0631\u0627\u0628\u0637 repair_link_question=\u0644\u0627\u064A\u0645\u0643\u0646 \u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0627\u0644\u0645\u0631\u062A\u0628\u0637\u0629. \u0647\u0644 \u062A\u0631\u064A\u062F \u0627\u0635\u0644\u0627\u062D\u0647\u0627 \u064A\u062F\u0648\u064A\u0627\u064B\u061F ResetNodeLocationAction.text=\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0645\u0643\u0627\u0646 save_failed=Attempt to save the map {0} failed. save_unsaved=\u0647\u0644 \u062A\u0631\u064A\u062F \u062D\u0641\u0638 \u0627\u0644\u062E\u0631\u064A\u0637\u0629\u061F SaveAction.text=\u062D\u0641\u0638 SaveAsAction.text=...\u062D\u0641\u0638 \u0628\u0627\u0633\u0645 saved=\u062A\u0645 \u0627\u0644\u062D\u0641\u0638 scheme_evaluate=\u062A\u0642\u064A\u064A\u0645 select_favorites_folder=\u062A\u062D\u062F\u064A\u062F \u0627\u0644\u0645\u062C\u0644\u062F \u0627\u0644\u0630\u064A \u064A\u062D\u0648\u064A \u0627\u0644\u0645\u0641\u0636\u0644\u0629 select_folder_for_importing=\u062A\u062D\u062F\u064A\u062F \u0627\u0644\u0645\u062C\u0644\u062F \u0644\u0627\u0633\u062A\u064A\u0631\u0627\u062F\u0647 SelectAllAction.text=\u062A\u062D\u062F\u064A\u062F \u0627\u0644\u062C\u0645\u064A\u0639 ( \u0627\u0644\u0645\u0631\u0626\u064A ) SelectBranchAction.text=\u062A\u062D\u062F\u064A\u062F \u0627\u0644\u0641\u0631\u0639 \u0627\u0644\u0645\u0631\u0626\u064A selection_method_by_click=\u0646\u0642\u0631\u0647 \u0645\u0641\u0631\u062F \u0644\u0644\u062A\u062D\u062F\u064A\u062F selection_method_direct=\u0646\u0642\u0637\u0629 \u0644\u0644\u062A\u062D\u062F\u064A\u062F SetImageByFileChooserAction.text=\u0635\u0648\u0631\u0629 ( \u0645\u062D\u062F\u062F \u0645\u0644\u0641 \u0623\u0648 \u0631\u0627\u0628\u0637 ) SetLinkByFileChooserAction.text=\u0631\u0627\u0628\u0637 \u062A\u0634\u0639\u0628\u064A ( \u0645\u062D\u062F\u062F \u0645\u0644\u0641 ) SetLinkByTextFieldAction.text=\u0631\u0627\u0628\u0637 \u062A\u0634\u0639\u0628\u064A ( \u062D\u0642\u0644 \u0646\u0635\u064A ) ShowPreferencesAction.text=\u0627\u0644\u062A\u0641\u0636\u064A\u0644\u0627\u062A... simplyhtml.borderWidthLabel=\u0627\u0644\u0639\u0631\u0636 simplyhtml.cancelBtnName=\u0625\u0644\u063A\u0627\u0621 simplyhtml.copyLabel=\u0646\u0633\u062E simplyhtml.cutLabel=\u0642\u0635 simplyhtml.fontBoldLabel=\u0639\u0631\u064A\u0636 simplyhtml.fontItalicLabel=\u0645\u0627\u0626\u0644 simplyhtml.fontTabLabel=\u062E\u0637 simplyhtml.fontUnderlineLabel=\u062A\u062D\u062A\u0647 \u062E\u0637 simplyhtml.helpLabel=\u0645\u0633\u0627\u0639\u062F\u0629 simplyhtml.insertTableTitle=insertTable[translate me] simplyhtml.pasteLabel=\u0644\u0635\u0642 simplyhtml.replaceNo=\u0644\u0627 simplyhtml.replaceYes=\u0646\u0639\u0645 simplyhtml.styleLabel=\u0646\u0645\u0637 simplyhtml.uLineLabel=\u062A\u062D\u062A\u0647 \u062E\u0637 simplyhtml.undoLabel=\u062A\u0631\u0627\u062C\u0639 split=&\u0641\u0635\u0644 style=\u0646\u0645\u0637 svg=SVG[translate me] TimeManagementAction.text=\u0639\u0631\u0636 \u0627\u0644\u062A\u0642\u0648\u064A\u0645 TimeManagementAction.tooltip=Shows the calendar module by Kai Toedter. ToggleChildrenFoldedAction.text=\u0637\u064A \u0641\u0631\u062F \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0627\u0628\u0646 ToggleFoldedAction.text=\u062A\u0628\u062F\u064A\u0644 \u0627\u0644\u0639\u0646\u0635\u0631 \u0627\u0644\u0645\u0637\u0648\u064A ToggleLeftToolbarAction.text=\u062A\u0628\u062F\u064A\u0644 \u0634\u0631\u064A\u0637 \u0627\u0644\u0627\u062F\u0648\u0627\u062A \u0641\u064A \u0627\u0644\u064A\u0633\u0627\u0631 ToggleMenubarAction.text=\u062A\u0628\u062F\u064A\u0644 \u0634\u0631\u064A\u0637 \u0627\u0644\u0642\u0627\u0626\u0645\u0629 ToggleToolbarAction.text=\u062A\u0628\u062F\u064A\u0644 \u0634\u0631\u064A\u0637 \u0627\u0644\u0627\u062F\u0648\u0627\u062A underline=\u062A\u062D\u062A\u0647 \u062E\u0637 UndoAction.text=\u062A\u0631\u0627\u062C\u0639 UndoFilterAction.text=\u062A\u0631\u0627\u062C\u0639 unfold=\u0628\u0633\u0637 UnfoldAllAction.tooltip=Unfolds the selected nodes and all their children. UnfoldOneLevelAction.tooltip=Unfolds the selected nodes by one level. url_error=\u0639\u0646\u0648\u0627\u0646 URL \u063A\u064A\u0631 \u0635\u0627\u0644\u062D url_load_error=\u0644\u0627 \u064A\u0645\u0643\u0646 \u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u062E\u0631\u064A\u0637\u0629 \u0645\u0646 \u0627\u0644\u0639\u0646\u0648\u0627\u0646 URL user_defined_zoom=\u0645\u0639\u0631\u0641 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 user_defined_zoom_status_bar=Changing the zoom to the user defined zoom value of {0}%. user_zoom=Print Zoom Factor (0.0 - 2.0): width=\u0627\u0644\u0639\u0631\u0636 yes=\u0646\u0639\u0645 ZoomInAction.text=\u062A\u0643\u0628\u064A\u0631 ZoomOutAction.text=\u062A\u0635\u063A\u064A\u0631 freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_bg.properties0100644 0000000 0000000 00000004040 13341547170 027604 0ustar000000000 0000000 AboutAction.text=\u041E\u0442\u043D\u043E\u0441\u043D\u043E accessories/plugins/EncryptNode.properties_1=\u041D\u0435\u0432\u044F\u0440\u043D\u0430 \u0438\u043B\u0438 \u043A\u0440\u0430\u0442\u043A\u0430 \u043F\u0430\u0440\u043E\u043B\u0430. accessories/plugins/EncryptNode.properties_2=\u0412\u044A\u0432\u0435\u0434\u0435\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u0430: accessories/plugins/EncryptNode.properties_3=\u041F\u043E\u0432\u0442\u043E\u0440\u0435\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u0430\u0442\u0430: accessories/plugins/EncryptNode.properties_4=\u0412\u044A\u0432\u0435\u0434\u0435\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u0430. accessories/plugins/EncryptNode.properties_5=\u0417\u0430\u043F\u043E\u043C\u043D\u0435\u0442\u0435, \u0447\u0435 \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u043E\u0442\u043E \u043D\u0430 \u043A\u0440\u0438\u043F\u0442\u0438\u0440\u0430\u043D\u0435
\u0437\u0430\u0432\u0438\u0441\u0438 \u043F\u043E\u0447\u0442\u0438 \u0438\u0437\u0446\u044F\u043B\u043E \u043E\u0442 \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u043E\u0442\u043E \u043D\u0430 \u043F\u0430\u0440\u043E\u043B\u0430\u0442\u0430 \u0412\u0438. accessories/plugins/EncryptNode.properties_6=\u041E\u041A accessories/plugins/EncryptNode.properties_7=\u041E\u0442\u043C\u044F\u043D\u0430 accessories/plugins/EncryptNode.properties_select_me=\u0418\u0437\u0431\u0435\u0440\u0438 \u043C\u0435! accessories/plugins/EncryptNode.properties_wrong_password=\u0413\u0440\u0435\u0448\u043D\u0430 \u043F\u0430\u0440\u043E\u043B\u0430. accessories/plugins/Export_JavaWebStart.text=Java Web Start... action_keystroke_in_use_error=\u041A\u043B\u0430\u0432\u0438\u0448\u043D\u0430\u0442\u0430 \u043A\u043E\u043C\u0431\u0438\u043D\u0430\u0446\u0438\u044F {0}, \u0437\u0430\u044F\u0432\u0435\u043D\u0430 \u0437\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {1}, \u0432\u0435\u0447\u0435 \u0441\u0435 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430 \u0437\u0430 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 {2} active=\u0410\u043A\u0442\u0438\u0432\u0435\u043D freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_ca.properties0100644 0000000 0000000 00000102043 13432225762 027602 0ustar000000000 0000000 about_text=Freeplane - Programa lliure per construir mapes conceptuals i de coneixement AboutAction.text=Quant a acceleratorPresets=Hot Key Presets[translate me] accelerators_loading_error=No es pot carregar els acceleradors des {0} accessories/plugins/ApplyFormatPlugin.dialog.title=Canviar format de nodes accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Canviar mostra accessories/plugins/EncryptNode.properties_0=Trieu una paraula de pas pel node xifrat accessories/plugins/EncryptNode.properties_1=Les paraules de pas no s\u00F3n iguals o s\u00F3n massa curtes. accessories/plugins/EncryptNode.properties_2=Introdu\u00EFu la paraula de pas: accessories/plugins/EncryptNode.properties_3=Torneu a introdu\u00EFr-la: accessories/plugins/EncryptNode.properties_4=Introdu\u00EFu la paraula de pas. accessories/plugins/EncryptNode.properties_5=Recordeu que la profunditat de xifratge
dep\u00E8n quasi en la seva totalitat de la qualitat de la paraula de pas que trieu. accessories/plugins/EncryptNode.properties_6=D'acord accessories/plugins/EncryptNode.properties_7=Cancel\u00B7la accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Nom\u00E9s \u00E9s possible alternar entre l'estat de xifratge pels nodes que es trobin xifrats. Si us plau inseriu un node d'aquest tipus mitjan\u00E7ant el men\u00FA d'eines. accessories/plugins/EncryptNode.properties_select_me=Trieu-me per continuar! accessories/plugins/EncryptNode.properties_wrong_password=La paraula de pas no \u00E9s correcta. accessories/plugins/Export_JavaWebStart.text=Inici de Java Web... accessories/plugins/Export_JavaWebStart.tooltip=Exporta el mapa per java web start. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Exporta el mapa com un document TWiki. accessories/plugins/ExportWithXSLT.tooltip=Aquest \u00E9s un m\u00E8tode d'exportaci\u00F3 utilitzant comandes XSLT. accessories/plugins/ExportWithXSLT_Applet.text=Com un Applet Java... accessories/plugins/ExportWithXSLT_Applet.tooltip=Exporta el mapa com un applet java pel navegador. accessories/plugins/ExportWithXSLT_HTML.text=Com a XHTML (versi\u00F3 JavaScript)... accessories/plugins/ExportWithXSLT_HTML3.text=Com a XHTML (Mapa amb imatge)... accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Recursos del node RECURSOS verd un arxiu TaskJuggler\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Exporta recursos del node RECURSOS vers el m\u00F2dul Taskjuggler. accessories/plugins/ExportWithXSLT_TASKSTJI.text=Tasques del node de TASQUES al fitxer TaskJuggler ... accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Exporta tasques del node TASQUES al m\u00F2dul Taskjuggler. action_keystroke_in_use_error=La tecla {0} seleccionada per l''acci\u00F3 {1} ja s''associa a l''acci\u00F3 {2} active=Activar actual_map_styles=Estils condicionals del mapa aplicats al node actual_node_styles=Estils condicionals del node aplicats al node add=&Afegir AddConnectorAction.text=Connectar AddElementaryConditionAction.text=Afegir AddLocalLinkAction.text=Afegeix un hiperenlla\u00E7 local AddMenuItemLinkAction.text=Afegeix hiperenlla\u00E7 com opci\u00F3 de men\u00FA\u2026 AddOnDetailsPanel.authored.by=Per {0} AddOnDetailsPanel.header.function=Funci\u00F3 AddOnDetailsPanel.header.menu=Posici\u00F3 al men\u00FA AddOnDetailsPanel.header.shortcut=Drecera AddOnDetailsPanel.homepage=P\u00E0gina d'inici: addons.installer.canceled=Instal\u00B7laci\u00F3 anulada addons.installer.confirm.licence=

Llic\u00E8ncia

{0}

Accepta aquesta llic\u00E8ncia?

addons.installer.failed=Instal\u00B7laci\u00F3 fallida: {0} addons.installer.freeplaneversion.format.error=Error al format de {0} (valor: {1}) addons.installer.html.script=El contingut del script no pot tenir format HTML addons.installer.install=Instal\u00B7lar addons.installer.invalid.keyboard.shortcut=Drecera incorrecta {0}. addons.installer.licence.unchanged=La llic\u00E8ncia no s'ha modificat addons.installer.map.structure=Error en l''estructura del mapa: {0} addons.installer.missing.child.nodes=Manquen els nodes fill: {0} addons.installer.no.scripts=No s'ha trobat cap script addons.installer.no.zipdata=No s'han trobat dades comprimides addons.installer.nonstandard.permissions=Aquest script necessita els seg\u00FCents permissos que ara no estan activats: {0}.\nVoleu activar afegir aquests permissos als permissos est\u00E0ndar? addons.installer.script.no.permissions=No s''han definit permissos per {0} addons.installer.success=Instalaci\u00F3 complerta.\nEl nou complement estar\u00E0 disponible despr\u00E9s de reiniciar el programa. addons.installer.success.update=Actualitzaci\u00F3 des de {0} de {1} completa.\nAlgunes de les funcions potser nom\u00E9s estaran disponibles despr\u00E9s de reiniciar el programa. addons.installer.title=Instal\u00B7laci\u00F3 d'un complement addons.installer.update=Actualitzaci\u00F3 des de la versi\u00F3 {0} addons.site=https://www.freeplane.org/addons/ AllMapsNodeListAction.text=Cercar i reempla\u00E7ar en tots els mapes always=Sempre AlwaysUnfoldedNodeAction.text=Node sempre desplegat (activar/desactivar) antialias_all=Anti\u00E0lies a Tots antialias_edges=Anti\u00E0lies als Cantells antialias_none=Sense anti\u00E0lies ApplyFormatPlugin.text=Canvia el format... ApplyFormatPlugin.tooltip=Presenta un di\u00E0leg en el qual els atributs de node i vora poden ser canviats de cop. ApplySelectedViewConditionAction.text=Filtrar els nodes seleccionats ApplyToVisibleAction.text=S'aplica als nodes filtrats as_parent=Com a parent AskForHelp.text=Demanar ajuda al f\u00F2rum AssignAttributesAction.text=Cercar i reempla\u00E7ar atributs... attribute_delete=Esborrar tots els valors attribute_delete_value=Esborrar aquest valor attribute_font_size.tooltip=Mida de font de l'atribut attribute_list_box_label_text=Valors existents attribute_name=Nom d'atribut attribute_name_or_value=Nom d'atribut o valor attribute_replace=Reempla\u00E7a per attribute_top=Tots els atributs coneguts per als mapes carregats attribute_value=Valor d'atribut attributes_adding_empty_attribute_error=No es pot utilitzar una cadena buida com a nom de l'atribut attributes_all=Tots els atributs attributes_attribute=Atributs attributes_close=Tancar attributes_deselect_all=Res attributes_dialog_title=Attribute Manager[translate me] attributes_edit=Editar attributes_edit.tooltip=Editar el conjunt attributes_for_selected=Nodes seleccionats attributes_for_visible=Tots els nodes visibles AutomaticLayoutAction.text=Disseny autom\u00E0tic AutomaticLayoutAction.tooltip=Repara el disseny del mapa.
El primer nivell \u00E9s negre, el segon blau, etc. BackAction.text=Enrera background=Fons BlinkingNodeHookAction.text=Node que pampallugui BlinkingNodeHookAction.tooltip=Aix\u00F2 fa que el node pampallugui. Si et plau, tingues cura. No ho associ\u00EFs a massa nodes, i mai amb altres formatatges autom\u00E0tics pel mateix node BoldAction.text=Negreta boldify_branch=Ennegreix branch=Branca cancel=Cancel\u00B7la CancelAction.text=Cancel\u00B7la cannot_add_parent_diff_parents=Tots els nodes cal que tinguin el mateix node pare per a utilitzar aquesta funci\u00F3. cannot_add_parent_to_root=El node arrel no pot afegir-se com un node pare. cannot_join_nodes_with_children=No es poden unir els nodes amb els fills cannot_move_to_child=No es pot moure un node a un dels seus fills. CenterAction.text=Centre ChangeConnectorArrowsAction.backward.text=Enrera ChangeConnectorArrowsAction.forward.text=Endavant ChangeNodeLevelLeftsAction.text=Node esquerra ChangeNodeLevelLeftsAction.tooltip=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. ChangeNodeLevelRightsAction.text=Node dret ChangeNodeLevelRightsAction.tooltip=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. choose_cloud_color=Trieu el color del n\u00FAvol: choose_edge_color=Tria el color del cantell choose_map_background_color=Tria el color del fons del mapa choose_node_background_color=Trieu el color de fons del node: choose_node_color=Trieu el color del node: CloseAction.text=&Tanca el mapa actual CloudAction.text=N\u00FAvol CloudColorAction.text=Color del n\u00FAvol... ColorProperty.ResetColor=Reestableix el color combined=Combinat connector=Connector[translate me] CopyAction.text=&Copia CopySingleAction.text=C\u00F2pia node &sol CutAction.text=Re&talla decrease_branch_font_size=Lletra m\u00E9s petita DecreaseNodeFontAction.text=Lletra m\u00E9s petita delete_child=Esborra el node DeleteAction.text=Elimina el n&ode DocumentationAction.text=Documentaci\u00F3 edge=Cantells edge_style=Estil del Cantell edge_width=Ample del Cantell EdgeColorAction.text=Color del Cantell... EdgeStyleAction.bezier.text=Bezier EdgeStyleAction.linear.text=Linial EdgeStyleAction.sharp_bezier.text=Sharp Bezier EdgeStyleAction.sharp_linear.text=Sharp Linear EdgeStyleAsParentAction.text=Com a parent EdgeWidthAction_width_parent.text=Pare EdgeWidthAction_width_thin.text=Prim edit=Edici\u00F3 edit_link_manually=Edita l'hiperenlla\u00E7 manualment... EditAction.text=Edita el node EditLongAction.text=Edita el node llarg... EncryptedMap.text=Crea un mapa &xifrat ... EncryptedMap.tooltip=Crea un nou mapa xifrat enter_base_url=Enganxar\u00E9 enlla\u00E7os relatius. Si et plau, introdueix l'adre\u00E7a base. enter_confirms=La tecla Retorn ho confirma EnterPassword.text=Alterna entre Xifrat / Desxifrat error=Error[translate me] error_creating_directory=No es pot crear el directori per a exportar. ExecuteScripts.text=Scripts[translate me] ExportAction.text=Exporta mapa\u2026 ExportBranchAction.text=Moure la branca a un mapa nou... ExportBranchToHTMLAction.text=Branca com HTML ExportPdf.text=Com a PDF... ExportSvg.text=Com a SVG... ExportToHTMLAction.text=Com HTML ExportToImage.jpg.text=Com a JPEG... ExportToImage.png.text=Com a PNG... ExportToOoWriter.text=Com a un document de l'Open Office... ExportToOoWriter.tooltip=Unfolded nodes form the structure, folded nodes the content of the document. extension_menu=Estil F\u00EDsic extras=Eines f_button_unassigned=[translate me] FaqOpenURLAction.text=PMF file=Fitxer file_already_exists=El fixter {0} ja existeix. Voleu sobreescriure''l? file_not_found=Fitxer {0} no trobat find_what=Qu\u00E8 vols cercar FindAction.text=Cerca... fit_map_to_page=Imprimeix-lo en Una P\u00E0gina FitToPage.text=Ajustar a la p\u00E0&gina FitToPage.tooltip=Ajusta l'ampliaci\u00F3 de forma que tot el mapa sigui visible en la finestra actual. fold=Contreu FoldAllAction.text=Contreu-los tots FoldAllAction.tooltip=Contreu els nodes selecionats i tots els seus fills. FoldOneLevelAction.text=Contreu-lo un nivell FoldOneLevelAction.tooltip=Contreu un nivell els nodes seleccionats. font=Lletra FontFamilyAction.text=fam\u00EDlia de la lletra FontSizeAction.text=mida de la lletra format=Formata format_menu_edge_styles=Estils dels cantells format_menu_edge_widths=Gruix dels cantells FormatCopy.text=Copia el format FormatCopy.tooltip=C\u00F2pia el format d'un node. FormatPaste.text=Enganxa el format FormatPaste.tooltip=Enganxa el format d'un node. ForwardAction.text=Endavant freeplane_reverted=Freeplane_Reverted_ FreeplaneHelpStarter.text=Ajuda... FreeplaneHelpStarter.tooltip=Ajuda estesa del Freeplane GotoLinkNodeAction.text=V\u00E9s a l'enlla\u00E7 GrabKeyDialog.common.cancel=Cancel\u00B7la GrabKeyDialog.common.ok=D'acord GrabKeyDialog.grab-key.assigned-to=Assignat a GrabKeyDialog.grab-key.assigned-to.none=Sense assignar GrabKeyDialog.grab-key.clear=Neteja GrabKeyDialog.grab-key.remove=Suprimeix GrabKeyDialog.grab-key.remove-ask=Esteu segurs de voler suprimir aquest text? GrabKeyDialog.grab-key.title=Introdu\u00EFu una nova clau help=Ajuda HierarchicalIconsAction.text=Mostra les icones &jer\u00E0rquicament HierarchicalIconsAction.tooltip=Si un dels fills tenen una icona, tamb\u00E9 mostrar\u00E9 aquella icona en format petit. html_export_based_on_headings=Exporta a HTML - Basant-se en les cap\u00E7aleres html_export_fold_all=Exporta a HTML - Contreu-los tots html_export_fold_currently_folded=Exporta a HTML - Contreu els que es troben contrets html_export_no_folding=Exporta a HTML - Sense contreure icon_0%=0%[translate me] icon_100%=100%[translate me] icon_25%=25%[translate me] icon_50%=50%[translate me] icon_75%=75%[translate me] icon_attach=Mira aqu\u00ED icon_back=Enrera icon_bee=Freeplane[translate me] icon_bell=Recorda icon_bookmark=Excel\u00B7lent icon_broken-line=Broken[translate me] icon_button_cancel=No est\u00E0 b\u00E9 icon_button_ok=D'acord icon_calendar=Data icon_clanbomber=Perill\u00F3s icon_desktop_new=No ho oblidis icon_female2=Female2[translate me] icon_flag=Seguiment icon_flag-pink=Pink Flag[translate me] icon_folder=Folder[translate me] icon_forward=Endavant icon_freemind_butterfly=FreeMind[translate me] icon_full-1=Prioritat 1 icon_full-2=Prioritat 2 icon_full-3=Prioritat 3 icon_full-4=Prioritat 4 icon_full-5=Prioritat 5 icon_full-6=Prioritat 6 icon_full-7=Prioritat 7 icon_gohome=Inici icon_help=Pregunta icon_idea=Idea icon_kaddressbook=Tel\u00E8fon icon_knotify=M\u00FAsica icon_korn=B\u00FAstia de correu icon_ksmiletris=Estic content icon_licq=Maco icon_Mail=Correu icon_male1=Male1[translate me] icon_male2=Male2[translate me] icon_menu=Icones icon_messagebox_warning=Important icon_password=Clau icon_pencil=Per a ser definit icon_penguin=Linux icon_smiley-neutral=No Mind[translate me] icon_smily_bad=No em diverteixo icon_stop=Atura icon_stop-sign=Stop[translate me] icon_wizard=M\u00E0gia icon_xmag=Per a ser discutit icon_yes=Important IconGroupPopupAction.smiley.text=Smiley[translate me] IconSelectionPlugin.text=Trieu una icona... IconSelectionPlugin.tooltip=Aqu\u00ED podeu triar una icona mitjan\u00E7ant la finestra addicional. import=I&mporta import_linked_branch_no_link=El node que heu triat no t\u00E9 enlla\u00E7os per importar. ImportBranchAction.text=&Branca... ImportExplorerFavoritesAction.text=&Explora els preferits... ImportFolderStructureAction.text=Estructura de carpetes... ImportLinkedBranchAction.text=Branca enlla\u00E7ada ImportLinkedBranchWithoutRootAction.text=(Branca enlla\u00E7ada) Sense Arrel... ImportMindmanagerFiles.text=Mapa del MindManager X5... increase_branch_font_size=Lletra m\u00E9s gran IncreaseNodeFontAction.text=Lletra m\u00E9s gran ItalicAction.text=It\u00E0liques italicise_branch=Posa-ho en it\u00E0liques less_than_two_selected_nodes=Cal que seleccioneu al menys dos nodes per obtenir enlla\u00E7os. link_not_available_any_more=L'enlla\u00E7 ja no \u00E9s v\u00E0lid. El node que hi havia fou esborrat. link_not_found=Enlla\u00E7 {0} no trobat. locking_failed_by_open=No ha estat possible blocar el mapa {0}. Obrint-lo com a nom\u00E9s lectura. locking_failed_by_save_as=No ha estat possible blocar el mapa {0}. No s''ha pogut Desar com. locking_old_lock_removed=El mapa {0} est\u00E0 blocat en aquest moment per l''usuari {1}. El bloqueig s''ha eliminat perqu\u00E8 \u00E9s massa antic. long_node_changed_cancel=Heu canviat el node. Voleu descartar-ne els canvis? lots_of_links_warning=Esteu a punt de crear molts enlla\u00E7os pel mateix node. Esteu segurs que voleu crear tots aquests enlla\u00E7os? map_already_exists=Aquest mapa ja existeix. Voleu substituir-lo? map_corrupted=El mapa \u00E9s corrupte. Voleu veure'n els detalls? map_locked_by_open=El mapa {0} est\u00E0 sent editat per l''usuari {1}. Obrint-lo com a nom\u00E9s lectura. map_locked_by_save_as=El mapa {0} est\u00E0 sent editat per l''usuari {1}. No s''ha pogut Desar com. menu_insert=Insereix mindmap=Mapa mindmaps=Mapes mindmaps_desc=Mapes (*.mm) mode_na=Modalitat no disponible mode_status=Modalitat canviada a {0} Mode mode_title=Freeplane - {0} Mode modes=Modalitats ModesMenuAction.MindMap.text=Mind Map Editor[translate me] most_recent_files=Fitxers m\u00E9s recents MoveToRootAction.text=Mou-re a l'Arrel navigate=Navega NavigationNextMapAction.text=Mapa Seg\u00FCent NavigationPreviousMapAction.text=Mapa anterior new_map_from_user_templates.text=Mapa nou des de la plantilla... new_mindmap=Crea un Mindmap new_node=Crea un Node Nou new_node_as_sibling_not_possible_for_the_root=No \u00E9s possible crear un node germ\u00E0 si us trobeu a l'arrel NewChildAction.text=Crea un Node Fill NewMapAction.text=Nou mapa NewMapViewAction.text=Nova vista del mapa NewParentNode.text=Crea un node pare NewParentNode.tooltip=Tots els seleccionats s'enviaran al pare. NewPreviousSiblingAction.text=Crea un Node Germ\u00E0 Anterior NewSiblingAction.text=Crea un Node Germ\u00E0 no=No no_format_copy_before_format_paste=No podeu enganxar un format sense haver-ne copiat pr\u00E8viament un. no_found_from=No s''ha trobat "{0}" a "{1}". no_more_found_from=Cap m\u00E9s {0} trobat de "{1}". no_previous_find=No hi ha res a cercar pr\u00E8viament. node=Node node_changed_discard_changes=Heu canviat el node. Voleu descartar-ne els canvis? NodeBackgroundColorAction.text=Color de fons del node... NodeColorAction.text=Color del node... NodeColorBlendAction.text=Color de la barreja NodeDownAction.text=Node Avall NodeListAction.text=Mostra l'historial del mapa... NodeListAction.tooltip=Mostra tots els nodes amb la data de creaci\u00F3/modificaci\u00F3. NodeShapeAction.bubble.text=Globus NodeShapeAction.fork.text=Forca NodeUpAction.text=Node Amunt nonboldify_branch=Elimina les negretes nonitalicise_branch=Elimina les it\u00E0liques normal=Normal not_saved_for_link_error=Cal que deseu el mapa abans de qu\u00E8 pugueu establir un enlla\u00E7 en el quadre de di\u00E0leg de fitxers ok=D'acord OKAction.text=D'acord OpenAction.text=Obre... option_changes_may_require_restart=Per a veure els efectes d'alguns d'aquests canvis, cal que reinicieu el Freeplane. OptionalDontShowMeAgainDialog.cancel=No[translate me] OptionPanel.absolute=Absolut OptionPanel.antialias=Anti-\u00C0lies OptionPanel.antialias.tooltip=Determina la qualitat del mapa. Com m\u00E9s anti-\u00E0lies m\u00E9s temps de processament. OptionPanel.antialias_all=Anti\u00E0lies a Tots OptionPanel.antialias_edges=Anti\u00E0lies als Cantells OptionPanel.antialias_none=Sense Anti-\u00E0lies OptionPanel.Appearance=Aparen\u00E7a OptionPanel.ar=Ar[translate me] OptionPanel.as_parent=Com a pare OptionPanel.automatic=Autom\u00E0tic OptionPanel.Behaviour=Comportament OptionPanel.bezier=Bezier OptionPanel.bubble=Globus OptionPanel.Cancel=Cancel\u00B7la OptionPanel.cloud=Cloud[translate me] OptionPanel.combined=Combinat OptionPanel.cs=Cs OptionPanel.da=Dk OptionPanel.de=De OptionPanel.default=Per omissi\u00F3 OptionPanel.default_browser_command_mac=Default Browser Command Mac OptionPanel.default_browser_command_mac.tooltip= and MAC: (thanks to Nick!) OptionPanel.default_browser_command_other_os=Default Browser Command Other Os OptionPanel.default_browser_command_other_os.tooltip= This is typically Linux: OptionPanel.default_browser_command_windows_9x=Default Browser Command Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=For Windows (the "" signs are necessary due to links, that have "=" in their URL). OptionPanel.default_browser_command_windows_nt=Default Browser Command Windows Nt OptionPanel.default_browser_command_windows_nt.tooltip=For Windows (the "" signs are necessary due to links, that have "=" in their URL). OptionPanel.default_charset=Charset[translate me] OptionPanel.Defaults=Per omissi\u00F3 OptionPanel.delete_automatic_saves_at_exit=Esborra els documents autodesats en sortir OptionPanel.delete_automatic_saves_at_exit.tooltip= Si voleu que Freeplane esborri els fitxers autodesats autom\u00E0ticament en sortir indiqueu-ho afirmativament OptionPanel.disable_cursor_move_paper.tooltip=No mostris el cursor 'arrossega' en el paper mentre s'arrossega OptionPanel.el__enter_confirms_by_default=La tecla Retorn confirma els valors per omissi\u00F3 OptionPanel.el__max_default_window_height=Al\u00E7ada m\u00E0xima de les finestres OptionPanel.el__max_default_window_width=Amplada m\u00E0xima de les finestres OptionPanel.el__min_default_window_height=Al\u00E7ada m\u00EDnima de les finestres OptionPanel.el__min_default_window_width=Amplada m\u00EDnima de les finestres OptionPanel.el__position_window_below_node=Posici\u00F3 de la finestra sota el node OptionPanel.en=En OptionPanel.Environment=Entorn OptionPanel.es=Es OptionPanel.et=Et[translate me] OptionPanel.experimental_file_locking_on=Bloqueig de fitxers experimental OptionPanel.experimental_file_locking_on.tooltip= Funci\u00F3 en experimentaci\u00F3 OptionPanel.export_icons_in_html=Exporta les icones en Html OptionPanel.export_icons_in_html.tooltip= Indica si l'HTML s'exporta des del Freeplane amb les icones. El problema que es presenta amb les icones \u00E9s que sovint els enlla\u00E7os cap a aquestes no es poden resoldre en exportar l'HTML. OptionPanel.Files=Fitxers OptionPanel.first=Primer OptionPanel.foldingsymbolwidth=Amplada del s\u00EDmbol de contreu OptionPanel.foldingsymbolwidth.tooltip=Amplada del marcador circular de contreure OptionPanel.fork=Forca OptionPanel.fr=Fr OptionPanel.gl=Gl[translate me] OptionPanel.gtk=Gtk OptionPanel.hr=Hr OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=Basat en les cap\u00E7aleres OptionPanel.html_export_fold_all=Contreu-los tots OptionPanel.html_export_fold_currently_folded=Contreu els que estiguin contrets OptionPanel.html_export_folding=Html Export Folding OptionPanel.html_export_no_folding=Sense contreure OptionPanel.hu=Hu OptionPanel.id=Id[translate me] OptionPanel.it=It OptionPanel.ja=Ja OptionPanel.Keystrokes=Combinaci\u00F3 de tecles OptionPanel.ko=Kr OptionPanel.language=Idioma OptionPanel.language.tooltip=Aquest \u00E9s l'idioma que caldria utilitzar en el programa. Amb 'autom\u00E0tic' intenta carregar l'idioma actual de l'usuari. OptionPanel.last=\u00DAltim OptionPanel.last_opened_list_length=Llargada del darrer fitxer obert a la llista OptionPanel.linear=Linial OptionPanel.links=Enlla\u00E7os OptionPanel.links.tooltip=Estableix enlla\u00E7os, ja siguin relatius o absoluts OptionPanel.lookandfeel=Estils visuals OptionPanel.lookandfeel.tooltip=L'aparen\u00E7a que voleu utilitzar. Es troben disponibles 'met\u00E0l\u00B7lic','windows','motiu', 'gtk', 'mac' nom\u00E9s pels equips amb MacOS. Per defecte vol dir que s'utilitzar\u00E0 una aparen\u00E7a est\u00E0ndard. Si voleu afegir els vostres temes visuals, introdu\u00EFu el n\u00FAmero de classe aqu\u00ED i assegureu-vos que es correspon al fitxer jar carregat. Si experimenteu problemes amb els temes visuals, trieu 'cap' OptionPanel.lt=Lt OptionPanel.max_node_width=Ample m\u00E0xim del node OptionPanel.max_node_width.tooltip=L'amplada m\u00E0xima del node en pixels OptionPanel.metal=Metall OptionPanel.motif=Motiu OptionPanel.nb=Nb OptionPanel.nl=Nl OptionPanel.nn=Nn OptionPanel.nothing=Res OptionPanel.number_of_different_files_for_automatic_save=Nombre de fitxers diferents per autodesar OptionPanel.number_of_different_files_for_automatic_save.tooltip= Nombre n de fitxers diferents per desar els mapes. La primera desada es fa en el primer fitxer, i aix\u00ED successivament fins a n+1-desa que es torna a desar com al primer fitxer (c\u00EDclicament) OptionPanel.OK=Desa OptionPanel.pl=Pl OptionPanel.placenewbranches=Situa noves branques OptionPanel.placenewbranches.tooltip=Indica on voleu situar noves branques. Els valors v\u00E0lids s\u00F3n 'primer' i '\u00FAltim' OptionPanel.pt_BR=Pt BR OptionPanel.pt_PT=Pt PT OptionPanel.relative=Relatiu OptionPanel.ru=Ru OptionPanel.selection_method=M\u00E8tode de selecci\u00F3 OptionPanel.selection_method.tooltip= amb aquest par\u00E0metre podeu activar/desactivar el retard en la selecci\u00F3. No es recomana que ho modifiqueu. OptionPanel.selection_method_by_click=Per clic OptionPanel.selection_method_delayed=Retardat OptionPanel.selection_method_direct=Directe OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Patrons OptionPanel.separator.anti_alias=Anti-\u00C0lies OptionPanel.separator.automatic_save=Desament autom\u00E0tic OptionPanel.separator.behaviour=Comportament OptionPanel.separator.browser=Navegador OptionPanel.separator.commands_for_the_program=Ordres pel programa OptionPanel.separator.connectors=Connectors[translate me] OptionPanel.separator.default_colors=Colors per defecte OptionPanel.separator.default_fonts=Lletres per defecte OptionPanel.separator.default_styles=Estils per defecte OptionPanel.separator.edit_long_node_window=Edita la longitud de la finestra d'un node OptionPanel.separator.files=Fitxers OptionPanel.separator.General=General[translate me] OptionPanel.separator.html_export=Exporta a l'HTML OptionPanel.separator.hyperlink_types=Tipus d'hiperenlla\u00E7os OptionPanel.separator.icon_properties=Icones OptionPanel.separator.initial_map_size=Mida inicial del mapa OptionPanel.separator.key_typing=Teclat OptionPanel.separator.language=Idioma OptionPanel.separator.look_and_feel=Estils visuals OptionPanel.separator.new_node_commands=Ordres pels nous nodes OptionPanel.separator.node_editing_commands=Ordres per l'edici\u00F3 de nodes OptionPanel.separator.node_navigation_commands=Ordres per a la navegaci\u00F3 OptionPanel.separator.NodeFont=Node Font[translate me] OptionPanel.separator.other_defaults=Altres prefer\u00E8ncies OptionPanel.separator.patterns=Patrons OptionPanel.separator.save=Desa OptionPanel.separator.selection_method=M\u00E8tode de selecci\u00F3 OptionPanel.separator.undo=Desf\u00E9s OptionPanel.show_creation_modification_in_tooltip=Mostra la cronologia de &modificacions OptionPanel.sk=Sk[translate me] OptionPanel.sl=Sl OptionPanel.standardbackgroundcolor=Color est\u00E0ndard del fons OptionPanel.standardbackgroundcolor.tooltip=El color est\u00E0ndard del fons en format html OptionPanel.standardcloudcolor=Color est\u00E0ndard del n\u00FAvol OptionPanel.standardcloudcolor.tooltip=El color est\u00E0ndard del n\u00FAvol en format html OptionPanel.standardcloudestyle=Estil est\u00E0ndard del n\u00FAvol OptionPanel.standardcloudestyle.tooltip=L'estil est\u00E0ndard del n\u00FAvol. Actualment nom\u00E9s es troba disponible l'estil 'bezier' OptionPanel.standardlinkcolor=Color est\u00E0ndar dels enlla\u00E7os OptionPanel.standardlinkcolor.tooltip=El color est\u00E0ndard dels enlla\u00E7os en format html OptionPanel.standardlinkestyle=Estil est\u00E0ndard dels enlla\u00E7os OptionPanel.standardlinkestyle.tooltip=L'estil est\u00E0ndard dels enlla\u00E7os. Actualment nom\u00E9s es troba disponible l'estil 'bezier' OptionPanel.standardselectednodecolor=Color est\u00E0ndard del node seleccionat OptionPanel.standardselectednodecolor.tooltip=El color est\u00E0ndard del node seleccionat. Cal que l'indiqueu en format HTML (#RRGGBB en valor hexagesimals) OptionPanel.sv=Se OptionPanel.time_for_automatic_save=Autodesar cada OptionPanel.time_for_automatic_save.tooltip= temps entre dues desades autom\u00E0tiques consecutives (en mseg): Per a desactivar l'autodesada introdu\u00EFu aquesta xifra 2000000000. OptionPanel.time_for_delayed_selection=Retard per la selecci\u00F3 retardada OptionPanel.time_for_delayed_selection.tooltip= \u00C9s el temps de retard que es triga per a seleccionar un node quan s'hi situa a sobre el ratol\u00ED (en mseg). Canvieu el valor a 1 si voleu una selecci\u00F3 directa en situar-hi a sobre el ratol\u00ED. OptionPanel.tr=Tr[translate me] OptionPanel.uk_UA=Uk UA[translate me] OptionPanel.undo_levels=Desf\u00E9s nivells OptionPanel.undo_levels.tooltip=Determina quants passos cal que es puguin desfer mitjan\u00E7ant "Desf\u00E9s". OptionPanel.windows=Windows OptionPanel.zh_CN=Zh CN OptionPanel.zh_TW=Zh PageAction.text=Prefer\u00E8ncies de la p\u00E0gina... PasteAction.text=Enganxa PatternToString.color=Color[translate me] PatternToString.EdgeStyle=Estil del Cantell PatternToString.EdgeWidth=Ample del Cantell PatternToString.FontBold=Negreta preferences=Prefer\u00E8ncies PrintAction.text=Imprimeix... PrintDirectAction.text=Imprimeix printing_settings=Escala d'impressi\u00F3 QuitAction.text=Surt read_only=Nom\u00E9s de Lectura RedoAction.text=Refer RedoFilterAction.text=Refer reminder.appendButton=Afegeix la data als nodes seleccionats reminder.Cancel=Cancel\u00B7la reminder.cancelButton=Cancel\u00B7la reminder.Created=Creat reminder.hour=Hores: reminder.Icons=Icones reminder.Map=Mapa reminder.minute=Minuts: reminder.Modified=Modificat reminder.Notes=Notes[translate me] reminder.reminderButton=Recorda-m'ho aquesta data reminder.reminderButton.tooltip=En pr\u00E9mer el temporalitzador es programa a la data indicada. Llavors, les icones pampalluguen requerint la vostra atenci\u00F3.
Si tanqueu el mapa, els temporitzadors es reactiven la propera vegada que obriu el mapa. reminder.reminderNode.tooltip=Recordatori programat el {0,date} a les {0,time}. reminder.reminderNode_onlyOneDate=En aquest moment nom\u00E9s \u00E9s possible disposar d'un recordatori per node.
El recordatori actual est\u00E0 programat pel {0,date} a les {0,time}, el que vas triar anteriorment era pel {1,date} a les {1,time}.

Voleu modificar el recordatori del node (S\u00CD)
o voleu mantenir l'antic (NO)? reminder.removeReminderButton=Elimina el recordatori reminder.removeReminderButton.tooltip=Elimina tots els recordatoris dels nodes seleccionats. reminder.Text=Text reminder.todayButton=Avui reminder.WindowTitle=Administraci\u00F3 del temps ReminderHookAction.text=Elimina el recordatori ReminderHookAction.tooltip=Elimina el recordatori d'un node. ReminderListAction.text=Mostra la llista de tasques programades... ReminderListAction.tooltip=Mostra totes les tasques programades amb els nodes corresponents. RemoveAllIconsAction.text=Elimina totes les icones RemoveIconAction.text=Elimina l'\u00FAltima icona repair_link=Repara l'enlla\u00E7 repair_link_question=No ha estat possible carregar el mapa enlla\u00E7at. Voleu reparar-lo manualment? ResetNodeLocationAction.text=Restaura la posici\u00F3 save_failed=Hi ha hagut un error en intentar desar el mapa {0}. save_unsaved=Voleu desar el mapa seg\u00FCent? SaveAction.text=Desa SaveAsAction.text=Desa com... saved=Desat scheme_evaluate=Evalua! select_favorites_folder=Trieu una carpeta en la que resideixin els vostres preferits select_folder_for_importing=Trieu la carpeta a importar SelectAllAction.text=Selecciona totes les visibles SelectBranchAction.text=Selecciona la branca visible selection_method_by_click=Un clic senzill per a seleccionar selection_method_delayed=Selecci\u00F3 Autom\u00E0tica Retardada selection_method_direct=Puntejar per a seleccionar SetImageByFileChooserAction.text=Imatge (Trieu un fitxer o enlla\u00E7)... SetLinkByFileChooserAction.text=Hiperenlla\u00E7 (Trieu un fitxer)... SetLinkByTextFieldAction.text=Hipernella\u00E7 (Quadre de text)... ShowPreferencesAction.text=Prefer\u00E8ncies ... simplyhtml.borderColorLabel=Color: simplyhtml.borderWidthLabel=Amplada simplyhtml.cancelBtnName=Cancel\u00B7la simplyhtml.cellGenTabLabel=General[translate me] simplyhtml.colorLabel=Color[translate me] simplyhtml.copyLabel=Copia simplyhtml.cutLabel=Retalla simplyhtml.fontBoldLabel=Negreta simplyhtml.fontItalicLabel=It\u00E0liques simplyhtml.fontTabLabel=Lletra simplyhtml.fontUnderlineLabel=Subratllat simplyhtml.formatLabel=Format[translate me] simplyhtml.helpLabel=Ajuda simplyhtml.okBtnName=D'acord simplyhtml.pasteLabel=Enganxa simplyhtml.redoLabel=Refer simplyhtml.replaceNo=No simplyhtml.replaceYes=S\u00ED simplyhtml.styleLabel=Estil simplyhtml.uLineLabel=Subratllat simplyhtml.undoLabel=Desf\u00E9s split=&Divideix SplitNode.text=Split Node[translate me] style=Estil svg=SVG[translate me] TimeManagementAction.text=Mostra el calendari... TimeManagementAction.tooltip=Mostra el m\u00F2dul del calendari d'en Kai Toedter. ToggleChildrenFoldedAction.text=(Des)contreu els fills ToggleFBarAction.text=F-Bar[translate me] ToggleFoldedAction.text=Alterna els contrets ToggleLeftToolbarAction.text=Alterna la barra d'eines esquerra ToggleMenubarAction.text=Alterna la barra de men\u00FA ToggleToolbarAction.text=Alterna de barra d'eines undefined_error=S'ha produ\u00EFt un error no previst. Si us plau, proveu de reportar l'error per tal que puguem corregir-lo. underline=Subratllat underlined=Subratllat UndoAction.text=Desf\u00E9s UndoFilterAction.text=Desf\u00E9s unfold=Descontreu UnfoldAllAction.text=Descontreu-los tots UnfoldAllAction.tooltip=Descontreu els nodes seleccionats i tots els seus fills. UnfoldOneLevelAction.text=Descontreu-lo un nivell UnfoldOneLevelAction.tooltip=Descontreu un nivell dels nodes seleccionats. url_error=Aquesta adre\u00E7a no est\u00E0 ben escrita! url_load_error=No s'ha pogut corregat el mapa des de l'adre\u00E7a: user_defined_zoom=Definit per l'usuari. user_defined_zoom_status_bar=Canviant la visi\u00F3 al valor d''ampliaci\u00F3 definit de l''usuari: {0}%. user_zoom=Factor d'ampliaci\u00F3 d'impressi\u00F3 (0.0 - 2.0): view=Veure width=Amplada yes=S\u00ED ZoomInAction.text=Apropa't ZoomOutAction.text=Allunya't freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_cs.properties0100644 0000000 0000000 00000404301 13432225762 027626 0ustar000000000 0000000 about_text=Freeplane - svobodn\u00FD program pro tvo\u0159en\u00ED my\u0161lenkov\u00FDch map a znalostn\u00EDch datab\u00E1z\u00ED AboutAction.text=O programu acceleratorPresets=P\u0159edvolby kl\u00E1vesov\u00FDch zkratek accelerators_loading_error=Nelze na\u010D\u00EDst akceler\u00E1tory z {0} accessories/plugins/ApplyFormatPlugin.dialog.title=Zm\u011Bna form\u00E1tu uzl\u016F accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Zm\u011Bnit vzor accessories/plugins/EncryptNode.properties_0=Vyberte heslo pro zak\u00F3dov\u00E1n\u00ED uzlu accessories/plugins/EncryptNode.properties_1=Hesla nejsou stejn\u00E1 nebo jsou p\u0159\u00EDli\u0161 kr\u00E1tk\u00E1. accessories/plugins/EncryptNode.properties_2=Vlo\u017Ete heslo: accessories/plugins/EncryptNode.properties_3=Znovu vlo\u017Ete heslo: accessories/plugins/EncryptNode.properties_4=Vlo\u017Ete Va\u0161e heslo. accessories/plugins/EncryptNode.properties_5=Pamatujte, \u017Ee s\u00EDla zak\u00F3dov\u00E1n\u00ED
z\u00E1vis\u00ED skoro \u00FApln\u011B na kvalit\u011B Va\u0161eho hesla. accessories/plugins/EncryptNode.properties_6=OK accessories/plugins/EncryptNode.properties_7=Storno accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=M\u016F\u017Eete p\u0159epnout do stavu ochrany heslem (zak\u00F3dov\u00E1n\u00ED) pouze u zak\u00F3dovan\u00E9ho uzlu. Takov\u00FD uzel m\u016F\u017Eete vlo\u017Eit pomoc\u00ED menu N\u00E1stroje. accessories/plugins/EncryptNode.properties_select_me=Vyberte mn\u011B pro pokra\u010Dov\u00E1n\u00ED! accessories/plugins/EncryptNode.properties_wrong_password=Heslo nen\u00ED spr\u00E1vn\u00E9. accessories/plugins/Export_JavaWebStart.text=Java Web Start... accessories/plugins/Export_JavaWebStart.tooltip=Exportuje mapu do form\u00E1tu Java Web Start. accessories/plugins/ExportWithTWiki.text=TWiki ... accessories/plugins/ExportWithTWiki.tooltip=Exportuje mapu jako TWiki dokument. accessories/plugins/ExportWithXSLT.tooltip=Toto je jednotn\u00E1 exportn\u00ED metoda. accessories/plugins/ExportWithXSLT_Applet.text=Java Applet... accessories/plugins/ExportWithXSLT_Applet.tooltip=Exportuje mapu jako applet prohl\u00ED\u017Ee\u010De java. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (JavaScript verze)... accessories/plugins/ExportWithXSLT_HTML3.text=XHTML (verze s klikac\u00ED mapou)... accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Zdroje z uzlu RESOURCES do souboru Taskjuggler... accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Exportuje zdroje z uzlu RESOURCES do modulu Taskjuggler. accessories/plugins/ExportWithXSLT_TASKSTJI.text=\u00DAkoly z uzlu TASKS do Taskjuggler souboru... accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Exportuje \u00FAkoly z uzlu TASKS do modulu Taskjuggler. action_keystroke_in_use_error=Kl\u00E1vesov\u00E1 zkratka {0} \u017E\u00E1dan\u00E1 pro akci {1} je ji\u017E pou\u017Eita pro akci {2} active=Aktivn\u00ED actual_map_styles=Podm\u00EDn\u011Bn\u00E9 styly map byly aplikov\u00E1ny na uzel actual_node_styles=Podm\u00EDn\u011Bn\u00E9 styly uzlu byly aplikov\u00E1ny na uzel add=&P\u0159idat AddConnectorAction.text=P\u0159ipojit AddElementaryConditionAction.text=P\u0159idat AddExecutionLinkAction.text=P\u0159idat odkaz pro sp\u0161t\u011Bn\u00ED p\u0159\u00EDkazu OS... AddLocalLinkAction.text=P\u0159idat lok\u00E1ln\u00ED hyperlink AddMenuItemLinkAction.text=P\u0159idat hyperlink na polo\u017Eku menu... AddOnDetailsPanel.authored.by=Podle {0} AddOnDetailsPanel.header.function=Funkce AddOnDetailsPanel.header.menu=Um\u00EDst\u011Bn\u00ED menu AddOnDetailsPanel.header.shortcut=Z\u00E1stupce AddOnDetailsPanel.homepage=Domovsk\u00E1 str\u00E1nka: addons.installer.canceled=Instalace byla zru\u0161ena addons.installer.confirm.licence=

Licence

{0}

P\u0159ij\u00EDm\u00E1te tuto licenci?

addons.installer.failed=Instalace se nezda\u0159ila: {0} addons.installer.freeplaneversion.format.error=Form\u00E1tov\u00E1 chyba v {0} (hodnoty: {1}) addons.installer.html.script=T\u011Blo scriptu nesm\u00ED b\u00FDt form\u00E1tov\u00E1no jako HTML addons.installer.install=Instalace addons.installer.invalid.keyboard.shortcut=Neplatn\u00E1 zkratka {0}. addons.installer.licence.unchanged=Licence je beze zm\u011Bny addons.installer.map.structure=Chyba ve struktu\u0159e mapy: {0} addons.installer.missing.child.nodes=Chyb\u011Bj\u00EDc\u00ED poduzly: {0} addons.installer.missing.permission.attribute=Skript {0}: chyb\u00ED atributy opr\u00E1vn\u011Bn\u00ED {1} addons.installer.missing.properties=Chyb\u011Bj\u00EDc\u00ED vlastnosti: {0} addons.installer.missing.translation=Chyb\u00ED p\u0159eklad {0} pro lokalizaci {1} addons.installer.no.scripts=Skripty nenalezeny addons.installer.no.zipdata=Nebyla nalezena \u017E\u00E1dn\u00E1 zip data addons.installer.nonstandard.permissions=Skript vy\u017Eaduje n\u00E1sleduj\u00EDc\u00ED opr\u00E1vn\u011Bn\u00ED, kter\u00E1 nejsou aktu\u00E1ln\u011B aktivovan\u00E1: {0}.\nMohou b\u00FDt p\u0159id\u00E1na ke standardn\u00EDm opr\u00E1vn\u011Bn\u00EDm? addons.installer.one.child.expected=O\u010Dek\u00E1v\u00E1 jednu pod\u0159\u00EDzenou polo\u017Eku {0}, ale obsahuje {1}. addons.installer.script.name.suffix=Skript jm\u00E9nem {0} nem\u00E1 p\u0159\u00EDponu ".groovy" addons.installer.script.no.execution_mode=Nejsou definov\u00E1ny "execution_mode" atributy pro {0} addons.installer.script.no.menulocation=Nejsou definov\u00E1ny "menuLoacation" atributy pro {0} addons.installer.script.no.menutitle=Nejsou definov\u00E1ny "menuTitleKey" atributy pro {0} addons.installer.script.no.permissions=Nejsou definov\u00E1na opr\u00E1vn\u011Bn\u00ED pro {0} addons.installer.success=Instalace byla \u00FAsp\u011B\u0161n\u00E1.\nNov\u00FD dopln\u011Bk bude k dispozici po restartu aplikace. addons.installer.success.update=\u00DAsp\u011B\u0161n\u00E1 aktualizace z {0} na {1}.\nN\u011Bkter\u00E9 funkce mohou b\u00FDt dostupn\u00E9 pouze po restartu aplikace. addons.installer.title=Instal\u00E1tor dopl\u0148ku addons.installer.too.new=Aktu\u00E1ln\u00ED verze {0} Freeplane je nov\u011Bj\u0161\u00ED. Tento dopln\u011Bk podporuje maxim\u00E1ln\u011B verzi {1} addons.installer.too.old=Aktu\u00E1ln\u00ED verze {0} Freeplane je zastaral\u00E1. Tento dopln\u011Bk vy\u017Eaduje alespo\u0148 verzi {1} addons.installer.unknown.deinstallation.rules=Nezn\u00E1m\u00E1 odinstala\u010Dn\u00ED pravidla {0} addons.installer.update=Aktualizace z verze {0} addons.installer.warning=M\u011Bli byste instalovat pouze dopl\u0148ky z d\u016Fv\u011Bryhodn\u00FDch zdroj\u016F. \u0160kodliv\u00FD software m\u016F\u017Ee zp\u016Fsobit po\u0161kozen\u00ED dat nebo naru\u0161it va\u0161e soukrom\u00ED. addons.site=https://www.freeplane.org/addons/ AddStyleAttributes.text=Atributy ze stylu AddStyleAttributes.tooltip=P\u0159idat atributy ze stylu uzlu AllMapsNodeListAction.text=Naj\u00EDt a nahradit ve v\u0161ech map\u00E1ch always=V\u017Edy AlwaysUnfoldedNodeAction.text=V\u017Edy rozlo\u017Een\u00FD uzel (set/reset) antialias_all=Vyhlazovat v\u0161e antialias_edges=Vyhlazovat hrany antialias_none=Nevyhlazovat nic apply=Pou\u017E\u00EDt ApplyAction.text=Pou\u017E\u00EDt ApplyFormatPlugin.text=Zm\u011Bnit form\u00E1t ... ApplyFormatPlugin.tooltip=Dialog, kde atributy uzl\u016F a hran mohou b\u00FDt m\u011Bn\u011Bn\u00E9 najednou. ApplyNoFilteringAction.text=Nefiltrov\u00E1no ApplySelectedViewConditionAction.text=Filtrovat vybran\u00E9 uzly ApplyToVisibleAction.text=Ap\u016Fikovat na filtrovan\u00E9 uzly as_parent=Jako nad\u0159azen\u00FD AskForHelp.text=Po\u017E\u00E1dat o pomoc v diskuzn\u00EDm f\u00F3ru AssignAttributesAction.text=P\u0159i\u0159adit atributy... attribute_delete=Smazat v\u0161echny hodnoty attribute_delete_value=Smazat tuto hodnotu attribute_font_size.tooltip=Velikost p\u00EDsma atributu attribute_list_box_label_text=Existuj\u00EDc\u00ED hodnoty attribute_name=N\u00E1zev atributu attribute_name_or_value=Jm\u00E9no nebo hodnota atributu attribute_replace=Nahradit s attribute_top=V\u0161echny zn\u00E1m\u00E9 atributy pro nahran\u00E9 mapy attribute_value=Hodnota atributu attributes_AddAttributeAction.text=P\u0159idat atribut v dialogu ... attributes_adding_empty_attribute_error=Nelze pou\u017E\u00EDt pr\u00E1zdn\u00FD \u0159et\u011Bzec jako n\u00E1zev atributu attributes_all=V\u0161ehny atributy attributes_assign_dialog=Roz\u0161\u00ED\u0159en\u00FD editor atributu attributes_attribute=Atributy attributes_close=Zav\u0159\u00EDt attributes_deselect_all=Nic attributes_dialog_title=Spr\u00E1vce atribut\u016F attributes_edit=Upravit attributes_edit.tooltip=Upravit mno\u017Einu attributes_for_selected=Vybran\u00E9 uzly attributes_for_visible=V\u0161echny viditeln\u00E9 uzly attributes_import=Import attributes_import.tooltip=Naimportuje atributy z jin\u00FDch nahran\u00FDch map attributes_no_import_candidates_found=\u017D\u00E1dn\u00E9 nov\u00E9 atributy nenalezeny attributes_popup_delete=Smazat attributes_popup_down=Dol\u016F attributes_popup_edit=Upravit attributes_popup_hide=Skr\u00FDt attributes_popup_new=Nov\u00FD atribut attributes_popup_optimal_width=Optim\u00E1ln\u00ED \u0161\u00ED\u0159ka attributes_popup_up=Nahoru attributes_refresh=Obnovit attributes_RemoveAllAttributesAction.text=Odstranit v\u0161echny atributy attributes_RemoveFirstAttributeAction.text=Odebrat prvn\u00ED atribut attributes_RemoveLastAttributeAction.text=Odstranit posledn\u00ED atribut attributes_restricted_attributes.tooltip=Omezit mno\u017Einu atribut\u016F attributes_restricted_values.tooltip=Omezit mno\u017Einu hodnot pro aktu\u00E1ln\u00ED atribut attributes_restriction=Omezen\u00E1 mno\u017Eina attributes_select_all=V\u0161e attributes_select_all.tooltip=Vybrat / zru\u0161it ozna\u010Den\u00ED v\u0161eho attributes_show=Uk\u00E1zat attributes_skip_root=P\u0159esko\u010Dit ko\u0159enov\u00FD uzel attributes_visible=Vybrat viditeln\u00E9 attributes_visible.tooltip=Vybrat viditeln\u00E9 automatic_layout=Automatick\u00E9 rozlo\u017Een\u00ED automatic_layout_disabled=zak\u00E1z\u00E1no automatically_save_message=Mapa byla automaticky ulo\u017Eena (se jm\u00E9nem souboru {0}) ... AutomaticEdgeColor.FOR_BRANCHES=pro v\u011Btve AutomaticEdgeColor.FOR_COLUMNS=pro sloupce AutomaticEdgeColor.FOR_LEVELS=pro \u00FArovn\u011B AutomaticEdgeColor.ON_BRANCH_CREATION=p\u0159i vytvo\u0159en\u00ED v\u011Btve AutomaticEdgeColorHookAction.text=Automatick\u00E9 barva hrany AutomaticLayout.ALL=pro v\u0161echny uzly AutomaticLayout.HEADINGS=pro jin\u00E9 ne\u017E koncov\u00E9 uzly AutomaticLayout.level=\u00DArove\u0148 {0} AutomaticLayout.level.root=Ko\u0159en AutomaticLayoutAction.text=Prov\u00E9st automatick\u00E9 rozlo\u017Een\u00ED AutomaticLayoutAction.tooltip=Oprav\u00ED rozlo\u017Een\u00ED mapy.
Prvn\u00ED \u00FArove\u0148 je \u010Dern\u00E1, druh\u00E1 modr\u00E1, atd. AutomaticLayoutControllerAction.ALL.text=pro v\u0161echny uzly AutomaticLayoutControllerAction.COLUMNS.text=pro sloupce AutomaticLayoutControllerAction.HEADINGS.text=pro jin\u00E9 ne\u017E koncov\u00E9 uzly AutomaticLayoutControllerAction.null.text=zak\u00E1z\u00E1no BackAction.text=Zp\u011Bt BackAction.tooltip=Sko\u010Dit zp\u011Bt do v\u00FDb\u011Bran\u00E9ho \u0159et\u011Bzce background=Pozad\u00ED bitmaps=Bitmapy black=\u010Cern\u00E1 BlinkingNodeHookAction.text=Blikaj\u00EDc\u00ED uzel BlinkingNodeHookAction.tooltip=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 blue=Modr\u00E1 BoldAction.text=Tu\u010Dn\u011B boldify_branch=Stu\u010Dnit branch=V\u011Btev browse=Proch\u00E1zet... calendar_attributes_panel=Kalend\u00E1\u0159 a atributy calendar_panel=Kalend\u00E1\u0159 can_not_clone_encrypted_node=Za\u0161ifrovan\u00E9 uzly nelze klonovat can_not_connect_to_info_server=Nelze se p\u0159ipojit k informa\u010Dn\u00EDmu serveru can_not_delete_predefined_style=Nelze odstranit p\u0159eddefinovan\u00FD styl can_not_delete_root_style=Nelze odstranit ko\u0159enov\u00FD styl can_not_delete_style_group=Nelze odstranit skupinu styl\u016F can_not_encrypt_cloned_node=Za\u0161ifrovan\u00E9 uzly nelze klonovat can_not_save_key_set=Nelze ulo\u017Eit sadu kl\u00E1vesov\u00FDch zkratek cancel=Storno CancelAction.text=Zru\u0161it cannot_add_parent_diff_parents=V\u0161echny uzly mus\u00ED m\u00EDt stejn\u00FD nad\u0159azen\u00FD uzel, aby tato funkce mohla b\u00FDt pou\u017Eita. cannot_add_parent_to_root=Ko\u0159enov\u00FD uzel nem\u016F\u017Ee b\u00FDt p\u0159id\u00E1n pod nov\u00E9ho rodi\u010De. cannot_delete_root=Ko\u0159enov\u00FD uzel nelze odstranit. cannot_join_nodes_with_children=Nelze spojit uzly, kter\u00E9 maj\u00ED poduzly cannot_move_into_child_node=Nelze p\u0159esunout do dce\u0159inn\u00E9ho uzlu cannot_move_to_child=Nelze p\u0159esunout uzel do jednoho ze sv\u00FDch pod\u0159\u00EDzen\u00FDch uzl\u016F. CenterAction.text=St\u0159ed ChangeConnectorArrowsAction.backward.text=Zp\u011Bt ChangeConnectorArrowsAction.both.text=Nakreslete \u0161ipky vp\u0159ed a zp\u011Bt ChangeConnectorArrowsAction.forward.text=Vp\u0159ed ChangeConnectorArrowsAction.none.text=\u017D\u00E1dn\u00E1 ChangeConnectorArrowsAction.text=Zm\u011Bnit \u0161ipky konektoru ChangeConnectorShapeAction.CUBIC_CURVE.text=K\u0159ivka ChangeConnectorShapeAction.EDGE_LIKE.text=Simulovat hranu ChangeConnectorShapeAction.LINE.text=\u010C\u00E1ra ChangeConnectorShapeAction.LINEAR_PATH.text=Line\u00E1rn\u00ED cesta ChangeNodeLevelLeftsAction.text=Uzel doleva ChangeNodeLevelLeftsAction.tooltip=Nalevo od ko\u0159enov\u00E9ho uzlu jsou uzly posunut\u00E9 dol\u016F. Stanou se d\u011Btmi uzl\u016F na stejn\u00E9 \u00FArovni. Na prav\u00E9 stran\u011B jsou posunut\u00E9 nahoru. P\u0159\u00EDmo u ko\u0159enov\u00E9ho uzlu si uzly vym\u011Bn\u00ED strany. ChangeNodeLevelRightsAction.text=Uzel doprava ChangeNodeLevelRightsAction.tooltip=Napravo od ko\u0159enov\u00E9ho uzlu jsou uzly posunut\u00E9 dol\u016F. Stanou se d\u011Btmi uzl\u016F na stejn\u00E9 \u00FArovni. Na lev\u00E9 stran\u011B jsou posunut\u00E9 nahoru. P\u0159\u00EDmo u ko\u0159enov\u00E9ho uzlu si uzly vym\u011Bn\u00ED strany. choose_cloud_color=Vyberte barvu oblaku: choose_edge_color=Vyberte barvu hrany choose_map_background_color=Zvolte barvu pozad\u00ED mapy choose_node_background_color=Vyberte barvu pozad\u00ED uzlu: choose_node_color=Vyberte barvu uzlu: ClearLinkAnchorAction.text=Vymazat kotva ClearLinkAnchorAction.tooltip=Vymazat d\u0159\u00EDve nastaven\u00E9 ukotven\u00ED CloneAction.text=Vlo\u017Eit klonovan\u00FD uzel close_btn=&Zav\u0159\u00EDt CloseAction.text=Zav\u0159\u00EDt otev\u0159enou mapu CloseAllMapsAction.text=Zav\u0159\u00EDt v\u0161echny mapy CloseAllOtherMapsAction.text=Zav\u0159\u00EDt v\u0161echny mapy krom\u011B aktivn\u00ED cloud_shapes=Tvary oblak CloudAction.text=Oblak CloudColorAction.text=Barva oblaku... CloudShapeAction.ARC.text=Oblouk CloudShapeAction.RECT.text=Obd\u00E9ln\u00EDk CloudShapeAction.ROUND_RECT.text=Zaoblen\u00FD obd\u00E9ln\u00EDk CloudShapeAction.STAR.text=Hv\u011Bzda collection.copy.presentation=Kop\u00EDruj prezentaci collection.copy.slide=Kop\u00EDruj sl\u00EDdu collection.delete=Smazat collection.down=Dol\u016F collection.move=P\u0159esu\u0148 collection.moveTo=P\u0159esu\u0148 na pozici collection.new.presentation=Nov\u00E1 prezentace collection.new.slide=Nov\u00E1 sl\u00EDda collection.up=Nahoru ColorProperty.ResetColor=Vyresetovat barvu combined=Kombinovan\u00E9 condition=Podm\u00EDnka confirmation=Potvrzen\u00ED connector=Konektor connector_arrows=\u0160ipky konektoru connector_label=Popisek konektoru connector_lines=Spojovac\u00ED \u010D\u00E1ry connector_shapes=Tvar konektoru ConnectorColorAction.text=Barva konektoru... controls=Ovl\u00E1d\u00E1n\u00ED ConvertCloneToIndependentNodeAction.text=Zru\u0161it klonov\u00E1n\u00ED copy_name={0} (kop\u00EDrovat) CopyAction.text=Kop\u00EDrovat CopyAction.tooltip=Kop\u00EDrovat vybranou v\u011Btev CopyAttributes.text=Kop\u00EDrovat atributy CopyIDAction.text=Kop\u00EDrovat ID uzlu CopyMapStylesAction.text=Kop\u00EDrovat styl mapy z... CopyNodeURIAction.text=Kop\u00EDrovat URI uzlu copyright=Copyright \u00A9 2000-2019 Freeplane t\u00FDm a dal\u0161\u00ED CopySingleAction.text=Kop\u00EDrovat samostatn\u011B CopySingleAction.tooltip=Kop\u00EDrovat vybran\u00FD uzel CopyStyleExtensionsAction.text=Kop\u00EDrovat roz\u0161\u00ED\u0159en\u00ED ze stylu uzlu corrupt_map=Obsah mapy je po\u0161kozen CreateConjunctConditionAction.text=A CreateDisjunctConditionAction.text=Nebo CreateNotSatisfiedConditionAction.text=Ne current_dir=Mapy CutAction.text=Vyjmout decrease_branch_font_size=Men\u0161\u00ED p\u00EDsmo DecreaseNodeFontAction.text=Men\u0161\u00ED p\u00EDsmo default=V\u00FDchoz\u00ED defaultAuxiliaryWordList=a, nebo DefaultColorAction.text=V\u00FDchoz\u00ED barva defaultstyle.attributes=Atributy defaultstyle.details=Podrobnosti defaultstyle.floating=Plovouc\u00ED uzel defaultstyle.note=Pozn\u00E1mka delete=Smazat delete_child=Smazat uzel DeleteAction.text=Odebrat uzel DeleteConditionAction.text=Smazat DeleteDetailsAction.text=Odstranit detaily uzlu DeleteLevelStyleAction.text=Odstranit styl \u00FArovn\u011B DeleteStyleAction.text=Odstranit styl DeleteUserStyleAction.text=Odebrat styl definovan\u00FD u\u017Eivatelem dialect_info.app=Mapa {0} byla vytvo\u0159ena programem {1}. dialect_info.later_version=Mapa {0} byla vytvo\u0159ena nov\u011Bj\u0161\u00ED verzi tohoto programu. dialect_info.unknownApp=Mapa {0} byla vytvo\u0159ena nezn\u00E1m\u00FDm programem. dialect_info.unknownURL=Webov\u00E1 str\u00E1nka nen\u00ED zn\u00E1ma. dialect_info.url=Nav\u0161tivte web programu {0} pro dal\u0161\u00ED informace. dialect_info.warning=Freeplane m\u016F\u017Ee otev\u0159\u00EDt, zobrazit nebo ulo\u017Eit nekorektn\u011B. DirectHtmlFlavorHandler=HTML jako jeden uzel DocumentationAction.text=Dokumentace down=D&ol\u016F DownConditionAction.text=Dol\u016F download=St\u00E1hnout dropped_file_error=Nen\u00ED mo\u017En\u00E9 otev\u0159\u00EDt vlo\u017Een\u00E9 soubory. D\u016Fvod: {0} edge=Hrana edge_is_formatted_by_style=Form\u00E1t hran je \u0159\u00EDzen stylem. Styly upravte dle pot\u0159eby. edge_style=Styl hrany edge_width=Tlou\u0161\u0165ka hrany edge_widths=\u0160\u00ED\u0159ka hrany EdgeColorAction.text=Barva hrany... EdgeProperties=Vlastnosti hrany EdgeStyleAction.bezier.text=Bezier EdgeStyleAction.bezier.tooltip=Zobrazit hrany jako hladkou k\u0159ivku. EdgeStyleAction.hide_edge.text=Skr\u00FDt hrany EdgeStyleAction.hide_edge.tooltip=Pro vybran\u00E9 uzly zobrazit hrany k nad\u0159azen\u00E9mu uzlu jako
te\u010Dkovanou \u010D\u00E1rou. Jinak skr\u00FDt hrany. EdgeStyleAction.horizontal.text=Horizont\u00E1ln\u00ED EdgeStyleAction.horizontal.tooltip=Pou\u017E\u00EDt pro hrany kolm\u00E9 p\u0159\u00EDmky. EdgeStyleAction.linear.text=Line\u00E1rn\u00ED EdgeStyleAction.linear.tooltip=Zobrazit hrany jako p\u0159\u00EDmku. EdgeStyleAction.sharp_bezier.text=Ostr\u00E9 Bezierovy EdgeStyleAction.sharp_bezier.tooltip=Zobrazit hrany jako hladk\u00E9 k\u0159ivky se zaost\u0159en\u00FDmi konci . EdgeStyleAction.sharp_linear.text=Ostr\u00E9 line\u00E1rn\u00ED EdgeStyleAction.sharp_linear.tooltip=Zobrazit okraje jako rovnou \u010D\u00E1ru se zaost\u0159en\u00FDmi konci. EdgeStyleAsParentAction.text=Jako nad\u0159azen\u00FD EdgeStyleAsParentAction.tooltip=Pou\u017Eijte styl hrany nad\u0159azen\u00E9ho uzlu.[Zastaral\u00E9] EdgeWidthAction_width_parent.text=Nad\u0159azen\u00FD EdgeWidthAction_width_thin.text=Tenk\u00FD edit=Upravit edit.decision=HTML Editor edit.edit_rich_text=Chcete pou\u017E\u00EDt form\u00E1tov\u00E1n\u00ED jako tu\u010Dn\u00E9 nebo kurz\u00EDva? edit_details=Upravit detail uzlu edit_end_label=Konektor
Popisek edit_label_font_family=P\u00EDsmo edit_label_font_size=Velikost p\u00EDsma edit_link_manually=Upravit odkaz manu\u00E1ln\u011B... edit_long_node=Upravit j\u00E1dro uzlu v dialogu edit_middle_label=St\u0159edn\u00ED
\u0161t\u00EDtek edit_note=Editovat pozn\u00E1mku edit_source_label=Zdrojov\u00FD
popisek edit_target_label=C\u00EDlov\u00FD
popisek edit_transparency_label=Pr\u016Fhlednost edit_width_label=\u0160\u00ED\u0159ka EditAction.text=Upravit j\u00E1dro uzlu v \u0159\u00E1dku EditAttributesAction.text=Upravit atributy v \u0159\u00E1dku EditDetailsAction.text=Upravit detail uzlu v \u0159\u00E1dku EditDetailsInDialogAction.text=Upravit detail uzlu v dialogu editEdgeColors=Upravit barvy hran EditFilterAction.text=Upravit EditLongAction.text=Upravit j\u00E1dro uzlu v dialogu EditNoteInDialogAction.text=Upravit pozn\u00E1mku v dialogu EditScript=Upravit script... EditStylesAction.text=Upravit styly EncryptedMap.text=Nov\u00E1 chr\u00E1n\u011Bn\u00E1 (\u0161ifrovan\u00E1) mapa ... EncryptedMap.tooltip=Vytvo\u0159it novou zak\u00F3dovanou mapu encryption=Zaheslov\u00E1n\u00ED enter_base_url=Budu vkl\u00E1dat relativn\u00ED odkazy. Pros\u00EDm, vlo\u017Ete z\u00E1kladn\u00ED URL. enter_command=Vlo\u017Eit p\u0159\u00EDkaz enter_condition_name=Zadejte nov\u00FD n\u00E1zev podm\u00EDnky enter_confirms=Potvrdit vlo\u017Een\u00ED enter_keyset_name=Zadat n\u00E1zev sady kl\u00E1vesov\u00FDch zkratek enter_map_url=Zadejte URL mapy enter_new_style_name=Zadejte n\u00E1zev nov\u00E9ho stylu enter_zoom=Zad\u00E1n\u00ED lupy EnterPassword.text=Od/zak\u00F3dov\u00E1n\u00ED error=Chyba error_applying_template=Chyba p\u0159i aplikov\u00E1n\u00ED XSL \u0161ablony. error_creating_directory=Nelze vytvo\u0159it adres\u00E1\u0159 pro export. error_in_template=Chyby ve v\u00FDchoz\u00ED \u0161ablon\u011B map {0}. Pokuste se odstranit tento soubor. errornumber={0} chyb ExecuteScript.available_modes.tooltip={0} je dostupn\u00FD pro ExecuteScript.script=Skript ExecuteScriptError.text=Chyba p\u0159i prov\u00E1d\u011Bn\u00ED skriptu:\n{0} ExecuteScriptForAllNodes.text=Prov\u00E9st v\u0161echny skripty ExecuteScriptForSelectionAction.text=Spustit skripty vybran\u00FDch uzl\u016F ExecuteScriptOnSelectedNode.text=Spustit {0} na v\u0161ech vybran\u00FDch uzlech ExecuteScriptOnSelectedNodeRecursively.text=Prove\u010Fte {0} na vybran\u00FDch uzlech, rekurzivn\u011B ExecuteScriptOnSingleNode.text=Spustit {0} v jednom vybran\u00E9m uzlu ExecuteScripts.noScriptsAvailable=Nen\u00ED k dispozici ExecuteScripts.text=Skripty ExecuteScriptSecurityError.text=Do\u0161lo k chyb\u011B b\u011Bhem vykon\u00E1n\u00ED skriptu: {0} export_failed=Export selhal export_pdf_text=Portable Document Format (PDF) export_svg_text=Scalable Vector Graphic (SVG) ExportAction.text=Exportovat... ExportAllPresentationsAction.text=Exportuj v\u0161echny prezentace do obr\u00E1zku form\u00E1tu PNG ExportBranchAction.text=P\u0159esunout v\u011Btev do nov\u00E9 mapy... ExportBranchToHTMLAction.text=Exportovat v\u011Btev do HTML exported_file={0} soubor ExportPdf.text=Jako PDF ExportPresentationAction.text=Exportuj aktu\u00E1ln\u00ED prezentaci do obr\u00E1zku form\u00E1tu PNG ExportSvg.text=SVG ExportToHTMLAction.text=Exportovat do HTML ExportToImage.jpg.text=JPEG ExportToImage.png.text=PNG ExportToOoWriter.text=Jako dokument Open Office Writer... ExportToOoWriter.tooltip=Rozbalen\u00E9 uzly tvo\u0159\u00ED strukturu, sbalen\u00E9 uzly tvo\u0159\u00ED obsah dokumentu. extension_menu=Fyzick\u00FD styl ExternalImage_popupMenu_Change=Zm\u011B\u0148te... ExternalImage_popupMenu_Open=Otev\u0159\u00EDt v prohl\u00ED\u017Ee\u010Di ExternalImage_popupMenu_Remove=Odstranit ExternalImage_popupMenu_ResetZoom=Vynulovat lupu ExternalImageAddAction.text=P\u0159idat obr\u00E1zek... ExternalImageChangeAction.text=Zm\u011Bnit obr\u00E1zek... ExternalImageRemoveAction.text=Odstranit obr\u00E1zek ExtractLinkFromTextAction.text=P\u0159ev\u00E9st odkaz v r\u00E1mci textu ExtractLinkFromTextAction.tooltip=Nastavit odkaz z adresy v textu uzlu extras=N\u00E1stroje f_button_unassigned=[translate me] FaqOpenURLAction.text=FAQ file=Soubor file_already_exists=Soubor {0} ji\u017E existuje. Chcete ho p\u0159epsat? file_not_accessible=Soubor {0} nen\u00ED p\u0159\u00EDstupn\u00FD file_not_found=Soubor {0} nenalezen FileListFlavorHandler=Odkazy na soubory FileProperties_BranchLeafCount=Po\u010Det koncov\u00FDch uzl\u016F ve vybran\u00FDch v\u011Btv\u00EDch: FileProperties_BranchNodeCount=Po\u010Det uzl\u016F ve vybran\u00FDch v\u011Btv\u00EDch: FileProperties_ChangesSinceLastSave=Zm\u011Bny od posledn\u00EDho ulo\u017Een\u00ED: FileProperties_FileName=N\u00E1zev souboru: FileProperties_FileSaved=Ulo\u017Een\u00FD soubor: FileProperties_FileSize=Velikost souboru: FileProperties_MainBranchCount=Po\u010Det hlavn\u00EDch v\u011Btv\u00ED: FileProperties_NeverSaved=Nikdy neulo\u017Eeno FileProperties_NodeChildCount=Po\u010Det potomk\u016F vybran\u00FDch uzl\u016F: FileProperties_NodeSelectionCount=Po\u010Det vybran\u00FDch uzl\u016F: FileProperties_TotalFilteredCount=Po\u010Det uzl\u016F, kter\u00E9 vyhovuj\u00ED filtru: FileProperties_TotalLeafCount=Celkov\u00FD po\u010Det koncov\u00FDch uzl\u016F: FileProperties_TotalNodeCount=Celkov\u00FD po\u010Det uzl\u016F: FilePropertiesAction.text=Statistika mapy... FileRevisionsDialog.cancel=&Storno FileRevisionsDialog.file_last_modified=\u010Casov\u00E9 raz\u00EDtko FileRevisionsDialog.file_name=Soubor FileRevisionsDialog.file_size=Bajt\u016F FileRevisionsDialog.open=&Otev\u0159\u00EDt FileRevisionsDialog.open.tooltip=Otev\u0159\u00EDt soubor, i kdy\u017E by mohlo b\u00FDt zastaral\u00FD FileRevisionsDialog.question=Nalezeny revize {0} FileRevisionsDialog.restore=Obn&oven\u00ED FileRevisionsDialog.restore.tooltip=Nahradit {0} za {1} FileRevisionsDialog.title=Revize souboru filter=F&iltr filter_add=P\u0159idat filter_and=A filter_any_text=J\u00E1dro, detaily nebo pozn\u00E1mku filter_clone_snapshot=Ulo\u017Een\u00E9 klony v\u00FDb\u011Bru filter_clones=Klony v\u00FDb\u011Bru filter_conditions=Podm\u00EDnky filtru filter_contains=Obsahuje filter_created_after=Vytvo\u0159eno po filter_created_before=Vytvo\u0159en\u00E9 p\u0159ed filter_delete=Smazat filter_details=Podrobnosti filter_dialog=Kompozice filtru filter_does_not_exist=Neexistuje filter_edit_description=Upravit seznam filtr\u016F filter_enter_value=Vlo\u017Eit hodnotu filter_even_level=Lich\u00E1 \u00FArove\u0148 uzlu filter_exist=Existuje filter_icon=Ikona filter_is_equal_to=je rovno filter_is_not_equal_to=nen\u00ED rovno filter_leaf=Koncov\u00FD uzel filter_link=Hyperlink[translate me] filter_match_approximately=& P\u0159ibli\u017En\u00E9 filter_match_approximately.tooltip=Zda povolit p\u0159ibli\u017En\u00E1 porovn\u00E1n\u00ED,
tj. vyhled\u00E1v\u00E1n\u00ED 'files' nalezne 'flies'. filter_match_case=Rozli\u0161ovat mal\u00E1 a velk\u00E1 p\u00EDsmena filter_match_case.tooltip=Zda respektovat velikost p\u00EDsmen, kdy\u017E je shoda. filter_modified_after=Zm\u011Bn\u011Bno po filter_modified_before=Zm\u011Bn\u011Bno p\u0159ed filter_no_filtering=Bez filtrov\u00E1n\u00ED (odstranit) filter_node=Text uzlu filter_node_level=\u00DArove\u0148 uzlu filter_not=Ne filter_note=Pozn\u00E1mka filter_odd_level=I \u00FArove\u0148 uzel filter_or=Nebo filter_parent=Nad\u0159azen\u00FD text filter_periodic_level=Periodick\u00FD filter_priority=Priorita filter_regexp_matches=Vyhovuje regul. v\u00FDrazu filter_reminder=\u010Casova\u010D filter_reminder_after=pl\u00E1novan\u00E9 po filter_reminder_before=napl\u00E1nov\u00E1no p\u0159ed filter_reminder_executed=ji\u017E aktivov\u00E1no filter_reminder_later=pl\u00E1novan\u00E9 pozd\u011Bji filter_root=Ko\u0159enov\u00FD uzel filter_script=Skriptov\u00FD filtr filter_select=Vybrat filter_selected_node_view=Aktu\u00E1ln\u011B vybran\u00E9 uzly filter_selected_node_view_snapshot=Ulo\u017Een\u00FD v\u00FDb\u011Br filter_style=Styl filter_time=Datum FilterCondition=Podm\u00EDnky filtru filterConditions=U\u017Eivatelsky definovan\u00E9 filtry filterConditions.noActions=\u017D\u00E1dn\u00E9 pojmenovan\u00E9 filtry filters_not_loaded=Nelze na\u010D\u00EDst filtr, soubor po\u0161kozen find=Najdi find_what=Naj\u00EDt co FindAction.text=Naj\u00EDt... FindNextAction.text=Najdi n\u00E1sleduj\u00EDc\u00ED FindPreviousAction.text=Najdi p\u0159edchoz\u00ED fit_background_to_page=P\u0159izp\u016Fsob obr\u00E1zek na pozad\u00ED na jednu str\u00E1nku fit_map_to_page=Na jednu str\u00E1nku fit_map_to_page_height=P\u0159izp\u016Fsobit &v\u00FD\u0161ku na jednu str\u00E1nku fit_map_to_page_width=P\u0159izp\u016Fsobit & \u0161\u00ED\u0159ku na jednu str\u00E1nku FitToPage.text=Zobrazit celou mapu FitToPage.tooltip=Uprav\u00ED p\u0159ibl\u00ED\u017Een\u00ED tak, \u017Ee se do okna vejde cel\u00E1 mapa. fold=Slo\u017Eit FoldAllAction.text=Slo\u017Eit v\u0161e FoldAllAction.tooltip=Slo\u017Eit vybran\u00E9 uzly a v\u0161echny jejich poduzly. FoldOneLevelAction.text=Slo\u017Eit jednu \u00FArove\u0148 FoldOneLevelAction.tooltip=Slo\u017Eit vybran\u00E9 uzly o jednu \u00FArove\u0148. follow_clone=Uvnit\u0159 "{0}" follow_graphical_link=P\u0159ej\u00EDt na "{0}" FollowLinkAction.text=N\u00E1sledovat odkaz font=p\u00EDsmo FontFamilyAction.text=P\u00EDsmo FontSizeAction.text=Velikost p\u00EDsma format=Form\u00E1t format_invalid_pattern=Neolatn\u00FD vzor format_menu_cloud_shapes=P\u0159idejte mrak nebo zm\u011Bnte styl format_menu_edge_styles=Styly hran format_menu_edge_widths=\u0160\u00ED\u0159ky hran format_panel=Form\u00E1t FormatCopy.text=Kop\u00EDrovat form\u00E1t FormatCopy.tooltip=Zkop\u00EDruje form\u00E1t uzlu. FormatPaste.text=Vlo\u017Eit form\u00E1t FormatPaste.tooltip=Aplikuje form\u00E1t na uzel. formats_not_loaded=Nelze na\u010D\u00EDst form\u00E1t, soubor po\u0161kozen formula.error.attributeValueIsNull=Hodnota atributu ''{0}'' je po vyhodnocen\u00ED null. formula.error.circularReference=Cyklick\u00FD odkaz: vzorec v uzlu {0} ''{1}'' odkazuje s\u00E1m na sebe. formula.EvaluateAllAction.text=Vyhodnotit v\u0161e formula.EvaluateAllAction.tooltip=Vyhodnotit v\u0161echny vzorce v sou\u010Dasn\u00E9 map\u011B formula.menuname=Vzorce formula_editor=Upravit vzorec ForwardAction.text=Vp\u0159ed ForwardAction.tooltip=P\u0159esko\u010D\u00ED vp\u0159ed na vybran\u00FD \u0159et\u011Bzec FreeNodeAction.text=Voln\u00FD uzel (set / reset) Freeplane.progress.buildScreen=Vytv\u00E1\u0159\u00EDm obrazovku... Freeplane.progress.createController=Vytv\u00E1\u0159\u00EDm kontroler... Freeplane.progress.createInitialMode=Vytv\u00E1\u0159\u00EDm \u00FAvodn\u00ED m\u00F3d... Freeplane.progress.endStartup=Start ukon\u010Den. Freeplane.progress.gettingPreferenceDirectories=Z\u00EDsk\u00E1v\u00E1m slo\u017Eky nastaven\u00ED... Freeplane.progress.gettingPreferences=Z\u00EDsk\u00E1v\u00E1m nastaven\u00ED... Freeplane.progress.loadMaps=Nahr\u00E1v\u00E1m mapy... Freeplane.progress.propagateLookAndFeel=Propaguji vzhled a t\u00E9ma... Freeplane.progress.settingPreferences=Nastavuji mo\u017Enosti... Freeplane.progress.startCreateController=Startuji kontroler... Freeplane.progress.updateLookAndFeel=Aktualizuji vzhled a t\u00E9ma... freeplane_reverted=Freeplane_Vraceno_ FreeplaneHelpStarter.text=Online n\u00E1pov\u011Bda... FreeplaneHelpStarter.tooltip=Freeplane roz\u0161\u00ED\u0159en\u00E1 n\u00E1pov\u011Bda goto=P\u0159ejdi goto.noActions=\u017D\u00E1dn\u00E9 c\u00EDlov\u00E9 uzly GotoLinkNodeAction.text=N\u00E1sledovat odkaz GrabKeyDialog.common.cancel=Storno GrabKeyDialog.common.ok=OK GrabKeyDialog.grab-key.assigned-to=P\u0159i\u0159azeno k GrabKeyDialog.grab-key.assigned-to.none=Aktu\u00E1ln\u011B nep\u0159i\u0159azeno GrabKeyDialog.grab-key.clear=Smazat GrabKeyDialog.grab-key.remove=Odstranit GrabKeyDialog.grab-key.remove-ask=Jste si jist odstranen\u00EDm t\u00E9to kl\u00E1vesov\u00E9 zkratky? GrabKeyDialog.grab-key.title=Zadejte novou kl\u00E1vesu green=Zelen\u00E1 help=N\u00E1pov\u011Bda HideableAction.tooltip=Ozna\u010D\u00ED pozad\u00ED ka\u017Ed\u00E9ho zm\u011Bn\u011Bn\u00E9ho uzlu. HideAllAttributesAction.text=Skr\u00FDt v\u0161echny atributy HierarchicalIcons2Action.text=Zobrazit pr\u016Fnik ikon potomk\u016F HierarchicalIconsAction.text=Uk\u00E1zat ikony hierarchicky HierarchicalIconsAction.tooltip=Pokud jeden z poduzl\u016F m\u00E1 ikonu, uk\u00E1\u017Ee se ta ikona tak\u00E9 v mal\u00E9m form\u00E1tu. hot_keys=Kl\u00E1vesov\u00E9 zkratky hot_keys_table=Tabulka kl\u00E1vesov\u00FDch zkratek HotKeyInfoAction.text=Seznam kl\u00E1vesov\u00FDch zkratek html_export_based_on_headings=HTML Export - Zalo\u017Eeno na nadpisech html_export_fold_all=HTML Export - Slo\u017Eit v\u0161e html_export_fold_currently_folded=HTML Export - Skl\u00E1dat moment\u00E1ln\u011B slo\u017Een\u00E9 html_export_no_folding=HTML Export - Bez skl\u00E1d\u00E1n\u00ED html_problem=Nelze vykreslit html

{0} icon_0%=0%[translate me] icon_100%=100%[translate me] icon_25%=25%[translate me] icon_50%=50%[translate me] icon_75%=75%[translate me] icon_addition=S\u010D\u00EDt\u00E1n\u00ED icon_attach=P\u0159\u00EDloha icon_audio=Zvuk icon_back=Zp\u011Bt icon_bee=Freeplane[translate me] icon_bell=Nezapome\u0148 icon_bookmark=Obl\u00EDben\u00E9 icon_broken-line=Broken[translate me] icon_button_cancel=Zru\u0161it icon_button_ok=OK icon_calendar=Datum icon_checked=Za\u0161krtnuto icon_clanbomber=Riziko icon_clock=\u010Cas icon_clock2=P\u0159ipomenut\u00ED icon_closed=No Entry[translate me] icon_decrypted=Unlocked[translate me] icon_desktop_new=Nezapome\u0148 icon_division=D\u011Blen\u00ED icon_down=Dol\u016F icon_edit=Vylep\u0161it icon_encrypted=Uzam\u010Deno icon_executable=Spustiteln\u00FD icon_family=Rodina icon_fema=Females[translate me] icon_female1=Female1[translate me] icon_female2=Female2[translate me] icon_females=Females[translate me] icon_flag=Vlajka icon_flag-black=Black Flag[translate me] icon_flag-blue=Modr\u00E1 vlajka icon_flag-green=Green Flag[translate me] icon_flag-orange=Oran\u017Eov\u00E1 vlajka icon_flag-pink=R\u016F\u017Eov\u00E1 vlajka icon_flag-yellow=\u017Dlut\u00E1 vlajka icon_folder=Slo\u017Eka icon_forward=Vp\u0159ed icon_freemind_butterfly=FreeMind[translate me] icon_full-0=Priorita 0 icon_full-1=Priorita 1 icon_full-2=Priorita 2 icon_full-3=Priorita 3 icon_full-4=Priorita 4 icon_full-5=Priorita 5 icon_full-6=Priorita 6 icon_full-7=Priorita \u010D. 7 icon_full-8=Priorita 8 icon_full-9=Priorita 9 icon_go=Zelen\u00FD semafor icon_gohome=Dom\u016F icon_group=Skupina icon_help=Ot\u00E1zka icon_hourglass=\u010Cek\u00E1n\u00ED icon_icon_not_found=Ikona nalezena icon_idea=My\u0161lenka icon_image=Obr\u00E1zek icon_info=Info[translate me] icon_internet=Internet icon_internet_warning=Internetov\u00E9 varov\u00E1n\u00ED icon_kaddressbook=Telefon icon_kmail=E-Mail[translate me] icon_knotify=Hudba icon_korn=Schr\u00E1nka icon_ksmiletris=Jsem happy icon_launch=Spu\u0161t\u011Bn\u00ED icon_licq=Hezk\u00E9 icon_list=Seznam icon_Mail=Dopis icon_male1=Male1[translate me] icon_male2=Male2[translate me] icon_males=Males[translate me] icon_menu=Ikony icon_messagebox_warning=D\u016Fle\u017Eit\u00E9 icon_mindmap=My\u0161lenkov\u00E1 mapa icon_multiplication=N\u00E1soben\u00ED icon_narrative=Internet icon_negative=Negativn\u00ED icon_neutral=Neutr\u00E1ln\u00ED icon_password=Heslo icon_pencil=K up\u0159esn\u011Bn\u00ED icon_penguin=Linux icon_positive=Pozitivn\u00ED icon_prepare=\u017Dlut\u00FD semafor icon_revision=Revize icon_revision-green=Revize - zelen\u00E1 icon_revision-pink=Revize - r\u016F\u017Eov\u00E1 icon_revision-red=Revize - \u010Derven\u00E1 icon_smiley-angry=Zlost icon_smiley-neutral=No Mind[translate me] icon_smiley-oh=P\u0159ekvapen\u00ED icon_smily_bad=V\u016Fbec se nebav\u00EDm icon_stop=Stop icon_stop-sign=Stop[translate me] icon_subtraction=Ode\u010D\u00EDt\u00E1n\u00ED icon_unchecked=Nezatr\u017Een\u00E9 icon_up=Nahoru icon_user_icon=U\u017Eivatelsk\u00E9 ikony icon_very_negative=Velmi negativn\u00ED icon_very_positive=Velmi pozitivn\u00ED icon_video=Video icon_wizard=Magie icon_xmag=K diskusi icon_yes=D\u016Fle\u017Eit\u00E9 IconGroupPopupAction.arrows.text=Arrows[translate me] IconGroupPopupAction.docs_folders.text=Docs & Folders[translate me] IconGroupPopupAction.flags.text=Vlajky IconGroupPopupAction.math.text=Matematick\u00E9 IconGroupPopupAction.media.text=M\u00E9dia IconGroupPopupAction.miscellaneous.text=R\u016Fzn\u00E9 IconGroupPopupAction.nature.text=P\u0159\u00EDroda IconGroupPopupAction.numbers.text=\u010C\u00EDsla IconGroupPopupAction.office.text=Kancel\u00E1\u0159 IconGroupPopupAction.people.text=Lid\u00E9 IconGroupPopupAction.rating.text=Hodnocen\u00ED IconGroupPopupAction.signs.text=Zna\u010Dky IconGroupPopupAction.smiley.text=Smiley[translate me] IconGroupPopupAction.time.text=\u010Cas IconGroupPopupAction.user.text=U\u017Eivatelsk\u00E9 ikony IconProgressExtended10Action.text=Pokrok 10% IconProgressExtended10Action.tooltip=P\u0159id\u00E1 ukazatel pr\u016Fb\u011Bhu, kter\u00FD se zv\u00FD\u0161\u00ED o 10% p\u0159i dvojkliku lev\u00FDm tla\u010D\u00EDtkem my\u0161i.
Ctrl + dvojklik lev\u00FDm tla\u010D\u00EDtkem my\u0161i ho sn\u00ED\u017E\u00ED/ odstran\u00ED. IconProgressExtended25Action.text=Pokrok 25 % IconProgressExtended25Action.tooltip=P\u0159id\u00E1 ukazatel pr\u016Fb\u011Bhu, kter\u00FD se zv\u00FD\u0161\u00ED o 25% p\u0159i dvojkliku lev\u00FDm tla\u010D\u00EDtkem my\u0161i.
Ctrl + dvojklik lev\u00FDm tla\u010D\u00EDtkem my\u0161i ho sn\u00ED\u017E\u00ED/ odstran\u00ED. IconProgressIconDownAction.text=Pokles IconProgressIconDownAction.tooltip=Sni\u017Euje/ vkl\u00E1d\u00E1/ odstran\u00ED ikony pr\u016Fb\u011Bhu (100% -> 75% -> 50% -> 25% -> 0% -> odstranit). IconProgressIconUpAction.text=Pokrok IconProgressIconUpAction.tooltip=Zvy\u0161uje/ vkl\u00E1d\u00E1 ikony pr\u016Fb\u011Bhu (0% -> 25% -> 50% -> 75% -> 100% + OK). IconProgressRemoveAction.text=Odstranit pokrok IconProgressRemoveAction.tooltip=Odstra\u0148uje ikony pr\u016Fb\u011Bhu a roz\u0161\u00ED\u0159en\u00E9 ikony pr\u016Fb\u011Bhu. icons=Ikony IconSelectionPlugin.text=V\u00FDb\u011Br ikony... IconSelectionPlugin.tooltip=Pomoc\u00ED n\u00E1sleduj\u00EDc\u00EDho okna m\u016F\u017Eete vybrat ikonu. image_covertLink=P\u0159ev\u00E9st odkaz na obr\u00E1zek ImageFlavorHandler=Obr\u00E1zek (samostatn\u00FD soubor) import=Importovat import_linked_branch_no_link=Vybran\u00FD uzel nem\u00E1 \u017E\u00E1dn\u00FD odkaz, ze kter\u00E9ho se d\u00E1 importovat. ImportAction.text=Import mapy ImportBranchAction.text=V\u011Btev... ImportExplorerFavoritesAction.text=Obl\u00EDben\u00E9 polo\u017Eky z Exploreru... ImportFolderStructureAction.text=Strukturu slo\u017Eky... ImportLinkedBranchAction.text=Importovat odkazovanou v\u011Btev ImportLinkedBranchWithoutRootAction.text=Odkazovanou v\u011Btev bez ko\u0159enov\u00E9ho uzlu... ImportMindmanagerFiles.text=Mapa MindManager X5... ImportXmlFile.text=Importuj soubor XML increase_branch_font_size=V\u011Bt\u0161\u00ED p\u00EDsmo IncreaseNodeFontAction.text=V\u011Bt\u0161\u00ED p\u00EDsmo internal_error.tooltip=Do\u0161lo k vnit\u0159n\u00ED chyb\u011B. Klepnut\u00EDm sem otev\u0159ete nejnov\u011Bj\u0161\u00ED log.0 souboru protokolu pro dal\u0161\u00ED informace. invalid_export_file=Neplatn\u00FD n\u00E1zev souboru invalid_file_msg=Nepoda\u0159ilo se naj\u00EDt soubor {0} invalid_uri=Neplatn\u00E9 URI {0} invalid_url=Nelze vytvo\u0159it platnou URL invalid_url_msg=Nelze vytvo\u0159it platnou URL pro {0} ItalicAction.text=Kurz\u00EDva italicise_branch=Nastavit kurz\u00EDvu java_version=Java verze: {0} JoinNodesAction.separator.format=Spoj uzly s "{0}" lastOpenedMaps=Posledn\u00ED mapy lastOpenedMaps.noActions=\u017D\u00E1dn\u00E9 mapy v historii latex_editor=Editace LaTeX vzorce LatexDeleteLatexAction.text=Odstran\u011Bn\u00ED LaTeX vzorce LatexEditLatexAction.text=Editace LaTeX vzorce... LatexInsertLatexAction.msg1=Pokou\u0161\u00EDte se vlo\u017Eit zastaral\u00E9 LaTeX vzorce.
Nov\u00FD zp\u016Fsob, jak vytvo\u0159it text LaTeXu, je pops\u00E1n na t\u00E9to str\u00E1nce: LatexInsertLatexAction.msg2=Ve zkratce:
  • Pou\u017Eij kl\u00ED\u010Dov\u00E9 slovo "\\latex " v uzlu p\u0159ed vlastn\u00EDm textem, nebo
  • Zobrazit->Panel n\u00E1stroj\u016F, pak Text uzlu->Form\u00E1t->Latex
LatexInsertLatexAction.text=P\u0159id\u00E1n\u00ED LaTeX vzorce... latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=in LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px less_than_two_selected_nodes=Mus\u00EDte vybrat alespo\u0148 dva uzly, aby se mohly vytvo\u0159it odkazy. license=Licence: GPL 2 nebo nov\u011Bj\u0161\u00ED license_text=Tento program je svobodn\u00FD software; m\u016F\u017Eete jej \u0161\u00ED\u0159it a/nebo
modifikovat podle podm\u00EDnek GNU General Public License
,vydan\u00E9 Free Software Foundation; bu\u010F ve verzi 2
t\u00E9to licence, nebo (podle vlastn\u00EDho uv\u00E1\u017Een\u00ED) kter\u00E9koliv pozd\u011Bj\u0161\u00ED verze.
Tento program je \u0161\u00ED\u0159en v nad\u011Bji, \u017Ee bude u\u017Eite\u010Dn\u00FD,
ale BEZ JAK\u00C9KOLIV Z\u00C1RUKY; dokonce i bez p\u0159edpokl\u00E1dan\u00E9 z\u00E1ruky
obchodovatelnosti pro ur\u010Dit\u00FD \u00FA\u010Del.
Viz GNU General Public License pro bli\u017E\u0161\u00ED informace.

M\u011Bli byste obdr\u017Eet kopii GNU General Public License
spolu s t\u00EDmto programem. Pokud tomu tak nen\u00ED, napi\u0161te do Free Sofware Foundation, Inc., 51 Franklin Street, 5. patro, Boston, MA 02110-1301 USA. link_error=Nespr\u00E1vn\u00E9 odkaz "{0}" nebyl na\u010Dten link_not_available_any_more=Odkaz ji\u017E nen\u00ED platn\u00FD. Uzel byl pravd\u011Bpodobn\u011B smaz\u00E1n. link_not_found=Link {0} nenalezen. links=Odkaz load=&Nahr\u00E1t load_accelerator_presets=Nahr\u00E1t load_accelerator_presets.noActions=\u017D\u00E1dn\u00E9 p\u0159edvolby LoadAcceleratorPresetsAction.textPatterns.text=Text Patterns[translate me] locking_failed_by_open=Uzam\u010Den\u00ED mapy {0} se nezda\u0159ilo. Soubor otev\u0159en pouze ke \u010Dten\u00ED. locking_failed_by_save_as=Uzam\u010Den\u00ED mapy {0} se nezda\u0159ilo. Akce Ulo\u017Eit je zru\u0161ena. locking_old_lock_removed=Mapa {0} byla uzam\u010Dena u\u017Eivatelem {1}. Z\u00E1mek byl odstran\u011Bn, proto\u017Ee byl p\u0159\u00EDli\u0161 star\u00FD. long_node_changed_cancel=Zm\u011Bnil(a) jste uzel. Chcete zahodit zm\u011Bny? 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? main_menu=Menu main_resource_directory=Instala\u010Dn\u00ED zdroje: {0} MainView.errorUpdateText=Chyba p\u0159i nastavov\u00E1n\u00ED textu pro n\u00E1sleduj\u00EDc\u00ED vstup: {0}:{1}. MakeLinkFromAnchorAction.text=Vyvo\u0159 odkaz z kotvy MakeLinkFromAnchorAction.tooltip=vytvo\u0159\u00ED lok\u00E1ln\u00ED nebo glob\u00E1ln\u00ED odkaz z
kotvy do vybran\u00E9ho uzlu MakeLinkToAnchorAction.text=Vytvo\u0159\u00ED odkaz na kotvu MakeLinkToAnchorAction.tooltip=Vytvo\u0159en\u00ED m\u00EDstn\u00ED nebo glob\u00E1ln\u00ED odkaz z
vybran\u00E9 pozn\u00E1mky na kotvu ManageAddOnsAction.text=Dopl\u0148ky ManageAddOnsDialog.activate=Aktivovat ManageAddOnsDialog.activation.success={0} bude aktivov\u00E1n po restartov\u00E1n\u00ED po\u010D\u00EDta\u010De. ManageAddOnsDialog.authored.by=podle {0} ManageAddOnsDialog.cannot.activate=Nelze aktivovat: {0} je ji\u017E aktivn\u00ED. ManageAddOnsDialog.cannot.configure=Nelze konfigurovat {0}. ManageAddOnsDialog.cannot.deactivate=Nelze deaktivovat: {0} nen\u00ED aktivn\u00ED. ManageAddOnsDialog.cannot.deinstall=Nelze odinstalovat {0}. ManageAddOnsDialog.configure=Konfigurace ManageAddOnsDialog.deactivate=Deaktivovat ManageAddOnsDialog.deactivation.success={0} bude deaktivov\u00E1n po restartov\u00E1n\u00ED po\u010D\u00EDta\u010De. ManageAddOnsDialog.deinstall=Odinstalovat ManageAddOnsDialog.deinstallation.success={0} bude odinstalv\u00E1no po restartu. ManageAddOnsDialog.error=Chyba p\u0159i instalaci: {0}. ManageAddOnsDialog.install=&Instalovat ManageAddOnsDialog.install.from.known.location=Nainstalovat dopln\u011Bk ze zn\u00E1m\u00E9ho um\u00EDst\u011Bn\u00ED ManageAddOnsDialog.install.tooltip=Vlo\u017Ete adresu URL souboru instalace dopl\u0148ku sem ManageAddOnsDialog.map.not.opened=Mapa {0} nem\u016F\u017Ee b\u00FDt otev\u0159ena. ManageAddOnsDialog.really.deinstall=Opravdu odinstalovat {0}? ManageAddOnsDialog.search=Hledat dopl\u0148ky ManageAddOnsDialog.search.file=Hledat ManageAddOnsDialog.select.tooltip=Vybrat soubor ManageAddOnsDialog.status.downloading=Stahov\u00E1n\u00ED souboru... ManageAddOnsDialog.status.installing=Instalace dopl\u0148ku... ManageAddOnsDialog.status.success=\u00DAsp\u011B\u0161n\u011B nainstalov\u00E1no {0}. ManageAddOnsDialog.tab.install=Hledat a nainstalovat ManageAddOnsDialog.tab.install.tooltip=Hledat a nainstalovat nov\u00E9 dopl\u0148ky ManageAddOnsDialog.tab.manage=Dopl\u0148ky ManageAddOnsDialog.tab.manage.themes=T\u00E9mata ManageAddOnsDialog.tab.manage.themes.tooltip=Spr\u00E1va nainstalovan\u00FDch motiv\u016F ManageAddOnsDialog.tab.manage.tooltip=Spr\u00E1va nainstalovan\u00FDch dopl\u0148k\u016F ManageAddOnsDialog.visit.addon.page=Nav\u0161tivte str\u00E1nku dopl\u0148k\u016F... ManageConditionalStylesAction.text=Spr\u00E1va podm\u00EDn\u011Bn\u00FDch styl\u016F mapy ManageNodeConditionalStylesAction.text=Spr\u00E1va podm\u00EDn\u011Bn\u00FDch styl\u016F uzlu map_already_exists=Soubor mapy u\u017E existuje. Chcete ho p\u0159epsat? map_background=Pozad\u00ED mapy map_background_image=Obr\u00E1zek na pozad\u00ED map_corrupted=Mapa je poni\u010Den\u00E1. Chcete zobrazit detaily? map_load_error=Nelze na\u010D\u00EDst mapu {0} map_locked_by_open=Mapa {0} je moment\u00E1ln\u011B editovan\u00E1 u\u017Eivatelem {1}. Otev\u0159ena je pouze ke \u010Dten\u00ED. map_locked_by_save_as=Mapa {0} je moment\u00E1ln\u011B editovan\u00E1 u\u017Eivatelem {1}. Akce Ulo\u017Eit jako zru\u0161ena. map_not_saved=Mapa nebyla d\u0159\u00EDve ulo\u017Eena. MapBackgroundClearAction.text=Vyma\u017E MapBackgroundColorAction.text=Barva pozad\u00ED MapBackgroundImageAction.text=Obr\u00E1zek na pozad\u00ED... maps=Mapy MaxNodeWidth.text=Maxim\u00E1ln\u00ED \u0161\u00ED\u0159ka uzlu menu_applyStyle=Pou\u017E\u00EDt styl menu_attributes=Atributy menu_clouds=Mraky menu_copy=Kop\u00EDrovat menu_coreFormat=J\u00E1dro uzlu menu_details=Detail menu_displayAttributes=Atributy uzlu menu_encryption=Ochrana heslem menu_error=Chyba v u\u017Eivatelsky definovan\u00E9 struktu\u0159e menu {0}:\n{1}\nRu\u0161\u00EDm menu_group=Skupina uzl\u016F menu_hoverView=N\u00E1strojov\u00E9 tipy menu_iconByCategory=Ikona podle kategorie... menu_iconView=Ikony menu_image=Obr\u00E1zek menu_insert=Vlo\u017Eit menu_latex_formula=LaTeX vzorce menu_manageStyles=&Spravovat styly menu_moveNode=P\u0159esun a t\u0159\u00EDdit menu_newNode=Nov\u00FD uzel menu_node=Uzel menu_node_features=Vlastnosti &uzlu menu_nodes=&Uzly menu_nodeView=J\u00E1dro uzlu menu_noteView=Pozn\u00E1mky menu_openmaps=Mapy menu_remove_icons=Odstranit ikony menu_removeAttribute=Odstranit atribut menu_select=Vyberte menu_time=Organizace \u010Dasu menu_title=J\u00E1dro uzlu menu_viewmode=Nastaven\u00ED zobrazen\u00ED MenuUtils.invalid_menuitem={0} nen\u00ED platn\u00E1 polo\u017Eka kl\u00ED\u010De. mindmap=Mapa MindMapNodesFlavorHandler=Hierarchie uzlu mindmaps=Mapy mindmaps_desc=Mapa (*.mm) mindmaps_filter_desc=Filtry (*.mmfilter) MinNodeWidth.text=Nastavte minim\u00E1ln\u00ED \u0161\u00ED\u0159ku uzlu mode_Browse=Prohl\u00ED\u017Eec\u00ED re\u017Eim mode_File=Re\u017Eim souboru mode_MindMap=Re\u017Eim my\u0161lenkov\u00E9 mapy mode_na=M\u00F3d nedostupn\u00FD mode_status=M\u00F3d zm\u011Bn\u011Bn na {0} M\u00F3d mode_StyleMap=Editovat styl mode_title=Freeplane - {0} M\u00F3d modes=M\u00F3dy ModesMenuAction.Browse.text=Prohl\u00ED\u017Ee\u010D map ModesMenuAction.File.text=Spr\u00E1vce soubor\u016F ModesMenuAction.MindMap.text=Mind Map Editor[translate me] most_recent_files=Posledn\u00ED soubory MoveAction.text=P\u0159esunout MoveSelectedNodeAction.CENTER.text=Centrovat vybran\u00FD uzel MoveSelectedNodeAction.EAST.text=P\u0159esunout vybran\u00FD uzel vpravo MoveSelectedNodeAction.WEST.text=P\u0159esunout vybran\u00FD uzel vlevo MoveToRootAction.text=P\u0159esunout do ko\u0159ene NameConditionAction.text=Nastavit n\u00E1zev navigate=&Navigovat NavigationNextMapAction.text=Dal\u0161\u00ED mapa NavigationPreviousMapAction.text=P\u0159ede\u0161l\u00E1 mapa new=&Nov\u00FD new_map_from_user_templates.text=Nov\u00E1 mapa dle \u0161ablony... new_mindmap=Nov\u00E1 mapa new_node=Nov\u00FD uzel new_node_as_sibling_not_possible_for_the_root=Nem\u016F\u017Eete vlo\u017Eit nov\u00FD uzel na stejnou \u00FArove\u0148 jako je ko\u0159en new_version_available=Dostupn\u00E1 nov\u00E1 verze ''{0}'' NewChildAction.text=Nov\u00FD poduzel NewerFileRevisionsFoundDialog.cancel=P\u0159e&sko\u010Dit NewerFileRevisionsFoundDialog.cancel.tooltip=Neotv\u00EDrejte tento soubor NewerFileRevisionsFoundDialog.file_last_modified=\u010Casov\u00E1 zna\u010Dka NewerFileRevisionsFoundDialog.file_name=Soubor NewerFileRevisionsFoundDialog.file_size=bajt\u016F NewerFileRevisionsFoundDialog.open=&Otev\u0159\u00EDt NewerFileRevisionsFoundDialog.open.tooltip=Otev\u0159\u00EDt soubor, i kdy\u017E by mohl b\u00FDt zastaral\u00FD NewerFileRevisionsFoundDialog.question=Nalezeny nov\u011Bj\u0161\u00ED revize {0}! NewerFileRevisionsFoundDialog.restore=Obn&ovit NewerFileRevisionsFoundDialog.restore.tooltip=Nahradit {0} za {1} NewerFileRevisionsFoundDialog.title=Nalezeny nov\u011Bj\u0161\u00ED revize soubor\u016F! NewFreeNodeAction.text=Nov\u00FD plovouc\u00ED uzel NewLevelStyleAction.text=P\u0159idat \u00FArove\u0148 stylu newmap.install.addon.question={0} se zd\u00E1 b\u00FDt bal\u00ED\u010Dek s dopl\u0148kem\nChcete jej nainstalovat?\n(Zvolte "Ne" pro norm\u00E1ln\u00ED spu\u0161t\u011Bn\u00ED.) newmap.install.addon.title=Nainstalovat dopln\u011Bk? NewMapAction.text=Nov\u00E1 mapa NewMapViewAction.text=Nov\u00FD pohled na mapu NewParentNode.text=Nov\u00FD nad\u0159azen\u00FD uzel NewParentNode.tooltip=V\u0161echny vybran\u00E9 uzly budou p\u0159i\u0159azen\u00E9 nov\u00E9mu nad\u0159azen\u00E9mu uzlu. NewPreviousSiblingAction.text=Nov\u00FD uzel na stejn\u00E9 \u00FArovni nad NewSiblingAction.text=Nov\u00FD uzel na stejn\u00E9 \u00FArovni pod NewSummaryAction.text=Nov\u00FD souhrnn\u00FD uzel (vybran\u00E9 uzly) NewUserStyleAction.text=Nov\u00FD styl z v\u00FDb\u011Bru NextNodeAction.BACK.text=J\u00EDt na p\u0159edchoz\u00ED uzel NextNodeAction.BACK_N_FOLD.text=J\u00EDt na p\u0159edchoz\u00ED uzel (slo\u017Eit) NextNodeAction.FORWARD.text=J\u00EDt na dal\u0161\u00ED uzel NextNodeAction.FORWARD_N_FOLD.text=J\u00EDt na dal\u0161\u00ED uzel (slo\u017Eit) NextPresentationItemAction.text=Rozlo\u017E dal\u0161\u00ED polo\u017Eku prezentace (slo\u017Eenou) no=Ne no_copy_attributes_before_paste_attributes=Nem\u016F\u017Eete vlo\u017Eit atributy, dokud n\u011Bjak\u00E9 nezkop\u00EDrujete. NO_FORMAT=Text no_format_copy_before_format_paste=Nem\u016F\u017Eete aplikovat form\u00E1t, dokud ho nezkop\u00EDrujete. no_found_from=V "{1}" nebyl nalezen \u017E\u00E1dn\u00FD v\u00FDraz {0}. no_more_found_from=Od "{1}" u\u017E nebyl nalezen \u017E\u00E1dn\u00FD dal\u0161\u00ED v\u00FDraz {0}. no_previous_find=P\u0159edchoz\u00ED nenalezen. no_styles_found_in_map=\u017D\u00E1dn\u00E9 styly nenalezeny v map\u011B no_translation_strings_found=Nenalezen \u017E\u00E1dn\u00FD p\u0159elo\u017Eiteln\u00FD \u0159et\u011Bzec node=Uzel node_changed_discard_changes=Zm\u011Bnili jste uzel. Chcete zahodit zm\u011Bny? node_is_write_protected=C\u00EDlov\u00FD uzel je chr\u00E1n\u011Bn proti z\u00E1pisu. node_location_help=P\u0159eta\u017Een\u00ED zm\u011Bn\u00ED um\u00EDst\u011Bn\u00ED uzlu, Ctrl+ta\u017Een\u00ED zm\u011Bn\u00ED vzd\u00E1lenosti, dvojklik a Ctrl+dvojklik je resetuje. node_popup_scripting=Skripty node_selector=V\u00FDb\u011Br uzlu node_selector_message=Dvojklikem vyberete uzel node_styles=Styly uzlu NodeBackgroundColorAction.text=Barva pozad\u00ED uzlu... NodeColorAction.text=Barva uzlu... NodeColorBlendAction.text=M\u00EDsit barvu NodeDownAction.text=Uzel dol\u016F NodeExtensions.EditNodeExtensions=Upravit roz\u0161\u00ED\u0159en\u00ED uzlu NodeExtensions.RemoveNodeExtensions=Odebrat roz\u0161\u00ED\u0159en\u00ED uzlu NodeListAction.text=Naj\u00EDt a nahradit... NodeListAction.tooltip=Uk\u00E1\u017Ee v\u0161echny uzly jako prohledateln\u00FD seznam s filtrem vlastnost\u00ED. NodeShapeAction.bubble.text=Bublina NodeShapeAction.fork.text=V\u011Btev NodeShapeAction.narrow_hexagon.text=\u00DAzk\u00FD \u0161esti\u00FAheln\u00EDk NodeShapeAction.oval.text=Ov\u00E1l NodeShapeAction.rectangle.text=Obd\u00E9ln\u00EDk NodeShapeAction.wide_hexagon.text=\u0160irok\u00FD \u0161esti\u00FAheln\u00EDk NodeUpAction.text=Uzel nahoru nonboldify_branch=Zru\u0161it tu\u010Dn\u00E9 nonitalicise_branch=Zru\u0161it kurz\u00EDvu normal=Norm\u00E1ln\u00ED not_saved_for_image_error=Mapa mus\u00ED b\u00FDt ulo\u017Eena p\u0159ed t\u00EDm, ne\u017E budete moci vybrat obr\u00E1zek spr\u00E1vcem soubor\u016F not_saved_for_link_error=Mapa mus\u00ED b\u00FDt ulo\u017Eena p\u0159ed nastaven\u00EDm odkazu pomoc\u00ED v\u00FDb\u011Bru souboru note_window_location=Um\u00EDst\u011Bn\u00ED pozn\u00E1mkov\u00E9ho panelu notes=Pozn\u00E1mka NotFoldingNextPresentationItemAction.text=Rozlo\u017Eit dal\u0161\u00ED polo\u017Eku prezentace NotificationOptions.CLOSE=Zav\u0159i NotificationOptions.REMIND_ME_LATER=P\u0159ipome\u0148 pozd\u011Bji NotificationOptions.REMOVE_REMINDER=Odstra\u0148 p\u0159ipomenut\u00ED NotificationOptions.SELECT_NODE=P\u0159ejdi na p\u0159ipomenut\u00ED ok=OK OKAction.text=V po\u0159\u00E1dku OnlineReference.text=Online mapy dokumentace open_asMindMap=my\u0161lenkov\u00E1 mapa OpenAction.text=Otev\u0159\u00EDt ulo\u017Eenou mapu... OpenFreeplaneSiteAction.text=Domovsk\u00E9 str\u00E1nky Freeplane OpenMapsAddLocation.text=P\u0159idat um\u00EDst\u011Bn\u00ED map k otev\u0159en\u00ED... OpenMapsRemoveLocation.text=Odstranit um\u00EDst\u011Bn\u00ED map k otev\u0159en\u00ED OpenMapsViewLocation.text=Zobrazit um\u00EDst\u011Bn\u00ED map k otev\u0159en\u00ED... OpenPathAction.text=Open File[translate me] OpenURLMapAction.text=Otev\u0159\u00EDt mapu z URL... OpenUserDirAction.text=Otev\u0159\u00EDt u\u017Eivatelsk\u00FD adres\u00E1\u0159 option_changes_may_require_restart=Pro projeven\u00ED zm\u011Bn budete pravd\u011Bpodobn\u011B muset restartovat Freeplane. OptionalDontShowMeAgainDialog.cancel=Ne OptionalDontShowMeAgainDialog.dontShowAgain=U\u017E se mn\u011B v\u00EDce neptej. OptionalDontShowMeAgainDialog.ok=Ano OptionalDontShowMeAgainDialog.rememberMyDescision=Zapamatuj si m\u016Fj v\u00FDb\u011Br. OptionPanel.absolute=Absolutn\u00ED OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automatick\u00E9 rozvr\u017Een\u00ED vzor\u016F OptionPanel.ADD_CHILD=P\u0159idej potomka OptionPanel.ADD_SIBLING=P\u0159idej rovnocenn\u00FD uzel OptionPanel.addons=Roz\u0161\u00ED\u0159en\u00ED OptionPanel.af=Afrik\u00E1n\u0161tina OptionPanel.always_fold_all_after_load=Slo\u017E v\u0161echno OptionPanel.always_load_last_maps=Nahraj posledn\u00ED a nov\u00E9 mapy OptionPanel.always_load_last_maps.tooltip=Otev\u0159en\u00ED posledn\u00EDch soubor\u016F nastaveno v\u00FD\u0161e, nav\u00EDc startuje FP s vybranou mapou. OptionPanel.always_save_folding=V\u017Edy OptionPanel.always_save_folding_state=V\u017Edy ulo\u017Eit stav zm\u011Bn sklad\u016F OptionPanel.always_save_folding_state.tooltip=Kdy\u017E je zatr\u017Eeno, ka\u017Ed\u00E1 zm\u011Bna ve skl\u00E1d\u00E1n\u00ED uzl\u016F ozna\u010D\u00ED mapu jako modifikouvanou a p\u0159ipomene, \u017Ee je t\u0159eba ji ulo\u017Eit. OptionPanel.always_show_less_than_N_nodes_after_load=Rozvinout n\u011Bkter\u00E9 uzly OptionPanel.always_unfold_all_after_load=Rozvi\u0148 v\u0161echny uzly OptionPanel.antialias=Vyhlazov\u00E1n\u00ED OptionPanel.antialias.tooltip=Stanovuje kvalitu mapy. V\u00EDce vyhlazov\u00E1n\u00ED pot\u0159ebuje v\u00EDce \u010Dasu. OptionPanel.antialias_all=Vyhlazovat v\u0161e OptionPanel.antialias_edges=Vyhlazovat hrany OptionPanel.antialias_none=\u017D\u00E1dn\u00E9 vyhlazov\u00E1n\u00ED OptionPanel.antialias_svg=Vyhlazovat ikony typu SVG OptionPanel.antialias_svg.tooltip=Ur\u010Duje kvalitu zobrazov\u00E1n\u00ED ikon typu SVG. Zapnut\u00E9 vyhlazov\u00E1n\u00ED vy\u017Eaduje v\u00EDce \u010Dasu. OptionPanel.Appearance=Vzhled OptionPanel.approximate_search_threshold=Pr\u00E1h pro p\u0159ibli\u017Enou shodu OptionPanel.approximate_search_threshold.tooltip= Pr\u00E1h pro p\u0159ibli\u017Enou shodu
Viz http://freeplane.sf.net/wiki/index.php/Approximate_search
(\u010D\u00EDm vy\u0161\u0161\u00ED \u010D\u00EDslo, t\u00EDm p\u0159esn\u011Bj\u0161\u00ED shoda
hledan\u00E9ho term\u00EDnu bude nalezena). OptionPanel.ar=Arabsky / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Oblouk OptionPanel.as_parent=Jako rodi\u010D OptionPanel.ask=Zeptat se OptionPanel.automatic=Automaticky OptionPanel.automaticFormat_level=Styly automatick\u00E9ho rozvr\u017Een\u00ED OptionPanel.automaticFormat_level1=Form\u00E1t ko\u0159enov\u00E9ho uzlu OptionPanel.automaticFormat_level2=Form\u00E1t uzlu 1. \u00FArovn\u011B OptionPanel.backup_file_number=Po\u010Det ponechan\u00FDch z\u00E1lo\u017En\u00EDch soubor\u016F OptionPanel.Behaviour=Chov\u00E1n\u00ED OptionPanel.bezier=Hladk\u00E1 k\u0159ivka (Bezier) OptionPanel.border_color=Barva OptionPanel.border_color_matches_edge_color=Pou\u017E\u00EDt barvu hrany OptionPanel.border_dash=Typ linie ohrani\u010Den\u00ED OptionPanel.border_dash_matches_edge_dash=Pou\u017E\u00EDt typ p\u0159\u00EDmky hrany OptionPanel.border_width=\u0160\u00ED\u0159ka p\u0159\u00EDmky OptionPanel.border_width_matches_edge_width=Pou\u017E\u00EDt hranu s OptionPanel.bubble=Bubble[translate me] OptionPanel.ca=Katal\u00E1nsky OptionPanel.Cancel=Storno OptionPanel.center_selected_node=Automaticky vyst\u0159edit vybran\u00FD uzel OptionPanel.check_updates_automatically=P\u0159i startu programu kontrolovat aktualizace OptionPanel.childpattern=Vzor potomka OptionPanel.childpattern.tooltip=Vybran\u00FD vzor je aplikov\u00E1n na v\u0161echny potomky. OptionPanel.clear_all_setters=P\u0159epnout v\u0161e OptionPanel.clear_all_setters.tooltip=Zapne, nebo vypne ve\u0161ker\u00E9 indikace zm\u011Bn. OptionPanel.cloud=Oblak OptionPanel.cloudcolor=Barva oblaku OptionPanel.cloudshape=Tvar oblaku OptionPanel.combined=Kombinovan\u00E9 OptionPanel.compare_as_number=Porovnej jako \u010D\u00EDsla OptionPanel.connector_arrows=\u0160ipky konektor\u016F OptionPanel.connector_dash=Typ \u010D\u00E1ry OptionPanel.convert_to_current_version=Automaticky p\u0159ev\u00E1d\u011Bt mapy ze star\u0161\u00EDch verz\u00ED Freeplanu
do form\u00E1tu sou\u010Dasn\u00E9 verze? OptionPanel.convert_to_current_version.tooltip=Pouze pro velmi velk\u00E9 mapy, kter\u00E9 nemus\u00ED b\u00FDt konvertov\u00E1ny
(co\u017E je pokro\u010Dil\u00E1 znalost), m\u016F\u017Ee\u0161 otev\u0159\u00EDt mapu bez p\u0159evodu . OptionPanel.copyFormatToNewSibling=Kop\u00EDruj form\u00E1t na nov\u00E9 uzly stejn\u00E9 \u00FArovn\u011B OptionPanel.copyFormatToNewSiblingIncludesIcons=Kop\u00EDruj form\u00E1t s ikonami OptionPanel.cs=\u010Cesky OptionPanel.cut_nodes_without_question=Vyjmout uzly bez potvrzen\u00ED? OptionPanel.cut_nodes_without_question.tooltip=Je-li zatr\u017Eeno, uzly budou vyjmuty bez potvrzen\u00ED. To m\u016F\u017Ee zp\u016Fsobit ztr\u00E1tu informac\u00ED p\u0159i necht\u011Bn\u00E9m u\u017Eit\u00ED. OptionPanel.cut_out_pictures_when_pasting_html=Odebrat obr\u00E1zky z HTML OptionPanel.da=Dk OptionPanel.date_format=Standradn\u00ED form\u00E1t data OptionPanel.date_format.tooltip=Mo\u017Eno pou\u017E\u00EDt SHORT (kr\u00E1tk\u00E9), MEDIUM (st\u0159edn\u00ED), LONG (dlouh\u00E9), \u010Di FULL (pln\u00E9), anebo vzor typu "MM/dd/yyyy" OptionPanel.datetime_format=Standardn\u00ED form\u00E1t data a \u010Dasu OptionPanel.datetime_format.tooltip=Mo\u017Eno pou\u017E\u00EDt , (se stylem SHORT (kr\u00E1tk\u00E9), MEDIUM (st\u0159edn\u00ED), LONG (dlouh\u00E9), \u010Di FULL (pln\u00E9)), anebo pln\u00FD vzor typu "M/d/yyyy hh:mm" OptionPanel.de=De OptionPanel.default=Defaultn\u00ED OptionPanel.default_attribute_key_column_width=Standardn\u00ED \u0161\u00ED\u0159ka polo\u017Eky kl\u00ED\u010De atributu OptionPanel.default_attribute_value_column_width=Standardn\u00ED \u0161\u00ED\u0159ka polo\u017Eky hodnoty atributu OptionPanel.default_browser_command_mac=P\u0159\u00EDkaz pro defaultn\u00ED prohl\u00ED\u017Ee\u010D pro Mac OptionPanel.default_browser_command_mac.tooltip= a MAC: OptionPanel.default_browser_command_other_os=P\u0159\u00EDkaz pro defaultn\u00ED prohl\u00ED\u017Ee\u010D u ostatn\u00EDch OS OptionPanel.default_browser_command_other_os.tooltip=To je typicky Linux: OptionPanel.default_browser_command_windows_9x=P\u0159\u00EDkaz pro defaultn\u00ED prohl\u00ED\u017Ee\u010D u Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=Pro Windows (znaky "" jsou nutn\u00E9 kv\u016Fli odkaz\u016Fm, kter\u00E9 maj\u00ED "=" v URL). OptionPanel.default_browser_command_windows_nt=P\u0159\u00EDkaz pro defaultn\u00ED prohl\u00ED\u017Ee\u010D u Windows NT OptionPanel.default_browser_command_windows_nt.tooltip=Pro Windows (znaky "" jsou nutn\u00E9 kv\u016Fli odkaz\u016Fm, kter\u00E9 maj\u00ED "=" v URL). OptionPanel.default_charset=Znakov\u00E1 sada OptionPanel.default_save_dir=V\u00FDchoz\u00ED adres\u00E1\u0159 pro ukl\u00E1d\u00E1n\u00ED OptionPanel.Defaults=P\u0159ednastaven\u00ED OptionPanel.delete_automatic_saves_at_exit=Smazat automatick\u00E9 ulo\u017Een\u00ED p\u0159i ukon\u010Den\u00ED OptionPanel.delete_automatic_saves_at_exit.tooltip= Zda maj\u00ED b\u00FDt soubory smazan\u00E9 automaticky p\u0159i norm\u00E1ln\u00EDm ukon\u010Den\u00ED Freeplaneu. OptionPanel.delete_nodes_without_question=Smazat uzly bez potvrzen\u00ED? OptionPanel.delete_nodes_without_question.tooltip=Je-li zatr\u017Eeno, uzly jsou maz\u00E1ny bez potvrzen\u00ED. V p\u0159\u00EDpad\u011B necht\u011Bn\u00E9ho u\u017Eit\u00ED m\u016F\u017Ee v\u00E9st ke ztr\u00E1t\u011B informace. OptionPanel.disable_cursor_move_paper.tooltip=Neukazovat 'move' kurzor p\u0159i tah\u00E1n\u00ED pap\u00EDru. OptionPanel.display_inline_editor_for_all_new_nodes=Zobraz do mapy vlo\u017Een\u00FD editor pro v\u0161echny nov\u00E9 uzly OptionPanel.display_node_id=Zobraz ID uzlu OptionPanel.edgecolor=Barva hrany OptionPanel.edgecolor.tooltip=Vlastnost hrany nad\u0159azen\u00E9ho uzlu (je tak\u00E9 aplikovan\u00E1 na v\u0161echny potomky) OptionPanel.edgedash=Typ \u010D\u00E1ry hrany OptionPanel.edgestyle=Styl hrany OptionPanel.edgestyle.tooltip=Vlastnost hrany nad\u0159azen\u00E9ho uzlu (je tak\u00E9 aplikovan\u00E1 na v\u0161echny potomky) OptionPanel.edgewidth=\u0160\u00ED\u0159ka hrany OptionPanel.edgewidth.tooltip=Vlastnost hrany na rodi\u010Dovsk\u00FD uzel (je tak\u00E9 aplikovan\u00E9 na v\u0161echny potomky) OptionPanel.EDIT_CURRENT=P\u0159epi\u0161 obsah OptionPanel.edit_on_double_click=Edituj na dvojit\u00E9 kliknut\u00ED OptionPanel.editor_extra_width=Krok p\u0159idan\u00E9 \u0161\u00ED\u0159ky OptionPanel.editor_extra_width.tooltip=Ur\u010Duje po\u010Det pixel\u016F, o kter\u00E9 se uzel roz\u0161\u00ED\u0159\u00ED, pakli\u017Ee \u0161\u00ED\u0159e textu p\u0159ekro\u010D\u00ED sou\u010Dasnou \u0161\u00ED\u0159i uzlu. OptionPanel.el=\u0158ecky / \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Tla\u010D\u00EDtka na vrchu OptionPanel.el__enter_confirms_by_default=Enter defaultn\u011B potvrzuje OptionPanel.el__max_default_window_height=Maxim\u00E1ln\u00ED v\u00FDchoz\u00ED v\u00FD\u0161ka okna OptionPanel.el__max_default_window_width=Maxim\u00E1ln\u00ED v\u00FDchoz\u00ED \u0161\u00ED\u0159ka okna OptionPanel.el__min_default_window_height=Minim\u00E1ln\u00ED v\u00FDchoz\u00ED v\u00FD\u0161ka okna OptionPanel.el__min_default_window_width=Minim\u00E1ln\u00ED v\u00FDchoz\u00ED \u0161\u00ED\u0159ka okna OptionPanel.el__position_window_below_node=Pozice okna pod uzlem OptionPanel.en=En OptionPanel.Environment=Prost\u0159ed\u00ED OptionPanel.es=Es OptionPanel.et=Et[translate me] OptionPanel.eu=Basque OptionPanel.execute_scripts_without_asking=Povoleno spou\u0161t\u011Bn\u00ED skript\u016F OptionPanel.execute_scripts_without_asking.tooltip=Skripty Freeplanu jsou principi\u00E1ln\u011B schopny prov\u00E9st na va\u0161em po\u010D\u00EDta\u010Di jakoukoliv akci.
Proto nespou\u0161t\u011Bjte skripty, o kter\u00FDch nev\u00EDte, zda jsou bezpe\u010Dn\u00E9. OptionPanel.execute_scripts_without_exec_restriction=Povolit spou\u0161t\u011Bn\u00ED ostatn\u00EDch aplikac\u00ED (NEDOPORU\u010CUJE SE) OptionPanel.execute_scripts_without_exec_restriction.tooltip=Jestli va\u0161e skripty v jazyce Groovy pot\u0159ebuj\u00ED spustit n\u011Bjakou extern\u00ED aplikaci (jako nap\u0159\u00EDklad prohl\u00ED\u017Ee\u010D) bez ptan\u00ED(!),
povolte tuto mo\u017Enost.
Ale pou\u017E\u00EDvejte s rozmyslem - m\u011Bjte na pam\u011Bti, \u017Ee podvodn\u00E9 skripty mohou po\u0161kodit v\u00E1\u0161 po\u010D\u00EDta\u010D! OptionPanel.execute_scripts_without_file_restriction=Povolit \u010Dten\u00ED soubor\u016F (NEDOPORU\u010CUJE SE) OptionPanel.execute_scripts_without_file_restriction.tooltip=Jestli va\u0161e skripty v jazyce Groovy pot\u0159ebuj\u00ED p\u0159\u00EDstup k soubor\u016Fm (otev\u0159en\u00ED/zav\u0159en\u00ED/\u010Dten\u00ED),
povolte tuto mo\u017Enost.
Ale pou\u017E\u00EDvejte s rozmyslem - m\u011Bjte na pam\u011Bti, \u017Ee podvodn\u00E9 skripty mohou po\u0161kodit v\u00E1\u0161 po\u010D\u00EDta\u010D! OptionPanel.execute_scripts_without_network_restriction=Povolit s\u00ED\u0165ov\u00E9 operace (NEDOPORU\u010CUJE SE) OptionPanel.execute_scripts_without_network_restriction.tooltip=Jestli va\u0161e skripty v jazyce Groovy pot\u0159ebuj\u00ED p\u0159\u00EDstup na internet,
povolte tuto mo\u017Enost.
Ale pou\u017E\u00EDvejte s rozmyslem - m\u011Bjte na pam\u011Bti, \u017Ee podvodn\u00E9 skripty mohou kompromitovat va\u0161e soukrom\u00ED! OptionPanel.execute_scripts_without_write_restriction=Povolit z\u00E1pis soubor\u016F (NEDOPORU\u010CUJE SE) OptionPanel.execute_scripts_without_write_restriction.tooltip=Jestli va\u0161e skripty v jazyce Groovy pot\u0159ebuj\u00ED p\u0159\u00EDstup k soubor\u016Fm (z\u00E1pis/v\u00FDmaz(!)),
povolte tuto mo\u017Enost.
Tato mo\u017Enost je norm\u00E1ln\u011B pou\u017E\u00EDv\u00E1na spolu s p\u0159\u00EDstupem ke \u010Dten\u00ED soubor\u016F.
Ale pou\u017E\u00EDvejte s rozmyslem - m\u011Bjte na pam\u011Bti, \u017Ee podvodn\u00E9 skripty mohou po\u0161kodit v\u00E1\u0161 po\u010D\u00EDta\u010D! OptionPanel.experimental_file_locking_on=Experiment\u00E1ln\u00ED zamyk\u00E1n\u00ED souboru OptionPanel.experimental_file_locking_on.tooltip= Experiment\u00E1ln\u00ED vlastnost OptionPanel.export_icons_in_html=Exportovat ikony do HTML OptionPanel.export_icons_in_html.tooltip= Zda HTML exportovan\u00E9 z Freeplaneu m\u00E1 obsahovat ikony. Probl\u00E9m s ikonami je, \u017Ee docela \u010Dasto odkazy na ikony nebudou nalezeny v exportovan\u00E9m HTML. OptionPanel.exported_image_resolution_dpi=Rozli\u0161en\u00ED exportovan\u00E9ho obr\u00E1zku (v DPI) OptionPanel.Files=Soubory OptionPanel.first=Prvn\u00ED OptionPanel.fit_to_viewport=P\u0159izp\u016Fsob obr\u00E1zek na pozad\u00ED oknu OptionPanel.fold_on_click_inside=Slo\u017E po kliknut\u00ED dovnit\u0159 OptionPanel.foldingsymbolwidth=\u0160\u00ED\u0159ka symbolu pro skl\u00E1d\u00E1n\u00ED OptionPanel.foldingsymbolwidth.tooltip=\u0160\u00ED\u0159ka kruhu ozna\u010Duj\u00EDc\u00EDho skl\u00E1d\u00E1n\u00ED OptionPanel.fork=V\u011Btev OptionPanel.format_locale=M\u00EDstn\u00ED nastaven\u00ED pro form\u00E1ty OptionPanel.format_locale.tooltip=M\u00EDstn\u00ED nastaven\u00ED pro form\u00E1tov\u00E1n\u00ED a anal\u00FDzu dat a \u010Dasu OptionPanel.formula_disable_caching=Zak\u00E1zat mezipam\u011B\u0165 vzorc\u016F OptionPanel.formula_disable_plugin=Zak\u00E1zat v\u00FDpo\u010Det vzorec\u016F OptionPanel.fr=Fr OptionPanel.gl=Gl[translate me] OptionPanel.goto_note_end_on_edit=P\u0159esu\u0148 kurzor v pozn\u00E1mce na konec OptionPanel.grid_size=Velikost m\u0159\u00ED\u017Eky OptionPanel.groovy_editor_font=Font pro editor jazyka Groovy se zv\u00FDrazn\u011Bn\u00EDm syntaxe OptionPanel.groovy_editor_font.tooltip=Pou\u017Eijte "Dialog", nebo "Monospaced", jestli\u017Ee pot\u0159ebujete znaky sady Unicode! OptionPanel.groovy_editor_font_size=Velikost fontu pro editor jazyka Groovy se zv\u00FDrazn\u011Bn\u00EDm syntaxe OptionPanel.gtk=Gtk OptionPanel.hide_edge=Skr\u00FDt hranu OptionPanel.hide_single_end_connectors=Skr\u00FDt konec konektoru OptionPanel.highlight_formulas=Zv\u00FDraznit vzorce OptionPanel.horizontal=Horizont\u00E1ln\u011B OptionPanel.hr=Hr OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=Na z\u00E1klad\u011B nadpis\u016F OptionPanel.html_export_fold_all=Slo\u017Eit v\u0161e OptionPanel.html_export_fold_currently_folded=Slo\u017Eit aktu\u00E1ln\u011B slo\u017Een\u00E9 OptionPanel.html_export_folding=Skl\u00E1d\u00E1n\u00ED p\u0159i exportu do HTML OptionPanel.html_export_no_folding=Bez skl\u00E1d\u00E1n\u00ED OptionPanel.hu=Hu OptionPanel.ic_disable=Zak\u00E1zat OptionPanel.ic_file=Pou\u017Eit\u00ED disku OptionPanel.ic_ram=V RAM OptionPanel.icon=Ikona OptionPanel.icon.tooltip=Pokud se aplikuje, dan\u00FD uzel bude m\u00EDt p\u0159esn\u011B tuto ikonu. OptionPanel.icon_size=Velikost ikony OptionPanel.icons.list=Seznam standardn\u00EDch ikon OptionPanel.icons.list.tooltip=Zde m\u016F\u017Eete \u0159adit, nebo vyp\u00EDnat standardn\u00ED ikony. Ikony odd\u011Blujte pomoc\u00ED st\u0159edn\u00EDku. OptionPanel.id=Id[translate me] OptionPanel.IGNORE=Ned\u011Blat nic OptionPanel.il__enter_confirms_by_default=Enter potvrzuje jako v\u00FDchoz\u00ED mo\u017Enost OptionPanel.image_cache=pro obr\u00E1zky OptionPanel.indentationUsesTabsInTextOutput=Ve v\u00FDstupn\u00EDm textu pou\u017E\u00EDvej tabul\u00E1tory OptionPanel.it=It OptionPanel.ja=Japonsky / \u65E5\u672C\u8A9E OptionPanel.JoinNodesAction.textSeparators=Odd\u011Blova\u010D textu OptionPanel.key_type_action=P\u0159i stisknut\u00ED kl\u00E1vesy OptionPanel.Keystrokes=Kl\u00E1vesov\u00E9 zkratky OptionPanel.kn=Kannadsky / \u0C95\u0CA8\u0CCD\u0CA8\u0CA1 OptionPanel.ko=Korejsky / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Rodina p\u00EDsem OptionPanel.label_font_size=Velikost p\u00EDsma OptionPanel.language=Jazyk OptionPanel.language.tooltip=Toto je jazyk, kter\u00FD by m\u011Bl b\u00FDt pou\u017Eit\u00FD v programu. P\u0159i nastaven\u00ED na 'Automaticky' se vybere aktu\u00E1ln\u00ED jazyk u\u017Eivatele. OptionPanel.last=Posledn\u00ED OptionPanel.last_opened_list_length=D\u00E9lka seznamu naposledy otev\u0159en\u00FDch map OptionPanel.latex_disable_editor=Vypni editor jazyka LaTeX se zv\u00FDrazn\u011Bn\u00EDm syntaxe OptionPanel.latex_disable_editor.tooltip=Zkontroluj, zda jsou probl\u00E9my s editorem jazyka LaTeX OptionPanel.latex_editor_font=Font pro editor jazyka LaTeX se zv\u00FDrazn\u011Bn\u00EDm syntaxe OptionPanel.latex_editor_font.tooltip=Pou\u017Eijte "Dialog", nebo "Monospaced", jestli\u017Ee pot\u0159ebujete znaky sady Unicode! OptionPanel.latex_editor_font_size=Velikost fontu pro editor jazyka LaTeX se zv\u00FDrazn\u011Bn\u00EDm syntaxe OptionPanel.latex_macros=B\u011B\u017En\u00E1 makra jazyka LaTeX OptionPanel.layout_map_on_text_change=Aktualizuj rozlo\u017Een\u00ED mapy b\u011Bhem \u00FApravy OptionPanel.layout_map_on_text_change.tooltip=Zak\u00E1zat pro lep\u0161\u00ED v\u00FDkon OptionPanel.linear=Line\u00E1rn\u00ED OptionPanel.links=Odkazy OptionPanel.links.tooltip=Nastavte odkazy bu\u010Fto relativn\u00ED, nebo absolutn\u00ED OptionPanel.load_folding=P\u0159i na\u010D\u00EDt\u00E1n\u00ED OptionPanel.load_folding_from_map_default_fold_all=Na\u010D\u00EDst z mapy nebo slo\u017Eit v\u0161e OptionPanel.load_folding_from_map_default_unfold_all=Na\u010D\u00EDst z mapy nebo rozvinout v\u0161e OptionPanel.load_last_map=Automaticky otev\u0159e posledn\u00ED mapu OptionPanel.load_last_map.tooltip=P\u0159i startu Freeplaneu se automaticky otev\u0159e naposledy otev\u0159en\u00E1 mapa. OptionPanel.load_last_maps=Na\u010D\u00EDst v\u0161echny posledn\u00ED mapy OptionPanel.lookandfeel=Vzhled a t\u00E9ma OptionPanel.lookandfeel.scaleuifonts=\u0160k\u00E1luj p\u00EDsma u\u017Eivatelsk\u00E9ho rozhran\u00ED OptionPanel.lookandfeel.scaleuifonts.tooltip=U\u017Eite\u010Dn\u00E9 pro monitory s vy\u0161\u0161\u00EDm rozli\u0161en\u00EDm OptionPanel.lookandfeel.tooltip=Vzhled a t\u00E9ma k pou\u017Eit\u00ED.'metal', 'windows', 'motif', 'gtk' jsou podporovan\u00E9, 'mac' je dostupn\u00FD pouze na MacOS. default znamen\u00E1, \u017Ee je pou\u017Eit\u00FD vzhled dan\u00E9 platformy. Pokud chcete d\u00E1t sv\u016Fj vlastn\u00ED vzhled, vlo\u017Ete n\u00E1zev t\u0159\u00EDdy a zajist\u011Bte, \u017Ee odpov\u00EDdaj\u00EDc\u00ED jar soubor(y) jsou nahran\u00E9. Kdy\u017E nastanou n\u011Bjak\u00E9 probl\u00E9my se vzhledem, vyberte 'nothing'. To funguje pro aplety. OptionPanel.lt=Litev\u0161tina / kalba OptionPanel.markClones=Kreslit symbol klonovan\u00E9ho uzlu OptionPanel.markSelectedClones=Kreslit symbol klonovan\u00E9ho uzlu pro v\u00FDb\u011Br OptionPanel.max_displayed_node_count=Maxim\u00E1ln\u00ED po\u010Det zobrazen\u00FDch uzl\u016F OptionPanel.max_image_width=Max v\u00FDchoz\u00ED \u0161\u00ED\u0159ka obrazu OptionPanel.max_image_width.tooltip=Nov\u00E9 obr\u00E1zky jsou zmen\u0161eny na tuto \u0161\u00ED\u0159ku OptionPanel.max_menu_item_count=Maxim\u00E1ln\u00ED po\u010Det polo\u017Eek menu OptionPanel.max_menu_item_count.tooltip=Ohrani\u010Den\u00ED po\u010Dtu polo\u017Eek v jednom submenu, nejm\u00E9n\u011B 10 OptionPanel.max_node_width=Maxim\u00E1ln\u00ED \u0161\u00ED\u0159ka uzlu OptionPanel.max_node_width.tooltip=Defaultn\u00ED maxim\u00E1ln\u00ED \u0161\u00ED\u0159ka uzlu v pixelech OptionPanel.max_shortened_text_length=Nejvy\u0161\u0161\u00ED \u0161\u00ED\u0159ka textu zkr\u00E1cen\u00E9ho uzlu OptionPanel.menuItemFontSize=Velikost p\u00EDsma v polo\u017Ek\u00E1ch menu OptionPanel.metal=Kov OptionPanel.min_node_width=Minim\u00E1ln\u00ED \u0161\u00ED\u0159ka uzlu OptionPanel.monitor_size_inches=Rozm\u011Br obrazovky (v palc\u00EDch) OptionPanel.motif=Motif OptionPanel.narrow_hexagon=Tenk\u00FD \u0161esti\u00FAheln\u00EDk OptionPanel.nb=Nb[translate me] OptionPanel.never_save_folding=Nikdy OptionPanel.neverShowSurvey=Nikdy neukazuj dotazy, pr\u016Fzkumy a tipy OptionPanel.nl=Nl OptionPanel.nn=Nn OptionPanel.nodebackgroundcolor=Barva pozad\u00ED uzlu OptionPanel.nodebackgroundcolor.tooltip=Barva pozad\u00ED uzlu, kdy\u017E nen\u00ED vybr\u00E1n. OptionPanel.nodecolor=Barva uzlu OptionPanel.nodecolor.tooltip=Barva textu uzlu, kdy\u017E nen\u00ED vybr\u00E1n. OptionPanel.nodefontbold=Tlust\u00E9 p\u00EDsmo uzlu OptionPanel.nodefonthyperlink=Hyperlink OptionPanel.nodefontitalic=Kurz\u00EDva OptionPanel.nodefontname=P\u00EDsmo uzlu OptionPanel.nodefontsize=Velikost p\u00EDsma uzlu OptionPanel.nodefontstrikethrough=P\u0159e\u0161krtnut\u00E9 OptionPanel.nodeformat=Form\u00E1t OptionPanel.nodeformat.tooltip=N\u00E1hrada textu a/nebo form\u00E1tov\u00E1n\u00ED:
  • Roz\u0161\u00ED\u0159en\u00ED \u0161ablony (%s je p\u016Fvodn\u00ED text), t.j. POZOR: %s
  • Form\u00E1tov\u00E1n\u00ED dat a \u010D\u00EDsel - viz p\u0159\u00EDkazy ve v\u00FDb\u011Brov\u00E9m dialogu
OptionPanel.nodenumbering=\u010C\u00EDslov\u00E1n\u00ED uzl\u016F OptionPanel.nodenumbering.tooltip=P\u0159id\u00E1 po\u0159adov\u00E9 \u010D\u00EDslo (nap\u0159. 1.3.1) do textu uzlu. OptionPanel.nodeshape=Tvar uzlu OptionPanel.nodetext=Text uzlu OptionPanel.nodetext.tooltip=Zde m\u016F\u017Eete definovat test uzlu. Dosavadn\u00ED text se odstran\u00ED, kdy\u017E je takov\u00FD vzor aplikov\u00E1n. OptionPanel.nothing=Nic OptionPanel.number_format=Standardn\u00ED \u010D\u00EDseln\u00FD form\u00E1t OptionPanel.number_format.tooltip=Vzor obsahuje "#" pro voliteln\u00E1, anebo "0" pro povinn\u00E1 \u010D\u00EDsla. P\u0159\u00EDklady: "0.00", "0.0%", "$#.00", "#0" OptionPanel.number_of_different_files_for_automatic_save=Po\u010Det rozd\u00EDlov\u00FDch soubor\u016F pro automatick\u00E9 ukl\u00E1d\u00E1n\u00ED OptionPanel.number_of_different_files_for_automatic_save.tooltip= Po\u010Det r\u016Fzn\u00FDch soubor\u016F, mezi kter\u00FDmi se cykluje p\u0159i automatick\u00E9m ukl\u00E1d\u00E1n\u00ED. OptionPanel.oc=Okcit\u00E1nsky OptionPanel.OK=Ulo\u017Eit OptionPanel.org.freeplane.plugin.bugreport=Pravidla OptionPanel.org.freeplane.plugin.bugreport.allowed=V\u017Edy odes\u00EDlat OptionPanel.org.freeplane.plugin.bugreport.ask=Uka\u017E okno zpr\u00E1vy OptionPanel.org.freeplane.plugin.bugreport.denied=Nikdy neodes\u00EDlat OptionPanel.org.freeplane.plugin.bugreport.userid=Voliteln\u00FD identifik\u00E1tor k odesl\u00E1n\u00ED OptionPanel.outline_hgap=Vodorovn\u00E1 vzd\u00E1lenost OptionPanel.outline_vgap=Svisl\u00E1 vzd\u00E1lenost OptionPanel.outline_view_fits_window_width=Zobrazen\u00ED osnovy vypln\u00ED \u0161\u00ED\u0159ku obrazovky OptionPanel.oval=Ov\u00E1l OptionPanel.paint_connectors_behind=Konektory vykresleny pod uzly OptionPanel.parse_data=Rozpoznat vstup \u010D\u00EDsel a data a \u010Dasu OptionPanel.parse_data.tooltip=Zkusit analyzovat datum, datum-\u010Das a \u010D\u00EDseln\u00FD vstup a pou\u017E\u00EDt standardn\u00ED form\u00E1tov\u00E1n\u00ED. P\u0159\u00EDklady: 100,000.00, 12/31, 12/31/99, 1999-12-31 a 1999-12-31 23:59 OptionPanel.parse_formulas=Rozpoznat vzorce OptionPanel.parse_formulas.tooltip=Analyzovat vzorce v uzlech za\u010D\u00EDnaj\u00EDc\u00EDch rovn\u00EDtkem. Viz http://www.freeplane.org/wiki/index.php/Formulas. OptionPanel.parse_latex=Rozpoznat p\u0159\u00EDkazy jazyka LaTeX OptionPanel.parse_latex.tooltip=Rozpoznat p\u0159\u00EDkazy jazyka LaTeX pomoc\u00ED form\u00E1tu, nebo p\u0159edpony. Viz http://www.freeplane.org/wiki/index.php/LaTeX_in_Freeplane. OptionPanel.PASTE_HTML=Vlo\u017Eit jako HTML OptionPanel.PASTE_PLAIN_TEXT=Vlo\u017Eit jako prost\u00FD text OptionPanel.pasteImagesFromFiles=Vlo\u017Eit obr\u00E1zky ze soubor\u016F OptionPanel.pasteImagesFromFiles.tooltip=Vlo\u017Eit obr\u00E1zek ze souboru, je-li tento p\u0159eta\u017Een do mapy OptionPanel.path_property_may_not_be_empty=Vlastnost cesty nem\u016F\u017Ee b\u00FDt pr\u00E1zdn\u00E1! Zm\u011Bny jsou vr\u00E1ceny zp\u011Bt. OptionPanel.patternname=N\u00E1zev OptionPanel.patternname.tooltip=Unik\u00E1tn\u00ED jm\u00E9no vzoru 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'. OptionPanel.plugin.tooltip=Ostatn\u00ED roz\u0161\u00ED\u0159en\u00ED. OptionPanel.plugins=Pluginy OptionPanel.Presentation=Prezentace OptionPanel.presentation.combineAll=Kombinovat v\u0161echny prezentace OptionPanel.presentation.exportDirectory=Jm\u00E9no adres\u00E1\u0159e pro export prezentace OptionPanel.presentation.maxDropBoxRowCount=Nejvy\u0161\u0161\u00ED po\u010Det \u0159\u00E1dk\u016F v drop-down boxu OptionPanel.presentation.maxDropBoxRowCount.tooltip=Pou\u017E\u00EDt na prezentaci a v\u00FDb\u011Br sl\u00EDd OptionPanel.presentation.processesEscapeKey=Stisk "Esc" ukon\u010D\u00ED prezentaci OptionPanel.presentation.processesNavigationKeys=Pou\u017E\u00EDt \u0161ipky pro proch\u00E1zen\u00ED prezentac\u00ED OptionPanel.presentation.slideDisplaysAllNodes=Automaticky rozlo\u017Eit v\u0161echny uzly na sl\u00EDd\u011B OptionPanel.presentation.slowMotion=Pomal\u00FD pohyb OptionPanel.presentation.switchToFullScreen=Spustit celoobrazovkov\u00FD re\u017Eim OptionPanel.presentation.switchToSpotlight=Spus\u0165 bodov\u00E9 osv\u011Btlen\u00ED OptionPanel.presentation.zoom=Pou\u017Eij zv\u011Bt\u0161en\u00ED mapy OptionPanel.printonwhitebackground=B\u00EDl\u00E9 pozad\u00ED pro tisk OptionPanel.printonwhitebackground.tooltip=V\u017Edy pou\u017E\u00EDvejte b\u00EDl\u00E9 pozad\u00ED pro tisk OptionPanel.pt_BR=Pt BR OptionPanel.pt_PT=Pt PT OptionPanel.RECT=Obd\u00E9ln\u00EDk OptionPanel.rectangle=Obd\u00E9ln\u00EDk OptionPanel.relative=Relativn\u00ED OptionPanel.remind_type_of_new_nodes.tooltip= "Zeptej se" se v\u00E1s zept\u00E1 (pou\u017Eijte p\u0159i pochybnostech).
"Ano" zobraz\u00ED editor typu Word.
"Ne" zobraz\u00ED textov\u00FD editor typu Pozn\u00E1mkov\u00E9ho bloku. OptionPanel.remind_use_rich_text_in_new_nodes=Pou\u017E\u00EDt form\u00E1tovan\u00FD text pro vlo\u017Een\u00E9 uzly OptionPanel.remindersBlink=P\u0159ipom\u00EDnky blikaj\u00ED OptionPanel.remindersShowNotifications=P\u0159ipom\u00EDnky zobraz\u00ED vyskakovac\u00ED okna OptionPanel.remindersStandardDelay=Prodleva p\u0159ipomenut\u00ED OptionPanel.remove_notes_without_question=Odstranit pozn\u00E1mky bez dotazu? OptionPanel.remove_notes_without_question.tooltip=Je-li zatr\u017Eeno, pozn\u00E1mky p\u0159\u00EDslu\u0161ej\u00EDc\u00ED vybran\u00FDm uzl\u016Fm budou odstran\u011Bny bez potvrzen\u00ED. To m\u016F\u017Ee zp\u016Fsobit ztr\u00E1tu informace p\u0159i ne\u00FAmysln\u00E9m stisknut\u00ED. OptionPanel.resources_use_default_font_for_notes_too=Pou\u017E\u00EDt v\u00FDchoz\u00ED font tak\u00E9 pro pozn\u00E1mky OptionPanel.resources_use_margin_top_zero_for_notes=Odeber horn\u00ED okraj pozn\u00E1mek OptionPanel.revision_color=Barva revize OptionPanel.revision_color.tooltip=Barva pozad\u00ED pro zm\u011Bn\u011Bn\u00E9 uzly. OptionPanel.ROUND_RECT=Zaoblen\u00FD obd\u00E9ln\u00EDk OptionPanel.ru=Rusky / \u0420\u0443\u0441\u0441\u043A\u0438\u0439 OptionPanel.save_folding=Ulo\u017Eit skl\u00E1d\u00E1n\u00ED OptionPanel.save_folding_if_map_is_changed=Pokud je mapa zm\u011Bn\u011Bna OptionPanel.save_last_visited_node=Ulo\u017E posledn\u00ED pozici v map\u011B OptionPanel.save_modification_times=Ulo\u017Eit \u010Das zm\u011Bny OptionPanel.script_classpath=Cesta k t\u0159\u00EDd\u00E1m skript\u016F: Dal\u0161\u00ED adres\u00E1\u0159e obsahuj\u00EDc\u00ED t\u0159\u00EDdy a/nebo soubory typu JAR (viz n\u00E1strojov\u00FD tip) OptionPanel.script_classpath.tooltip= Seznam soubor\u016F typu JAR a/nebo adres\u00E1\u0159e pro p\u0159id\u00E1n\u00ED do cesty k t\u0159\u00EDd\u00E1m skript\u016F a vzorc\u016F.
Pou\u017Eijte st\u0159edn\u00EDk (na Windowsech), nebo dvojte\u010Dku (na Linuxu, nebo Macu) k odd\u011Blen\u00ED polo\u017Eek.
Adres\u00E1\u0159e budou prohled\u00E1ny k nalezen\u00ED soubor\u016F typu JAR a soubor\u016F s p\u0159\u00EDponou ".class".
Relativn\u00ED cesty jsou porovn\u00E1v\u00E1ny vzhledem k u\u017Eivatelsk\u00E9mu adres\u00E1\u0159i Freeplanu.
Nastav\u00EDte-li cestu k adres\u00E1\u0159i, dost\u00E1v\u00E1te tak\u00E9 p\u0159\u00EDstup ke \u010Dten\u00ED adres\u00E1\u0159e! OptionPanel.script_compilation_disabled_extensions=P\u0159\u00EDponu soubor\u016F, kter\u00E9 nejsou ur\u010Deny ke kompilaci (viz n\u00E1strojov\u00FD tip) OptionPanel.script_compilation_disabled_extensions.tooltip=Jestli\u017Ee v\u0161echny skripty dal\u0161\u00EDho jazyka (vyjma
skript\u016F Groovy a JavaScriptu) maj\u00ED z\u00E1sadn\u00ED probl\u00E9m p\u0159i kompilaci,
zkus p\u0159idat p\u0159\u00EDponu souboru sem (seznam odd\u011Blen\u00FD \u010D\u00E1rkami). OptionPanel.script_directories=Cesta, ve kter\u00E9 jsou hled\u00E1ny skripty (viz n\u00E1strojov\u00FD tip) OptionPanel.script_directories.tooltip=Seznam adres\u00E1\u0159\u016F (dopln\u011Bk "skript\u016F").
Pou\u017Eijte st\u0159edn\u00EDk (na Windows), nebo dvojte\u010Dku (na Linuxu a Macu) k odd\u011Blen\u00ED polo\u017Eek.
Relativn\u00ED cesty jsou uva\u017Eov\u00E1ny k u\u017Eivatelsk\u00E9mu adres\u00E1\u0159i Freeplanu. OptionPanel.script_user_key_name_for_signing=Voliteln\u00FD u\u017Eivatelsk\u00FD pseudonym podpisov\u00E9ho kl\u00ED\u010De skript\u016F OptionPanel.script_user_key_name_for_signing.tooltip=Jestli\u017Ee chcete podepsat sv\u00E9 skripty, zapi\u0161te pseudonym pro kl\u00ED\u010D zde.
P\u0159edpokl\u00E1d\u00E1 se, \u017Ee je kl\u00ED\u010D ulo\u017Een ve v\u00FDchoz\u00ED kl\u00ED\u010Dence.
Heslo kl\u00ED\u010De mus\u00ED odpov\u00EDdat heslu kl\u00ED\u010Denky (co\u017E je v\u00FDchoz\u00ED nastaven\u00ED). OptionPanel.scrollbar_increment=Rychlost OptionPanel.scrolling_speed=Rychlost automatick\u00E9ho rolov\u00E1n\u00ED OptionPanel.scrollOnUnfold=Posu\u0148 mapu po rozlo\u017Een\u00ED uzlu OptionPanel.selection_method=Metoda v\u00FDb\u011Bru OptionPanel.selection_method.tooltip= n\u00E1sleduj\u00EDc\u00EDm p\u0159ep\u00EDna\u010Dem m\u016F\u017Eete zapnout/vypnout opo\u017Ed\u011Bn\u00E9 schema v\u00FDb\u011Bru. Automatick\u00E9 nastaven\u00ED. Nemodifikujte, proto\u017Ee stejn\u011B bude ulo\u017Eeno do auto.properties. 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.anti_alias=Vyhlazov\u00E1n\u00ED OptionPanel.separator.attributes=Atributy OptionPanel.separator.automatic_save=Automatick\u00E9 ukl\u00E1d\u00E1n\u00ED OptionPanel.separator.behaviour=Chov\u00E1n\u00ED OptionPanel.separator.browser=Prohl\u00ED\u017Ee\u010D OptionPanel.separator.cache=Mezipam\u011B\u0165 OptionPanel.separator.clones=Klony OptionPanel.separator.cloud=Oblak OptionPanel.separator.CloudControls=Mraky OptionPanel.separator.commands_for_the_program=P\u0159\u00EDkazy pro program OptionPanel.separator.connectors=Konektory OptionPanel.separator.data_formats=Form\u00E1tov\u00E1n\u00ED OptionPanel.separator.default_colors=V\u00FDchoz\u00ED barvy OptionPanel.separator.default_fonts=Defaultn\u00ED p\u00EDsma OptionPanel.separator.default_styles=Defaultn\u00ED styly OptionPanel.separator.EdgeControls=Hrany OptionPanel.separator.edit_long_node_window=Editovat v dialogu OptionPanel.separator.editing=Nastaven\u00ED editoru OptionPanel.separator.export=Export OptionPanel.separator.files=Soubory OptionPanel.separator.formula=Vzorce OptionPanel.separator.General=V\u0161eobecn\u00E9 OptionPanel.separator.html_export=Export Html OptionPanel.separator.html_import=Import Html OptionPanel.separator.hyperlink_types=Typy hyperlink\u016F OptionPanel.separator.icon_properties=Ikony OptionPanel.separator.IconControls=Ikony OptionPanel.separator.icons=Ikony ve "Vyber ikonu..." OptionPanel.separator.Icons=Ikony OptionPanel.separator.initial_map_size=\u00DAvodn\u00ED velikost mapy OptionPanel.separator.inline_editor=Editor uzlu v \u0159\u00E1dku OptionPanel.separator.JoinNodesAction=Spojov\u00E1n\u00ED uzl\u016F OptionPanel.separator.key_typing=Key Typing TODO: translate OptionPanel.separator.language=Jazyk OptionPanel.separator.latex=LaTeX OptionPanel.separator.load=Na\u010Dti OptionPanel.separator.look_and_feel=Vzhled a t\u00E9ma OptionPanel.separator.mouse_wheel=Kole\u010Dko my\u0161i OptionPanel.separator.new_node_commands=P\u0159\u00EDkazy nov\u00E9ho uzlu OptionPanel.separator.node_editing_commands=P\u0159\u00EDkazy pro \u00FApravu uzl\u016F OptionPanel.separator.node_navigation_commands=P\u0159\u00EDkazy pro navigaci OptionPanel.separator.NodeBorder=Okraj uzlu OptionPanel.separator.NodeColors=Barvy uzlu OptionPanel.separator.NodeFont=P\u00EDsmo uzlu OptionPanel.separator.NodeShape=Tvar uzlu OptionPanel.separator.NodeStyle=Styl uzlu OptionPanel.separator.NodeText=Hlavn\u00ED text uzlu OptionPanel.separator.notifications=Potvrzen\u00ED OptionPanel.separator.org.freeplane.plugin.bugreport=Automatick\u00E9 hl\u00E1\u0161en\u00ED chyb programu OptionPanel.separator.other_defaults=Ostatn\u00ED defaultn\u00ED nastaven\u00ED OptionPanel.separator.others=Jin\u00E1 nav\u00E1z\u00E1n\u00ED kl\u00E1ves OptionPanel.separator.outline_view=Zobraz sch\u00E9ma OptionPanel.separator.patterns=Vzory OptionPanel.separator.presentation=Prezentace OptionPanel.separator.reminderOptions=Volby p\u0159ipom\u00EDnek OptionPanel.separator.RichTextEditor=Editor form\u00E1tovan\u00E9ho textu OptionPanel.separator.root_node_appearance=Chov\u00E1n\u00ED ko\u0159enov\u00E9ho uzlu OptionPanel.separator.save=Ulo\u017Eit OptionPanel.separator.scripting=Skriptov\u00E1n\u00ED OptionPanel.separator.scrollbar=Skrolovac\u00ED li\u0161ta OptionPanel.separator.search=Vyhled\u00E1v\u00E1n\u00ED OptionPanel.separator.selection_colors=Barvy v\u00FDb\u011Bru OptionPanel.separator.selection_method=Metoda v\u00FDb\u011Bru OptionPanel.separator.single_instance_mode=Jedin\u00E1 instance programu OptionPanel.separator.size_limits=Ohrani\u010Den\u00ED velikosti OptionPanel.separator.spelling=Volby kontroly pravopisu OptionPanel.separator.SplitToWordsAction=Rozd\u011Blov\u00E1n\u00ED uzlu podle slov OptionPanel.separator.status=Stavov\u00FD \u0159\u00E1dek OptionPanel.separator.surveys=Pr\u016Fzkumy OptionPanel.separator.svg_icons=Ikony typu SVG OptionPanel.separator.tooltip=N\u00E1strojov\u00E9 tipy OptionPanel.separator.undo=Zp\u011Bt OptionPanel.separator.updates=Aktualizace programu OptionPanel.set_property_text=Zm\u011Bna OptionPanel.set_property_text.tooltip=Empty: Nedot\u00FDkat se; Minus=Odstranit vlastnost (nastav\u00ED defaultn\u00ED hodnoty); Plus=Zm\u011Bnit vlastnost OptionPanel.setscript=Zm\u011Bnit? OptionPanel.setscript.tooltip=Skript m\u016F\u017Ee b\u00FDt spojen se stylem. OptionPanel.shape_horizontal_margin=Vodorovn\u00FD okraj OptionPanel.shape_vertical_margin=Svisl\u00FD okraj OptionPanel.sharp_bezier=ostr\u00FD bezier OptionPanel.sharp_linear=ostr\u00FD line\u00E1rn\u00ED OptionPanel.shouldCenterSmallMaps=Vyst\u0159e\u010F mal\u00E9 mapy OptionPanel.show_connectors=Uk\u00E1zat konektory OptionPanel.show_creation_modification_in_status=Zobrazit \u010Dasy \u00FAprav v stavov\u00E9m \u0159\u00E1dku OptionPanel.show_creation_modification_in_tooltip=Ukazovat \u010Das zm\u011Bn OptionPanel.show_icon_for_attributes=Ukazovat ikonu atribut\u016F OptionPanel.show_icons=Uk\u00E1zat ikony OptionPanel.show_less_than_N_nodes_by_default_after_load=Na\u010Dti z mapy, nebo rozlo\u017E n\u011Bjak\u00E9 uzly OptionPanel.show_node_tooltips=Zobrazuj n\u00E1strojov\u00E9 tipy OptionPanel.show_note_icon_in_tooltip=Uka\u017E ikonu pozn\u00E1mky v n\u00E1strojov\u00E9m tipu OptionPanel.show_note_icons=Zobrazuj ikonu pozn\u00E1mky OptionPanel.show_styles_in_tooltip=Zobrazuj styly uzl\u016F v n\u00E1strojov\u00FDch tipech OptionPanel.signed_script_are_trusted=V\u011B\u0159it podepsan\u00FDm skript\u016Fm (doporu\u010Deno). OptionPanel.signed_script_are_trusted.tooltip=Jestli\u017Ee jsou skripty podeps\u00E1ny d\u016Fv\u011Bryhodnou stranou (nap\u0159\u00EDklad autory Freeplanu, nebo v\u00E1mi), vykonaj\u00ED se bez omezen\u00ED. OptionPanel.simplyhtml.default_paste_mode=V\u00FDchoz\u00ED re\u017Eim vkl\u00E1d\u00E1n\u00ED OptionPanel.single_backup_directory=Pou\u017E\u00EDvat jedin\u00FD adres\u00E1\u0159 pro z\u00E1lo\u017En\u00ED soubory OptionPanel.single_backup_directory.tooltip=Je-li za\u0161krtnuto, bude ukl\u00E1dat z\u00E1lo\u017En\u00ED a automaticky ulo\u017Een\u00E9 soubory do jednoho adres\u00E1\u0159e, nam\u00EDsto do podadres\u00E1\u0159e k otev\u0159en\u00E9 map\u011B OptionPanel.single_backup_directory_path=Adres\u00E1\u0159 pro z\u00E1lo\u017En\u00ED soubory (je-li za\u0161krtnuta volba v\u00FD\u0161e) OptionPanel.single_backup_directory_path.tooltip=Potla\u010D\u00ED v\u00FDchoz\u00ED adres\u00E1\u0159 pro z\u00E1lohy map Freeplanu "/.backup" OptionPanel.single_instance=Otev\u00EDrej soubory v b\u011B\u017E\u00EDc\u00ED instanci Freeplanu OptionPanel.single_instance_force=Nepovol \u017E\u00E1dnou dal\u0161\u00ED instanci Freeplanu OptionPanel.single_instance_force.tooltip=Nepovol\u00ED dal\u0161\u00ED instanci, i kdy\u017E nechcete na\u010D\u00EDst \u017E\u00E1dn\u00FD ulo\u017Een\u00FD soubor OptionPanel.sk=Sloven\u0161tina / sloven\u010Dina OptionPanel.skip_template_selection=P\u0159esko\u010D dialog v\u00FDb\u011Bru \u0161ablony OptionPanel.sl=Slovinsky / sloven\u0161\u010Dina OptionPanel.slow_scroll_selected_node=Hladce naj\u00ED\u017Ed\u011Bt na vybran\u00FD uzel OptionPanel.spelling_opt_case_sensitive=Citliv\u00E9 na velikost p\u00EDsmen OptionPanel.spelling_opt_ignore_all_caps_words=Ignoruj v\u0161echna slova zapsan\u00E1 VELK\u00DDMI P\u00CDSMENY. OptionPanel.spelling_opt_ignore_capitalization=Ignoruj velk\u00E1 p\u00EDsmena na po\u010D\u00E1tku slova OptionPanel.spelling_opt_ignore_words_with_numbers=Ignoruj slova obsahuj\u00EDc\u00ED \u010D\u00EDsla OptionPanel.spelling_opt_suggestions_limit_dialog=Nejvy\u0161\u0161\u00ED po\u010Det n\u00E1vrh\u016F v dialogu OptionPanel.spelling_opt_suggestions_limit_menu=Nejvy\u0161\u0161\u00ED po\u010Det n\u00E1vrh\u016F v menu OptionPanel.SplitToWordsAction.auxiliaryWordList=seznam pomocn\u00FDch slov OptionPanel.SplitToWordsAction.charactersAcceptedInWord=znaky ve slovech OptionPanel.SplitToWordsAction.leaveOriginalNodeEmpty=ponech p\u016Fvodn\u00ED uzel pr\u00E1zdn\u00FD OptionPanel.SplitToWordsAction.nodeNumbersInLine=\u010D\u00EDslo uzlu v \u0159\u00E1dku OptionPanel.SplitToWordsAction.saveOriginalTextAsDetails=ulo\u017E p\u016Fvodn\u00ED text do detailu uzlu OptionPanel.spotlight=Bodov\u00E9 sv\u011Btlo OptionPanel.spotlight_background_color=Barva bodov\u00E9ho sv\u011Btla OptionPanel.sr=Srbsky / \u0441\u0440\u043F\u0441\u043A\u0438 OptionPanel.standard_template=V\u00FDchoz\u00ED \u0161ablona mapy OptionPanel.standardbackgroundcolor=Standardn\u00ED barva pozad\u00ED OptionPanel.standardbackgroundcolor.tooltip=Standardn\u00ED barva pozad\u00ED v html notaci OptionPanel.standardcloudcolor=Standardn\u00ED barva oblaku OptionPanel.standardcloudcolor.tooltip=Standardn\u00ED barva oblaku v html notaci OptionPanel.standardcloudestyle=Standardn\u00ED styl oblaku OptionPanel.standardcloudestyle.tooltip=Standardn\u00ED styl oblaku. OptionPanel.standardcloudshape=Standardn\u00ED tvar oblaku OptionPanel.standarddrawrectangleforselection=Zobrazit vybran\u00E9 uzly v bublin\u00E1ch OptionPanel.standarddrawrectangleforselection.tooltip=Ozna\u010D vybran\u00E9 uzly bublinou okolo. OptionPanel.standardlinkcolor=Standardn\u00ED barva odkazu OptionPanel.standardlinkcolor.tooltip=Standardn\u00ED barva odkazu v html notaci OptionPanel.standardlinkestyle=Standard styl odkazu OptionPanel.standardlinkestyle.tooltip=Standardn\u00ED styl odkazu. Aktu\u00E1ln\u011B je podporov\u00E1n jen 'bezier'. OptionPanel.standardselectednodecolor=Standardn\u00ED barva vybran\u00E9ho uzlu OptionPanel.standardselectednodecolor.tooltip=Standardn\u00ED barva vybran\u00E9ho uzlu v notaci HTML (#RRGGBB v hexa hodnot\u00E1ch) OptionPanel.standardselectednoderectanglecolor=Barva bubliny vybran\u00E9ho uzlu OptionPanel.standardselectednoderectanglecolor.tooltip=Barva bubliny ozna\u010Duj\u00EDc\u00ED vybran\u00E9 uzly. V z\u00E1pise HTML (#RRGGBB v \u0161estn\u00E1ctkov\u00FDch hodnot\u00E1ch) OptionPanel.STAR=Hv\u011Bzda OptionPanel.statesymbolwidth=\u0160\u00ED\u0159ka symbolu stavu OptionPanel.structured_html_import=Importuj HTML jako strukturu uzl\u016F OptionPanel.structured_icon_toolbar=Sdru\u017E ikony v n\u00E1strojov\u00E9 li\u0161t\u011B OptionPanel.summary=Souhrn OptionPanel.sv=Se OptionPanel.text.use_ctrl_key=Pou\u017Eij "P\u0159i\u0159a\u010F kl\u00E1vesovou zkratku" z menu N\u00E1stroje OptionPanel.textalignment=Zarovn\u00E1n\u00ED textu OptionPanel.time_for_automatic_save=Interval automatick\u00E9ho ukl\u00E1d\u00E1n\u00ED OptionPanel.time_for_automatic_save.tooltip= Interval mezi dv\u011Bma n\u00E1sleduj\u00EDc\u00EDmi automatick\u00FDmi akcemi ulo\u017Een\u00ED (v msec): Pro vypnut\u00ED automatick\u00E9ho ukl\u00E1d\u00E1n\u00ED zadejte \u010D\u00EDslo 2000000000. OptionPanel.time_for_delayed_selection=\u010Cas pro opo\u017Ed\u011Bn\u00FD v\u00FDb\u011Br OptionPanel.time_for_delayed_selection.tooltip= \u010Casov\u00E9 zpo\u017Ed\u011Bn\u00ED v\u00FDb\u011Bru uzlu p\u0159i najet\u00ED my\u0161i (v msec). Zm\u011B\u0148te hodnotu na 1, pokud chcete p\u0159\u00EDm\u00FD v\u00FDb\u011Br p\u0159i najet\u00ED my\u0161i. OptionPanel.toolbar_icon_height=Velikost ikon n\u00E1strojov\u00FDch li\u0161t OptionPanel.toolTipManager.dismissDelay=Prodleva opu\u0161t\u011Bn\u00ED, ms OptionPanel.toolTipManager.initialDelay=Po\u010D\u00E1te\u010Dn\u00ED prodleva, ms OptionPanel.toolTipManager.max_tooltip_height=Nejvy\u0161\u0161\u00ED v\u00FD\u0161ka n\u00E1strojov\u00E9ho tipu uzlu OptionPanel.toolTipManager.max_tooltip_height.tooltip=Nejvy\u0161\u0161\u00ED v\u00FD\u0161ka n\u00E1strojov\u00E9ho tipu, zadan\u00E1 v pixelech. OptionPanel.toolTipManager.max_tooltip_width=Nejvy\u0161\u0161\u00ED \u0161\u00ED\u0159ka n\u00E1strojov\u00E9ho tipu uzlu OptionPanel.toolTipManager.max_tooltip_width.tooltip=Nejvy\u0161\u0161\u00ED \u0161\u00ED\u0159ka n\u00E1strojov\u00E9ho tipu v pixelech. OptionPanel.toolTipManager.reshowDelay=Prodleva p\u0159ed znovuzobrazen\u00EDm, ms OptionPanel.tr=Tr OptionPanel.uk_UA=Ukrajinsky / \u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=Nedefinovan\u00E9 p\u00EDsmo OptionPanel.undo_levels=\u00DArovn\u011B zp\u011Bt OptionPanel.undo_levels.tooltip=Ur\u010Duje kolik krok\u016F zp\u011Bt je ulo\u017Eeno a m\u016F\u017Ee b\u00FDt vr\u00E1ceno pomoc\u00ED "Zp\u011Bt". OptionPanel.unfold_on_paste=Rozlo\u017E uzly p\u0159i vkl\u00E1d\u00E1n\u00ED OptionPanel.unfold_on_paste.tooltip=Rozlo\u017E uzel p\u0159i vkl\u00E1d\u00E1n\u00ED, nebo p\u0159et\u00E1hnut\u00ED (drag and drop) OptionPanel.uniform_shape=Jednotn\u00FD OptionPanel.use_common_out_point_for_root_node=Hrany vych\u00E1z\u00ED z jedin\u00E9ho bodu v ko\u0159enov\u00E9m uzlu OptionPanel.use_common_out_point_for_root_node.tooltip=Hrany vych\u00E1z\u00ED z jedin\u00E9ho bodu v ko\u0159enov\u00E9m uzlu OptionPanel.use_svg_icons=Pou\u017E\u00EDvat ikony typu SVG OptionPanel.use_svg_icons.tooltip=Ur\u010Duje kvalitu zobrazov\u00E1n\u00ED ikon. Ikony typu SVG vy\u017Eaduj\u00ED pro sv\u00E9 zobrazen\u00ED v\u00EDce \u010Dasu. OptionPanel.use_tabbed_pane=Pou\u017E\u00EDvej karty OptionPanel.use_tabbed_pane.tooltip=Je-li zatr\u017Eeno, mapy se budou zobrazovat v samostatn\u00FDch kart\u00E1ch (jako ve Firefoxu). OptionPanel.validate_classpath_needs_readaccess=Skriptov\u00E1n\u00ED: P\u0159i nastavovan\u00ED cesty k soubor\u016Fm .class mus\u00EDte m\u00EDt opr\u00E1vn\u011Bn\u00ED ke \u010Dten\u00ED soubor\u016F! OptionPanel.validate_invalid_date_format=Nedopustn\u00FD standardn\u00ED form\u00E1t data OptionPanel.validate_invalid_datetime_format=Nedopustn\u00FD standardn\u00ED form\u00E1t data a \u010Dasu OptionPanel.validate_invalid_number_format=Nedopustn\u00FD standardn\u00ED \u010D\u00EDseln\u00FD form\u00E1t OptionPanel.validate_write_without_read=Skriptov\u00E1n\u00ED: Zva\u017E p\u0159id\u00E1n\u00ED "\u010Dti soubor" k "zapi\u0161 soubor". OptionPanel.validation_error=Chyba/y validace:

{0}

Pro opravu chyb pros\u00EDm zm\u011B\u0148te nastaven\u00ED. OptionPanel.validation_warning=Varov\u00E1n\u00ED validace:

{0} OptionPanel.vertical_child_gap=Svisl\u00E1 mezera mezi potomky OptionPanel.vertical_child_gap.tooltip=Svisl\u00E1 vzd\u00E1lenost mezi uzly-potomky OptionPanel.vi=Vietnamsky / Ti\u1EBFng Vi\u1EC7t OptionPanel.wheel_velocity=Rychlost OptionPanel.wheel_velocity.tooltip=Vy\u0161\u0161\u00ED hodnota zp\u016Fsob\u00ED rychlej\u0161\u00ED pohyb v map\u011B kole\u010Dkem my\u0161i. OptionPanel.wide_hexagon=\u0160irok\u00FD \u0161esti\u00FAheln\u00EDk OptionPanel.windows=Windows OptionPanel.zh_CN=\u010C\u00EDn\u0161tina (zjednodu\u0161en\u00E1) / \u7B80\u4F53\u5B57 OptionPanel.zh_TW=\u010C\u00EDn\u0161tina (tradi\u010Dn\u00ED) / \u7E41\u9AD4\u5B57 org.freeplane.plugin.bugreport.agree=Odeslat org.freeplane.plugin.bugreport.always_agree=Odeslat v\u017Edy org.freeplane.plugin.bugreport.always_deny=Nikdy neodes\u00EDlat org.freeplane.plugin.bugreport.deny=Neodes\u00EDlat org.freeplane.plugin.bugreport.dialog.title=Automatick\u00E9 hl\u00E1\u0161en\u00ED chyb programu org.freeplane.plugin.bugreport.freeplane_team=Zpr\u00E1va t\u00FDmu Freeplanu org.freeplane.plugin.bugreport.never=Nikdy se neptat na pomoc org.freeplane.plugin.bugreport.question=Freeplane obsahuje automatick\u00E9 rozpozn\u00E1v\u00E1n\u00ED a vyhled\u00E1v\u00E1n\u00ED chyb programu. org.freeplane.plugin.bugreport.report=Posledn\u00ED zpr\u00E1va org.freeplane.plugin.script.NodeIdHighlighter.node_is_not_defined=Uzel {0} nen\u00ED definov\u00E1n out_of_memory=Nedostatek pam\u011Bti. overwrite_keyset_question=P\u0159epsat existuj\u00EDc\u00ED sadu kl\u00E1vesov\u00FDch zkratek? PageAction.text=Nastaven\u00ED tisku... password_is_not_ascii=Heslo nen\u00ED ASCII PasteAction.text=Vlo\u017Eit PasteAttributes.text=Vlo\u017Eit atributy PatternNewNameProperty=Nov\u00FD vzor PatternToString.backgroundColor=Barva pozad\u00ED PatternToString.Child=Styl potomka PatternToString.color=Barva PatternToString.EdgeColor=Barva hrany PatternToString.EdgeStyle=Styl hrany PatternToString.EdgeWidth=Tlou\u0161\u0165ka hrany PatternToString.FontBold=Tu\u010Dn\u011B PatternToString.FontItalic=Kurz\u00EDva PatternToString.FontName=Font Name[translate me] PatternToString.Icon=Ikona PatternToString.NodeFontSize=Velikost p\u00EDsma periodic_formula={0} * n + {1} PeriodUnit.DAY=dn\u016F PeriodUnit.HOUR=hodina PeriodUnit.MINUTE=minuta PeriodUnit.MONTH=m\u011Bs\u00EDc PeriodUnit.WEEK=t\u00FDden PeriodUnit.YEAR=rok plugins/latex/LatexNodeHook.editorTitle=Edituj vzorec v jazyce LaTeX plugins/script_filter=Skriptov\u00FD filtr {0} plugins/script_filter_error={0} m\u00E1 navr\u00E1tit logickou hodnotu na {1}, ale navr\u00E1til {2} plugins/script_filter_execute_error=Chyba vykon\u00E1n\u00ED {0}\npro uzel {1}:\n{2} plugins/ScriptEditor.cancel=&Neukl\u00E1dat zm\u011Bny a skon\u010Dit plugins/ScriptEditor.exit=Konec plugins/ScriptEditor.FORBIDDEN_ACTION=Skripty jazyka Groovy pro Freeplane jsou zak\u00E1z\u00E1ny. N\u00E1sleduj\u00EDc\u00ED operace {0,choice,0#File|1#Network|2#Exec} je zak\u00E1z\u00E1na: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write} {2}. Nastaven\u00ED je mo\u017Eno zm\u011Bnit v nastaven\u00ED programu. plugins/ScriptEditor.menu_actions=Akce plugins/ScriptEditor.new_script=New Script[translate me] plugins/ScriptEditor.run=Spustit plugins/ScriptEditor.sign=Podepsat skript... plugins/ScriptEditor/window.Result=V\u00FDsledek: plugins/ScriptEditor/window.title=Editor skriptu plugins/ScriptingEngine.illegalAccessToInternalAPI=Nep\u0159\u00EDpustn\u00FD p\u0159\u00EDstup do vnit\u0159n\u00EDho programov\u00E9ho rozhran\u00ED (package {0}). Kontaktuje v\u00FDvojov\u00FD team Freeplanu, m\u00E1te-li dojem, \u017Ee skriptovac\u00ED API je nedostate\u010Dn\u00E9. preferences=Nastaven\u00ED presentation=Prezentace presentation.combineAll=Kombinovat v\u0161echny prezentace print_preview_title=N\u00E1hled tisku PrintAction.text=Tisknout mapu... PrintDirectAction.text=Tisk printing_settings=Nastaven\u00ED tisku PrintPreviewAction.text=N\u00E1hled tisku... program_terminates=Vnit\u0159n\u00ED chyba programu, program se ukon\u010D\u00ED. progress=Ikona pr\u016Fb\u011Bhu (%) QuickFilterAction.text=Rychl\u00FD filtr QuickFindAction.BACK.text=Najdi p\u0159edchoz\u00ED QuickFindAction.FORWARD.text=Najdi n\u00E1sleduj\u00EDc\u00ED QuickFindAllAction.text=Vyber v\u0161echny odpov\u00EDdaj\u00EDc\u00ED uzly QuickHighlightAction.text=Zv\u00FDrazni v\u0161echny odpov\u00EDdaj\u00EDc\u00ED uzly QuitAction.text=Ukon\u010Di Freeplane read_only=Pouze ke \u010Dten\u00ED ReadScriptError.text=Chyba \u010Dten\u00ED skriptu really_convert_to_current_version= Tato mapa byla vytvo\u0159ena ve star\u0161\u00ED verzi Freeplanu.
M\u00E1m ji konvertovat do aktu\u00E1ln\u00ED verze (doporu\u010Deno)?
(V opa\u010Dn\u00E9m p\u0159\u00EDpad\u011B bude na\u010Dtena tak jak je, ale bez z\u00E1ruky.) really_cut_node=Opravdu vyjmout uzel/uzly? really_execute_script=Opravdu chcete spustit skripty obsa\u017Een\u00E9 v t\u00E9to map\u011B? Je mo\u017En\u00E9, \u017Ee po\u0161kod\u00ED v\u00E1\u0161 po\u010D\u00EDta\u010D. really_remove_node=Opravdu smazat uzel/uzly? really_remove_notes=Opravdu smazat pozn\u00E1mku/y? ReapplyFilterAction.text=Fitrovat znovu red=\u010Cerven\u00E1 RedefineStyleAction.text=P\u0159edefinovat styl RedoAction.text=Znovu RedoFilterAction.text=Znovu regular_expressions=Regul\u00E1rn\u00ED v\u00FDrazy reminder.appendButton=Vlo\u017Eit datum do v\u00FDb\u011Bru reminder.Cancel=Storno reminder.cancelButton=Storno reminder.closeButton=Zav\u0159\u00EDt reminder.Created=Vytvo\u0159eno reminder.Details=Detaily reminder.Export=Exportovat vybran\u00E9 uzly reminder.Find=Naj\u00EDt reminder.Goto=J\u00EDt na reminder.hour=Hodina: reminder.Icons=Ikony reminder.Map=Mapa reminder.menu_actions=Akce reminder.minute=Minuta: reminder.Modified=Zm\u011Bn\u011Bno reminder.Notes=Pozn\u00E1mky reminder.Reminder=\u010Casova\u010D reminder.reminderButton=Upozornit ve vybran\u00E9 datum reminder.reminderButton.tooltip=P\u0159i stisknut\u00ED se vytvo\u0159\u00ED polo\u017Eka \u010Dasova\u010De dan\u00E9 datum. Blikaj\u00EDc\u00ED ikona v\u00E1s v p\u0159\u00EDslu\u0161n\u00E9 datum upozorn\u00ED.
\u010Casova\u010D se p\u0159i zav\u0159en\u00ED mapy deaktivuje do jej\u00EDho dal\u0161\u00EDho otev\u0159en\u00ED. reminder.reminderNode.tooltip=Upozorn\u011Bn\u00ED napl\u00E1nov\u00E1no na {0,date} {0,time}. reminder.reminderNode_onlyOneDate=Moment\u00E1ln\u011B m\u016F\u017Ee b\u00FDt nastaven pouze jeden \u010Dasova\u010D na uzel.
Aktu\u00E1ln\u00ED \u010Dasova\u010D je nastaven na {0,date} {0,time}, Va\u0161e volba byla {1,date} {1,time}.

P\u0159ejete si zm\u011Bnit \u010Dasova\u010D uzlu (ANO),
nebo si p\u0159ejete pou\u017E\u00EDt st\u00E1vaj\u00EDc\u00ED (NE)? reminder.remindLaterButton=Upozornit pozd\u011Bji reminder.remindLaterButton.tooltip=Upozornit pozd\u011Bji reminder.removeReminderButton=Odstranit \u010Dasova\u010D reminder.removeReminderButton.tooltip=Odstran\u00ED \u010Dasova\u010De p\u0159i\u0159azen\u00E9 vybran\u00FDm uzl\u016Fm. reminder.Replace=Nahradit reminder.Replace_All=Nahradit v\u0161e reminder.Replace_Selected=Nahradit vybran\u00E9 reminder.Select=Vybrat reminder.Text=Text reminder.todayButton=Dnes reminder.WindowTitle=Spravovat \u010Das reminder.WindowTitle_All_Nodes=Naj\u00EDt a nahradit ReminderHookAction.text=Odstranit \u010Dasova\u010D ReminderHookAction.tooltip=Odstran\u00ED p\u0159ipomenut\u00ED z uzlu. ReminderListAction.text=Spravovat \u016Fkoly ... ReminderListAction.tooltip=Uk\u00E1zat v\u0161echny napl\u00E1novan\u00E9 datumy a odpov\u00EDdaj\u00EDc\u00ED uzly. reminderNotification=Upozorn\u011Bn\u00ED \u010Dasova\u010De remove_file_from_list_on_error=Soubor {0} se nepoda\u0159ilo otev\u0159\u00EDt. Odebrat jej ze seznamu naposledy otev\u0159en\u00FDch soubor\u016F? remove_shortcut_question=Nahradit kl\u00E1vesovou zkratku? RemoveAllAlwaysUnfoldedNodeFlagsAction.text=Vyma\u017E nastaven\u00ED slo\u017Een\u00ED uzl\u016F RemoveAllAlwaysUnfoldedNodeFlagsAction.tooltip=Povolit skl\u00E1d\u00E1n\u00ED pro ka\u017Ed\u00FD uzel RemoveAllIconsAction.text=Odebrat v\u0161echny ikony RemoveConnectorAction.text=Odstranit propojen\u00ED RemoveEncryption.text=Odstranit heslo RemoveFormatAction.text=Odstranit form\u00E1t RemoveIcon_0_Action.text=Odebrat prvn\u00ED ikonu RemoveIconAction.text=Odebrat posledn\u00ED ikonu RemoveNoteAction.text=Odebrat pozn\u00E1mku RemoveNoteAction.tooltip=Odstran\u00ED obsah pozn\u00E1mky u v\u0161ech vybran\u00FDch uzl\u016F. rename=&P\u0159ejmenovat repair_link=Opravit odkaz repair_link_question=Nem\u016F\u017Eu na\u010D\u00EDst odkazovanou mapu. Chcete opravit odkaz manu\u00E1ln\u011B? replace=Nahradit replace_shortcut_question=Tato kl\u00E1vesov\u00E1 zkratka je v sou\u010Dasnosti p\u0159i\u0159azena k\n{0}.\nNahradit p\u0159i\u0159azen\u00ED? replace_shortcut_title=Nahradit kl\u00E1vesovou zkratku? ReportBugAction.text=Nahl\u00E1sit chybu programu RequestFeatureAction.text=Po\u017E\u00E1dat o dopln\u011Bn\u00ED programu reset_to_default=Pou\u017Eij v\u00FDchoz\u00ED ResetNodeLocationAction.text=Resetovat pozici uzlu ResetStyleAction.text=Resetovat styl uzlu RevertAction.text=Obnovit z m\u00EDstn\u00ED historie RevisionPluginAction.text=Barva pozad\u00ED historie zm\u011Bn save=&Ulo\u017Eit save_failed=Pokus ulo\u017Eit soubor mapy {0} selhal. save_unsaved=Ulo\u017Eit n\u00E1sleduj\u00EDc\u00ED mapu? save_unsaved_styles=Ulo\u017Eit styly? SaveAcceleratorPresetsAction.text=Ulo\u017Eit sadu kl\u00E1vesov\u00FDch zkratek... SaveAction.text=Ulo\u017Eit SaveAction_readonlyMsg=Tato mapa je pouze ke \u010Dten\u00ED. Pro editaci mapu nejprve ulo\u017Ete. SaveAction_readonlyTitle=Pokus o ulo\u017Een\u00ED mapy otev\u0159en\u00E9 v re\u017Eimu pouze ke \u010Dten\u00ED SaveAll.text=Ulo\u017Eit v\u0161echny mapy SaveAll.tooltip=Ulo\u017Eit v\u0161echny otev\u0159en\u00E9 mapy SaveAs_toReadonlyMsg={0} je pouze ke \u010Dten\u00ED. Pros\u00EDm, ulo\u017Ete do jin\u00E9ho souboru. SaveAs_toReadonlyTitle=Pokus o ulo\u017Een\u00ED souboru otev\u0159en\u00E9ho v re\u017Eimu pouze ke \u010Dten\u00ED SaveAsAction.text=Ulo\u017Eit mapu jako... saved=Ulo\u017Eeno saving_canceled=Ukl\u00E1d\u00E1n\u00ED zru\u0161eno scanners_not_loaded=Skenery nemohou b\u00FDt nahr\u00E1ny - soubor je po\u0161kozen scheme_evaluate=Vyhodnotit! script_execution_disabled=Spou\u0161t\u011Bn\u00ED skript\u016F je vypnuto, viz N\u00E1stroje/Nastaven\u00ED/Pluginy ScriptEditor.text=Editor skript\u016F... ScriptEditor.tooltip=Umo\u017En\u00ED ps\u00E1t v\u011Bt\u0161\u00ED skripty uvnit\u0159 Freeplaneu. ScriptEditorPanel.changed_cancel=Skripty byly zm\u011Bn\u011Bny. Opravdu chcete zahodit zm\u011Bny? scripting=Skripty scripting_api_generator_legend=Legenda scripting_api_generator_proxy=Proxy scripting_api_generator_title=Skriptovac\u00ED API scripting_api_generator_utilities=N\u00E1stroje scripting_api_generator_web=Internetov\u00E9 zdroje ScriptsRunToggleAction.ON_SELECTED_NODE.text=Vykonat skript na v\u0161ech vybran\u00FDch uzlech ScriptsRunToggleAction.ON_SELECTED_NODE_RECURSIVELY.text=Vykonat skript na vybran\u00FDch uzlech rekurzivn\u011B ScriptsRunToggleAction.ON_SINGLE_NODE.text=Vykonat skript na jedin\u00E9m vybran\u00E9m uzlu select_favorites_folder=Vyberte slo\u017Eku, kde m\u00E1te sv\u00E9 obl\u00EDben\u00E9 z\u00E1lo\u017Eky select_file_export_to=Vybrat soubor, do kter\u00E9ho exportovat select_folder_for_importing=Vyberte slo\u017Eku pro import select_icon=Vyber ikonu select_menu_item_dialog=Vyber polo\u017Eku z menu select_menu_item_root_node=Menu select_template=Vyber \u0161ablonu SelectAllAction.text=Vybrat v\u0161echny viditeln\u00E9 uzly SelectBranchAction.text=Vybrat viditelnou v\u011Btev SelectedPasteAction.text=Vlo\u017Eit jako... selection_method_by_click=V\u00FDb\u011Br kliknut\u00EDm selection_method_delayed=Opo\u017Ed\u011Bn\u00FD automatick\u00FD v\u00FDb\u011Br selection_method_direct=V\u00FDb\u011Br uk\u00E1z\u00E1n\u00EDm SelectNoteAction.text=P\u0159epnout editor pozn\u00E1mek SelectNoteAction.tooltip=P\u0159epnout se z/do okna s pozn\u00E1mkou set_accelerator_on_next_click_helpmessage=K vytvo\u0159en\u00ED nov\u00E9 kl\u00E1vesov\u00E9 zkratky klikni na p\u0159\u00EDslu\u0161nou polo\u017Eku v menu. SetAccelerator.dialogTitle=P\u0159i\u0159azen\u00ED kl\u00E1vesov\u00FDch zkratek SetAccelerator.keystrokeDetected=Kl\u00E1vesov\u00E1 zkratka "{0}" nen\u00ED p\u0159i\u0159azena k \u017E\u00E1dn\u00E9 polo\u017Ece menu. SetAcceleratorOnNextClickAction.text=P\u0159i\u0159adit kl\u00E1vesovou zkratku SetAlwaysUnfoldedNodeFlagsAction.text=Ponechat rozlo\u017Een\u00E9 uzly SetAlwaysUnfoldedNodeFlagsAction.tooltip=Zabr\u00E1nit slo\u017Een\u00ED v sou\u010Dasnosti rozlo\u017Een\u00FDch uzl\u016F SetImageByFileChooserAction.text=Nastavit obr\u00E1zek (V\u00FDb\u011Br souboru k nav\u00E1z\u00E1n\u00ED)... SetLinkAnchorAction.text=Nastav kotvu odkazu SetLinkAnchorAction.tooltip=Nastav\u00ED vybran\u00FD uzel jako budouc\u00ED
kotvu pro m\u00EDstn\u00ED i glob\u00E1ln\u00ED odkazy. SetLinkAnchorAction.tooltip_anchored=Nastav\u00ED vybran\u00FD uzel jako budouc\u00ED
kotvu pro m\u00EDstn\u00ED i glob\u00E1ln\u00ED odkazy. Pr\u00E1v\u011B nastaven\u00E1 kotva:
{0} SetLinkByFileChooserAction.text=Nastavit odkaz (V\u00FDb\u011Brem souboru)... SetLinkByTextFieldAction.text=Nastavit odkaz (Zad\u00E1n\u00EDm)... SetNodeLink.text=Nastavit odkaz uzlu... SetNoteWindowPosition.bottom.text=Spodek SetNoteWindowPosition.left.text=Vlevo SetNoteWindowPosition.right.text=Vpravo SetNoteWindowPosition.top.text=Vr\u0161ek SetShortenerStateAction.text=Minimalizuj uzel sf_login_required=Je zapot\u0159eb\u00ED login do Source Forge. Pokra\u010Dovat? ShowAllAttributesAction.text=Uk\u00E1zat v\u0161echny atributy ShowAncestorsAction.text=Uk\u00E1zat rodi\u010De ShowAttributeDialogAction.text=Mana\u017Eer atribut\u016F... ShowDescendantsAction.text=Uk\u00E1zat potomky ShowFilterToolbarAction.text=N\u00E1strojov\u00E1 li\u0161ta filtr\u016F ShowFirstSlideAction.text=Prvn\u00ED sl\u00EDda ShowFirstSlideAndStartPresentationAction.text=Spustit prezentaci od za\u010D\u00E1tku ShowFormatPanel.text=Panel n\u00E1stroj\u016F ShowFormatPanel.tooltip=Otev\u0159e dialog, ve kter\u00E9m je mo\u017Eno najednou upravit atributy uzlu i hrany. ShowHideNoteAction.text=Uk\u00E1zat/schovat okno s pozn\u00E1mkou ShowHideNoteAction.tooltip=Menu zkratka pro mal\u00E9 \u0161ipky na rozd\u011Blen\u00E9 \u0159\u00E1dce. ShowLastSlideAction.text=Posledn\u00ED sl\u00EDda ShowNextChildAction.text=Uk\u00E1zat dal\u0161\u00EDho potomka ShowNextSlideAction.text=Dal\u0161\u00ED sl\u00EDda ShowNotesInMapAction.text=Zobrazovat pozn\u00E1mky v map\u011B ShowPreferencesAction.dialog=Nastaven\u00ED ShowPreferencesAction.text=Mo\u017Enosti ... ShowPreviousSlideAction.text=P\u0159edchoz\u00ED sl\u00EDda ShowSelectedAttributesAction.text=Uk\u00E1zat vybran\u00E9 atributy ShowSelectionAsRectangleAction.text=V\u00FDb\u011Br obd\u00E9ln\u00EDkem simplyhtml.aboutFrameTitle=O aplikaci simplyhtml.aboutLabel=O SimplyHTML... simplyhtml.alignCenter=na st\u0159ed simplyhtml.alignLabel=Zarovn\u00E1n\u00ED: simplyhtml.alignLeft=vlevo simplyhtml.alignRight=doprava simplyhtml.allCellsRangeLabel=v\u0161echny sloupce simplyhtml.allOccurrencesReplaced=V\u0161echny v\u00FDskyty nahrazeny simplyhtml.appendTableColLabel=P\u0159idat sloupec simplyhtml.appendTableRowLabel=P\u0159idat \u0159\u00E1dek simplyhtml.applyCellAttrLabel=Aplikovat na simplyhtml.backgroundLabel=Pozad\u00ED: simplyhtml.blackFontColorLabel=\u010Cern\u00E1 simplyhtml.blueFontColorLabel=Modr\u00E1 simplyhtml.boldItalicName=tu\u010Dn\u00E1 kurz\u00EDva simplyhtml.boldName=tu\u010Dn\u011B simplyhtml.borderColorLabel=Barva: simplyhtml.borderWidthLabel=\u0160\u00ED\u0159ka simplyhtml.bottomLabel=dole: simplyhtml.cancelBtnName=Storno simplyhtml.cellBorderTabLabel=Okraje simplyhtml.cellGenTabLabel=V\u0161eobecn\u00E9 simplyhtml.cellMarginTabLabel=Odstup simplyhtml.cellPanelTitle=Form\u00E1t bu\u0148ky simplyhtml.clearFormatLabel=Odstranit form\u00E1tov\u00E1n\u00ED simplyhtml.clearFormatTip=Odstranit form\u00E1tov\u00E1n\u00ED simplyhtml.close=Zav\u0159\u00EDt simplyhtml.closeBtnName=Zav\u0159\u00EDt simplyhtml.colorLabel=Barva simplyhtml.copyLabel=Kop\u00EDrovat simplyhtml.copyTip=Kop\u00EDrovat simplyhtml.cTagNameHead1=Nadpis 1 simplyhtml.cTagNameHead2=Nadpis 2 simplyhtml.cTagNameHead3=Nadpis 3 simplyhtml.cTagNameHead4=Nadpis 4 simplyhtml.cTagNameHead5=Nadpis 5 simplyhtml.cTagNameHead6=Nadpis 6 simplyhtml.cTagNameLink=Odkaz simplyhtml.cTagNameOL=Set\u0159\u00EDd\u011Bn\u00FD seznam simplyhtml.cTagNamePara=Odstavec simplyhtml.cTagNameUL=Neset\u0159\u00EDd\u011Bn\u00FD seznam simplyhtml.cutLabel=Vyjmout simplyhtml.cutTip=Vyjmout simplyhtml.decreaseFontSizeLabel=Men\u0161\u00ED simplyhtml.defaultDocName=Bez_n\u00E1zvu simplyhtml.deleteTableColLabel=Smazat sloupec simplyhtml.deleteTableRowLabel=Smazat \u0159\u00E1dek simplyhtml.docTitleQuery=Nastavit nadpis na: simplyhtml.docTitleTitle=Upravit nadpis dokumentu simplyhtml.editLabel=Upravit simplyhtml.effectLabel=Efekt simplyhtml.familyLabel=Rodina simplyhtml.findNext=Naj\u00EDt dal\u0161\u00ED... simplyhtml.findReplaceDialogTitle=Naj\u00EDt a nahradit simplyhtml.findReplaceLabel=Naj\u00EDt a nahradit simplyhtml.findReplaceTip=Naj\u00EDt a nahradit simplyhtml.fontBoldLabel=Tu\u010Dn\u011B simplyhtml.fontBoldTip=P\u0159epnout tu\u010Dn\u00E9 simplyhtml.fontColorLabel=Barva textu simplyhtml.fontColorTip=Barva textu simplyhtml.fontDialogTitle=Form\u00E1t p\u00EDsma simplyhtml.fontItalicLabel=Kurz\u00EDva simplyhtml.fontItalicTip=P\u0159epnout kurz\u00EDvu simplyhtml.fontLabel=P\u00EDsmo... simplyhtml.fontTabLabel=p\u00EDsmo simplyhtml.fontTip=Form\u00E1t p\u00EDsma... simplyhtml.fontUnderlineLabel=Podtr\u017Een\u00ED simplyhtml.fontUnderlineTip=P\u0159epnout podtr\u017Een\u00ED simplyhtml.foregroundLabel=Pop\u0159ed\u00ED: simplyhtml.formatLabel=Form\u00E1t simplyhtml.formatListLabel=Seznam... simplyhtml.formatListTip=Zm\u011Bnit form\u00E1t seznamu simplyhtml.formatParaLabel=Odstavec... simplyhtml.formatParaTip=Zm\u011Bnit form\u00E1t odstavce simplyhtml.formatTableLabel=Tabulka... simplyhtml.formatTableTip=Form\u00E1t tabulky simplyhtml.greenFontColorLabel=Zelen\u00E1 simplyhtml.helpLabel=N\u00E1pov\u011Bda simplyhtml.htmlTabTitle=HTML k\u00F3d simplyhtml.imageFileDesc=Soubory s ob\u00E1zkem simplyhtml.increaseFontSizeLabel=V\u011Bt\u0161\u00ED simplyhtml.insertTableColLabel=Vlo\u017Eit sloupec simplyhtml.insertTableLabel=Tabulka... simplyhtml.insertTableMsg=Kolik sloupc\u016F? simplyhtml.insertTableRowLabel=Vlo\u017Eit \u0159\u00E1dek simplyhtml.insertTableTitle=Vlo\u017Eit tabulku simplyhtml.italicName=kurz\u00EDva simplyhtml.layoutTabTitle=Norm\u00E1ln\u00ED pohled simplyhtml.leftLabel=vlevo: simplyhtml.listDialogTitle=Form\u00E1t seznamu simplyhtml.listIndentTitle=Odsazen\u00ED: simplyhtml.listPosInside=uvnit\u0159 simplyhtml.listPositionLabel=Pozice: simplyhtml.listPosOutside=vn\u011B simplyhtml.listTypeCircle=kulat\u00E1 odr\u00E1\u017Eka simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeDisc=symbol souboru jako odr\u00E1\u017Eka simplyhtml.listTypeLabel=Typ: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=nic simplyhtml.listTypeSquare=\u010Dtvercov\u00E1 odr\u00E1\u017Eka simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=Vn\u011Bj\u0161\u00ED simplyhtml.matchApproximately=Naj\u00EDt p\u0159ibli\u017En\u00E9 simplyhtml.matchApproximately.tooltip=Zda povolit p\u0159ibli\u017En\u00E1 porovn\u00E1n\u00ED,
tj. vyhled\u00E1v\u00E1n\u00ED 'files' nalezne 'flies'. simplyhtml.matchCase=Rozli\u0161ovat mal\u00E1 a velk\u00E1 p\u00EDsmena simplyhtml.matchCase.tooltip=Zda respektovat velikost p\u00EDsmen, kdy\u017E je shoda. simplyhtml.newStyleDefaultName=nov\u00FD styl simplyhtml.nextTableCellLabel=Dal\u0161\u00ED bu\u0148ka simplyhtml.noLineLabel=nic simplyhtml.noMoreOccurrencesFound=\u017E\u00E1dn\u00E9 dal\u0161\u00ED v\u00FDskyty nenalezeny simplyhtml.okBtnName=OK simplyhtml.paddingLabel=Vnit\u0159n\u00ED simplyhtml.paraAlignCenterLabel=Zarovnat na st\u0159ed simplyhtml.paraAlignCenterTip=Nastavit zarovn\u00E1n\u00ED odstavce na st\u0159ed simplyhtml.paraAlignLeftLabel=Zarovnat vlevo simplyhtml.paraAlignLeftTip=Nastavit lev\u00E9 zarovn\u00E1n\u00ED odstavce simplyhtml.paraAlignRightLabel=Zarovnat vpravo simplyhtml.paraAlignRightTip=Nastavit prav\u00E9 zarovn\u00E1n\u00ED odstavce simplyhtml.paraStyleDialogTitle=Styl odstavce simplyhtml.paraTabLabel=Odstavec simplyhtml.pasteHTMLLabel=Vlo\u017Eit HTML simplyhtml.pasteLabel=Vlo\u017Eit simplyhtml.pastePlainTextLabel=Vlo\u017Eit prost\u00FD text simplyhtml.pasteTip=Vlo\u017Eit simplyhtml.plainName=b\u011B\u017En\u011B simplyhtml.previewLabel=N\u00E1hled simplyhtml.previewText=N\u00E1hledu textu simplyhtml.prevTableCellLabel=P\u0159edchoz\u00ED bu\u0148ka simplyhtml.printLabel=Tisknout... simplyhtml.redFontColorLabel=\u010Cerven\u00E1 simplyhtml.redoLabel=Znovu simplyhtml.redoTip=Vp\u0159ed simplyhtml.removeFontColorLabel=Odstranit barvu simplyhtml.replace=Nahradit... simplyhtml.replaceAll=V\u0161e simplyhtml.replaceDone=Hotovo simplyhtml.replaceNo=Ne simplyhtml.replaceThisQuery=nahradit tento v\u00FDskyt simplyhtml.replaceWith=Nahradit s: simplyhtml.replaceYes=Ano simplyhtml.rightLabel=vpravo: simplyhtml.searchDown=Hledat d\u00E1le simplyhtml.searchDown.tooltip=Hledat shora dol\u016F. simplyhtml.searchFromStart=Naj\u00EDt od za\u010D\u00E1tku simplyhtml.searchFromStart.tooltip=Za\u010Dne hled\u00E1n\u00ED od shora nam\u00EDsto od pozice kurzoru. simplyhtml.searchUp=Hledat zp\u011Bt simplyhtml.searchUp.tooltip=Hledat zdola nahoru. simplyhtml.selectAllLabel=Vybrat v\u0161e simplyhtml.selectedFontColorLabel=Vybran\u00E1 barva p\u00EDsma simplyhtml.sizeLabel=Velikost simplyhtml.standardStyleName=Standard simplyhtml.strikeLabel=P\u0159e\u0161krtnut\u00ED simplyhtml.styleLabel=Styl simplyhtml.styleNameInputText=N\u00E1zev nov\u00E9ho stylu? simplyhtml.styleNameInputTitle=Ulo\u017Eit styl simplyhtml.tableBgColLabel=Barva pozad\u00ED: simplyhtml.tableDialogTitle=Form\u00E1t tabulky simplyhtml.tableLabel=Tabulka simplyhtml.tablePanelTitle=Form\u00E1t tabulky simplyhtml.tableWidthLabel=\u0160\u00ED\u0159ka: simplyhtml.textIndentLabel=Odsazen\u00ED: simplyhtml.textToFind=Text k nalezen\u00ED: simplyhtml.thisCellRangeLabel=tato bu\u0148ka simplyhtml.thisColRangeLabel=tento sloupec simplyhtml.thisRowRangeLabel=tato \u0159\u00E1dka simplyhtml.toggleBulletsLabel=Seznam s odr\u00E1\u017Ekou simplyhtml.toggleBulletsTip=Seznam s odr\u00E1\u017Ekou simplyhtml.toggleNumbersLabel=\u010C\u00EDslovan\u00FD seznam simplyhtml.toggleNumbersTip=\u010C\u00EDslovan\u00FD seznam simplyhtml.topLabel=naho\u0159e: simplyhtml.uLineLabel=Podtr\u017Een\u00ED simplyhtml.unableToOpenFileError=Soubor nem\u016F\u017Ee b\u00FDt otev\u0159en simplyhtml.unableToRedoError=Nelze vp\u0159ed: simplyhtml.unableToUndoError=Nelze zp\u011Bt: simplyhtml.undoLabel=Zp\u011Bt simplyhtml.undoTip=Zp\u011Bt simplyhtml.valignBaseline=na linku simplyhtml.valignBottom=dol\u016F simplyhtml.valignLabel=Vertik\u00E1ln\u00ED zarovn\u00E1n\u00ED: simplyhtml.valignMiddle=na st\u0159ed simplyhtml.valignTop=nahoru simplyhtml.wholeWordsOnly=Hledat pouze cel\u00E1 slova simplyhtml.wholeWordsOnly.tooltip=Omez shodu na cel\u00E1 slova. slide.add=P\u0159idat slide.add.tooltip=P\u0159idat aktu\u00E1ln\u011B vybran\u00E9 uzly na sl\u00EDdu slide.at_center.tooltip=ve st\u0159edu slide.content=Obsah sl\u00EDdy slide.descendants=Uka\u017E potomky slide.edge=na okraji slide.filter=Filtr slide.first=Prvn\u00ED slide.last=Posledn\u00ED slide.next=Dal\u0161\u00ED slide.nofilter=Bez filtru slide.on_the_left.tooltip=nalevo slide.on_the_right.tooltip=napravo slide.placenode=Um\u00EDstit vybran\u00FD uzel slide.placenode.tooltip=kdy\u017E je sl\u00EDda prezentov\u00E1na slide.present=Prezentuj slide.presentation=Prezentace slide.presentations=Prezentace slide.previous=P\u0159edchoz\u00ED slide.remove=Odstranit slide.remove.tooltip=Odstranit vybran\u00E9 uzly ze sl\u00EDdy slide.select=Vybrat slide.select.tooltip=Vybrat uzly ze sl\u00EDdy v map\u011B slide.set=Nastavit slide.set.tooltip=Ud\u011Blat vybran\u00E9 uzly obsahem sl\u00EDdy slide.setfilter=Nastav filtr slide.setfilter.tooltip=Nastavit, nebo odstranit filtr, kter\u00FD m\u00E1 b\u00FDt pou\u017Eit, kdy\u017E je sl\u00EDda zobrazena slide.setfoldingstate=Nastavit skl\u00E1d\u00E1n\u00ED slide.setfoldingstate.tooltip=Obnovit aktu\u00E1ln\u00ED skl\u00E1d\u00E1n\u00ED, kdy\u017E je sl\u00EDda zobrazena slide.setzoom=Nastavit p\u0159ibl\u00ED\u017Een\u00ED slide.setzoom.tooltip=Nastavit, nebo odstranit p\u0159ibl\u00ED\u017Een\u00ED mapy, kter\u00E9 bude provedeno, kdy\u017E bude sl\u00EDda zobrazena slide.showancestors=Zobrazit p\u0159edky slide.showonlyselected=Uk\u00E1zat pouze vybran\u00E9 uzly slide.showonlyselected.tooltip=Skr\u00FDt ostatn\u00ED uzly, kdy\u017E se sl\u00EDda zobraz\u00ED slide.slides=Sl\u00EDdy slide.stop=Zastavit SortNodes.text=Set\u0159\u00EDdit potomky SortNodes.tooltip=Abecedn\u011B set\u0159\u00EDd\u00ED v\u0161echny potomky uzlu. split=&Rozd\u011Blit SplitConditionAction.text=Rozd\u011Bl SplitNode.text=Rozd\u011Blit uzlel SplitNode.tooltip=Uzel je rozd\u011Blen SplitToWordsAction.text=Rozd\u011Bl v \u0159\u00E1dku s pou\u017Eit\u00EDm slov {0} STANDARD_FORMAT=Standardn\u00ED StartPresentationAction.text=Spustit prezentaci StartPresentationOrShowNextSlideAction.text=Spustit prezentaci/dal\u0161\u00ED sn\u00EDmek stop_processing=Stop StopPresentationAction.text=Zastavit prezentaci StrikeThroughAction.text=P\u0159e\u0161krtnut\u00E9 StringFlavorHandler=Prost\u00FD text jako hierarchie uzl\u016F StructuredHtmlFlavorHandler=HTML jako hierarchie uzl\u016F style=Styl style_already_exists=Styl u\u017E existuje. styledialog.cancel.text=Zru\u0161it styledialog.ok.text=V po\u0159\u00E1dku styles=St&yly styles.AutomaticLayout=Pou\u017E\u00EDt styly dle \u00FArovn\u011B styles.connection=Spoj styles.date=Datum styles.definition=Definice styles.description=Popis styles.floating_node=Plovouc\u00ED uzel styles.idea=My\u0161lenka styles.important=D\u016Fle\u017Eit\u00E9 styles.key=Kl\u00ED\u010D styles.list=Seznam styles.needs_action=Vy\u017Eaduje akci styles.note=Pozn\u00E1mka styles.ok=V po\u0159\u00E1dku styles.pending=\u010Cekaj\u00EDc\u00ED styles.predefined=P\u0159eddefinovan\u00E9 styly styles.question=Ot\u00E1zka styles.quotation=Citace styles.root_node=Styly styles.subsubtopic=Podpodt\u00E9ma styles.subtopic=Podt\u00E9ma styles.topic=T\u00E9ma styles.user-defined=U\u017Eivatelem definovan\u00E9 styly styles.website=Webov\u00E1 str\u00E1nka styles_background_html=\n 1\n 2\n 3\n 4\n 5\n 6\n \n \n \n
7\n
8\nO t\u00E9to sad\u011B styl\u016F\n
9\n
0\n
\nTento standard byl vyvinut po jeden\u00E1cti letech pedagogick\u00E9ho v\u00FDzkumu na t\u00E9ma, jak zrychlit a zjednodu\u0161it proces osvojov\u00E1n\u00ED si znalost\u00ED.\n
\n
\nC\u00EDlem standardu je ud\u011Blat proces osvojov\u00E1n\u00ED, zpracov\u00E1n\u00ED, absorbov\u00E1n\u00ED a porozum\u011Bn\u00ED znalostem, my\u0161lenk\u00E1m a informac\u00EDm, jako\u017E jejich zpracov\u00E1n\u00ED, tak jednoduch\u00FD a rychl\u00FD, jak je to jen mo\u017En\u00E9.\n
\n
\nStandard byl vyvinut Jonasem Batistou (Braz\u00EDlie).\n V\u00EDce informac\u00ED je mo\u017En\u00E9 nal\u00E9zt na: www.jonasbatista.com.br/ \n
\n
\n
\n \n
\n Jonas Batista
\n
\n
\n \n styles_menu=Dostupn\u00E9 styly submenu_keystroke_in_use_error=Kl\u00E1vesu {0} nen\u00ED mo\u017En\u00E9 pou\u017E\u00EDt pro submenu {1}. Kl\u00E1vesa odstran\u011Bna. summary_nodes=Souhrnn\u00E9 uzly summary_not_possible=Pro vybran\u00E9 uzly nen\u00ED mo\u017Eno vytvo\u0159it souhrnn\u00FD uzel svg=SVG template_dir=Standardn\u00ED \u0161ablony TextAlignAction.CENTER.text=Vyst\u0159ed\u011Bn\u00FD text TextAlignAction.DEFAULT.text=V\u00FDchoz\u00ED TextAlignAction.LEFT.text=Text zarovnan\u00FD vlevo TextAlignAction.RIGHT.text=Text zarovnan\u00FD vpravo textalignment=Zarovn\u00E1n\u00ED textu TextChangeHotKeyAction.text=Nastav kl\u00E1vesovou zkratku zm\u011Bny textu TimeManagementAction.text=Spravovat \u010Das... TimeManagementAction.tooltip=Uk\u00E1\u017Ee modul kalend\u00E1\u0159 od Kaie Toedtera. TimePeriodUnits.days=dny TimePeriodUnits.hours=hodiny TimePeriodUnits.minutes=minuty TimePeriodUnits.ms=ms TimePeriodUnits.seconds=sekundy TimePeriodUnits.weeks=t\u00FDdny ToggleChildrenFoldedAction.text=(Roz)slo\u017Eit poduzly ToggleDetailsAction.text=Skr\u00FDt podrobnosti ToggleFBarAction.text=Li\u0161ta funk\u010Dn\u00EDch kl\u00E1ves ToggleFoldedAction.text=Sbalit/Rozvinout ToggleFullScreenAction.text=Re\u017Eim cel\u00E9 obrazovky ToggleLeftToolbarAction.text=Panel ikon ToggleMenubarAction.text=P\u0159epnout Menu ToggleScrollbarsAction.text=Skrolovac\u00ED li\u0161ty ToggleStatusAction.text=Zobrazit stavov\u00FD \u0159\u00E1dek ToggleToolbarAction.text=N\u00E1strojov\u00FD panel TranslatedElement.BORDER=Hrani\u010Dn\u00ED text TranslatedElement.TEXT=Text TranslatedElement.TOOLTIP=N\u00E1pov\u011Bda TutorialAction.text=Tutori\u00E1l uiTextChanger.originalTextIsNotDefined=P\u016Fvodn\u00ED text nen\u00ED definov\u00E1n uiTextChanger.replaceText=Nahradit text u\u017Eivatelsk\u00E9ho rozhran\u00ED undefined_error=Nastala neo\u010Dek\u00E1van\u00E1 chyba. Pokuste se pros\u00EDm zaslat zpr\u00E1vu o chyb\u011B. underline=Podtrhnout UnderlineAction.text=Podtr\u017Een\u00ED underlined=Podtrhnut\u00E9 UndoAction.text=Zp\u011Bt UndoFilterAction.text=Zp\u011Bt unfold=Rozvinout UnfoldAllAction.text=Rozvinout v\u0161e UnfoldAllAction.tooltip=Rozvinout vybran\u00E9 uzly a v\u0161echny jejich poduzly. UnfoldOneLevelAction.text=Rozvinout jednu \u00FArove\u0148 UnfoldOneLevelAction.tooltip=Rozvine vybran\u00E9 uzly o jednu \u00FArove\u0148. unparsedLatexPatternFormat=Neparsovan\u00FD LaTeX up=Nahor&u UpConditionAction.text=Nahoru update_failed=Aktualizace selhala se zpr\u00E1vou {0} UpdateCheckAction.text=Zkontrolovat aktualizace updatecheckdialog=Dialog kontroly aktualizace updater.component=Komponenta updater.goToDownload=P\u0159ej\u00EDt na sta\u017Een\u00ED updater.version.installed=Instalovan\u00E1 verze updater.version.latest=Posledn\u00ED verze updater.version.noUpdateUrl=Tento dopln\u011Bk nem\u00E1 pro aktualizace URL, nebo domovskou str\u00E1nku. updater.version.unknown=nezn\u00E1m\u00FD updater.version.unreachable=Nedostupn\u00FD zdroj: updater.viewChangelog=Zobrazit seznam zm\u011Bn url_error=Toto URL nen\u00ED v po\u0159\u00E1dku! url_load_error=Nemohl jsem na\u010D\u00EDst mapu z URL: url_open_error=Nen\u00ED mo\u017Eno otev\u0159\u00EDt URL {0}. used_in_menu=Tuto kl\u00E1vesovou zkratku nen\u00ED mo\u017Eno pou\u017E\u00EDt, nebo\u0165 je pou\u017Eita v menu. UsePlainTextAction.text=Pou\u017E\u00EDt neform\u00E1tovan\u00FD text user_config_folder=U\u017Eivatelsk\u00FD adres\u00E1\u0159 s nastaven\u00EDm: {0} user_defined_filters=U\u017Eivatelsky definovan\u00E9 filtry user_defined_scale=& U\u017Eivatelem definovan\u00E9 m\u011B\u0159\u00EDtko user_defined_zoom=U\u017Eivatelsky definov\u00E1no user_defined_zoom_status_bar=M\u011Bn\u00EDm p\u0159ibl\u00ED\u017Een\u00ED lupou na hodnotu {0}%. user_icon=U\u017Eivatelsk\u00E1 ikona "{0}" user_template_dir=U\u017Eivatelsk\u00E9 \u0161ablony user_zoom=Faktor lupy p\u0159i tisku (0.0 - 2.0): userScripts=Skripty value_format=Form\u00E1t hodnoty version_up_to_date=Pou\u017E\u00EDv\u00E1te nejnov\u011Bj\u0161\u00ED verzi programu view=Zobrazit ViewLayoutTypeAction.OUTLINE.text=Zobrazit jako osnovu web_resources=Webov\u00E9 zdroje WebDocuAction.text=Webov\u00E1 dokumentace WhatsNewAction.text=Co nov\u00E9ho ve Freeplanu 1.5.x width=\u0160\u00ED\u0159ka wrong_regexp=Chybn\u00FD regul\u00E1rn\u00ED v\u00FDraz "{0}", chyba {1} xslt_export.html=Dokument HTML xslt_export.latex=Dokument LaTeX xslt_export.latexbook=Kniha LaTeX xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=MS Excel 2003 XML xslt_export.ms_project=MS Project 2003 XML xslt_export.ms_word=MS Word 2003 XML xslt_export.text=Prost\u00FD text xslt_export_not_possible=Export Freeplane XSLT nen\u00ED mo\u017En\u00FD yes=Ano zoom=P\u0159ibl\u00ED\u017Een\u00ED ZoomInAction.text=P\u0159ibl\u00ED\u017Eit ZoomOutAction.text=Odd\u00E1lit freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_da.properties0100644 0000000 0000000 00000326517 13432225762 027621 0ustar000000000 0000000 about_text=Freeplane - fri mindmapping- og vidensbygningssoftware AboutAction.text=Om acceleratorPresets=Ops\u00E6tning af genvejstaster accelerators_loading_error=Kan ikke indl\u00E6se acceleratorer fra {0} accessories/plugins/ApplyFormatPlugin.dialog.title=Skift knudepunkternes format accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Skift m\u00F8nster accessories/plugins/EncryptNode.properties_0=V\u00E6lg adgangskode for krypteret knudepunkt accessories/plugins/EncryptNode.properties_1=Adgangskoder er ikke ens eller er for korte. accessories/plugins/EncryptNode.properties_2=Indtast adgangskode: accessories/plugins/EncryptNode.properties_3=Gentag adgangskode: accessories/plugins/EncryptNode.properties_4=Indtast din adgangskode. accessories/plugins/EncryptNode.properties_5=Husk at krypteringens styrke stort set
udelukkende afh\u00E6nger af adgangskodens kvalitet. accessories/plugins/EncryptNode.properties_6=OK accessories/plugins/EncryptNode.properties_7=Annuller accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Du kan kun skifte krypteringsstatus p\u00E5 et krypteret knudepunkt. Inds\u00E6t s\u00E5dan et knudepunktved ved brug af v\u00E6rkt\u00F8jsmenuen. accessories/plugins/EncryptNode.properties_select_me=V\u00E6lg mig for at forts\u00E6tte! accessories/plugins/EncryptNode.properties_wrong_password=Adgangskoden er ikke korrekt. accessories/plugins/Export_JavaWebStart.text=Java Web Start... accessories/plugins/Export_JavaWebStart.tooltip=Eksport af kort til java web start. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Eksporterer MindMap som et TWiki dokument. accessories/plugins/ExportWithXSLT.tooltip=Dette er en uniform eksportmetode der bruger XSLT scripts. accessories/plugins/ExportWithXSLT_Applet.text=Som Java Applet... accessories/plugins/ExportWithXSLT_Applet.tooltip=Eksporterer MindMap som en java browser applet. accessories/plugins/ExportWithXSLT_HTML.text=Som XHTML (JavaScript version)... accessories/plugins/ExportWithXSLT_HTML3.text=Som XHTML (Klikbar MindMap billed version)... accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Resourser fra RESOURCER knudepunkttil TaskJuggler filen\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Eksporterer resourser fra RESOURCER knudepunkt til TaskJuggler modulet. accessories/plugins/ExportWithXSLT_TASKSTJI.text=Opgaver fra TASK knudepunkt til TaskJuggler filen\u2026 accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Eksporterer opgaver fra TASK knudepunkt til TaskJuggler modulet. action_keystroke_in_use_error=Tastetryk {0} anmoder om handling {1, men} er allerede i brug for handling {2} active=Aktiv actual_map_styles=MindMap betingede formater anvendes p\u00E5 knudepunkt actual_node_styles=Knudepunkt betingede formater anvendes p\u00E5 knudepunkt add=Tilf\u00F8j AddConnectorAction.text=Tilsluttet AddElementaryConditionAction.text=Tilf\u00F8j AddExecutionLinkAction.text=Tilf\u00F8j lnik til udf\u00F8relse af OS kommando... AddLocalLinkAction.text=Tilf\u00F8j lokalt Hyperlink AddMenuItemLinkAction.text=Tilf\u00F8j link til menupunkt\u2026 AddOnDetailsPanel.authored.by=Af {0} AddOnDetailsPanel.header.function=Funktion AddOnDetailsPanel.header.menu=Menuplacering AddOnDetailsPanel.header.shortcut=Genvej AddOnDetailsPanel.homepage=Hjemmeside: addons.installer.canceled=Installation afbrudt addons.installer.confirm.licence=

Licens

{0}

Accepterer du denne licens?

addons.installer.failed=Installation fejlede: {0} addons.installer.freeplaneversion.format.error=Formatfejl i {0} (v\u00E6rdi: {1}) addons.installer.html.script=Skript tekst kan ikke formateres som HTML addons.installer.install=Installer addons.installer.invalid.keyboard.shortcut=Ikke brugbar genvej {0}. addons.installer.licence.unchanged=Licens er u\u00E6ndret addons.installer.map.structure=Fejl i MindMap struktur: {0} addons.installer.missing.child.nodes=Manglende under knuder: {0} addons.installer.missing.permission.attribute=Script {0}: manglende tilladelsesattributter {1} addons.installer.missing.properties=Manglende egenskaber: {0} addons.installer.missing.translation=Manglende overs\u00E6ttelse af {0} for {1} addons.installer.no.scripts=Ingen scripts fundet addons.installer.no.zipdata=Ingen zip-data fundet addons.installer.nonstandard.permissions=Skriptet kr\u00E6ver f\u00F8lgende tilladelser, der ikke i \u00F8jeblikket er aktiveret: {0}. b\u00F8r de f\u00F8jes til standard tilladelser? addons.installer.one.child.expected=Forventet n\u00F8jagtigt \u00E9t underknudepunkt af {0} men fik {1}. addons.installer.script.name.suffix=Script navn {0} har ikke et suffiks s\u00E5som ".groovy" addons.installer.script.no.execution_mode=Ingen "execution_mode" attribut defineret for {0} addons.installer.script.no.menulocation=Ingen "menuLocation" attribut defineret for {0} addons.installer.script.no.menutitle=Ingen "menuTitleKey" attribut defineret for {0} addons.installer.script.no.permissions=Ingen tilladelser defineret for {0} addons.installer.success=Installationen lykkedes.\nDen nye tilf\u00F8jelse vil v\u00E6re tilg\u00E6ngelig efter genstart. addons.installer.success.update=Opdateret fra {0} til {1}.\nNogle funktioner vil kun v\u00E6re tilg\u00E6ngelige efter genstart. addons.installer.title=Indstaller tilf\u00F8jelse addons.installer.too.new=Nuv\u00E6rende Freeplane version {0} er for ny. Tilf\u00F8jelsesprogrammet underst\u00F8tter h\u00F8jst {1} addons.installer.too.old=Nuv\u00E6rende Freeplane version {0} er for gammel. Tilf\u00F8jelsen beh\u00F8ver mindst {1} addons.installer.unknown.deinstallation.rules=Ukendt regel for afinstallation {0} addons.installer.update=Opdater fra version {0} addons.installer.warning=Du b\u00F8r kun installere tilf\u00F8jelser fra kilder, du har tillid til. Ondsindet software kan beskadige data eller kr\u00E6nke dit privatliv. addons.site=http://freeplane.sourceforge.net/addons/ AddStyleAttributes.text=Attributter fra typografi AddStyleAttributes.tooltip=Tilf\u00F8j attributter fra stil knudepunkt AllMapsNodeListAction.text=S\u00F8g og erstat i alle MindMap always=Altid AlwaysUnfoldedNodeAction.text=Altid udfoldet knudepunkt (indstil/nulstil) antialias_all=Antialias alt antialias_edges=Antialias kanter antialias_none=Ingen antialias apply=Anvend ApplyAction.text=Anvend ApplyFormatPlugin.text=\u00C6ndr format... ApplyFormatPlugin.tooltip=Pr\u00E6senterer en dialogboks i hvilken knudepunkt og kant attributter kan \u00E6ndres med det samme. ApplyNoFilteringAction.text=Ingen filtrering ApplySelectedViewConditionAction.text=Filtrer udvalgte knudepunkter ApplyToVisibleAction.text=G\u00E6lder for filtrerede knudepunkt as_parent=Som for\u00E6ldre AskForHelp.text=Bed om hj\u00E6lp i forum AssignAttributesAction.text=Tildel attributter... attribute_delete=Slet alle v\u00E6rdier attribute_delete_value=Slet denne v\u00E6rdi attribute_font_size.tooltip=Attribut skriftst\u00F8rrelse attribute_list_box_label_text=Eksisterende v\u00E6rdier attribute_name=Attributnavn attribute_name_or_value=Attributnavn eller v\u00E6rdi attribute_replace=Erstat med attribute_top=Alle kendte attributter for de indl\u00E6ste MindMaps attribute_value=Attributv\u00E6rdi attributes_AddAttributeAction.text=Tilf\u00F8j attribut i dialogboksen\u2026 attributes_adding_empty_attribute_error=Kan ikke bruge en tom streng som attributnavn attributes_all=Alle atributter attributes_assign_dialog=Udvidet attribut editor attributes_attribute=Atributter attributes_close=Luk attributes_deselect_all=Ingenting attributes_dialog_title=Attribut administrator attributes_edit=Rediger attributes_edit.tooltip=Rediger s\u00E6t attributes_for_selected=Valgte knudepunkt attributes_for_visible=Alle synlige knudepunkt attributes_import=Import attributes_import.tooltip=Importer attributter fra de andre indl\u00E6ste MindMaps attributes_no_import_candidates_found=Ingen nye attributter fundet attributes_popup_delete=Slet attributes_popup_down=Ned attributes_popup_edit=Rediger attributes_popup_hide=Skjul attributes_popup_new=Ny Atribut attributes_popup_optimal_width=Optimal brede attributes_popup_up=Op attributes_refresh=Opdater attributes_RemoveAllAttributesAction.text=Fjern alle attributter attributes_RemoveFirstAttributeAction.text=Fjern f\u00F8rste attribut attributes_RemoveLastAttributeAction.text=Fjern sidste attribut attributes_restricted_attributes.tooltip=Begr\u00E6ns s\u00E6ttet af atributter attributes_restricted_values.tooltip=Begr\u00E6ns s\u00E6ttet af v\u00E6rdier for nuv\u00E6rene atribut attributes_restriction=Begr\u00E6nset set attributes_select_all=Alt attributes_select_all.tooltip=V\u00E6lg/frav\u00E6lg alle attributes_show=Vis attributes_skip_root=Skip rod knudepunkt attributes_visible=Valgte synlige attributes_visible.tooltip=Valgte synlige automatic_layout=Automatisk layout automatic_layout_disabled=deaktiveret automatically_save_message=Mindmap blev automatisk gemt (med filnavnet {0}) \u2026 AutomaticEdgeColor.FOR_BRANCHES=for grene AutomaticEdgeColor.FOR_COLUMN=for kolonne AutomaticEdgeColor.FOR_COLUMNS=for kolonner AutomaticEdgeColor.FOR_LEVELS=for niveauer AutomaticEdgeColor.ON_BRANCH_CREATION=Ved skabelse af gren AutomaticEdgeColorHookAction.text=Automatisk kantfarve AutomaticLayout.ALL=for alle knudepunkter AutomaticLayout.COLUMNS=for kolonner AutomaticLayout.HEADINGS=for ikke blade knudepunkter AutomaticLayout.level=Niveau {0} AutomaticLayout.level.root=Roden AutomaticLayoutAction.text=Anvend niveautypografier AutomaticLayoutAction.tooltip=Fasts\u00E6tter layoutet af MindMap.
Det f\u00F8rste niveau er sort, det andet bl\u00E5, osv. AutomaticLayoutControllerAction.ALL.text=for alle knudepunkter AutomaticLayoutControllerAction.COLUMNS.text=for kolonner AutomaticLayoutControllerAction.HEADINGS.text=for ikke blad knudepunkter AutomaticLayoutControllerAction.null.text=deaktiveret BackAction.text=G\u00E5 bagl\u00E6ns BackAction.tooltip=Hop tilbage i den valgte k\u00E6de background=Baggrund bitmaps=Bitmaps black=Sort BlinkingNodeHookAction.text=Blinkende knuddepunkt BlinkingNodeHookAction.tooltip=Dette f\u00E5r knudepunktet til at blinke. Men v\u00E6r forsigtig. Brug det ikke p\u00E5 for mange knudepunkter, og ikke med andre automatiske formateringer p\u00E5 samme knudepunkt blue=Bl\u00E5 BoldAction.text=Fed boldify_branch=Fremh\u00E6v branch=Forgrening browse=Gennemse\u2026 calendar_attributes_panel=Kalender og attributter calendar_panel=Kalender can_not_clone_encrypted_node=Kan ikke klone krypterede noder can_not_connect_to_info_server=Kan ikke forbinde til information server can_not_delete_predefined_style=Kan ikke slette foruddefineret stil can_not_delete_root_style=Kan ikke slette rod typografi can_not_delete_style_group=Kan ikke slette stilgruppe can_not_encrypt_cloned_node=Kan ikke kryptere klonede noder can_not_save_key_set=Kan ikke gemme genvejstaster cancel=&Annuller CancelAction.text=Annuller cannot_add_parent_diff_parents=Alle knudepunkter skal have samme overknudepunkt for at bruge denne funktion. cannot_add_parent_to_root=Rod knudepunkt kan ikke tilf\u00F8jes til en ny overknudepunkt. cannot_delete_root=Rodknudepunkt kan ikke slettes eller klippes. cannot_join_nodes_with_children=Kan ikke forbinde knudepunkter med underknudepunkter cannot_move_into_child_node=Kan ikke flytte til underordnet node cannot_move_to_child=Kan ikke flytte et knudepunkt til en af dens underknudepunkter. CenterAction.text=Centrer ChangeConnectorArrowsAction.backward.text=Tr\u00E6k pilen tilbage ChangeConnectorArrowsAction.both.text=Tr\u00E6k pilen frem og tilbage ChangeConnectorArrowsAction.forward.text=Tr\u00E6k pilen tilbage ChangeConnectorArrowsAction.none.text=Ingen ChangeConnectorArrowsAction.text=\u00C6ndre pile p\u00E5 forbindelser ChangeConnectorShapeAction.CUBIC_CURVE.text=Kurve ChangeConnectorShapeAction.EDGE_LIKE.text=Simulere kant ChangeConnectorShapeAction.LINE.text=Linje ChangeConnectorShapeAction.LINEAR_PATH.text=Line\u00E6r sti ChangeNodeLevelLeftsAction.text=Flyt knudepunnkt (for\u00E6ldre s\u00F8skende) ChangeNodeLevelLeftsAction.tooltip=Til venstre fra roden skiftes knudepunkterne nedad. De bliver underknudepunkter af knudepunkterne ovenover. Til h\u00F8jre for roden skiftes knudepunkter opad. Direkte ved roden, skifter knudepunkterne side. ChangeNodeLevelRightsAction.text=Flyt knudepunkt (s\u00F8skende barn) ChangeNodeLevelRightsAction.tooltip=Til venstre fra roden skiftes knudepunkterne nedad. De bliver underknudepunkter af knudepunkterne ovenover. Til h\u00F8jre for roden skiftes knudepunkter opad. Direkte ved roden, skifter knudepunkterne side. choose_cloud_color=V\u00E6lg sky farve: choose_edge_color=V\u00E6lg kantfarve choose_map_background_color=V\u00E6lg MindMap baggrundsfarve choose_node_background_color=V\u00E6lg knudepunktsbaggrundsfarve: choose_node_color=V\u00E6lg knudepunktsfarve: ClearLinkAnchorAction.text=Ryd link anker ClearLinkAnchorAction.tooltip=slet tidligere angivet knudepunktsanker CloneAction.text=Inds\u00E6t klon close_btn=Luk CloseAction.text=Luk aktuelle MindMap CloseAllMapsAction.text=Luk alle kort CloseAllOtherMapsAction.text=Luk alle andre kort cloud_shapes=Skyfigurer CloudAction.text=Tilf\u00F8j/fjern sky(standard) CloudColorAction.text=Skyfarve\u2026 CloudShapeAction.ARC.text=Bue CloudShapeAction.RECT.text=Rektangel CloudShapeAction.ROUND_RECT.text=Rund rektangel CloudShapeAction.STAR.text=Stjerne collection.delete=Slet collection.down=Ned collection.move=Flyt collection.moveTo=Flyt til position collection.new.presentation=Ny pr\u00E6sentation collection.new.slide=Nyt dias collection.up=Op ColorProperty.ResetColor=Reset farve combined=Kombineret condition=Betingelse confirmation=Bekr\u00E6ftelse connector=Forbindelse connector_arrows=Forbindelsespile connector_label=Forbindelse etiket connector_lines=Forbindelseslinier connector_shapes=Forbindelsesfigurer ConnectorColorAction.text=Forbindelsefarve\u2026 CopyAction.text=Kopier CopyAction.tooltip=Kopier markerede gren CopyAttributes.text=Kopier attributter CopyIDAction.text=Kopiere knudepunkt ID CopyMapStylesAction.text=Kopier MindMap typografi fra\u2026 CopyNodeURIAction.text=Kopiere knudepunkt URL copyright=Copyright \u00A9 2000-2019 Freeplane holdet og andre CopySingleAction.text=Kopiere knudepunkt (enkelt) CopySingleAction.tooltip=Kopier kun det valgte knudepunkt CopyStyleExtensionsAction.text=Kopiere udvidelser fra stil knudepunkt corrupt_map=MindMap indhold er beskadiget CreateConjunctConditionAction.text=Og CreateDisjunctConditionAction.text=Eller CreateNotSatisfiedConditionAction.text=Ikke current_dir=Mindmaps CutAction.text=Klip decrease_branch_font_size=Mindre skrifttype DecreaseNodeFontAction.text=Mindre skrifttype default=Standard defaultAuxiliaryWordList=en, den, af DefaultColorAction.text=Standardfarve defaultstyle.attributes=Attributter defaultstyle.details=Detaljer defaultstyle.floating=Flydende knudepunkt defaultstyle.note=Note delete=Slet delete_child=Slet barn DeleteAction.text=Fjern node DeleteConditionAction.text=Slet DeleteDetailsAction.text=Fjern knudepunkt detaljer DeleteLevelStyleAction.text=Fjern niveau typografi DeleteStyleAction.text=Fjern typografi DeleteUserStyleAction.text=Fjern brugerdefineret typografi dialect_info.app=MindMap fil {0} blev oprettet med programmet {1}. dialect_info.later_version=MindMap fil {0} blev oprettet med en senere version af dette program. dialect_info.unknownApp=MindMap fil {0} blev oprettet af et ukendt program. dialect_info.unknownURL=Hjemmeside er ikke kendt. dialect_info.url=Bes\u00F8g program-websted {0} for mere information. dialect_info.warning=Freeplane vil muligvis \u00E5bne, vise eller gemme det forkert. DirectHtmlFlavorHandler=HTML som enkelt knudepunkt DocumentationAction.text=Dokumentation down=Ned DownConditionAction.text=Ned download=Hent dropped_file_error=Kunne ikke \u00E5bne tabte filer. \u00C5rsag: {0} edge=Kant edge_is_formatted_by_style=Kantformat styres af stil. Rediger relaterede typografier hvis det er n\u00F8dvendigt. edge_style=Kant stil edge_width=Kantbredde edge_widths=Kantbredder EdgeColorAction.text=Kant farve\u2026 EdgeProperties=Kantegenskaber EdgeStyleAction.bezier.text=J\u00E6vnt bue (bezier) EdgeStyleAction.bezier.tooltip=Vis kanten som en j\u00E6vn kurve. EdgeStyleAction.hide_edge.text=Skjul kant EdgeStyleAction.hide_edge.tooltip=For markerede knudepunkter vis kanten til overknudepunkter som en
punkteret linie. Ellers skjul kanten. EdgeStyleAction.horizontal.text=Vandret EdgeStyleAction.horizontal.tooltip=Brug vinkelrette streger til kanter. EdgeStyleAction.linear.text=Line\u00E6r EdgeStyleAction.linear.tooltip=Vis kanten som en lige linje. EdgeStyleAction.sharp_bezier.text=Skarp bue (bezier) EdgeStyleAction.sharp_bezier.tooltip=Vis kanten som en glat kurve med sk\u00E6rpet ender. EdgeStyleAction.sharp_linear.text=Skarp line\u00E6r EdgeStyleAction.sharp_linear.tooltip=Vis kanten som en lige linje med sk\u00E6rpet ender. EdgeStyleAsParentAction.text=Som for\u00E6ldre EdgeStyleAsParentAction.tooltip=Brug kant stilen fra overordnede knudepunkt.[for\u00E6ldet] EdgeWidthAction_width_parent.text=For\u00E6lder EdgeWidthAction_width_thin.text=Tynd edit=R&ediger edit.decision=HTML-editor edit.edit_rich_text=Vil du bruge formattering s\u00E5 som fed eller kursiv? edit_details=Rediger knudepunkt detaljer edit_end_label=Forbindelse
etiket edit_label_font_family=Skrifttype edit_label_font_size=Skriftst\u00F8rrelse edit_link_manually=Rediger Hyperlink manuelt... edit_long_node=Redigere knudepunkt kerne i dialogboksen edit_middle_label=Midt
etiket edit_note=Rediger note edit_source_label=Kilde
etiket edit_target_label=M\u00E5l
etiket edit_transparency_label=Opacitet edit_width_label=Bredde EditAction.text=Rediger knudepunkt EditAttributesAction.text=Rediger Atributter EditDetailsAction.text=Rediger knudepunkt detaljer inline EditDetailsInDialogAction.text=Redigere knudepunkt detaljer i dialogboksen editEdgeColors=Rediger kantfarver EditFilterAction.text=Rediger EditLongAction.text=Rediger kerne knudepunkt i dialogboksen EditNoteInDialogAction.text=Rediger note i dialogboksen EditScript=Rediger skript\u2026 EditStylesAction.text=Rediger typografier EncryptedMap.text=Nyt beskyttet (krypteret) MindMap\u2026 EncryptedMap.tooltip=Nyt beskyttet MindMap encryption=Kryptering enter_base_url=Freeplane vil inds\u00E6tte relative links. Indtast basis URL. enter_command=Indtast kommando enter_condition_name=Indtast nyt betingelsesnavn enter_confirms=Enter bekr\u00E6fter enter_keyset_name=Indtaste navn for genvejstaster enter_map_url=Indtast MindMap URL enter_new_style_name=Indtast nyt navn til typografi enter_zoom=Indtast zoom EnterPassword.text=Indtast adgangskode error=Fejl error_applying_template=Fejl ved anvendelse af XSL template. error_creating_directory=Kan ikke oprette skuffen til eksport. error_in_template=Fejl i standard MapMind skabelon {0}. Pr\u00F8v at fjerne filen. errornumber={0} fejl ExecuteScript.available_modes.tooltip={0} er tilg\u00E6ngelig for ExecuteScript.script=Script ExecuteScriptError.text=Fejl ved k\u00F8rsel af skript\n{0} ExecuteScriptForAllNodes.text=Udf\u00F8r alle skripts ExecuteScriptForSelectionAction.text=Udf\u00F8r valgte knudepunkts skripts ExecuteScriptOnSelectedNode.text=Udf\u00F8r {0} p\u00E5 alle markerede knudepunkter ExecuteScriptOnSelectedNodeRecursively.text=Udf\u00F8r {0} p\u00E5 markerede knudepunkter, rekursivt ExecuteScriptOnSingleNode.text=Udf\u00F8r {0} p\u00E5 et markeret knudepunkt ExecuteScripts.noScriptsAvailable=Ingen tilg\u00E6ngelige ExecuteScripts.text=Skripts ExecuteScriptSecurityError.text=Der opstod en fejl under skript-udf\u00F8relsen: {0} export_failed=Eksport mislykkedes ExportAction.text=Eksporter kort\u2026 ExportBranchAction.text=Flyt forgrening til ny MindMap\u2026 ExportBranchToHTMLAction.text=Forgrening som HTML exported_file={0} fil ExportPdf.text=Som PDF ExportSvg.text=Som SVG ExportToHTMLAction.text=HTML ExportToImage.jpg.text=Som JPG ExportToImage.png.text=Som PNG ExportToOoWriter.text=Som Open Office dokument... ExportToOoWriter.tooltip=[Overs\u00E6t mig]-Unfolded nodes form the structure, folded nodes the conent of the dokument. extension_menu=Fysisk typografi ExternalImage_popupMenu_Change=\u00C6ndre\u2026 ExternalImage_popupMenu_Open=\u00C5ben i fremviseren ExternalImage_popupMenu_Remove=Fjern ExternalImage_popupMenu_ResetZoom=Nulstil zoom ExternalImageAddAction.text=Tilf\u00F8j billede\u2026 ExternalImageChangeAction.text=Skift billede\u2026 ExternalImageRemoveAction.text=Fjern billede ExtractLinkFromTextAction.text=Konverter link indefra tekst ExtractLinkFromTextAction.tooltip=Angiv hyperlink fra adressen i knudepunktsteksten extras=V\u00E6rkt\u00F8jer f_button_unassigned= FaqOpenURLAction.text=FAQ (ofte stillede sp\u00F8rgsm\u00E5l) file=&Filer file_already_exists=Filen {0} eksisterer allerede. \u00D8nsker du at overskrive den? file_not_accessible=Filen {0} er ikke tilg\u00E6ngelig file_not_found=Filen {0} findes ikke FileListFlavorHandler=Henvisninger til filer FileProperties_BranchLeafCount=Antallet af bladknudepunkter i valgte forgreninger: FileProperties_BranchNodeCount=Antallet af knudepunkter i valgte forgreninger: FileProperties_ChangesSinceLastSave=\u00C6ndringer siden sidste gem: FileProperties_FileName=Filnavn: FileProperties_FileSaved=Fil gemt: FileProperties_FileSize=Fil st\u00F8rrelse: FileProperties_MainBranchCount=Antal hovedgrene: FileProperties_NeverSaved=Aldrig gemt FileProperties_NodeChildCount=Antallet af underknudepunkter i valgte knudepunkter: FileProperties_NodeSelectionCount=Antallet af markerede knudepunkter: FileProperties_TotalFilteredCount=Antallet af knudepunkter der opfylder filter: FileProperties_TotalLeafCount=Samlet antal bladknudepunkter: FileProperties_TotalNodeCount=Samlede antal knudepunkter: FilePropertiesAction.text=MindMap statistik\u2026 FileRevisionsDialog.cancel=&Annuller FileRevisionsDialog.file_last_modified=Tidsstempel FileRevisionsDialog.file_name=Fil FileRevisionsDialog.file_size=Bytes FileRevisionsDialog.open=&\u00C5bn FileRevisionsDialog.open.tooltip=\u00C5bn filen, selvom den kan v\u00E6re for\u00E6ldet FileRevisionsDialog.question=Fundet revisioner af {0} FileRevisionsDialog.restore=Gendan FileRevisionsDialog.restore.tooltip=Erstat {0} med {1} FileRevisionsDialog.title=Fil versioner filter=F&ilter filter_add=Tilf\u00F8j filter_and=AND filter_any_text=Kerne, detaljer eller note filter_clone_snapshot=Gemte kloner af udvalg filter_clones=Kloner af udvalg filter_conditions=Filtre filter_contains=Indeholder filter_created_after=Oprettet efter filter_created_before=Oprettet f\u00F8r filter_delete=Slet filter_details=Detaljer filter_dialog=Filter Foraftter filter_does_not_exist=Eksisterer ikke filter_edit_description=Rediger filter liste filter_enter_value=Indtast v\u00E6rdi filter_even_level=Ulig niveau knudepunkt filter_exist=Eksisterer filter_icon=Ikon filter_is_equal_to=Er lig med filter_is_not_equal_to=Er forskellig fra filter_leaf=Bladknudepunkt filter_link=Hyperlink filter_match_approximately=Omtrentlig filter_match_approximately.tooltip=Tillad omtrentlige tr\u00E6f,
dvs. s\u00F8gning efter 'filer' vil finde 'fluer'. filter_match_case=Versalf\u00F8lsom filter_match_case.tooltip=Hvorvidt der skal tages hensyn til store/sm\u00E5 bogstaver. filter_modified_after=\u00C6ndret efter filter_modified_before=\u00C6ndret f\u00F8r filter_no_filtering=Ingen filtrering filter_node=Knudepunkt tekst filter_node_level=Knudepunktsniveau filter_not=NOT filter_note=Note filter_odd_level=Lige niveau knudepunkt filter_or=OR filter_parent=Over knudepunkt tekst filter_periodic_level=Periodisk filter_priority=Prioritet filter_regexp_matches=Matcher regexp filter_reminder=P\u00E5mindelse filter_reminder_after=Planlagt efter filter_reminder_before=Planlagt f\u00F8r filter_reminder_executed=allerede udf\u00F8rt filter_reminder_later=Planlagt senere filter_root=Rod knudepunkt filter_script=Skript filter filter_select=V\u00E6lg filter_selected_node_view=For nuv\u00E6rende valgte knudepunkter filter_selected_node_view_snapshot=Gemt markering filter_style=Typografi filter_time=Datofilter FilterCondition=Filterbetingelser filterConditions=Brugerdefineret filtre filterConditions.noActions=Ingen navngivne filtre filters_not_loaded=Filteret kunne ikke indl\u00E6ses, fil beskadiget find=S\u00F8g find_what=Find hvad FindAction.text=&S\u00F8g... FindNextAction.text=Find n\u00E6ste FindPreviousAction.text=Find forrige fit_background_to_page=Tilpas baggrundsbillede til \u00E9n side fit_map_to_page=Tilpas til \u00E9n side fit_map_to_page_height=Tilpas h\u00F8jde til \u00E9n side fit_map_to_page_width=Tilpas bredde til \u00E9n side FitToPage.text=Zoom tilpasset til siden FitToPage.tooltip=Justerer zoomen s\u00E5 hele mindmappen kan v\u00E6re i det nuv\u00E6rende vindue. fold=Fold ind FoldAllAction.text=Fold alt FoldAllAction.tooltip=Folder de valgte knudepunkter og alle underknudepunkter. FoldOneLevelAction.text=Fold et niveau FoldOneLevelAction.tooltip=Folder det valgte knudepunkt ind med et niveau. follow_clone=Indenfor '' {0}'' follow_graphical_link=G\u00E5 til ''{0}' FollowLinkAction.text=F\u00F8lg link font=Skrifttype FontFamilyAction.text=Skrifttype familie FontSizeAction.text=Skriftst\u00F8rrelse format=Formater format_invalid_pattern=Ikke et gyldig m\u00F8nster format_menu_cloud_shapes=Tilf\u00F8j Sky eller \u00E6ndre stil format_menu_edge_styles=Kant stil format_menu_edge_widths=Kant bredde format_panel=Format FormatCopy.text=Kopier format FormatCopy.tooltip=Kopierer formatet af et knudepunkt. FormatPaste.text=Inds\u00E6t format FormatPaste.tooltip=Inds\u00E6tter formatet af et knudepunkt. formats_not_loaded=Formater kunne ikke indl\u00E6ses, fil beskadiget formula.error.attributeValueIsNull=Attributv\u00E6rdi "{0}" er null efter evaluering. formula.error.circularReference=Cirkul\u00E6r reference: formel i knudepunkt {0} ''{1}'' refererer til sig selv. formula.EvaluateAllAction.text=Evaluere alle formula.EvaluateAllAction.tooltip=Evaluere alle formler i det aktuelle Mindmap formula.menuname=Formler formula_editor=Rediger formlen ForwardAction.text=Fremad ForwardAction.tooltip=Hop fremad i den valgte k\u00E6de FreeNodeAction.text=Frit placeret knudepunkt (indstil/nulstil) Freeplane.progress.buildScreen=Opbygger sk\u00E6rm... Freeplane.progress.createController=Opretter Kontroler... Freeplane.progress.createInitialMode=Opretter initial mode... Freeplane.progress.endStartup=Slut p\u00E5 opstart. Freeplane.progress.gettingPreferenceDirectories=Henter preference skuffer... Freeplane.progress.gettingPreferences=Henter preferencer... Freeplane.progress.loadMaps=Indl\u00E6s Minsmaps... Freeplane.progress.propagateLookAndFeel=Udbred Look And Feel... Freeplane.progress.settingPreferences=S\u00E6tter preferencer... Freeplane.progress.startCreateController=Start skab Controller... Freeplane.progress.updateLookAndFeel=Opdater Look and Feel... freeplane_reverted=Freeplane_Gendannet_ FreeplaneHelpStarter.text=Hj\u00E6lp... FreeplaneHelpStarter.tooltip=Freeplane udviddet hj\u00E6lp goto=G\u00E5 til goto.noActions=Ingen m\u00E5lknudepunktet GotoLinkNodeAction.text=G\u00E5 til Link GrabKeyDialog.common.cancel=Annuller GrabKeyDialog.common.ok=OK GrabKeyDialog.grab-key.assigned-to=Tildelt til GrabKeyDialog.grab-key.assigned-to.none=Er for nuv\u00E6rende ikke tildelt til noget GrabKeyDialog.grab-key.clear=Ryd(clear) GrabKeyDialog.grab-key.remove=Fjern GrabKeyDialog.grab-key.remove-ask=Er du sikker p\u00E5 du vil fjerne denne tastaturtast? GrabKeyDialog.grab-key.title=Indtast ny tast green=Gr\u00F8n help=&Hj\u00E6lp HideableAction.tooltip=Markerer baggrund for hvert \u00E6ndret knudepunkt. HideAllAttributesAction.text=Skjul alle atributter HierarchicalIcons2Action.text=Vis sk\u00E6ringspunktet mellem underknudepunkter ikoner HierarchicalIconsAction.text=Vis ikoner hirakisk HierarchicalIconsAction.tooltip=Hvis en af mine (b\u00F8rne)b\u00F8rn har en ikon, s\u00E5 vil jeg ogs\u00E5 vise den ikon i lille format. hot_keys=Genvejstaster hot_keys_table=Genvejstaster tabel HotKeyInfoAction.text=Tastaturgenveje html_export_based_on_headings=HTML-eksport - baseret p\u00E5 overskrifter html_export_fold_all=HTML-eksport - Fold alle ind html_export_fold_currently_folded=HTML-eksport - Fold i \u00F8jeblikket foldet html_export_no_folding=HTML-eksport - alt foldet ud html_problem=Kan ikke genere html

{0} icon_0%=0% icon_100%=100% icon_25%=25% icon_50%=50% icon_75%=75% icon_addition=Addition icon_attach=Se her icon_audio=Audio icon_back=Tilbage icon_bee=Freeplane icon_bell=Husk icon_bookmark=Fremragende icon_broken-line=Brudt icon_button_cancel=Ikke OK icon_button_ok=OK icon_calendar=Dato icon_checked=Valgt icon_clanbomber=Farlig icon_clock=Tid icon_clock2=P\u00E5mindelse icon_closed=Ingen post icon_decrypted=Ul\u00E5st icon_desktop_new=Glem ikke icon_division=Division icon_down=Ned icon_edit=Pr\u00E6ciser icon_encrypted=L\u00E5st icon_executable=Eksekverbar icon_family=Familie icon_fema=Mand & kvinde icon_female1=Kvinde1 icon_female2=Kvinde2 icon_females=Kvinder icon_flag=R\u00F8dt flag icon_flag-black=Sort flag icon_flag-blue=Bl\u00E5t flag icon_flag-green=Gr\u00F8nt flag icon_flag-orange=Orange flag icon_flag-pink=Lyser\u00F8dt flag icon_flag-yellow=Gult flag icon_folder=Mappe icon_forward=Fremad icon_freemind_butterfly=FreeMind icon_full-0=Prioritet 0 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\u00F8nt trafiklys icon_gohome=Hjem icon_group=Gruppe icon_help=Sp\u00F8rgsm\u00E5l icon_hourglass=Venter icon_icon_not_found=Ikon ikke fundet icon_idea=Ide icon_image=Billede icon_info=Info icon_internet=Internet icon_internet_warning=Internet advarsel icon_kaddressbook=Telefon icon_kmail=E-mail icon_knotify=Musik icon_korn=Mailboks icon_ksmiletris=Glad icon_launch=Start icon_licq=Rar icon_list=Liste icon_Mail=Mail icon_male1=Mand1 icon_male2=Mand2 icon_males=M\u00E6nd icon_menu=Ikon icon_messagebox_warning=Vigtigt icon_mindmap=MindMap icon_multiplication=Multiplikation icon_narrative=Fort\u00E6lling icon_negative=Negativ icon_neutral=Neutral icon_password=N\u00F8gle icon_pencil=Skal pr\u00E6ciseres icon_penguin=Linux icon_positive=Positiv icon_prepare=Gult lys icon_revision=Revision icon_revision-green=Revision gr\u00F8n icon_revision-pink=Revision lyser\u00F8d icon_revision-red=Revision r\u00F8d icon_smiley-angry=Vred icon_smiley-neutral=Neutral icon_smiley-oh=Overrasket icon_smily_bad=Jeg finder det ikke morsomt icon_stop=R\u00F8dt lys icon_stop-sign=Stop icon_subtraction=Subtraktion icon_unchecked=Fravalgt icon_up=Op icon_user_icon=Brugerikoner icon_very_negative=Meget negativ icon_very_positive=Meget positiv icon_video=Video icon_wizard=Magisk icon_xmag=Skal dr\u00F8ftes icon_yes=Vigtigt IconGroupPopupAction.arrows.text=Pile IconGroupPopupAction.docs_folders.text=Dokumenter & mapper IconGroupPopupAction.flags.text=Flage IconGroupPopupAction.math.text=Matematik IconGroupPopupAction.media.text=Medie IconGroupPopupAction.miscellaneous.text=Diverse IconGroupPopupAction.nature.text=Natur IconGroupPopupAction.numbers.text=Numre IconGroupPopupAction.office.text=Kontor IconGroupPopupAction.people.text=Personer IconGroupPopupAction.rating.text=Bed\u00F8mmelse IconGroupPopupAction.signs.text=Symboler IconGroupPopupAction.smiley.text=Smiley IconGroupPopupAction.time.text=Tid IconGroupPopupAction.user.text=Brugerikoner IconProgressExtended10Action.text=Udvidet statusindikator (10%) IconProgressExtended10Action.tooltip=Tilf\u00F8jer en statusindikator som \u00F8ges med 10% ved dobbelt venstre klik.
Ctrl + venstre dobbeltklik formindsker/fjerner det. IconProgressExtended25Action.text=Udvidet statusindikator (25%) IconProgressExtended25Action.tooltip=Tilf\u00F8jer en statusindikator som \u00F8ges med 25% ved dobbelt venstre klik.
Ctrl + venstre dobbeltklik formindsker/fjerner det. IconProgressIconDownAction.text=Reducer fremskridt IconProgressIconDownAction.tooltip=Reducerer/inds\u00E6t/fjern udviklingsikon (100% -> 75% -> 50% -> 25% -> 0% -> fjern). IconProgressIconUpAction.text=\u00D8g fremskridt IconProgressIconUpAction.tooltip=Reducerer/inds\u00E6t udviklingsikon (0%-> 25%-> 50%-> 75%-> 100% + OK). IconProgressRemoveAction.text=Fjern udviklingsikon IconProgressRemoveAction.tooltip=Fjerner udvikllingsikoner og udvidede udvikllingsikon. icons=Ikoner IconSelectionPlugin.text=V\u00E6lg icon... IconSelectionPlugin.tooltip=Her kan du v\u00E6lge en icon via et undervindue. image_covertLink=Konvertere link til billede ImageFlavorHandler=Billede (brug separat fil) import=Import import_linked_branch_no_link=Det valgte knudepunkthar ingen link at importere fra. ImportAction.text=Importer MindMap ImportBranchAction.text=Forgrening\u2026 ImportExplorerFavoritesAction.text=Explorer favoritter\u2026 ImportFolderStructureAction.text=Mappestruktur\u2026 ImportLinkedBranchAction.text=Linked forgrening ImportLinkedBranchWithoutRootAction.text=Sammenk\u00E6det gren uden rod\u2026 ImportMindmanagerFiles.text=MindManager X5 MindMap\u2026 ImportXmlFile.text=Importer XML-fil increase_branch_font_size=St\u00F8rre skrifttype IncreaseNodeFontAction.text=St\u00F8rre skrifttype internal_error.tooltip=Der opstod interne fejl. Klik for at \u00E5bne den seneste logfil log.0 for flere detaljer. invalid_export_file=Ugyldig filnavn for eksport invalid_file_msg=Kunne ikke finde filen til {0} invalid_uri=Ugyldig URI "{0}" invalid_url=Kunne ikke oprette gyldig URL invalid_url_msg=Kunne ikke oprette gyldig URL for {0} ItalicAction.text=Kursiv italicise_branch=Kursiv\u00E9r java_version=Java-version: {0} lastOpenedMaps=Seneste MindMap lastOpenedMaps.noActions=Ingen kort i historik latex_editor=Rediger LaTeX formel LatexDeleteLatexAction.text=Fjern LaTeX-formular LatexEditLatexAction.text=Redig\u00E9r LaTeX-formular... LatexInsertLatexAction.msg1=Du fors\u00F8ger at inds\u00E6tte en \u00E6ldre LaTeX formel.
Den nye m\u00E5de at skabe LaTeX tekst/formler er beskrevet p\u00E5 denne side: LatexInsertLatexAction.text=Tilf\u00F8j LaTeX-formular... latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=tommer LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px less_than_two_selected_nodes=V\u00E6lg mindst to knudepunkt for at f\u00E5 links. license=Licens: GPL 2 eller senere license_text=Dette program er fri software. Du kan redistribuere og/eller
modificere det under de betingelser der er angivet i GNU General Public License,
som udgivet af Free Software Foundation; enten version 2
af licensen eller (efter eget valg) enhver senere version.

Dette program distribueres i h\u00E5b om at det vil vise sig nyttigt,
men UDEN NOGEN FORM FOR GARANTI; selv uden de underforst\u00E5ede garantier
omkring SALGBARHED eller EGNETHED TIL ET BESTEMT FORM\u00C5L.
Yderligere detaljer kan l\u00E6ses i GNU General Public License.

Du b\u00F8r have modtaget en kopi af GNU General Public License sammen med
dette program. Hvis ikke, s\u00E5 skriv til Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. link_error=Linket "{0}" er ukorrekt og blev ikke indl\u00E6st link_not_available_any_more=Linket er ikke l\u00E6ngere gyldigt, da knudepunktet er blevet slettet. link_not_found=Linket {0} blev ikke fundet. links=Link load=Indl\u00E6s load_accelerator_presets=Indl\u00E6s load_accelerator_presets.noActions=Ingen forudindstillinger LoadAcceleratorPresetsAction.textPatterns.text=Tekstm\u00F8nstre locking_failed_by_open=L\u00E5sning af MindMap {0} mislykkedes. \u00C5bner som skrivebeskyttet. locking_failed_by_save_as=L\u00E5sning af MindMap {0} mislykkedes. Gem som afbrudt. locking_old_lock_removed=MindMap {0} blev l\u00E5st af brugeren {1}. L\u00E5sen er blevet fjernet, fordi den er gammel. long_node_changed_cancel=Du har \u00E6ndret knudepunktet. Slet \u00E6ndringer? long_node_changed_submit=Du har \u00E6ndret knudepunktet. Slet \u00E6ndringer? lots_of_links_warning=Du er ved at oprette en masse links til samme knudepunkt. Vil du oprette disse links? main_menu=Menu main_resource_directory=Installation ressourcer: {0} MainView.errorUpdateText=Fejl ved indstilling af teksten for f\u00F8lgende input: {0}:{1}. MakeLinkFromAnchorAction.text=Lav link fra anker MakeLinkFromAnchorAction.tooltip=opret en lokal eller global link fra
ankerknudepunktet til det valgte knudepunkt MakeLinkToAnchorAction.text=G\u00F8r link til anker MakeLinkToAnchorAction.tooltip=opret en lokal eller global link fra
det valgte knudepunkt til ankerknudepunktet ManageAddOnsAction.text=Tilf\u00F8jelser ManageAddOnsDialog.activate=Aktiver ManageAddOnsDialog.activation.success={0} aktiveres efter en genstart. ManageAddOnsDialog.authored.by=af {0} ManageAddOnsDialog.cannot.activate=Kan ikke aktivere: {0} er allerede aktiv. ManageAddOnsDialog.cannot.configure=Kan ikke konfigurere {0}. ManageAddOnsDialog.cannot.deactivate=Kan ikke deaktivere: {0} er ikke aktiv. ManageAddOnsDialog.cannot.deinstall=Kan ikke afinstallere {0}. ManageAddOnsDialog.configure=Konfigurer ManageAddOnsDialog.deactivate=Deaktivere ManageAddOnsDialog.deactivation.success={0} vil v\u00E6re deaktiveret efter en genstart. ManageAddOnsDialog.deinstall=Afinstallere ManageAddOnsDialog.deinstallation.success={0} vil v\u00E6re afinstalleret efter en genstart. ManageAddOnsDialog.error=Fejl ved installation: {0}. ManageAddOnsDialog.install=&Installer ManageAddOnsDialog.install.from.known.location=Installer add-on fra en kendt placering ManageAddOnsDialog.install.tooltip=Inds\u00E6t en URL eller en tilf\u00F8jelsesinstallations her ManageAddOnsDialog.map.not.opened=MindMap {0} synes ikke at v\u00E6re \u00E5bnet. ManageAddOnsDialog.really.deinstall=Bekr\u00E6ft afinstallering {0}? ManageAddOnsDialog.search=S\u00F8g efter add-ons ManageAddOnsDialog.search.file=S\u00F8g ManageAddOnsDialog.select.tooltip=V\u00E6lg fil ManageAddOnsDialog.status.downloading=Henter fil\u2026 ManageAddOnsDialog.status.installing=Installere tilf\u00F8jelse\u2026 ManageAddOnsDialog.status.success={0} installeret. ManageAddOnsDialog.tab.install=S\u00F8g og indstallere ManageAddOnsDialog.tab.install.tooltip=S\u00F8g efter og installere nye tilf\u00F8jelser ManageAddOnsDialog.tab.manage=Tilf\u00F8jelser ManageAddOnsDialog.tab.manage.themes=Temaer ManageAddOnsDialog.tab.manage.themes.tooltip=Administrer installerede temaer ManageAddOnsDialog.tab.manage.tooltip=Administrer installerede tilf\u00F8jelsesprogrammer ManageAddOnsDialog.visit.addon.page=Bes\u00F8g tilf\u00F8jelse side\u2026 ManageConditionalStylesAction.text=Administrer betingede typografier for MindMap ManageNodeConditionalStylesAction.text=Administrer betingede typografier for knudepunkter map_already_exists=MindMap findes allerede. Vil du overskrive? map_background=Kort baggrund map_background_image=Baggrundsbillede map_corrupted=MindMap beskadiget. Se detaljer? map_load_error=Kunne ikke indl\u00E6se MindMap {0} map_locked_by_open=MindMap {0} er allerede ved at blive redigeret af brugeren {1}. \u00C5ben som skrivebeskyttet. map_locked_by_save_as=MindMap {0} redigeres af brugeren {1}. Gem som handling afbrudt. map_not_saved=MindMap er ikke gemt endnu. MapBackgroundClearAction.text=Ryd MapBackgroundColorAction.text=Baggrundsfarve MapBackgroundImageAction.text=Baggrundsbillede\u2026 maps=Mindmaps MaxNodeWidth.text=Angiv maksimal knudepunktsbredde menu_applyStyle=Anvend typografi menu_attributes=Atributter menu_clouds=Skyer menu_copy=Kopier menu_coreFormat=Knudepunkt kerne menu_details=Detaljer menu_displayAttributes=Knudepunktsattributter menu_encryption=Kodeords-beskyttelse menu_error=Fejl i brugerdefineret menustruktur {0}:\n{1}\nafbryder menu_group=Knudepunkt gruppe menu_hoverView=V\u00E6rkt\u00F8jstip menu_iconByCategory=Ikon efter kategori\u2026 menu_iconView=Ikoner menu_image=Billede menu_insert=Inds\u00E6t menu_latex_formula=LaTeX formel menu_manageStyles=&Administrer typografier menu_moveNode=Flyt og sorter menu_newNode=Nyt knudepunkt menu_node=Knudepunkt menu_node_features=Kn&udepunktsgenskaber menu_nodes=&Knudepunkter menu_nodeView=Knudepunkt kerne menu_noteView=Noter menu_openmaps=MindMaps menu_remove_icons=Fjern ikoner menu_removeAttribute=Fjern attributten menu_select=V\u00E6lg menu_time=Tidsstyring menu_title=Knudepunkt kerne menu_viewmode=Se indstillinger MenuUtils.invalid_menuitem={0} er ikke en gyldig menu element n\u00F8gle. mindmap=MindMap MindMapNodesFlavorHandler=Knudepunktshierarki mindmaps=&MindMaps mindmaps_desc=MindMaps (*.mm) mindmaps_filter_desc=Filtre (*.mmfilter) MinNodeWidth.text=Indstil minimum knudepunktsbredde mode_Browse=Gennemse tilstand mode_File=Filtilstand mode_MindMap=MindMap tilstand mode_na=Tilstand ikke tilg\u00E6ngelig mode_status=Visning skiftet {0} Visning mode_StyleMap=Stil redigering mode_title=Freeplane - {0} Visning modes=Tilstand ModesMenuAction.Browse.text=MindMap browser ModesMenuAction.File.text=Filh\u00E5ndtering ModesMenuAction.MindMap.text=MindMap editor most_recent_files=Seneste MindMap MoveAction.text=Flyt MoveSelectedNodeAction.CENTER.text=Centrer valgte knudepunkt MoveToRootAction.text=G\u00E5 til roden NameConditionAction.text=Angiv navn navigate=Naviger NavigationNextMapAction.text=N\u00E6ste MindMap NavigationPreviousMapAction.text=Forrige MindMap new=&Ny new_map_from_user_templates.text=Ny MindMap fra skabelon\u2026 new_mindmap=Ny Mindmap new_node=Nyt knudepunkt new_node_as_sibling_not_possible_for_the_root=Du kan ikke inds\u00E6tte knudepunkt parallelt med rodknudepunkt new_version_available=Ny version "{0}" er tilg\u00E6ngelig NewChildAction.text=Ny underknudepunkt NewerFileRevisionsFoundDialog.cancel=&Spring over NewerFileRevisionsFoundDialog.cancel.tooltip=\u00C5ben ikke denne fil NewerFileRevisionsFoundDialog.file_last_modified=Tidsstempel NewerFileRevisionsFoundDialog.file_name=Fil NewerFileRevisionsFoundDialog.file_size=Bytes NewerFileRevisionsFoundDialog.open=&\u00C5bn NewerFileRevisionsFoundDialog.open.tooltip=\u00C5bn filen, selvom den kan v\u00E6re for\u00E6ldet NewerFileRevisionsFoundDialog.question=Fundet nyere udgaver af {0}! NewerFileRevisionsFoundDialog.restore=Gendan NewerFileRevisionsFoundDialog.restore.tooltip=Erstat {0} med {1} NewerFileRevisionsFoundDialog.title=Fundet nyere udgaver af {0}! NewFreeNodeAction.text=Nye flydende node NewLevelStyleAction.text=Tilf\u00F8j niveau typografi newmap.install.addon.question={0} er tilsyneladende en add-on pakke.\nVil du installere den?\n(V\u00E6lg "Nej" for normal \u00E5ben.) newmap.install.addon.title=Installer tilf\u00F8jelse? NewMapAction.text=Ny MindMap NewMapViewAction.text=Ny MindMap visning NewParentNode.text=Nyt overknudepunkt NewParentNode.tooltip=Alt valgt bliver sendt til en ny for\u00E6ldre. NewPreviousSiblingAction.text=Nyt tidligere sidestillet knudepunkt NewSiblingAction.text=Nyt knudepunkt p\u00E5 samme niveau NewSummaryAction.text=Ny oversigts knudepunkt (valgte knudepunktet) NewUserStyleAction.text=Ny typografi fra udv\u00E6lgelsen NextNodeAction.BACK.text=G\u00E5 til forrige knudepunkt NextNodeAction.BACK_N_FOLD.text=G\u00E5 til forrige knudepunkt (fold) NextNodeAction.FORWARD.text=G\u00E5 til n\u00E6ste knudepunkt NextNodeAction.FORWARD_N_FOLD.text=G\u00E5 til n\u00E6ste knudepunkt (fold) no=Nej no_copy_attributes_before_paste_attributes=Du kan ikke inds\u00E6tte attributter, f\u00F8r du har kopieret nogle. NO_FORMAT=Tekst no_format_copy_before_format_paste=Du kan ikke inds\u00E6tte et format f\u00F8r du har kopieret et. no_found_from=Ingen {0} fundet fra "{1}". no_more_found_from=Ikke mere fundet{0} fra "{1}". no_previous_find=Ingen foreg\u00E5ende tr\u00E6f. no_styles_found_in_map=Ingen typografier fundet i MindMap node=Knudepunkt node_changed_discard_changes=Du har \u00E6ndret knudepunktet. Slet \u00E6ndringer? node_is_write_protected=Destinationsknudepunktet er skrivebeskyttet. node_location_help=Tr\u00E6k \u00E6ndrer knudepunkt placering, ctrl+tr\u00E6kke \u00E6ndrer afstande, dobbeltklik og ctrl+dobbeltklik nulstille dem. node_popup_scripting=Scripts node_selector=Knudepunktsudvalg node_selector_message=Dobbeltklik for at v\u00E6lge knudepunkt node_styles=Knudepunkt typografi NodeBackgroundColorAction.text=Knudepunkt baggrundsfarve\u2026 NodeColorAction.text=Knudepunktsfarve\u2026 NodeColorBlendAction.text=Blandingsfarven NodeDownAction.text=Flyt knudepunkt NodeExtensions.EditNodeExtensions=Rediger knudepunkt udvidelser NodeExtensions.RemoveNodeExtensions=Fjern knudepunkt udvidelser NodeListAction.text=S\u00F8g og erstat\u2026 NodeListAction.tooltip=Viser alle knudepunkter som en s\u00F8gbar liste med filteregenskaber. NodeShapeAction.bubble.text=Boble NodeShapeAction.circle.text=Cirkel NodeShapeAction.fork.text=Forgrening NodeShapeAction.hexagon.text=Sekskant NodeShapeAction.hexagon2.text=Sekskant2 NodeShapeAction.narrow_hexagon.text=Lille sekskant NodeShapeAction.oval.text=Oval NodeShapeAction.rectangle.text=Rektangel NodeShapeAction.small_bubble.text=Lille boble NodeShapeAction.small_wide_hexagon.text=Smal sekskant NodeShapeAction.wide_hexagon.text=Bred sekskant NodeUpAction.text=Flyt knudepunkt (s\u00F8skende op) nonboldify_branch=Fjern fremh\u00E6v nonitalicise_branch=Fjern kursiv normal=Normal not_saved_for_image_error=MindMap skal gemmes, f\u00F8r du kan angive et billede med filh\u00E5ndtering not_saved_for_link_error=MindMap skal gemmes, f\u00F8r du kan angive et link med filh\u00E5ndtering note_window_location=Notepanel placering notes=Note NotFoldingNextPresentationItemAction.text=Folde n\u00E6ste pr\u00E6sentation element ud NotificationOptions.CLOSE=Luk NotificationOptions.REMIND_ME_LATER=P\u00E5mind senere NotificationOptions.REMOVE_REMINDER=Fjern p\u00E5mindelse NotificationOptions.SELECT_NODE=G\u00E5 til p\u00E5mindelse ok=&OK OKAction.text=OK OnlineReference.text=Online MindMap dokumentation open_asMindMap=MindMap OpenAction.text=\u00C5ben gemt MindMap\u2026 OpenFreeplaneSiteAction.text=Freeplanes hjemmeside OpenMapsAddLocation.text=Tilf\u00F8j OpenMaps placering\u2026 OpenMapsRemoveLocation.text=Fjerne OpenMaps placering OpenMapsViewLocation.text=Se OpenMaps placering\u2026 OpenPathAction.text=\u00C5bn fil OpenURLMapAction.text=\u00C5ben MindMap fra URL\u2026 OpenUserDirAction.text=\u00C5ben brugermappen option_changes_may_require_restart=For at se effekten af de \u00E6ndrede indstillinger, er du sandsynligvis n\u00F8dt til at restarte Freeplane. OptionalDontShowMeAgainDialog.cancel=&Nej OptionalDontShowMeAgainDialog.dontShowAgain=Sp\u00F8rg ikke igen. OptionalDontShowMeAgainDialog.ok=Ja OptionalDontShowMeAgainDialog.rememberMyDescision=Husk valg. OptionPanel.absolute=Absolut OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Niveau typografi m\u00F8nstre OptionPanel.ADD_CHILD=Tilf\u00F8j underknudepunkt OptionPanel.ADD_SIBLING=Tilf\u00F8j sidestillet knudepunkt OptionPanel.addons=Tilf\u00F8jelser OptionPanel.af=Afrikaans OptionPanel.always_fold_all_after_load=Fold alle ind OptionPanel.always_load_last_maps=Indl\u00E6s sidste og nye MindMap OptionPanel.always_load_last_maps.tooltip=\u00C5ben seneste filer fastsat af ovenn\u00E6vnte indstillinger, selvom FreePlane starter med et valgt MindMap. OptionPanel.always_save_folding=Altid OptionPanel.always_save_folding_state=Gem altid folde ind/ud status OptionPanel.always_save_folding_state.tooltip=Hvis markeret, t\u00E6ller hver status\u00E6ndring som en \u00E6ndring og minder dig om at gemme. OptionPanel.always_show_less_than_N_nodes_after_load=Udfold nogle noder OptionPanel.always_unfold_all_after_load=Fold alle ud OptionPanel.antialias=Antialias OptionPanel.antialias.tooltip=Bestemmer kvaliteten p\u00E5 MindMap. Mere antialias kr\u00E6ver mere tid. OptionPanel.antialias_all=Antialias alt OptionPanel.antialias_edges=Antialias kanter OptionPanel.antialias_none=Ingen Antialias OptionPanel.Appearance=Udseende OptionPanel.approximate_search_threshold=T\u00E6rskel for omtrentlige tr\u00E6f OptionPanel.approximate_search_threshold.tooltip=T\u00E6rskel for omtrentlige tr\u00E6f
se http://freeplane.sf.net/wiki/index.php/Approximate_search
(jo h\u00F8jere desto f\u00E6rre variationer
af s\u00F8geordet vil blive fundet) OptionPanel.ar=Arabisk/\u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Bue OptionPanel.as_parent=Som for\u00E6ldre OptionPanel.ask=Sp\u00F8rg OptionPanel.automatic=Automatisk OptionPanel.automaticFormat_level=Anvend niveau typografier OptionPanel.automaticFormat_level1=Rod knudepunkt format OptionPanel.automaticFormat_level2=1. Niveau knudepunkts format OptionPanel.backup_file_number=Antallet af bevarede sikkerhedskopi filer OptionPanel.Behaviour=Opf\u00F8rsel OptionPanel.bezier=J\u00E6vnbue (bezier) OptionPanel.border_color=Farve OptionPanel.border_color_matches_edge_color=Brug kantfarve OptionPanel.border_dash=Kant linjetype OptionPanel.border_dash_matches_edge_dash=Brug kant linetype OptionPanel.border_width=Stregbredde OptionPanel.border_width_matches_edge_width=Brug kantbredde OptionPanel.bubble=Boble OptionPanel.ca=Catalansk, valenciansk/Catal\u00E0 OptionPanel.Cancel=Annuller OptionPanel.center_selected_node=Centrer valgt knudepunkt automatisk OptionPanel.check_updates_automatically=Tjek for opdateringer ved programstart OptionPanel.childpattern=Underknudepunkt m\u00F8nster OptionPanel.childpattern.tooltip=Det valgte m\u00F8nster bliver anvendt p\u00E5 alle underknudepunktet. OptionPanel.circle=Cirkel OptionPanel.clear_all_setters=Skift alt OptionPanel.clear_all_setters.tooltip=enabler eller disabler alle \u00E6ndrings indikationer. OptionPanel.cloud=Sky OptionPanel.cloudcolor=Sky farve OptionPanel.cloudshape=Sky form OptionPanel.combined=Kombineret OptionPanel.compare_as_number=Sammenlign som tal OptionPanel.connector_dash=Linjetype OptionPanel.convert_to_current_version=Konverter automatisk MindMaps fra \u00E6ldre Freeplane versioner
til den aktuelle version? OptionPanel.convert_to_current_version.tooltip=Kun for meget store MindMaps, der ikke beh\u00F8ver at blive konverteret
(dette er ekspertviden) kan de \u00E5bnes uden konvertering. OptionPanel.copyFormatToNewSibling=Kopier format til nye s\u00F8skende OptionPanel.copyFormatToNewSiblingIncludesIcons=Kopier format med ikoner OptionPanel.cs=Tjekkisk/\u010Desky OptionPanel.cut_nodes_without_question=Klip knudepunkter uden bekr\u00E6ftelse? OptionPanel.cut_nodes_without_question.tooltip=Hvis afkrydsningsfeltet er sat klippes knudepunnkter uden bekr\u00E6ftelse. Kan medf\u00F8re tab af information, hvis der trykkes ved en fejl. OptionPanel.cut_out_pictures_when_pasting_html=Fjern billeder fra HTML OptionPanel.da=Danish/dansk OptionPanel.date_format=Standard datoformat OptionPanel.date_format.tooltip=Enten kort, MEDIUM, lange eller fulde eller et m\u00F8nster som "DD/MM/\u00C5\u00C5\u00C5\u00C5" OptionPanel.datetime_format=Standard dato- og klokkesl\u00E6tformat OptionPanel.datetime_format.tooltip=Enten , (med SHORT, MEDIUM, LONG eller FULL som typografi) eller et komplet m\u00F8nster s\u00E5som "M/d/\u00E5\u00E5\u00E5\u00E5 TT: mm" OptionPanel.de=Tysk/Deutsch OptionPanel.default=Standard OptionPanel.default_attribute_key_column_width=Standard attribut n\u00F8glebredde OptionPanel.default_attribute_value_column_width=Standardbredde for attributv\u00E6rdi OptionPanel.default_browser_command_mac=Standard Browser kommando MAC OptionPanel.default_browser_command_mac.tooltip=og MAC: (tak til Nick!) OptionPanel.default_browser_command_other_os=Standard Browser kommando andre OS OptionPanel.default_browser_command_other_os.tooltip=Dette er typisk LINUX: OptionPanel.default_browser_command_windows_9x=Standard Browser kommando Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=For Windows ( "" tegnene er n\u00F8dvendige p\u00E5 grund af links der har "=" i deres URL). OptionPanel.default_browser_command_windows_nt=Standard Browser kommando Windows NT OptionPanel.default_browser_command_windows_nt.tooltip=For Windows ( "" tegnene er n\u00F8dvendige p\u00E5 grund af links der har "=" i deres URL). OptionPanel.default_charset=Tegnset OptionPanel.default_save_dir=Standard gemmemappe OptionPanel.Defaults=Standarder OptionPanel.delete_automatic_saves_at_exit=Slet automatiske gem n\u00E5 der lukkes OptionPanel.delete_automatic_saves_at_exit.tooltip= Hvis filerne skal slettes automaisk ved en normal nedlukning af Freeplane, s\u00E5 s\u00E6t f\u00F8lgende variabel til sand OptionPanel.delete_nodes_without_question=Slet knudepunkter uden bekr\u00E6ftelse? OptionPanel.delete_nodes_without_question.tooltip=Hvis afkrydsningsfeltet er sat klippes knudepunnkter uden bekr\u00E6ftelse. Kan medf\u00F8re tab af information, hvis der trykkes ved en fejl. OptionPanel.disable_cursor_move_paper.tooltip=Vis ikke flytte mark\u00F8ren under papir at tr\u00E6kke OptionPanel.display_inline_editor_for_all_new_nodes=Vis indbyggede editor for alle nye knudepunkter OptionPanel.display_node_id=Vis knudepunkt ID OptionPanel.edgecolor=Kant farve OptionPanel.edgecolor.tooltip=Egenskab for kanten til forrige knudepunkt (tilf\u00F8jes ogs\u00E5 til alle underknudepunkter) OptionPanel.edgedash=Kant linjetype OptionPanel.edgestyle=Kant stil OptionPanel.edgestyle.tooltip=Egenskab for kanten til forrige knudepunkt (tilf\u00F8jes ogs\u00E5 til alle underknudepunkter) OptionPanel.edgewidth=Kantbredde OptionPanel.edgewidth.tooltip=Egenskab for kanten til forrige knudepunkt (tilf\u00F8jes ogs\u00E5 til alle underknudepunkter) OptionPanel.EDIT_CURRENT=Overskriv indhold OptionPanel.edit_on_double_click=Rediger med dobbeltklik OptionPanel.editor_extra_width=Ekstra bredde trin OptionPanel.editor_extra_width.tooltip=Bestemmer antallet af pixel for at for\u00F8ge bredden af et knudepunkt, hvis teksten udvider den nuv\u00E6rende bredde. OptionPanel.el=Gr\u00E6sk/\u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Knapperne \u00F8verst OptionPanel.el__enter_confirms_by_default=Enter bekr\u00E6fter som standard OptionPanel.el__max_default_window_height=Max standard vinduesh\u00F8jde OptionPanel.el__max_default_window_width=Max standard vinduesbredde OptionPanel.el__min_default_window_height=Min standard vinduesh\u00F8jde OptionPanel.el__min_default_window_width=Min standard vinduesbredde OptionPanel.el__position_window_below_node=Vindueplacering under knudepunkt OptionPanel.en=Engelsk/English OptionPanel.Environment=Omgivelser OptionPanel.es=Spansk, castiliansk/espa\u00F1ol, castellano OptionPanel.et=Estisk/eesti, eesti keel OptionPanel.eu=Baskisk OptionPanel.execute_scripts_without_asking=Skriptudf\u00F8relse aktiveret OptionPanel.execute_scripts_without_asking.tooltip=Freeplane scripts er hovedsagelig stand til at udf\u00F8re en handling p\u00E5 din computer.
S\u00E5ledes, du b\u00F8r ikke udf\u00F8re scripts du ikke kender til at v\u00E6re sikker. OptionPanel.execute_scripts_without_exec_restriction=Tillad andre programmer at k\u00F8re (anbefales IKKE) OptionPanel.execute_scripts_without_exec_restriction.tooltip= Hvis Groovy Scripts beh\u00F8ver at udf\u00F8re s\u00E6rlige andre programmer (fx. en browser) uden at sp\u00F8rge(!), skal denne indstilling aktiveres.
Men brug med omtanke, da ondsindede skripts kan beskadige computeren! OptionPanel.execute_scripts_without_file_restriction=Tillad fil/l\u00E6se operationer (anbefales IKKE) OptionPanel.execute_scripts_without_file_restriction.tooltip=Hvis Groovy Scripts beh\u00F8ver l\u00E6seadgang (\u00E5bne, lukke, l\u00E6se),
skal denne indstilling aktiveres.
Men brug med omhu, da ondsindede skripts kan skade computeren! OptionPanel.execute_scripts_without_network_restriction=Tillad netv\u00E6rkshandlinger (anbefales IKKE) OptionPanel.execute_scripts_without_network_restriction.tooltip=Hvis Groovy Scripts beh\u00F8ver at udf\u00F8re s\u00E6rlige netv\u00E6rksfunktioner,
skal denne indstilling aktiveres.
Men brug med omtanke, da ondsindede skripts kan offentligg\u00F8re hemmeligheder! OptionPanel.execute_scripts_without_write_restriction=Tillad fil/skrivehandlinger (anbefales IKKE) OptionPanel.execute_scripts_without_write_restriction.tooltip=Hvis Groovy Scripts skal have skriveadgang til filer (skrive, slette(!)),
skal denne indstilling aktiveres.
Anvendes normalt med l\u00E6seadgang.
Men brug med omtanke, da ondsindede skripts kan beskadige computeren! OptionPanel.experimental_file_locking_on=Eksperimental fill\u00E5sning OptionPanel.experimental_file_locking_on.tooltip=Eksperimental funktion OptionPanel.export_icons_in_html=Eksporter ikoner til HTML OptionPanel.export_icons_in_html.tooltip= Fort\u00E6l om HTML eksporteret fra Freeplane skal indeholde ikoner. Problemet med ikoner er, at ganske ofte vil linket til ikonerne ikke blive fundet i den eksporterede HTML. OptionPanel.exported_image_resolution_dpi=Eksporterede billedopl\u00F8sning (i DPI) OptionPanel.Files=Filer OptionPanel.first=F\u00F8rst OptionPanel.fit_to_viewport=Tilpad baggrundsbillede til vindue OptionPanel.fold_on_click_inside=Fold ved klik OptionPanel.foldingsymbolwidth=Foldesymbolets bredde OptionPanel.foldingsymbolwidth.tooltip=Bredde p\u00E5 foldings markerings cirklen OptionPanel.fork=Forgrening OptionPanel.format_locale=Landestandarden for formater OptionPanel.format_locale.tooltip=Lokalisering indstilling for formatering og datafortolkning OptionPanel.formula_disable_caching=Deaktiver formelevaluering cache OptionPanel.formula_disable_plugin=Deaktiver formelevaluering OptionPanel.fr=Fransk/Fran\u00E7ais OptionPanel.gl=Galicisk/Galego OptionPanel.goto_note_end_on_edit=Flyt notemark\u00F8ren til enden OptionPanel.grid_size=Gitter hulst\u00F8rrelse OptionPanel.groovy_editor_font=Skrifttype for Groovy Highlighting Editor OptionPanel.groovy_editor_font.tooltip=Brug 'Dialog' eller 'Monospaced' Hvis du har brug for unicode tegn! OptionPanel.groovy_editor_font_size=Skriftst\u00F8rrelsen for Groovy Syntax Highlighting Editor OptionPanel.gtk=Gtk OptionPanel.hexagon=Sekskant OptionPanel.hexagon2=Sekskant2 OptionPanel.hide_edge=Skjul kant OptionPanel.highlight_formulas=Fremh\u00E6v formler OptionPanel.horizontal=Vandret OptionPanel.hr=Kroatisk/hrvatski OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=Baseret p\u00E5 overskrifter OptionPanel.html_export_fold_all=Fold alt OptionPanel.html_export_fold_currently_folded=Fold Nuv\u00E6rende foldede OptionPanel.html_export_folding=HTML eksport foldning OptionPanel.html_export_no_folding=Ingen foldning OptionPanel.hu=Ungarsk/Magyar OptionPanel.ic_disable=Deaktiver OptionPanel.ic_file=Brug disk OptionPanel.ic_ram=I RAM OptionPanel.icon=Ikon OptionPanel.icon.tooltip=Hvis anvendt vil knudepunktet have pr\u00E6sis dette ikon. OptionPanel.icon_size=Ikonst\u00F8rrelse OptionPanel.icons.list=Liste over viste standardikoner OptionPanel.icons.list.tooltip=Her kan du sortere eller deaktivere standardikoner. Ikonerne skal v\u00E6re adskilt af ';'. OptionPanel.id=Indonesisk/Bahasa Indonesia OptionPanel.IGNORE=G\u00F8r intet OptionPanel.il__enter_confirms_by_default=Enter bekr\u00E6fter som standard OptionPanel.image_cache=for billeder OptionPanel.indentationUsesTabsInTextOutput=Brug fanerne i tekstoutput OptionPanel.it=Italiensk/Italiano OptionPanel.ja=Japansk/\u65E5\u672C\u8BED OptionPanel.JoinNodesAction.textSeparators=Tekstseparator OptionPanel.key_type_action=Ved tastetryk OptionPanel.Keystrokes=Tastetryk OptionPanel.ko=Koreansk/\uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Skrifttype familie OptionPanel.label_font_size=Skriftst\u00F8rrelse OptionPanel.language=Sprog OptionPanel.language.tooltip=Sproget som skal bruges i programmet. 'Automatisk' pr\u00F8ver at indl\u00E6se nuv\u00E6rende brugers sprog. OptionPanel.last=Sidste OptionPanel.last_opened_list_length=Sidst \u00E5bnet liste l\u00E6ngde OptionPanel.latex_disable_editor=Deaktiver LaTeX Syntax Highlighting Editor OptionPanel.latex_disable_editor.tooltip=Tjek denne hvis du har problemer med LaTeX editor OptionPanel.latex_editor_font=Skrifttypen for LaTeX Highlighting Editor OptionPanel.latex_editor_font.tooltip=Brug 'Dialog' eller 'Monospaced' Hvis du har brug for unicode tegn! OptionPanel.latex_editor_font_size=Skriftst\u00F8rrelsen for LaTeX Syntax Highlighting Editor OptionPanel.latex_macros=F\u00E6lles LaTeX makroer OptionPanel.layout_map_on_text_change=MindMap layout under redigering OptionPanel.layout_map_on_text_change.tooltip=Deaktivere for bedre ydeevne OptionPanel.linear=Line\u00E6r OptionPanel.links=Links OptionPanel.links.tooltip=S\u00E6t links enten relativt eller absolut OptionPanel.load_folding=Ved indl\u00E6sning OptionPanel.load_folding_from_map_default_fold_all=Indl\u00E6s fra MindMap eller fold alle ind OptionPanel.load_folding_from_map_default_unfold_all=Indl\u00E6s fra MindMap eller fold alle ud OptionPanel.load_last_map=\u00C5ben automatisk sidste MindMap OptionPanel.load_last_map.tooltip=N\u00E5r Freeplane startes, hentes det sidst \u00E5bnede MindMap, hvis afkrydset. OptionPanel.load_last_maps=Indl\u00E6s alle sidste MindMaps OptionPanel.lookandfeel=Udseende OptionPanel.lookandfeel.scaleuifonts=Skaler UI skrifttyper OptionPanel.lookandfeel.scaleuifonts.tooltip=Nyttigt for sk\u00E6rme med h\u00F8j densitet OptionPanel.lookandfeel.tooltip=Look&Feel til brug. 'metal','windows','motif', 'gtk' er underst\u00F8ttede, 'mac' er kun valgbar p\u00E5 MacOS. default betyder, at default look and feel bliver brugt. Hvis du \u00F8nsker at inds\u00E6tte din egen L&F, s\u00E5 indskriv class name her og sikre dig at den tilh\u00F8rende jar fil(er) er loaded. Hvis der er problemer med look and feel, s\u00E5 v\u00E6lg 'ingenting' her. Det virker p\u00E5 applets OptionPanel.lt=Litauisk/kalba OptionPanel.max_displayed_node_count=Maks antal viste knudepunkter OptionPanel.max_image_width=Max indledende billedbredde OptionPanel.max_image_width.tooltip=Nye billeder er skaleret ned til denne bredde OptionPanel.max_menu_item_count=Maks antal menupunkter OptionPanel.max_menu_item_count.tooltip=Ber\u00E6ns antallet af elementer i en undermenu (mindst 10) OptionPanel.max_node_width=Max bredde for knudepunkt OptionPanel.max_node_width.tooltip=Maximum default Node bredde i pixels OptionPanel.max_shortened_text_length=Maksimalt forkortet tekstbredde OptionPanel.menuItemFontSize=Menu element skriftst\u00F8rrelse OptionPanel.metal=Metal OptionPanel.min_node_width=Min knudepunktsbredde OptionPanel.monitor_size_inches=Sk\u00E6rmst\u00F8rrelse (tommer) OptionPanel.motif=Motif OptionPanel.narrow_hexagon=Smal sekskant OptionPanel.nb=Norsk Bokm\u00E5l/Norsk bokm\u00E5l OptionPanel.never_save_folding=Aldrig OptionPanel.neverShowSurvey=Vis aldrig sp\u00F8rgsm\u00E5l, unders\u00F8gelser og tips OptionPanel.nl=Hollandsk, flamsk/Nederlands, Vlaams OptionPanel.nn=Norsk Nynorsk/Norsk nynorsk OptionPanel.nodebackgroundcolor=Baggrund OptionPanel.nodebackgroundcolor.tooltip=Knudepunnktets baggrund, n\u00E5r den ikke er valgt. OptionPanel.nodecolor=Knudepunkt farve OptionPanel.nodecolor.tooltip=Knudepunktets tekstfarve n\u00E5r den ikke er valgt. OptionPanel.nodefontbold=Fed OptionPanel.nodefonthyperlink=Hyperlink OptionPanel.nodefontitalic=Kursiv OptionPanel.nodefontname=Skrifttype familie OptionPanel.nodefontsize=Skriftst\u00F8rrelse OptionPanel.nodeformat=Format OptionPanel.nodeformat.tooltip=Tekstudskiftning og/eller formatering:
  • skabelon udvidelse (%s er den oprindelige tekst), fx Pasp\u00E5: %s
  • formatering af datoer og tal - Se eksemplerne i udv\u00E6lgelsesboksen
OptionPanel.nodenumbering=Knudepunkt nummerering OptionPanel.nodenumbering.tooltip=Tilf\u00F8jer l\u00F8benummer (f.eks. 1.3.1) til knudepunktsteksten. OptionPanel.nodeshape=Knudepunkt figur OptionPanel.nodetext=Core tekst OptionPanel.nodetext.tooltip=Her kan du definere den knudepunktsteksten. Den tidligere tekst slettes n\u00E5r s\u00E5dan et m\u00F8nster er anvendt. OptionPanel.nothing=Ingenting OptionPanel.number_format=Standard talformat OptionPanel.number_format.tooltip=Et m\u00F8nster, der indeholder '#' for valgfri eller '0' for obligatorisk cifre. Eksempler: "0,00", "0,0%", "kr #. 00", "#0" OptionPanel.number_of_different_files_for_automatic_save=Antal af forskellige filer til automatisk gem OptionPanel.number_of_different_files_for_automatic_save.tooltip=antal n forskellige filer til at gemme MindMap i. Den f\u00F8rste automatiske Gem sker i den f\u00F8rste fil, og s\u00E5 videre op til n + 1, som igen er gemt i den f\u00F8rste fil (cyklisk) OptionPanel.OK=Gem OptionPanel.org.freeplane.plugin.bugreport=Politik OptionPanel.org.freeplane.plugin.bugreport.allowed=Send altid OptionPanel.org.freeplane.plugin.bugreport.ask=Vis rapportdialog OptionPanel.org.freeplane.plugin.bugreport.denied=Send aldrig OptionPanel.org.freeplane.plugin.bugreport.userid=Valgfri id skal sendes OptionPanel.outline_hgap=Vandret afstand OptionPanel.outline_vgap=Lodret afstand OptionPanel.oval=Oval OptionPanel.paint_connectors_behind=Mal forbindelser bag knudepunkter OptionPanel.parse_data=Genkend input af tal og dato og klokkesl\u00E6t OptionPanel.parse_data.tooltip=Fors\u00F8ger at fortolke dato, dato og klokkesl\u00E6t og nummer indtastning og anvende et standard formater. Eksempler: 100,000.00, 12/31, 12/31/99, 1999-12-31 og 1999-12-31 23:59 OptionPanel.parse_formulas=Genkender formlerne OptionPanel.parse_formulas.tooltip=Parse formler p\u00E5 noder, der starter med '=': Se http://www.freeplane.org/wiki/index.php/Formulas. OptionPanel.parse_latex=Genkend LaTeX OptionPanel.parse_latex.tooltip=Genkend LaTeX formler efter format eller pr\u00E6fiks: Se http://www.freeplane.org/wiki/index.php/LaTeX_in_Freeplane. OptionPanel.PASTE_HTML=Inds\u00E6t som HTML OptionPanel.PASTE_PLAIN_TEXT=Inds\u00E6t som almindelig tekst OptionPanel.pasteImagesFromFiles=Inds\u00E6t billeder fra filer OptionPanel.path_property_may_not_be_empty=Sti egenskab kan ikke v\u00E6re tom! \u00C6ndring er gendannet. OptionPanel.patternname=Navn OptionPanel.patternname.tooltip=Unik m\u00F8nster navn OptionPanel.pl=Polsk/polski OptionPanel.placenewbranches=Placer nye grene OptionPanel.placenewbranches.tooltip=Hvor nye grene skal placeres. Gyldige v\u00E6rdier er 'f\u00F8rst' og 'sidst' OptionPanel.plugin.tooltip=Ikke kerne udvidelsesmoduler. OptionPanel.plugins=Udvidelser OptionPanel.Presentation=Pr\u00E6sentation OptionPanel.presentation.combineAll=Kombinere alle pr\u00E6sentationer OptionPanel.presentation.slowMotion=Slowmotion OptionPanel.presentation.switchToFullScreen=Aktiv\u00E9r fuldsk\u00E6rm OptionPanel.printonwhitebackground=Hvid baggrund for udskrivning OptionPanel.printonwhitebackground.tooltip=Brug altid hvid baggrund for udskrivning OptionPanel.pt_BR=Portugisisk (Brasilien)/Portugu\u00EAs (Brasil) OptionPanel.pt_PT=Portugisisk (Portugal)Portugu\u00EAs (Portugal) OptionPanel.RECT=Rektangel OptionPanel.rectangle=Rektangel OptionPanel.relative=Relativ OptionPanel.remind_type_of_new_nodes.tooltip="Sp\u00F8rg" vil sp\u00F8rge dig (brug i tvivl).
"Ja" viser rich text-editoren.
"Nej" vises teksteditor. OptionPanel.remind_use_rich_text_in_new_nodes=Bruge RTF for indsatte knudepunktet OptionPanel.remindersBlink=P\u00E5mindelser blink OptionPanel.remindersShowNotifications=P\u00E5mindelser viser meddelelsespopups OptionPanel.remindersStandardDelay=P\u00E5mindelse forsinkelse OptionPanel.remove_notes_without_question=Fjern noter uden at sp\u00F8rge? OptionPanel.remove_notes_without_question.tooltip=Hvis dette afkrydsningsfelt er fjernet noter tilh\u00F8rer de markerede knudepunktet\n uden bekr\u00E6ftelse. Dette kan medf\u00F8re tab af oplysninger, hvis der trykkes p\u00E5 uden hensigt. OptionPanel.resources_use_default_font_for_notes_too=Brug standardskrifttype for noter OptionPanel.resources_use_margin_top_zero_for_notes=Fjern top margin for noter OptionPanel.revision_color=Revision farve OptionPanel.revision_color.tooltip=Baggrundsfarve for \u00E6ndrede knudepunktet. OptionPanel.ROUND_RECT=Rund rektangel OptionPanel.ru=Russisk/\u0420\u0443\u0441\u0441\u043A\u0438\u0439 OptionPanel.save_folding=Gemme foldning OptionPanel.save_folding_if_map_is_changed=Hvis MindMap er \u00E6ndret OptionPanel.save_last_visited_node=Gemme sidste position p\u00E5 kortet OptionPanel.save_modification_times=Gem redigeringstidspunkter OptionPanel.script_classpath=Skript classpath: yderligere mapper, der indeholder klasser og/eller JARs (Se v\u00E6rkt\u00F8jstip) OptionPanel.script_classpath.tooltip=A liste af JARs og/eller mapper skal tilf\u00F8jes classpath skripts og formler.
Brug ; (Windows) eller : (Linux, Mac) til at adskille poster.
Mapper der skal scannes for JARs og .class filer.
Stier, som ikke er absolutte betragtes i forhold til Freeplane brugerbibliotek.
Hvis du indstiller classpath skal du ogs\u00E5 tillade l\u00E6seadgang! OptionPanel.script_compilation_disabled_extensions=Filudvidelser der ikke skal kompileres (se v\u00E6rkt\u00F8jstip) OptionPanel.script_compilation_disabled_extensions.tooltip=Hvis alle skripts i yderligere installerede sprog (undtagen
Groovy og JavaScript) har et generelt kompilerings problem
fors\u00F8g at tilf\u00F8je filtypen her (kommasepareret liste). OptionPanel.script_directories=S\u00F8gesti for skript (se v\u00E6rkt\u00F8jstip) OptionPanel.script_directories.tooltip=En liste over mapper (ud over "skripts").
Brug ; (Windows) eller : (Linux, Mac) til at adskille poster.
Stier, som ikke er absolutte betragtes i forhold til Freeplane brugerbibliotek. OptionPanel.script_user_key_name_for_signing=Valgfri brugern\u00F8gle alias til signering OptionPanel.script_user_key_name_for_signing.tooltip=Hvis du \u00F8nsker at signere din skripts, Angiv aliaset p\u00E5 n\u00F8glen her.
N\u00F8glen forventes at opholde sig i standard keystore.
Adgangskode af key's hemmelige n\u00F8gle skal falde sammen med keystore adgangskode (dette er standard). OptionPanel.scrollbar_increment=Hastighed OptionPanel.scrolling_speed=Automatisk rulle hastighed OptionPanel.scrollOnUnfold=Rul kort efter udfoldning af knudepunkt OptionPanel.selection_method=Metode for valg OptionPanel.selection_method.tooltip= med den f\u00F8lgende kontakt kan du enable/disable det forsinkede skemavalg. Auto options. rediger dem ikke da de vil blive gemt i auto.properties under alle omst\u00E6ndigheder. OptionPanel.selection_method_by_click=Ved klik OptionPanel.selection_method_delayed=Forsinket OptionPanel.selection_method_direct=Direkte OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=M\u00F8nstre OptionPanel.separator.anti_alias=Antialias OptionPanel.separator.attributes=Atributter OptionPanel.separator.automatic_save=Automatisk gem OptionPanel.separator.behaviour=Opf\u00F8rsel OptionPanel.separator.browser=Browser OptionPanel.separator.cache=Cache OptionPanel.separator.clones=Kloner OptionPanel.separator.CloudControls=Skyer OptionPanel.separator.commands_for_the_program=Kommandoer for programmet OptionPanel.separator.connectors=Forbindelser OptionPanel.separator.data_formats=Data formatering og fortolkning OptionPanel.separator.default_colors=Standard farver OptionPanel.separator.default_fonts=Standard skrifttyper OptionPanel.separator.default_styles=Standard Stil OptionPanel.separator.EdgeControls=Kanter OptionPanel.separator.edit_long_node_window=Rediger i dialogboksen OptionPanel.separator.editing=Redigeringsindstillinger OptionPanel.separator.export=Eksport OptionPanel.separator.files=Filer OptionPanel.separator.formula=Formler OptionPanel.separator.General=Generelt OptionPanel.separator.html_export=HTML eksport OptionPanel.separator.html_import=HTML-Import OptionPanel.separator.hyperlink_types=Hyperlink typer OptionPanel.separator.icon_properties=Ikoner OptionPanel.separator.IconControls=Ikoner OptionPanel.separator.icons=Ikoner i "V\u00E6lg ikon\u2026" OptionPanel.separator.Icons=Ikoner OptionPanel.separator.initial_map_size=Initial MindMap st\u00F8rrelse OptionPanel.separator.inline_editor=I linje knudepunkt editor OptionPanel.separator.JoinNodesAction=Sammenf\u00F8jer knudepunkter OptionPanel.separator.key_typing=Tastetur OptionPanel.separator.language=Sprog OptionPanel.separator.latex=LaTeX OptionPanel.separator.load=Indl\u00E6s OptionPanel.separator.look_and_feel=Udseende OptionPanel.separator.mouse_wheel=Musehjul OptionPanel.separator.new_node_commands=Nye knudepunkt kommandoer OptionPanel.separator.node_editing_commands=Kommandoer for knudepunkts redigering OptionPanel.separator.node_navigation_commands=Kommandoer for knudepunkts redigering OptionPanel.separator.NodeColors=Farven p\u00E5 hele core OptionPanel.separator.NodeFont=Skrifttype hele kerne OptionPanel.separator.NodeShape=Knudepunkt figur OptionPanel.separator.NodeStyle=Knudepunkt stil OptionPanel.separator.NodeText=Core tekst OptionPanel.separator.notifications=Bekr\u00E6ftelser OptionPanel.separator.org.freeplane.plugin.bugreport=Automatisk fejlrapport OptionPanel.separator.other_defaults=Andre standarter OptionPanel.separator.others=Andre tastebindinger OptionPanel.separator.outline_view=Dispositionsvisning OptionPanel.separator.patterns=M\u00F8nstre OptionPanel.separator.presentation=Pr\u00E6sentation OptionPanel.separator.reminderOptions=P\u00E5mindelsesindstillinger OptionPanel.separator.RichTextEditor=Rich-Text editor OptionPanel.separator.root_node_appearance=Rod knudepunkt format OptionPanel.separator.save=Gem OptionPanel.separator.scripting=Skripting OptionPanel.separator.scrollbar=Rulleliste OptionPanel.separator.search=S\u00F8g OptionPanel.separator.selection_colors=Markeringsfarver OptionPanel.separator.selection_method=Metode for valg OptionPanel.separator.single_instance_mode=Enkelt program forekomst OptionPanel.separator.size_limits=St\u00F8rrelsesgr\u00E6nse OptionPanel.separator.spelling=Stavekontrol OptionPanel.separator.SplitToWordsAction=Opdel node til ord OptionPanel.separator.status=Statuslinje OptionPanel.separator.surveys=Unders\u00F8gelser OptionPanel.separator.svg_icons=SVG ikoner OptionPanel.separator.tooltip=V\u00E6rkt\u00F8jstip OptionPanel.separator.undo=Fortryd OptionPanel.separator.updates=Programopdateringer OptionPanel.set_property_text=\u00C6ndre OptionPanel.set_property_text.tooltip=Check for at \u00E6ndre denne stil egenskab OptionPanel.setscript=\u00C6ndre? OptionPanel.setscript.tooltip=Et skript kan v\u00E6re forbundet til typografien. OptionPanel.shape_horizontal_margin=Vandret margin OptionPanel.shape_vertical_margin=Lodret margin OptionPanel.sharp_bezier=Skarp bezier OptionPanel.sharp_linear=Skarp line\u00E6r OptionPanel.shouldCenterSmallMaps=Centrer sm\u00E5 kort OptionPanel.show_creation_modification_in_tooltip=Vis redigeringstidspunkter OptionPanel.show_icon_for_attributes=Vis ikon for atributter OptionPanel.show_icons=Vis ikoner OptionPanel.show_less_than_N_nodes_by_default_after_load=Indl\u00E6s fra kort eller udfold nogle noder OptionPanel.show_node_tooltips=Vis v\u00E6rkt\u00F8jstip OptionPanel.show_note_icons=Vis note ikoner OptionPanel.show_styles_in_tooltip=F\u00E5 vist knudepunkt typografi i v\u00E6rkt\u00F8jstip OptionPanel.signed_script_are_trusted=Stol p\u00E5 underskrevne skripts (anbefales). OptionPanel.signed_script_are_trusted.tooltip=Hvis skripts er underskrevet af en betroet part (dvs. Freeplanes forfattere eller af dig selv), udf\u00F8res det uden begr\u00E6nsninger. OptionPanel.simplyhtml.default_paste_mode=Standardtilstand for inds\u00E6t OptionPanel.single_backup_directory=Brug en enkelt mappe for backup-filer OptionPanel.single_backup_directory.tooltip=Hvis sikkerhedskopiering og automatisk gemmer filer b\u00F8r s\u00E6ttes i en enkelt mappe i stedet for en sub bibliotek i kortets register OptionPanel.single_backup_directory_path=Backup mappe (Hvis ovenst\u00E5ende indstilling er markeret) OptionPanel.single_backup_directory_path.tooltip=Tilsides\u00E6tter standard < freeplaneuserdir > / .backup OptionPanel.single_instance=\u00C5bn filer i k\u00F8rende forekomst OptionPanel.single_instance_force=Undg\u00E5 en anden forekomst i alle tilf\u00E6lde OptionPanel.single_instance_force.tooltip=Undg\u00E5 en anden forekomst, selv om der ikke er nogen fil at indl\u00E6se OptionPanel.sk=Slovakisk/sloven\u010Dina OptionPanel.sl=Slovensk/sloven\u0161\u010Dina OptionPanel.slow_scroll_selected_node=Langsom rulning til valgte knudepunkt OptionPanel.small_bubble=Lille boble OptionPanel.small_wide_hexagon=Lille sekskant OptionPanel.spelling_opt_case_sensitive=Versalf\u00F8lsom OptionPanel.spelling_opt_ignore_all_caps_words=Ignorere alle ord med store bogstaver. OptionPanel.spelling_opt_ignore_capitalization=Ignorer ord der begynder med versal OptionPanel.spelling_opt_ignore_words_with_numbers=Ignorer ord med tal OptionPanel.spelling_opt_suggestions_limit_dialog=Maksimale antal forslag i dialogen OptionPanel.spelling_opt_suggestions_limit_menu=Maksimale antal forslag i menuen OptionPanel.SplitToWordsAction.auxiliaryWordList=ekstra ordliste OptionPanel.SplitToWordsAction.charactersAcceptedInWord=tegn i ord OptionPanel.SplitToWordsAction.leaveOriginalNodeEmpty=lad oprindelige node v\u00E6re tom OptionPanel.SplitToWordsAction.nodeNumbersInLine=nodenummer i r\u00E6kken OptionPanel.SplitToWordsAction.saveOriginalTextAsDetails=gem oprindelig tekst som detaljer OptionPanel.sr=Serbisk/\u0441\u0440\u043F\u0441\u043A\u0438 OptionPanel.standard_template=Standard skabelonfil OptionPanel.standardbackgroundcolor=Standard baggrundsfarve OptionPanel.standardbackgroundcolor.tooltip=Standard baggrundsfarve i HTML notation OptionPanel.standardcloudcolor=Standard skyfarve OptionPanel.standardcloudcolor.tooltip=Standard skyfave i HTML notation OptionPanel.standardcloudestyle=Standard skystil OptionPanel.standardcloudestyle.tooltip=Standard skystil. For nuv\u00E6rende er kun 'bezier' underst\u00F8ttet OptionPanel.standarddrawrectangleforselection=Vis valgte knudepunkter i bobler OptionPanel.standarddrawrectangleforselection.tooltip=Marker valgte knudepunkter med boble rundtom. OptionPanel.standardlinkcolor=Standard Linkfarve OptionPanel.standardlinkcolor.tooltip=Standard linkfarve i HTML notation OptionPanel.standardlinkestyle=Stndard Linkstil OptionPanel.standardlinkestyle.tooltip=Standard Linkstil. Nuv\u00E6rende underst\u00F8tter kun 'bezier' OptionPanel.standardselectednodecolor=Standard valgt knudepunktsfarve OptionPanel.standardselectednodecolor.tooltip=Standard knudepunktsfarve er valgt. I HTML notation (#RRGGBB i hex v\u00E6rdier) OptionPanel.standardselectednoderectanglecolor=Valgte knudepunkt boble farve OptionPanel.standardselectednoderectanglecolor.tooltip=Farve af buble m\u00E6rkning valgte knudepunkter. I HTML-notation (#RRGGBB i hex v\u00E6rdier) OptionPanel.STAR=Stjerne OptionPanel.statesymbolwidth=Tilstand symbolbredde OptionPanel.structured_html_import=Importer HTML som knudepunkt struktur OptionPanel.structured_icon_toolbar=Struktureret ikon v\u00E6rkt\u00F8jslinie OptionPanel.summary=Resum\u00E9 OptionPanel.sv=Svensk/svenska OptionPanel.text.use_ctrl_key=Brug 'Tildel genvej' fra v\u00E6rkt\u00F8js-menuen OptionPanel.textalignment=Tekstjustering OptionPanel.time_for_automatic_save=Tid for automatisk gem OptionPanel.time_for_automatic_save.tooltip= tiden imellem to p\u00E5 hinanden f\u00F8lgende automatiske gemninger (i msek): For at afstille automatisk gem s\u00E6t dette tal til 2000000000. OptionPanel.time_for_delayed_selection=Tid for forsinket valg OptionPanel.time_for_delayed_selection.tooltip=Valg af tidsforsinkelse p\u00E5 knudepunktet n\u00E5r musen er over (i msek). \u00C6ndre denne v\u00E6rdi til 1, hvis du \u00F8nsker direkte selektion ved mus over. OptionPanel.toolTipManager.dismissDelay=Afvis forsinkelse, ms OptionPanel.toolTipManager.initialDelay=Indledende forsinkelse, ms OptionPanel.toolTipManager.max_tooltip_height=Maksimal h\u00F8jde p\u00E5 knudepunktets v\u00E6rkt\u00F8jstip OptionPanel.toolTipManager.max_tooltip_height.tooltip=Maksimal h\u00F8jde p\u00E5 v\u00E6rkt\u00F8jstip i pixels. OptionPanel.toolTipManager.max_tooltip_width=Maksimal bredde p\u00E5 knudepunktets \u00E6rkt\u00F8jstip OptionPanel.toolTipManager.max_tooltip_width.tooltip=Maksimale bredde p\u00E5 v\u00E6rkt\u00F8jstip i pixels. OptionPanel.toolTipManager.reshowDelay=Genvisning forsinkelse, ms OptionPanel.tr=Tyrkisk / T\u00FCrk\u00E7e OptionPanel.uk_UA=Ukrainsk/\u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=Udefineret skrifttype OptionPanel.undo_levels=Fortryd niveauer OptionPanel.undo_levels.tooltip=Bestemmer hvor mange trin der gemmes der kan fortrydes via "Fortryd". OptionPanel.unfold_on_paste=Udfold knudepunkt ved inds\u00E6tning OptionPanel.unfold_on_paste.tooltip=Udfold knudepunkt ved inds\u00E6t eller tr\u00E6k og slip OptionPanel.uniform_shape=Uniform OptionPanel.use_common_out_point_for_root_node=Kanter starter fra et punkt p\u00E5 root knudepunkt OptionPanel.use_common_out_point_for_root_node.tooltip=Kanter starter fra et punkt p\u00E5 root knudepunkt OptionPanel.use_svg_icons=Brug SVG ikoner OptionPanel.use_tabbed_pane=Brug faner OptionPanel.use_tabbed_pane.tooltip=Hvis valgt vises MindMap i faner (ligesom i FireFox :-)). OptionPanel.validate_classpath_needs_readaccess=Skripting: N\u00E5r du indstiller classpath du n\u00F8dt til at tillade l\u00E6seadgang p\u00E5 filer! OptionPanel.validate_invalid_date_format=Ugyldig standard datoformat OptionPanel.validate_invalid_datetime_format=Ugyldig standard dato og klokkesl\u00E6t-format OptionPanel.validate_invalid_number_format=Ugyldig standard talformat OptionPanel.validate_write_without_read=Skripting: overvej for at tilf\u00F8je L\u00E6s/fil til at Skriv/fil. OptionPanel.validation_error=Validering fejl:

{0}

skal du \u00E6ndre indstillinger til at ordne fejl. OptionPanel.validation_warning=Validering advarsler:

{0} OptionPanel.vertical_child_gap=Barn margin OptionPanel.vertical_child_gap.tooltip=Lodret afstand mellem underordnede noder OptionPanel.vi=Vietnamesisk/Ti\u1EBFng Vi\u1EC7t OptionPanel.wheel_velocity=Hastighed OptionPanel.wheel_velocity.tooltip=En st\u00F8rre v\u00E6rdi resulterer i hurtigere bev\u00E6gelser af MindMap ved bev\u00E6gelse af musehjulet. OptionPanel.wide_hexagon=Bred sekskant OptionPanel.windows=Windows OptionPanel.zh_CN=Kinesisk, forenklet/\u7B80\u4F53\u5B57 OptionPanel.zh_TW=Kinesisk, traditionelt/\u7E41\u9AD4\u5B57 org.freeplane.plugin.bugreport.agree=Send org.freeplane.plugin.bugreport.always_agree=Send altid org.freeplane.plugin.bugreport.always_deny=Send aldrig org.freeplane.plugin.bugreport.deny=Send ikke org.freeplane.plugin.bugreport.dialog.title=Automatisk fejlrapport org.freeplane.plugin.bugreport.freeplane_team=Meddelelse fra Freeplane teamet org.freeplane.plugin.bugreport.never=Bed aldrig om hj\u00E6lp org.freeplane.plugin.bugreport.question=Freeplane har en automatisk fejlrapporteringssystem motor. org.freeplane.plugin.bugreport.report=Aktuelle rapport org.freeplane.plugin.script.NodeIdHighlighter.node_is_not_defined=Knudepunktet {0} er ikke defineret out_of_memory=Ikke mere hukommelse. overwrite_keyset_question=Overskriv eksisterende n\u00F8gles\u00E6t? PageAction.text=Udskriv ops\u00E6tning\u2026 password_is_not_ascii=Adgangskode er ikke ASCII PasteAction.text=S\u00E6t ind PasteAttributes.text=Inds\u00E6t attributer PatternNewNameProperty=Nyt m\u00F8nster PatternToString.backgroundColor=Baggrundsfarve PatternToString.Child=Underknudepunkt typografi PatternToString.color=Farve PatternToString.EdgeColor=Kantfarve PatternToString.EdgeStyle=Kant typografi PatternToString.EdgeWidth=Kantbredde PatternToString.FontBold=Fed PatternToString.FontItalic=Kursiv PatternToString.FontName=Skrifttypenavn PatternToString.Icon=Ikon PatternToString.NodeFontSize=Skriftst\u00F8rrelse periodic_formula={0} * n + {1} PeriodUnit.DAY=dage PeriodUnit.HOUR=timer PeriodUnit.MINUTE=minutter PeriodUnit.MONTH=m\u00E5neder PeriodUnit.WEEK=uger PeriodUnit.YEAR=\u00E5r plugins/latex/LatexNodeHook.editorTitle=Redigere LaTeX formel plugins/script_filter=Skript filter {0} plugins/script_filter_error={0} skal returnere et boolesk resultat p\u00E5 {1} men returnerede {2} plugins/script_filter_execute_error=Fejl ved udf\u00F8relse {0}\nfor knudepunkt {1}: \n{2} plugins/ScriptEditor.cancel=Ignorer \u00E6ndringer og afslut plugins/ScriptEditor.exit=Exit plugins/ScriptEditor.FORBIDDEN_ACTION=Freeplane groovy skripts er begr\u00E6nset. F\u00F8lgende {0,choice,0#File|1#Network|2#Exec} operation er forbudt:{1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write} {2}. Du kan \u00E6ndre dette i indstillingerne for programmet. plugins/ScriptEditor.menu_actions=Handlinger plugins/ScriptEditor.new_script=Nyt skript plugins/ScriptEditor.run=K\u00F8r plugins/ScriptEditor.sign=Signer skript\u2026 plugins/ScriptEditor/window.Result=Resultat: plugins/ScriptEditor/window.title=Script Editor plugins/ScriptingEngine.illegalAccessToInternalAPI=Ulovlig adgang til det interne API (pakke {0}). - Kontakt Freeplane holdet, hvis scripting API ikke er kraftig nok. preferences=Indstillinger presentation=Pr\u00E6sentation presentation.combineAll=Kombiner alle pr\u00E6sentationer print_preview_title=Vis udskrift PrintAction.text=Udskriv MindMap\u2026 PrintDirectAction.text=Udskriv printing_settings=Udskriftskalering PrintPreviewAction.text=Vis udskrift... program_terminates=Intern fejl: programmet afsluttes. progress=Udviklingsikon (%) QuickFilterAction.text=Hurtig filter QuickFindAction.BACK.text=Find forrige QuickFindAction.FORWARD.text=Find n\u00E6ste QuickFindAllAction.text=V\u00E6lg alle matchende knudepunkter QuickHighlightAction.text=Fremh\u00E6v alle matchende knudepunkter QuitAction.text=Afslut Freeplane read_only=L\u00E6s kun ReadScriptError.text=Fejl ved l\u00E6sning af skript really_convert_to_current_version=MindMap blev oprettet med en \u00E6ldre version af Freeplane.
Skal det konverteres (anbefales)?
(Ellers benyttes det, som det er uden garanti.) really_cut_node=Klip knudepunkter? really_execute_script=Vil du virkelig k\u00F8re skripts, der indg\u00E5r i dette MindMap? Det er muligt det beskadiger computeren. really_remove_node=Slet knudepunkter? really_remove_notes=Fjern knudepunkter? ReapplyFilterAction.text=Genanvend filterhandling red=R\u00F8d RedefineStyleAction.text=Omdefiner typografi RedoAction.text=Gendan RedoFilterAction.text=Gendan regular_expressions=Regul\u00E6r udtryk reminder.appendButton=Tilf\u00F8j dato til valgt knudepunkt reminder.Cancel=Annuller reminder.cancelButton=Annuller reminder.closeButton=Luk reminder.Created=Oprettet reminder.Details=Detaljer reminder.Export=Eksporter valgte knudepunkter reminder.Find=S\u00F8g reminder.Goto=G\u00E5 til reminder.hour=Time: reminder.Icons=Ikoner reminder.Map=MindMap reminder.menu_actions=Handlinger reminder.minute=Minut: reminder.Modified=Redigeret reminder.Notes=Noter reminder.Reminder=P\u00E5mindelse reminder.reminderButton=P\u00E5mind mig p\u00E5 denne dato reminder.reminderButton.tooltip=N\u00E5r p\u00E5virket, s\u00E6ttes en timer i gang til den angivne dato. P\u00E5 datoen vil blinkende ikoner tiltr\u00E6kke din opm\u00E6rksomhed.
Hvis du lukker MindMappen, reaktiveres timerne n\u00E6ste gang, MindMappen \u00E5bnes. reminder.reminderNode.tooltip=P\u00E5minder skemalagt den {0,date} {0,time}. reminder.reminderNode_onlyOneDate=For nuv\u00E6rende m\u00E5 der kun v\u00E6re en p\u00E5mindelse per knudepunkt.
Den nuv\u00E6rende p\u00E5mindelse er sat til {date} {0,time}, dit valg var {1,date} {1,time}.

\u00D8nsker du at \u00E6ndre knudepunktets p\u00E5mindelsestidspunkt (JA)
eller \u00F8nsker du at beholde den gamle (NEJ)? reminder.remindLaterButton=P\u00E5mind senere reminder.remindLaterButton.tooltip=P\u00E5mind senere reminder.removeReminderButton=Fjern p\u00E5mindelse reminder.removeReminderButton.tooltip=Fjern alle p\u00E5mindelser associeret med de valgte knudepunkter. reminder.Replace=Erstat reminder.Replace_All=Erstat alle reminder.Replace_Selected=Ersat valgte reminder.Select=V\u00E6lg reminder.Text=Tekst reminder.todayButton=I dag reminder.WindowTitle=Time Management reminder.WindowTitle_All_Nodes=S\u00F8g & Erstat ReminderHookAction.text=Fjern p\u00E5mindelse ReminderHookAction.tooltip=Fjerner en p\u00E5mindelse fra et knudepunkt. ReminderListAction.text=Vis tidsskema listen... ReminderListAction.tooltip=Vis alle skemalagte tider og de tilh\u00F8rende knudepunkter. reminderNotification=P\u00E5mindelse meddelse remove_file_from_list_on_error=Filen {0} blev ikke \u00E5bnet. Fjern den fra fillisten seneste \u00E5bnede? remove_shortcut_question=Erstatte genvej? RemoveAllAlwaysUnfoldedNodeFlagsAction.text=Nulstil udfoldede noder RemoveAllAlwaysUnfoldedNodeFlagsAction.tooltip=Tillader foldning for hver node RemoveAllIconsAction.text=Fjern alle ikoner RemoveConnectorAction.text=Fjern forbindelse RemoveEncryption.text=Fjern adgangskode RemoveFormatAction.text=Fjern format RemoveIcon_0_Action.text=Fjern f\u00F8rste ikon RemoveIconAction.text=Fjern sidste ikon RemoveNoteAction.text=Fjern note RemoveNoteAction.tooltip=Fjerner indholdet af bem\u00E6rkning for eventuelt flere bem\u00E6rkninger. rename=&Omd\u00F8b repair_link=Reparer link repair_link_question=Kunne ikke indl\u00E6se sammenk\u00E6dedet MindMap. Reparer forbindelsen manuelt? replace=Erstat replace_shortcut_question=Tastatur genvej er aktuelt tildelt til {0}.\nErstat tildeling? replace_shortcut_title=Erstat genvej? ReportBugAction.text=Rapporter en fejl RequestFeatureAction.text=Anmod om en funktion reset_to_default=Brug standard ResetNodeLocationAction.text=Reset knudepunkt position ResetStyleAction.text=Nulstil knudepunkt typografi RevertAction.text=Gendan fra lokal historik RevisionPluginAction.text=\u00C6ndre baggrundsfarve for revisioner save=&Gem save_failed=Kunne ikke gemme MindMap {0}. save_unsaved=Gem MindMap? save_unsaved_styles=Gem typografier? SaveAcceleratorPresetsAction.text=Gem genvejstaster\u2026 SaveAction.text=Gem MindMap SaveAction_readonlyMsg=Mindmap er skrivebeskyttet. Brug 'Fil-> Gem mindap som...' for at gemme. SaveAction_readonlyTitle=Fors\u00F8g p\u00E5 at gemme skrivebeskyttet mindmap SaveAll.text=Gem &alle \u00E5bne MindMap SaveAll.tooltip=Gemmer alle \u00E5bne MindMaps SaveAs_toReadonlyMsg={0} er skrivebeskyttet. Gem til en anden fil. SaveAs_toReadonlyTitle=Fors\u00F8g p\u00E5 at gemme til skrivebeskyttet fil SaveAsAction.text=Gem MindMap som\u2026 saved=Gemt saving_canceled=Gem afbrudt scanners_not_loaded=Scannere kunne ikke indl\u00E6ses, fil beskadiget scheme_evaluate=Evaluer! script_execution_disabled=Skriptudf\u00F8relse er deaktiveret, se v\u00E6rkt\u00F8jer/indstillinger/udvidelser ScriptEditor.text=Rediger script... ScriptEditor.tooltip=Tillader at skrive st\u00F8rre scripts inden i Freeplane. ScriptEditorPanel.changed_cancel=Scriptene er blevet \u00E6ndret. \u00D8nsker du virkelig at forlade disse \u00E6ndringer? scripting=Scripts scripting_api_generator_legend=Tegnforklaring scripting_api_generator_proxy=Proxy scripting_api_generator_title=Skripting API scripting_api_generator_utilities=Hj\u00E6lpeprogrammer scripting_api_generator_web=Webressourcer ScriptsRunToggleAction.ON_SELECTED_NODE.text=Udf\u00F8r scripts p\u00E5 alle markerede knudepunkter ScriptsRunToggleAction.ON_SELECTED_NODE_RECURSIVELY.text=Udf\u00F8r skripts p\u00E5 markerede noder, rekursivt ScriptsRunToggleAction.ON_SINGLE_NODE.text=Udf\u00F8r scripts p\u00E5 et markeret knudepunkt select_favorites_folder=V\u00E6lg mappen, med dine favoritter select_file_export_to=V\u00E6lg fil at eksporterer til select_folder_for_importing=V\u00E6lg mappen som skal importeres select_icon=V\u00E6lg et ikon select_menu_item_dialog=V\u00E6lg et menupunkt select_menu_item_root_node=Menu select_template=V\u00E6lg skabelon SelectAllAction.text=V\u00E6lg alle synlige knudepunkter SelectBranchAction.text=V\u00E6lg synlig forgrening SelectedPasteAction.text=Inds\u00E6t som\u2026 selection_method_by_click=Enkelt-klik for at v\u00E6lge selection_method_delayed=Forsinket automatisk valg selection_method_direct=Peg for at marker SelectNoteAction.text=Note redigerings Switch SelectNoteAction.tooltip=Skift til resp. fra note vindue SetAccelerator.dialogTitle=Tildeling af genvejstaster SetAccelerator.keystrokeDetected=Taste "{0}" er ikke tildelt til noget menupunkt. SetAcceleratorOnNextClickAction.text=Tildel genvejstast SetAlwaysUnfoldedNodeFlagsAction.text=Hold udfoldede knuderpunktet SetAlwaysUnfoldedNodeFlagsAction.tooltip=Forhindrer foldning af aktuelt udfoldede knudepunkter SetImageByFileChooserAction.text=Billede - filh\u00E5ndtering eller link\u2026 SetLinkAnchorAction.text=Angiv link anker SetLinkAnchorAction.tooltip=angiv valgte knudepunkt som anker for fremtidige
oprettelser af lokale eller globale links. SetLinkAnchorAction.tooltip_anchored=angiv valgte knudepunkt som anker for fremtidige
oprettelser af lokale eller globale links. Nuv\u00E6rende anker:
{0} SetLinkByFileChooserAction.text=Tilf\u00F8j hyperlink (v\u00E6lg)\u2026 SetLinkByTextFieldAction.text=Tilf\u00F8j eller rediger hyperlink (type)\u2026 SetNodeLink.text=Angiv knudepunkt Link\u2026 SetNoteWindowPosition.bottom.text=Bunden SetNoteWindowPosition.left.text=Venstre SetNoteWindowPosition.right.text=H\u00F8jre SetNoteWindowPosition.top.text=Top SetShortenerStateAction.text=Minimer knudepunkt sf_login_required=Source Forge login p\u00E5kr\u00E6vet. Forts\u00E6t? ShowAllAttributesAction.text=Vis alle atributter ShowAncestorsAction.text=Vis Forf\u00E6dre ShowAttributeDialogAction.text=Attribut administrator\u2026 ShowDescendantsAction.text=Vis efterkommere ShowFilterToolbarAction.text=Filter v\u00E6rkt\u00F8jslinie ShowFormatPanel.tooltip=Pr\u00E6senterer en dialogboks i hvilken knudepunkt og kant attributter kan \u00E6ndres med det samme. ShowHideNoteAction.text=Vis/Skjul Note vindue ShowHideNoteAction.tooltip=Er en menu genvej for de sm\u00E5 pile i opdelingslinien. ShowNextChildAction.text=Vis n\u00E6ste underknudepunkt ShowNotesInMapAction.text=Vis noter i MindMap ShowPreferencesAction.dialog=Indstillinger ShowPreferencesAction.text=Indstillinger... ShowSelectedAttributesAction.text=Vis valgte atributter ShowSelectionAsRectangleAction.text=Rektangul\u00E6r markering simplyhtml.aboutFrameTitle=Om denne applikation simplyhtml.aboutLabel=Om SimplyHTML\u2026 simplyhtml.alignCenter=centrer simplyhtml.alignLabel=Justering: simplyhtml.alignLeft=venstre simplyhtml.alignRight=h\u00F8jre simplyhtml.allCellsRangeLabel=alle celler simplyhtml.allOccurrencesReplaced=Alle forekomster erstattet simplyhtml.appendTableColLabel=Tilf\u00F8j kolonne simplyhtml.appendTableRowLabel=Tilf\u00F8j r\u00E6kke simplyhtml.applyCellAttrLabel=Anvend p\u00E5 simplyhtml.backgroundLabel=Baggrund: simplyhtml.blackFontColorLabel=Sort simplyhtml.blueFontColorLabel=Bl\u00E5 simplyhtml.boldItalicName=fed kursiv simplyhtml.boldName=fed simplyhtml.borderColorLabel=Farve: simplyhtml.borderWidthLabel=Bredde simplyhtml.bottomLabel=bund: simplyhtml.cancelBtnName=Annuller simplyhtml.cellBorderTabLabel=Kantlinier simplyhtml.cellGenTabLabel=Generelt simplyhtml.cellMarginTabLabel=Margen simplyhtml.cellPanelTitle=Celle format simplyhtml.clearFormatLabel=Fjern formatering simplyhtml.clearFormatTip=Fjern formatering simplyhtml.close=Luk simplyhtml.closeBtnName=Luk simplyhtml.colorLabel=Farve simplyhtml.copyLabel=Kopier simplyhtml.copyTip=kopier simplyhtml.cTagNameHead1=Overskrift 1 simplyhtml.cTagNameHead2=Overskrift 2 simplyhtml.cTagNameHead3=Overskrift 3 simplyhtml.cTagNameHead4=Overskrift 4 simplyhtml.cTagNameHead5=Overskrift 5 simplyhtml.cTagNameHead6=Overskrift 6 simplyhtml.cTagNameLink=Link simplyhtml.cTagNameOL=Sorteret liste simplyhtml.cTagNamePara=Afsnit simplyhtml.cTagNameUL=Usorteret liste simplyhtml.cutLabel=Klip simplyhtml.cutTip=klip simplyhtml.decreaseFontSizeLabel=Mindre simplyhtml.defaultDocName=Unavngivet simplyhtml.deleteTableColLabel=Slet kolonne simplyhtml.deleteTableRowLabel=Slet r\u00E6kke simplyhtml.docTitleQuery=S\u00E6t titel til: simplyhtml.docTitleTitle=Rediger Dokument Titel simplyhtml.editLabel=Rediger simplyhtml.effectLabel=Effekt simplyhtml.familyLabel=Familie simplyhtml.findNext=Find n\u00E6ste... simplyhtml.findReplaceDialogTitle=S\u00F8g & find simplyhtml.findReplaceLabel=S\u00F8g & find simplyhtml.findReplaceTip=s\u00F8g & erstat simplyhtml.fontBoldLabel=Fed simplyhtml.fontBoldTip=skift fed til/fra simplyhtml.fontColorLabel=Tekstfarve simplyhtml.fontColorTip=Tekstfarve simplyhtml.fontDialogTitle=Format skrifttype simplyhtml.fontItalicLabel=Kursiv simplyhtml.fontItalicTip=skift kursiv til/fra simplyhtml.fontLabel=Skrifttype... simplyhtml.fontTabLabel=Skrifttype simplyhtml.fontTip=Format skrifttype\u2026 simplyhtml.fontUnderlineLabel=Understregning simplyhtml.fontUnderlineTip=skift underlinieret til/fra simplyhtml.foregroundLabel=Forgrund: simplyhtml.formatLabel=Format simplyhtml.formatListLabel=Liste... simplyhtml.formatListTip=\u00C6ndre liste format simplyhtml.formatParaLabel=Afsnit... simplyhtml.formatParaTip=\u00C6ndre afsnits format simplyhtml.formatTableLabel=Tabel... simplyhtml.formatTableTip=Format tabel simplyhtml.greenFontColorLabel=Gr\u00F8n simplyhtml.helpLabel=Hj\u00E6lp simplyhtml.htmlTabTitle=HTML kode visning simplyhtml.imageFileDesc=Billed filer simplyhtml.increaseFontSizeLabel=St\u00F8rre simplyhtml.insertTableColLabel=Inds\u00E6t kolonne simplyhtml.insertTableLabel=Tabel... simplyhtml.insertTableMsg=Hvor mange kolonner? simplyhtml.insertTableRowLabel=Inds\u00E6t r\u00E6kke simplyhtml.insertTableTitle=inds\u00E6tTabel simplyhtml.italicName=kursiv simplyhtml.layoutTabTitle=Layout visning simplyhtml.leftLabel=venstre: simplyhtml.listDialogTitle=Formater liste simplyhtml.listIndentTitle=Indryk: simplyhtml.listPosInside=indenfor simplyhtml.listPositionLabel=Position: simplyhtml.listPosOutside=udenfor simplyhtml.listTypeCircle=Rundt punkttegn simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeDisc=filsymbol som punkttegn simplyhtml.listTypeLabel=Type: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=ingen simplyhtml.listTypeSquare=Firkantet punkttegn simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=Ydre simplyhtml.matchApproximately=Cirka tr\u00E6f simplyhtml.matchApproximately.tooltip=Tillad omtrentlige tr\u00E6f,
dvs. s\u00F8gning efter 'filer' vil finde 'fluer'. simplyhtml.matchCase=STORE og sm\u00E5 bogstaver simplyhtml.matchCase.tooltip=Hvorvidt der skal tages hensyn til store/sm\u00E5 bogstaver. simplyhtml.newStyleDefaultName=ny typografi simplyhtml.nextTableCellLabel=N\u00E6ste celle simplyhtml.noLineLabel=ingen simplyhtml.noMoreOccurrencesFound=ingen (flere) forekomster fundet simplyhtml.okBtnName=OK simplyhtml.paddingLabel=Indre simplyhtml.paraAlignCenterLabel=Juster centreret simplyhtml.paraAlignCenterTip=S\u00E6t afsnits centreret justering simplyhtml.paraAlignLeftLabel=Juster venstre simplyhtml.paraAlignLeftTip=S\u00E6t afsnits venstre justering simplyhtml.paraAlignRightLabel=Juster h\u00F8jre simplyhtml.paraAlignRightTip=S\u00E6t afsnits h\u00F8jre justering simplyhtml.paraStyleDialogTitle=Afsnitstypograf simplyhtml.paraTabLabel=Afsnit simplyhtml.pasteHTMLLabel=Inds\u00E6t HTML simplyhtml.pasteLabel=S\u00E6t ind simplyhtml.pastePlainTextLabel=Inds\u00E6t almindelig tekst simplyhtml.pasteTip=s\u00E6t ind simplyhtml.plainName=simpel simplyhtml.previewLabel=Forh\u00E5ndsvisning simplyhtml.previewText=Forh\u00E5ndsvis tekst simplyhtml.prevTableCellLabel=Forrige celle simplyhtml.printLabel=Udskriv\u2026 simplyhtml.redFontColorLabel=R\u00F8d simplyhtml.redoLabel=Gendan simplyhtml.redoTip=gendan simplyhtml.removeFontColorLabel=Fjern farve simplyhtml.replace=Erstat... simplyhtml.replaceAll=Alt simplyhtml.replaceDone=F\u00E6rdig simplyhtml.replaceNo=Nej simplyhtml.replaceThisQuery=ertat denne forkomst af simplyhtml.replaceWith=Erstat med: simplyhtml.replaceYes=Ja simplyhtml.rightLabel=h\u00F8jre: simplyhtml.searchDown=S\u00F8g nedad simplyhtml.searchDown.tooltip=S\u00F8g fra top til bund. simplyhtml.searchFromStart=S\u00F8g fra starten simplyhtml.searchFromStart.tooltip=Begynd at s\u00F8ge fra toppen i stedet for ved mark\u00F8rens position. simplyhtml.searchUp=S\u00F8g opefter simplyhtml.searchUp.tooltip=S\u00F8g fra top til bund. simplyhtml.selectAllLabel=V\u00E6lg alt simplyhtml.selectedFontColorLabel=Valgte skrifttypefarve simplyhtml.sizeLabel=St\u00F8rrelse simplyhtml.standardStyleName=standard simplyhtml.strikeLabel=Gennemstreg simplyhtml.styleLabel=Typografi simplyhtml.styleNameInputText=Navn p\u00E5 ny stil? simplyhtml.styleNameInputTitle=Gem typografi simplyhtml.tableBgColLabel=Baggrundsfarve: simplyhtml.tableDialogTitle=Format tabel simplyhtml.tableLabel=Tabel simplyhtml.tablePanelTitle=Tabel format simplyhtml.tableWidthLabel=Bredde: simplyhtml.textIndentLabel=Indryk: simplyhtml.textToFind=Tekst at finde: simplyhtml.thisCellRangeLabel=denne celle simplyhtml.thisColRangeLabel=denne kolonne simplyhtml.thisRowRangeLabel=denne r\u00E6kke simplyhtml.toggleBulletsLabel=Punkttegns liste til/fra simplyhtml.toggleBulletsTip=punkttegns liste til/fra simplyhtml.toggleNumbersLabel=Nummereret liste til/fra simplyhtml.toggleNumbersTip=nummereret liste til/fra simplyhtml.topLabel=top: simplyhtml.uLineLabel=Understregning simplyhtml.unableToOpenFileError=Filen kan ikke \u00E5bnes simplyhtml.unableToRedoError=Kan ikke gendanne: simplyhtml.unableToUndoError=Kan ikke gendanne: simplyhtml.undoLabel=Fortryd simplyhtml.undoTip=fortryd simplyhtml.valignBaseline=Grundlinie simplyhtml.valignBottom=bund simplyhtml.valignLabel=Vert. justering: simplyhtml.valignMiddle=midte simplyhtml.valignTop=top simplyhtml.wholeWordsOnly=Kun hele ord simplyhtml.wholeWordsOnly.tooltip=Begr\u00E6ns tr\u00E6f til hele ord. slide.add=Tilf\u00F8j slide.filter=Filter slide.first=F\u00F8rste slide.last=Sidste slide.next=N\u00E6ste slide.nofilter=Intet filter slide.previous=Forrige slide.remove=Fjern slide.select=V\u00E6lg slide.stop=Stop SortNodes.text=Sorter b\u00F8rn SortNodes.tooltip=Sorter alle underknudepunkter alfabetisk. split=&Opdel SplitConditionAction.text=Opdel SplitNode.text=Opdel knudepunkt SplitNode.tooltip=Knudepunkt er opdelt SplitToWordsAction.text=Opdel med {0} ord i linje STANDARD_FORMAT=Standard stop_processing=Stop StringFlavorHandler=Almindelig tekst som knudepunkt hierarki StructuredHtmlFlavorHandler=HTML som knudepunkt hierarki style=Typografi style_already_exists=Typografi findes allerede. styledialog.cancel.text=Annuller styledialog.ok.text=OK styles=T&ypografier styles.AutomaticLayout=Anvend niveau typografier styles.connection=Forbindelse styles.date=Dato styles.definition=Definition styles.description=Beskrivelse styles.floating_node=Flydende knudepunkt styles.idea=Id\u00E9 styles.important=Vigtigt styles.key=N\u00F8gle styles.list=Liste styles.needs_action=Behov for handling styles.note=Note styles.ok=OK styles.pending=Afventer styles.predefined=Foruddefinerede typografier styles.question=Sp\u00F8rgsm\u00E5l styles.quotation=Citat styles.root_node=Typografier styles.subsubtopic=Underdelemne styles.subtopic=Delemne styles.topic=Emne styles.user-defined=Brugerdefinerede typografier styles.website=Hjemmeside styles_background_html=\n \n\n \n\n \n \n \n\n\n
\nom denne stil s\u00E6t\n
\n
\n
\ndenne standard blev udviklet efter 11 \u00E5r p\u00E6dagogik forskning om, hvordan at g\u00F8re processen med viden, lettere og hurtigere.\n
\n
\ndet har til form\u00E5l at g\u00F8re processen med at tilegne sig, forarbejdning, absorbere, forst\u00E5else dom\u00E6ne og mastering viden, information og id\u00E9er s\u00E5 hurtigt og nemt som muligt.\n
\n
\ndet er udviklet af Jonas Batista (Brasilien).\n Find flere oplysninger p\u00E5: www.jonasbatista.com.br/\n\n
\n
\n
\n \n
\nJonas Batista
\n
\n
\n\n styles_menu=Tilg\u00E6ngelige typografier submenu_keystroke_in_use_error=Tastetryk {0} kan ikke bruges til undermenuen {1}. Tastetryk fjernet. summary_nodes=Sammenfattende knudepunkter summary_not_possible=Kan ikke oprette oversigts knudepunkt for aktuel markering svg=SVG template_dir=Standard skabeloner TextAlignAction.CENTER.text=Centreret tekst TextAlignAction.DEFAULT.text=Standard TextAlignAction.LEFT.text=Venstrejusteret tekst TextAlignAction.RIGHT.text=H\u00F8jrejusteret tekst textalignment=Tekstjustering TimeManagementAction.text=Vis kalender... TimeManagementAction.tooltip=Viser kalendermodulet af Kai Toedter. TimePeriodUnits.days=dage TimePeriodUnits.hours=timer TimePeriodUnits.minutes=minutter TimePeriodUnits.ms=ms TimePeriodUnits.seconds=sekunder TimePeriodUnits.weeks=uger ToggleChildrenFoldedAction.text=Fold underknudepunkter ind/ud ToggleDetailsAction.text=Skjule detaljer ToggleFBarAction.text=F-tasten ToggleFoldedAction.text=Fold ud/ind ToggleFullScreenAction.text=Fuldsk\u00E6rm ToggleLeftToolbarAction.text=Ikoner v\u00E6rkt\u00F8jslinie ToggleMenubarAction.text=Menulinien ToggleScrollbarsAction.text=Rullepaneler ToggleStatusAction.text=Vis statuslinje ToggleToolbarAction.text=V\u00E6rkt\u00F8jslinie TranslatedElement.TEXT=Tekst TranslatedElement.TOOLTIP=V\u00E6rkt\u00F8jstip TutorialAction.text=Tutorial uiTextChanger.originalTextIsNotDefined=Original tekst er ikke defineret undefined_error=En uventet fejl opstod. Pr\u00F8v venligt at lave en fejlrapport. underline=Understregning UnderlineAction.text=Understregning underlined=Understreget UndoAction.text=Fortryd UndoFilterAction.text=Fortryd unfold=Udfold UnfoldAllAction.text=Udfold alt UnfoldAllAction.tooltip=Udfolder de valgte knudepunkter og alle deres underknudepunkter. UnfoldOneLevelAction.text=Udfold et niveau UnfoldOneLevelAction.tooltip=Udfolder det valgte knudepunkt med et niveau. unparsedLatexPatternFormat=Ufortolket LaTeX up=&Op UpConditionAction.text=Op update_failed=Opdateringen mislykkedes med meddelelsen {0} UpdateCheckAction.text=Check for opdateringer updatecheckdialog=Opdater check dialog updater.component=Komponent updater.goToDownload=G\u00E5 til downloads updater.version.installed=Installeret version updater.version.latest=Nyeste version updater.version.noUpdateUrl=Ingen opdaterings URL eller hjemmeside for denne tilf\u00F8jelse. updater.version.unknown=Ukendt updater.version.unreachable=Ikke tilg\u00E6ngelig kilde: updater.viewChangelog=Se \u00E6ndringslog url_error=URL-adressen er forkert udformet! url_open_error=Kunne ikke \u00E5bne URL-adressen {0}. used_in_menu=Genvejen kan ikke anvendes, bruges allerede som en menugenvej. UsePlainTextAction.text=Brug klar tekst user_config_folder=Bruger konfiguration mappe: {0} user_defined_filters=Brugerdefinerede filtre user_defined_scale=&Bruger defineret skala user_defined_zoom=Brugerdefineret user_defined_zoom_status_bar=\u00C6ndre zoom til brugerdefinerede zoomv\u00E6rdien af {0} %. user_icon=Brugerikonet "{0}" user_template_dir=Brugerskabeloner user_zoom=Udskriv zoomfaktor (0.0 - 2.0): userScripts=Skripts value_format=V\u00E6rdiformat version_up_to_date=Du bruger allerede den nyeste programversion view=Vis ViewLayoutTypeAction.OUTLINE.text=Dispositionsvisning web_resources=Webressourcer WebDocuAction.text=Web Dokumentation WhatsNewAction.text=Hvad er nyt i Freeplane 1.5.x width=Bredde wrong_regexp=Forkert regul\u00E6rt udtryk "{0}", fejl {1} xslt_export.html=HTML-dokument xslt_export.latex=Latex dokument xslt_export.latexbook=Latex bog xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=Microsoft Excel 2003 XML xslt_export.ms_project=Microsoft Project 2003 XML xslt_export.ms_word=Microsoft Word 2003 XML xslt_export.text=Br\u00F8dtekst xslt_export_not_possible=Freeplane XSLT eksportering er ikke mulig yes=Ja zoom=Zoom ZoomInAction.text=Zoom ind ZoomOutAction.text=Zoom ud freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_de.properties0100644 0000000 0000000 00000372424 13554635152 027626 0ustar000000000 0000000 about=\u00DCber about_text=Freeplane - Eine freie Software f\u00FCr Mindmaps und Wissensaufbau AboutAction.text=\u00DCber Freeplane acceleratorPresets=&Tastaturk\u00FCrzel-Einstellungen accelerators_loading_error=Fehler beim Laden der Tastaturk\u00FCrzel in {0} accessories/plugins/ApplyFormatPlugin.dialog.title=Format der Knoten \u00E4ndern accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Stil \u00E4ndern accessories/plugins/EncryptNode.properties_0=Bitte w\u00E4hlen Sie ein Passwort f\u00FCr den verschl\u00FCsselten Knoten accessories/plugins/EncryptNode.properties_1=Die Passw\u00F6rter stimmen nicht \u00FCberein oder sind zu kurz. accessories/plugins/EncryptNode.properties_2=Passwort eingeben: accessories/plugins/EncryptNode.properties_3=Passwort wiederholen: accessories/plugins/EncryptNode.properties_4=Bitte geben Sie das Passwort ein. accessories/plugins/EncryptNode.properties_5=Bitte beachten Sie, dass die St\u00E4rke der Verschl\u00FCsselung
fast vollst\u00E4ndig von der Qualit\u00E4t Ihres Passwortes abh\u00E4ngt. accessories/plugins/EncryptNode.properties_6=OK accessories/plugins/EncryptNode.properties_7=Abbrechen accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Sie k\u00F6nnen den Zustand des Kennwortschutzes (Verschl\u00FCsselung) nur bei bereits verschl\u00FCsselten Knoten \u00E4ndern. Bitte f\u00FCgen Sie einen solchen Knoten \u00FCber das Werkzeug-Men\u00FC ein. accessories/plugins/EncryptNode.properties_select_me=Zum Weitermachen hier klicken! accessories/plugins/EncryptNode.properties_wrong_password=Das Passwort ist falsch. accessories/plugins/Export_JavaWebStart.text=Java Web Start\u2026 accessories/plugins/Export_JavaWebStart.tooltip=Exportiert die Mindmap f\u00FCr Java Web Start. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Exportiert die ganze Mindmap als TWiki Dokument. accessories/plugins/ExportWithXSLT.tooltip=Eine allgemeine Exportmethode, die XSLT Skripte verwendet. accessories/plugins/ExportWithXSLT_Applet.text=Java Applet\u2026 accessories/plugins/ExportWithXSLT_Applet.tooltip=Exportiert die ganze Mindmap als Java-Browser-Applet. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (JavaScript Version)\u2026 accessories/plugins/ExportWithXSLT_HTML3.text=XHTML (Mit verlinktem Bild der Mindmap)\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Ressourcen nach Taskjuggler\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Exportiert Ressourcen vom RESOURCES Knoten zu Taskjuggler. accessories/plugins/ExportWithXSLT_TASKSTJI.text=Aufgaben nach Taskjuggler\u2026 accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Exportiert Aufgaben vom Tasks-Knoten zu Taskjuggler. action_keystroke_in_use_error=Tastaturk\u00FCrzel {0} f\u00FCr {1} wird bereits f\u00FCr {2} verwendet active=Aktiv actual_map_styles=aktuell auf Knoten angewandte mindmapbezogene Stile actual_node_styles=aktuell auf Knoten angewandte knotenbezogene Stile add=&Hinzuf\u00FCgen add_node=Knoten hinzuf\u00FCgen add_ons=Add-ons AddConnectorAction.text=Knoten verbinden AddElementaryConditionAction.text=Hinzuf\u00FCgen AddExecutionLinkAction.text=Link zu einem Systembefehl hinzuf\u00FCgen\u2026 AddLocalLinkAction.text=Link von Knoten zu Knoten AddMenuItemLinkAction.text=Link auf Men\u00FCeintrag hinzuf\u00FCgen\u2026 AddOnDetailsPanel.authored.by=Von {0} AddOnDetailsPanel.header.function=Funktion AddOnDetailsPanel.header.menu=Men\u00FCeintrag AddOnDetailsPanel.header.shortcut=Tastaturk\u00FCrzel AddOnDetailsPanel.homepage=Homepage: addons.installer.canceled=Installation abgebrochen addons.installer.confirm.licence=

Lizenz:

{0}

Akzeptieren Sie die Lizenzbedingungen?

addons.installer.failed=Installation fehlgeschlagen: {0} addons.installer.freeplaneversion.format.error=Formatfehler in {0} (Wert: {1}) addons.installer.html.script=Skripttext darf nicht HTML-formatiert sein addons.installer.install=Installieren addons.installer.invalid.keyboard.shortcut=Ung\u00FCltiges Tastaturk\u00FCrzel {0}. addons.installer.licence.unchanged=Lizenz ist unver\u00E4ndert addons.installer.map.structure=Fehlerhafte Mindmap-Struktur: {0} addons.installer.missing.child.nodes=Fehlende Unterknoten: {0} addons.installer.missing.permission.attribute=Skript {0}: fehlende Berechtigungsattribute {1} addons.installer.missing.properties=Fehlende "properties"-Attribute: {0} addons.installer.missing.translation=\u00DCbersetzung von {0} fehlt f\u00FCr {1} addons.installer.no.scripts=Keine Skripte gefunden addons.installer.no.zipdata=Es wurden keine ZIP-Daten gefunden addons.installer.nonstandard.permissions=Das Skript ben\u00F6tigt die folgenden Berechtigungen, die zur Zeit nicht gesetzt sind: {0}.\nSollen diese zu den Standardberechtigungen hinzugef\u00FCgt werden? addons.installer.one.child.expected=Erwartet wurde nur genau ein Unterknoten von {0}, bekam jedoch {1}. addons.installer.script.name.suffix=Der Skript-Name {0} hat keine Dateiendung wie z.B. ".groovy" addons.installer.script.no.execution_mode=f\u00FCr {0} ist das Attribut "execution_mode" nicht definiert addons.installer.script.no.menulocation=f\u00FCr {0} ist das Attribut "menuLocation" nicht definiert addons.installer.script.no.menutitle=f\u00FCr {0} ist das Attribut "menuTitleKey" nicht definiert addons.installer.script.no.permissions=Keine Berechtigungen definiert f\u00FCr {0} addons.installer.success=Installation erfolgreich.\nDas neue Add-On wird nach einem Neustart zur Verf\u00FCgung stehen. addons.installer.success.update=Aktualisierung von {0} auf {1} war erfolgreich.\nEinige Funktionen k\u00F6nnten erst im Anschluss an einen Neustart verf\u00FCgbar sein. addons.installer.title=Einrichtung der Erweiterungen addons.installer.too.new=Die aktuelle Freeplane-Version {0} ist zu neu. Dieses Add-On wird nur bis {1} unterst\u00FCtzt. addons.installer.too.old=Die aktuelle Freeplane-Version {0} ist zu alt. Dieses Add-On braucht mindestens {1}. addons.installer.unknown.deinstallation.rules=Unbekannte Deinstallations-Regel(n): {0} addons.installer.update=Update von Version {0} addons.installer.warning=Die Installation von Add-Ons sollte nur von vertrauensw\u00FCrdigen Quellen erfolgen. Schadsoftware k\u00F6nnte sonst einen Datenverlust hervorrufen oder zur Verletzung der Privatsph\u00E4re f\u00FChren. addons.site=https://www.freeplane.org/addons/ AddStyleAttributes.text=Attribute vom Stil AddStyleAttributes.tooltip=F\u00FCgt die Attribute der Stildefinition ein AllMapsNodeListAction.text=Suchen und ersetzen in allen Mindmaps always=Immer AlwaysUnfoldedNodeAction.text=Knoten st\u00E4ndig entfalten (zur\u00FCck)setzen antialias_all=Kantengl\u00E4ttung f\u00FCr Alles verwenden antialias_edges=Kantengl\u00E4ttung f\u00FCr Konten-Linien verwenden antialias_none=Kantengl\u00E4ttung deaktivieren apply=\u00DC&bernehmen ApplyAction.text=\u00DCbernehmen ApplyFormatPlugin.text=Format \u00E4ndern\u2026 ApplyFormatPlugin.tooltip=Dialog, in dem Knoten- und Kantenformate ge\u00E4ndert werden k\u00F6nnen. ApplyNoFilteringAction.text=Filter deaktivieren ApplySelectedViewConditionAction.text=ausgew\u00E4hlte Knoten filtern ApplyToVisibleAction.text=auf gefilterte Knoten anwenden as_parent=Wie \u00FCbergeordneter Knoten AskForHelp.text=Hilfe im Forum anfordern AssignAttributesAction.text=Attribute suchen und ersetzen\u2026 attachments=Anh\u00E4nge attribute_delete=&Alle Werte l\u00F6schen attribute_delete_value=&Diesen Wert l\u00F6schen attribute_font_size.tooltip=Schriftgr\u00F6\u00DFe f\u00FCr Attribute attribute_list_box_label_text=Vorhandene Werte attribute_name=Name des Attributes attribute_name_or_value=Name oder Wert des Attributs attribute_options=Attributsoptionen attribute_replace=&Ersetzen durch attribute_top=Alle bekannten Attribute der geladenen Mindmaps attribute_value=Wert des Attributes attributes=Eigenschaften attributes_AddAttributeAction.text=Attribut im Dialog einf\u00FCgen\u2026 attributes_adding_empty_attribute_error=Der Attributname darf nicht leer sein attributes_all=Alle Attribute attributes_assign_dialog=Attribute zuweisen attributes_attribute=Attribute attributes_close=Schlie\u00DFen attributes_deselect_all=Nichts attributes_dialog_title=Attributverwaltung attributes_edit=Bearbeiten attributes_edit.tooltip=Attribute bearbeiten attributes_for_selected=A&usgew\u00E4hlte Knoten attributes_for_visible=Alle &sichtbaren Knoten attributes_import=&Importieren attributes_import.tooltip=Attribute aus anderen geladenen Mindmaps importieren attributes_no_import_candidates_found=Keine neue Attribute gefunden attributes_popup_delete=Entfernen attributes_popup_down=Nach Unten attributes_popup_edit=Bearbeiten attributes_popup_hide=Verstecken attributes_popup_new=Neues Attribut attributes_popup_optimal_width=Optimale Breite attributes_popup_up=Nach Oben attributes_refresh=Aktualisieren attributes_RemoveAllAttributesAction.text=Alle Attribute entfernen attributes_RemoveFirstAttributeAction.text=Erstes Attribut entfernen attributes_RemoveLastAttributeAction.text=Letztes Attribut entfernen attributes_restricted_attributes.tooltip=Auswahl auf eine vordefinierte Liste von Attributen begrenzen attributes_restricted_values.tooltip=M\u00F6gliche Werte f\u00FCr dieses Attribut beschr\u00E4nken attributes_restriction=Beschr\u00E4nkte Menge attributes_select_all=Alles attributes_select_all.tooltip=Alle ausw\u00E4hlen bzw. Auswahl l\u00F6schen attributes_show=Zeigen attributes_skip_root=&Ohne Wurzelknoten attributes_visible=Auswahl f\u00FCr Ansicht -> Attribute -> nur ausgew\u00E4hlte anzeigen attributes_visible.tooltip=Auswahl f\u00FCr Ansicht -> Attribute -> nur ausgew\u00E4hlte anzeigen automatic_layout=Automatisches Layout (hierarchiebezogen) automatic_layout_disabled=deaktiviert automatically_save_message=Mindmap wurde automatisch unter dem Dateinamen {0} gespeichert\u2026 AutomaticEdgeColor.FOR_BRANCHES=f\u00FCr Zweige AutomaticEdgeColor.FOR_COLUMNS=f\u00FCr Spalten AutomaticEdgeColor.FOR_LEVELS=f\u00FCr Ebenen AutomaticEdgeColor.ON_BRANCH_CREATION=beim Erstellen eines Zweiges AutomaticEdgeColorHookAction.text=Automatische Linienfarbe AutomaticLayout.ALL=f\u00FCr alle Knoten AutomaticLayout.HEADINGS=f\u00FCr Knoten, ohne letzte Ebene AutomaticLayout.level=Level {0} AutomaticLayout.level.root=Wurzel-Knoten AutomaticLayoutAction.text=Automatisches Layout AutomaticLayoutAction.tooltip=Formatiert die Knoten entsprechend den Vorgaben f\u00FCr das Automatische Layout AutomaticLayoutControllerAction.ALL.text=f\u00FCr alle Knoten AutomaticLayoutControllerAction.COLUMNS.text=f\u00FCr Spalten AutomaticLayoutControllerAction.HEADINGS.text=f\u00FCr alle Knoten, mit Ausnahme der letzten Ebene AutomaticLayoutControllerAction.null.text=deaktiviert BackAction.text=Sprung zum Vorg\u00E4nger-Knoten BackAction.tooltip=Springt zum vorhergehenden Knoten aus der
Selektions-Historie der aktuellen Mindmap background=Hintergrund basics=Grundlagen bitmaps=Bitmaps black=Schwarz BlinkingNodeHookAction.text=Blinkend BlinkingNodeHookAction.tooltip=Die Knotenschrift \u00E4ndert laufend die Farbe. Diese Funktion sollte nicht bei vielen Knoten angewendet werden und nicht zusammen mit anderen Formatierungseigenschaften bei einem Knoten blue=Blau BoldAction.text=Fett boldify_branch=Zweig Fett branch=Zweig browse=Durchsuchen\u2026 calendar_attributes_panel=Kalender und Attribute calendar_panel=Kalender can_not_clone_encrypted_node=Verschl\u00FCsselte Knoten k\u00F6nnen nicht geklont werden can_not_connect_to_info_server=Verbindung zum Informations-Server nicht m\u00F6glich can_not_delete_predefined_style=Standard-Knotenstile k\u00F6nnen nicht gel\u00F6scht werden can_not_delete_root_style=Der Stil des Wurzel-Knotens kann nicht gel\u00F6scht werden can_not_delete_style_group=Knotenstil-Gruppe kann nicht gel\u00F6scht werden can_not_encrypt_cloned_node=Geklonte Knoten k\u00F6nnen nicht verschl\u00FCsseln werden can_not_save_key_set=Kann Tastaturk\u00FCrzel nicht speichern cancel=&Abbrechen CancelAction.text=Abbrechen cannot_add_parent_diff_parents=Alle Knoten m\u00FCssen zum selben Oberknoten geh\u00F6ren, um diese Funktion auszuf\u00FChren. cannot_add_parent_to_root=Der Wurzel-Knoten kann nicht ver\u00E4ndert werden. cannot_delete_root=Der Wurzel-Knoten kann nicht gel\u00F6scht oder ausgeschnitten werden. cannot_join_nodes_with_children=Knoten k\u00F6nnen nicht mit ihren Unterknoten verbunden werden cannot_move_into_child_node=Kann nicht in den untergeordneten Knoten verschoben werden cannot_move_to_child=Ein Knoten kann nicht auf seine Unterknoten verschoben werden. CenterAction.text=Zentrieren ChangeConnectorArrowsAction.backward.text=Pfeilspitze hinten ChangeConnectorArrowsAction.both.text=Pfeilspitze vorne und hinten ChangeConnectorArrowsAction.forward.text=Pfeilspitze vorne ChangeConnectorArrowsAction.none.text=Keine Pfeilspitzen ChangeConnectorArrowsAction.text=\u00C4nderung der Verbindungspfeile ChangeConnectorShapeAction.CUBIC_CURVE.text=Kurve ChangeConnectorShapeAction.EDGE_LIKE.text=wie Knotenlinie ChangeConnectorShapeAction.LINE.text=Gerade ChangeConnectorShapeAction.LINEAR_PATH.text=Linearer Pfad ChangeNodeLevelLeftsAction.text=Nach links schieben ChangeNodeLevelLeftsAction.tooltip=Links des Wurzelknotens werden die Knoten zu Unterknoten ihrer ehemals benachbarten Knoten. Rechts des Wurzelknotens rutschen sie eine Hierarchieebene h\u00F6her. Direkt rechts vom Wurzelknoten tauschen sie die Seite nach links. ChangeNodeLevelRightsAction.text=Nach rechts schieben ChangeNodeLevelRightsAction.tooltip=Rechts des Wurzelknotens werden die Knoten zu Unterknoten ihrer ehemals benachbarten Knoten. Links vom Wurzelknoten rutschen sie eine Hierarchieebene h\u00F6her. Direkt links vom Wurzelknoten tauschen sie die Seite nach rechts. choose_cloud_color=Farbe der Wolke ausw\u00E4hlen: choose_edge_color=Randfarbe w\u00E4hlen choose_map_background_color=Hintergrundfarbe der Mindmap ausw\u00E4hlen choose_node_background_color=Hintergrundfarbe des Knotens ausw\u00E4hlen: choose_node_color=Knotenfarbe ausw\u00E4hlen: ClearLinkAnchorAction.text=L\u00F6sche Anker ClearLinkAnchorAction.tooltip=l\u00F6schen des Hyperlink-Bezugspunktes CloneAction.text=Klon einf\u00FCgen close_btn=S&chlie\u00DFen CloseAction.text=Aktuelle Mindmap schlie\u00DFen CloseAllMapsAction.text=Alle Mindmaps schlie\u00DFen CloseAllOtherMapsAction.text=Alle anderen Mindmaps schlie\u00DFen cloud=Wolke cloud_shapes=Wolkenformen CloudAction.text=Wolke um Knotenauswahl erzeugen CloudColorAction.text=Wolkenfarbe\u2026 CloudShapeAction.ARC.text=Bogen CloudShapeAction.RECT.text=Rechteck CloudShapeAction.ROUND_RECT.text=Abgerundetes Rechteck CloudShapeAction.STAR.text=Stern collection.copy.presentation=Pr\u00E4sentation kopieren collection.copy.slide=Folie kopieren collection.delete=L\u00F6schen collection.down=Nach Unten collection.move=Bewegen collection.moveTo=Zu Position bewegen collection.new.presentation=Neue Pr\u00E4sentation collection.new.slide=Neue Folie collection.up=Nach oben ColorProperty.ResetColor=Farbe zur\u00FCcksetzen combined=Kombiniert condition=Bedingung confirmation=Sicherheitsbest\u00E4tigung connector=Verbindung connector_arrows=Verbindungspfeile connector_label=Beschriftung der Verbindung connector_lines=Verbindung & Linien connector_shapes=Verbindung & Formen ConnectorColorAction.text=Farbe der Verbindung\u2026 contact=Kontakt controls=Symbolleisten ConvertCloneToIndependentNodeAction.text=Klonen aufheben copy_name={0} (Kopie) CopyAction.text=Kopieren CopyAction.tooltip=Kopiert den markierten Knoten und seine untergeordneten Knoten CopyAttributes.text=Attribute kopieren CopyIDAction.text=Knoten-ID kopieren CopyMapStylesAction.text=Knotenstile kopieren von\u2026 CopyNodeURIAction.text=Knoten-URI kopieren copyright=Copyright \u00A9 2000-2019 Freeplane Entwicklungsteam und andere CopySingleAction.text=Kopieren (einzeln) CopySingleAction.tooltip=Kopiert nur den markierten Knoten CopyStyleExtensionsAction.text=Erweiterungen aus Knoten-Stil einf\u00FCgen CopySuggestedReferenceAction.text=Knotenreferenz kopieren corrupt_map=Die Datei ist besch\u00E4digt CreateConjunctConditionAction.text=Und CreateDisjunctConditionAction.text=Oder CreateNotSatisfiedConditionAction.text=Nicht current_dir=Mindmaps CutAction.text=Ausschneiden decrease_branch_font_size=S&chrift des Zweiges verkleinern DecreaseNodeFontAction.text=Kleinere Schrift default=Standard defaultAuxiliaryWordList=ein, eine, der, die, das DefaultColorAction.text=Standardfarbe defaultstyle.attributes=Attribute defaultstyle.details=Details defaultstyle.floating=Schwebender Knoten defaultstyle.note=Notiz delete=&Entfernen delete_child=Knoten l\u00F6schen DeleteAction.text=Knoten l&\u00F6schen DeleteConditionAction.text=Entfernen DeleteDetailsAction.text=Knotendetails l\u00F6schen DeleteLevelStyleAction.text=Entferne Ebene vom automatischen Knotenstil DeleteStyleAction.text=Entferne Knotenstil DeleteUserStyleAction.text=Entferne benutzerdefinierten Knotenstil dialect_info.app=Die Mindmap-Datei {0} wurde mit dem Programm {1} erzeugt. dialect_info.later_version=Die Mindmap-Datei {0} wurde mit einer sp\u00E4teren Version dieses Programms erzeugt. dialect_info.unknownApp=Die eingelesene Mindmap wurde mit einem unbekannten Programm erzeugt. dialect_info.unknownURL=Die Webseite zu diesem Programm ist unbekannt. dialect_info.url=F\u00FCr weitere Informationen die Programm-Webseite {0} aufrufen. dialect_info.warning=Freeplane kann die Datei m\u00F6glicherweise nicht korrekt \u00F6ffnen, speichern oder anzeigen. DirectHtmlFlavorHandler=HTML als einzelnen Knoten DocumentationAction.text=Dokumentation down=Ab DownConditionAction.text=Ab download=Download dropped_file_error=Konnte die abgelegte Datei(en) nicht \u00F6ffnen. Grund: {0} edge=Linie edge_is_formatted_by_style=Die Eigenschaften der Knotenlinie werden durch den Knotenstil festgelegt. Zum \u00C4ndern bearbeiten Sie den entsprechenden Knotenstil. edge_style=Linienform edge_width=Linienst\u00E4rke edge_widths=Kantenbreiten EdgeColorAction.text=Randlinienfarbe\u2026 EdgeProperties=Linieneigenschaften EdgeStyleAction.bezier.text=geschwungen (Bezier) EdgeStyleAction.bezier.tooltip=Stellt die Verbindung zwischen den Knoten als geschwungene Linie dar. EdgeStyleAction.hide_edge.text=Linie verstecken EdgeStyleAction.hide_edge.tooltip=Wenn der Knoten selektiert ist, wird die
Verbindung zum Oberknoten gepunktet dargestellt.
Ist er nicht selektiert, so wird die Linie ausgeblendet. EdgeStyleAction.horizontal.text=horizontal EdgeStyleAction.horizontal.tooltip=Stellt die Verbindung zwischen den Knoten als horizontale und vertikale Linien dar. EdgeStyleAction.linear.text=gerade EdgeStyleAction.linear.tooltip=Stellt die Verbindung zwischen den Knoten als gerade Linie dar. EdgeStyleAction.sharp_bezier.text=spitz und geschwungen EdgeStyleAction.sharp_bezier.tooltip=Stellt die Verbindung zwischen den Knoten als geschwungene, spitz zulaufende Linie dar. EdgeStyleAction.sharp_linear.text=gerade und spitz EdgeStyleAction.sharp_linear.tooltip=Stellt die Verbindung zwischen den Knoten als gerade, spitz zulaufende Linie dar. EdgeStyleAsParentAction.text=wie \u00FCbergeordneter Knoten EdgeStyleAsParentAction.tooltip=\u00DCbernimmt die Darstellung des Linientyps von seinem Oberknoten. EdgeWidthAction_width_parent.text=geerbt EdgeWidthAction_width_thin.text=d\u00FCnn edit=&Bearbeiten edit.decision=HTML-Editor edit.edit_rich_text=Wollen Sie Formatierungen (fett, kursiv, etc.) benutzen? edit_details=Knotendetails bearbeiten edit_end_label=Verbindung
Beschriftung edit_label_font_family=Schriftart edit_label_font_size=Schriftgr\u00F6\u00DFe edit_link_manually=Link manuell bearbeiten\u2026 edit_long_node=Knoten mit Fliesstext bearbeiten edit_middle_label=Text in der Mitte edit_node=Knoten bearbeiten edit_note=Notiz bearbeiten edit_source_label=Text am Anfang edit_target_label=Text am Ende edit_transparency_label=Transparenz edit_width_label=Breite EditAction.text=Knoten-Text in-line bearbeiten EditAttributesAction.text=Attribute in-line bearbeiten EditDetailsAction.text=Knotendetails in-line bearbeiten EditDetailsInDialogAction.text=Knotendetails im Editor bearbeiten editEdgeColors=Rahmenfarbe \u00E4ndern EditFilterAction.text=Filter verwalten EditLongAction.text=Knoten-Text im Editor bearbeiten EditNoteInDialogAction.text=Notiz im Editor bearbeiten EditScript=Skript bearbeiten\u2026 EditStylesAction.text=Knotenstile bearbeiten elements=Elemente EncryptedMap.text=Neue verschl\u00FCsselte Mindmap\u2026 EncryptedMap.tooltip=Neue verschl\u00FCsselte Mindmap encryption=Verschl\u00FCsselung enter_base_url=Freeplane wird relative Links einf\u00FCgen. Bitte geben sie die Basis-URL an. enter_command=Befehl eingeben enter_condition_name=Name f\u00FCr neue Bedingung zuweisen enter_confirms=&Eingabetaste best\u00E4tigt enter_keyset_name=Bitte geben sie einen Namen f\u00FCr die Tastaturk\u00FCrzel-Sammlung an enter_map_url=Bitte die URL der Mindmap eingeben enter_new_style_name=Name f\u00FCr neuen Knotenstil enter_node_id_or_reference=Knoten-ID oder Referenz eingeben enter_zoom=Vergr\u00F6\u00DFerung eingeben EnterPassword.text=Passwort eingeben error=Fehler error_applying_template=Fehler beim Anwenden des XSL-Templates. error_creating_directory=Beim Erstellen des Verzeichnisses f\u00FCr den Export ist ein Fehler aufgetreten. error_in_template=Fehler in der Default-Mindmap-Datei {0} gefunden. Bitte diese Datei l\u00F6schen. errornumber={0} Fehler ExecuteScript.available_modes.tooltip={0} ist verf\u00FCgbar f\u00FCr ExecuteScript.script=Skript ExecuteScriptError.text=Fehler beim Ausf\u00FChren des Skripts:\n{0} ExecuteScriptForAllNodes.text=Alle Skripte ausf\u00FChren ExecuteScriptForSelectionAction.text=Skripte des gew\u00E4hlten Knotens ausf\u00FChren ExecuteScriptOnSelectedNode.text={0} f\u00FCr alle ausgew\u00E4hlten Knoten ausf\u00FChren ExecuteScriptOnSelectedNodeRecursively.text={0} rekursiv f\u00FCr ausgew\u00E4hlte Knoten ausf\u00FChren ExecuteScriptOnSingleNode.text={0} f\u00FCr einen ausgew\u00E4hlten Knoten ausf\u00FChren ExecuteScripts.noScriptsAvailable=Kein Skript vorhanden ExecuteScripts.text=Skripte ExecuteScriptSecurityError.text=Beim Ausf\u00FChren des Skripts ist ein Fehler aufgetreten:\n{0} export=Exportieren export_failed=Exportieren fehlgeschlagen export_pdf_text=Portables Dokumentenformat (PDF) export_svg_text=Skalierbare Vektorgrafik (SVG) ExportAction.text=Mindmap exportieren\u2026 ExportAllPresentationsAction.text=Alle Pr\u00E4sentationen als PNG-Bild exportieren ExportBranchAction.text=Zweig in neue Mindmap verschieben\u2026 ExportBranchesAction.text=Zweige exportieren.\u2026 ExportBranchToHTMLAction.text=Zweig als HTML exported_file={0} Datei ExportPdf.text=PDF ExportPresentationAction.text=Aktuelle Pr\u00E4sentation als PNG-Bild exportieren ExportSvg.text=SVG ExportToHTMLAction.text=HTML ExportToImage.jpg.text=JPEG ExportToImage.png.text=PNG ExportToOoWriter.text=LibreOffice Writer Dokument\u2026 extension_menu=&Stile ExternalImage_popupMenu_Change=\u00C4ndern\u2026 ExternalImage_popupMenu_Open=im externen Bildbetrachter \u00F6ffnen ExternalImage_popupMenu_Remove=Entfernen ExternalImage_popupMenu_ResetZoom=Zoom zur\u00FCcksetzen ExternalImageAddAction.text=Bild hinzuf\u00FCgen\u2026 ExternalImageChangeAction.text=Bild \u00E4ndern\u2026 ExternalImageRemoveAction.text=Bild entfernen ExtractLinkFromTextAction.text=Link aus Knotentext erzeugen ExtractLinkFromTextAction.tooltip=Erzeugt aus einem Knotentext, der eine g\u00FCltige URL enth\u00E4lt
(z.B. http://www.google.de) einen Hyperlink extras=&Werkzeuge f_button_unassigned= FaqOpenURLAction.text=FAQ (H\u00E4ufig gestellte Fragen) file=&Datei file_already_exists=Die Datei {0} existiert bereits. Soll sie \u00FCberschrieben werden? file_management=Dateiverwaltung file_not_accessible=Auf die Datei {0} kann nicht zugegriffen werden file_not_found=Datei {0} nicht gefunden FileListFlavorHandler=Links zu Dateien FileProperties_BranchLeafCount=Anzahl der Knoten in letzter Ebene des selektierten Zweiges: FileProperties_BranchNodeCount=Anzahl der Knoten in selektierten Zweigen: FileProperties_ChangesSinceLastSave=\u00C4nderungen seit dem letztem Speichern: FileProperties_FileName=Dateiname: FileProperties_FileSaved=Datei zuletzt gespeichert: FileProperties_FileSize=Dateigr\u00F6\u00DFe: FileProperties_MainBranchCount=Anzahl der Hauptzweige: FileProperties_NeverSaved=Nicht gespeichert FileProperties_NodeChildCount=Anzahl der Unterknoten der selektierten Knoten: FileProperties_NodeSelectionCount=Anzahl der selektierten Knoten: FileProperties_TotalFilteredCount=Anzahl der Knoten, die Filterkriterien erf\u00FCllen: FileProperties_TotalLeafCount=Gesamtzahl der Knoten auf der untersten Ebene: FileProperties_TotalNodeCount=Gesamtzahl der Knoten: FilePropertiesAction.text=Mindmap-Statistik\u2026 FileRevisionsDialog.cancel=Abbru&ch FileRevisionsDialog.file_last_modified=Zeitstempel FileRevisionsDialog.file_name=Dateiname FileRevisionsDialog.file_size=Bytes FileRevisionsDialog.open=&\u00D6ffnen FileRevisionsDialog.open.tooltip=Datei \u00F6ffnen, selbst wenn diese veraltet ist FileRevisionsDialog.question=Revisionen von {0} gefunden FileRevisionsDialog.restore=Wiederherstellen FileRevisionsDialog.restore.tooltip={0} durch {1} ersetzen FileRevisionsDialog.title=Dateirevisionen filter=F&ilter filter_add=&Hinzuf\u00FCgen filter_alias=Alias filter_and=&Und filter_any_text=Text, Details oder Notiz filter_clone_snapshot=Klone der Auswahl (Filter) filter_clones=Klone der Auswahl filter_conditions=Filter filter_contains=enth\u00E4lt filter_created_after=erzeugt nach dem filter_created_before=erzeugt vor dem filter_delete=&Entfernen filter_deny=Ablehnen filter_deny.tooltip=Filterbedingung umkehren filter_details=Details filter_dialog=Filter definieren filter_does_not_exist=fehlt filter_edit_description=Filterliste bearbeiten filter_enter_value=Wert eingeben filter_even_level=Knoten einer geraden Ebene filter_exist=existiert filter_global=Global zug\u00E4nglicher Knoten filter_icon=Icon filter_is_equal_to=ist gleich filter_is_not_equal_to=ist ungleich filter_leaf=Knoten der untersten Ebene filter_link=Hyperlink filter_match_approximately=\u00C4hnlichkeit filter_match_approximately.tooltip=Legt fest, ob bei der Auswertung des Filterkriteriums
auch das Auffinden \u00E4hnlicher Ausdr\u00FCcke zul\u00E4ssig ist, z.B. w\u00FCrde das Suchen nach 'files' auch 'flies' finden filter_match_case=&Gro\u00DF-/Kleinschreibung filter_match_case.tooltip=Ob bei der Auswertung Gro\u00DF- und Kleinschreibung beachtet werden soll. filter_modified_after=ver\u00E4ndert nach dem filter_modified_before=ver\u00E4ndert vor dem filter_no_filtering=Kein Filter angewendet filter_node=Knotentext filter_node_level=Knoten-Ebene filter_not=&Nicht filter_note=Notiz filter_odd_level=Knoten auf gleicher Ebene filter_or=Ode&r filter_parent=Text des Oberknotens filter_periodic_level=Periodisch filter_priority=Priorit\u00E4t filter_regexp_matches=passt auf regul\u00E4re Ausdr\u00FCcke filter_reminder=Erinnerung filter_reminder_after=f\u00E4llig nach filter_reminder_before=f\u00E4llig vor filter_reminder_executed=bereits ausgef\u00FChrt filter_reminder_later=noch nicht f\u00E4llig filter_root=Wurzel-Knoten filter_script=Skript-Filter filter_select=&Ausw\u00E4hlen filter_selected_node_view=Selektierte Knoten filter_selected_node_view_snapshot=Gespeicherte Auswahl filter_starts_with=Startet mit filter_style=Knotenstil filter_time=\u00C4nderungstag FilterCondition=Filterbedingungen filterConditions=Benutzerdefinierte Filter filterConditions.noActions=keine gespeicherten Filter filters_not_loaded=Filter konnte nicht geladen werden, die Datei ist besch\u00E4digt find=Finden find_what=Was soll gesucht werden? FindAction.text=Suchen\u2026 FindNextAction.text=Suche vorw\u00E4rts FindPreviousAction.text=Suche r\u00FCckw\u00E4rts fit_background_to_page=Hintergrundbild auf Seite einpassen fit_map_to_page=Mindmap auf &Seite einpassen fit_map_to_page_height=Mindmap auf Seiten&h\u00F6he einpassen fit_map_to_page_width=Mindmap auf Seiten&breite einpassen FitToPage.text=Auf Seite einpassen FitToPage.tooltip=Stellt die Vergr\u00F6\u00DFerung so ein, dass die gesamte Mindmap in das aktuellen Fenster passt. fold=Falten / Entfalten FoldAllAction.text=Gesamten Zweig einfalten FoldAllAction.tooltip=Faltet alle Unterknoten des selektierten Zweigs zu FoldOneLevelAction.text=Letzte Ebene falten FoldOneLevelAction.tooltip=Faltet letzten Unterknoten des selektierten Zweigs um eine Ebene zu follow_clone=In "{0}" follow_graphical_link=Gehe zu ''{0}'' FollowLinkAction.text=Hyperlink folgen font=Schriftart FontFamilyAction.text=Schriftart FontSizeAction.text=Schriftgr\u00F6\u00DFe format=&Format format_invalid_pattern=kein g\u00FCltiges Format format_menu_cloud_shapes=Wolke erstellen oder anpassen format_menu_edge_styles=Linienf&ormen format_menu_edge_widths=&Linienst\u00E4rke format_panel=Format FormatCopy.text=Knotenstil kopieren FormatCopy.tooltip=Kopiert die Formatierung des Knotens in die Zwischenablage FormatPaste.text=Knotenstil einf\u00FCgen FormatPaste.tooltip=F\u00FCgt die zwischengespeicherte Formatierung in den Knoten ein formats_not_loaded=Die Formate konnten nicht geladen werden, da die Datei besch\u00E4digt ist formatting=Formatierung formula.ClearDependenciesAction.text=Abh\u00E4ngigkeiten l\u00F6schen formula.error.attributeValueIsNull=Das Attribut "{0}" hat den Wert NULL (ist nicht definiert). formula.error.circularReference=Zirkelbezug: Die Formel im Knoten {0} ''{1}'' nimmt Bezug auf sich selbst. formula.EvaluateAllAction.text=Alle Formeln auswerten formula.EvaluateAllAction.tooltip=Wertet alle Formeln der aktuellen Mindmap aus formula.menuname=&Formeln formula.TraceDependentsAction.text=Abh\u00E4ngigkeiten verfolgen formula.TracePrecedentsAction.text=Pr\u00E4zedenzf\u00E4lle verfolgen formula_editor=Formel bearbeiten formula_latex=Formel (LaTeX) ForwardAction.text=Sprung zum Nachfolger-Knoten ForwardAction.tooltip=Springt zum n\u00E4chstfolgenden Knoten der
Selektions-Historie der aktuellen Mindmap FreeNodeAction.text=Frei positionierter Knoten Freeplane.progress.buildScreen=Bildschirm aufbauen\u2026 Freeplane.progress.createController=Controller erzeugen\u2026 Freeplane.progress.createInitialMode=Initialen Modus erzeugen\u2026 Freeplane.progress.endStartup=Start beendet. Freeplane.progress.gettingPreferenceDirectories=Ermittle Einstellungsverzeichnisse\u2026 Freeplane.progress.gettingPreferences=Lese Voreinstellungen\u2026 Freeplane.progress.loadMaps=Mindmaps laden\u2026 Freeplane.progress.propagateLookAndFeel=Erscheinungsbild \u00FCbernehmen\u2026 Freeplane.progress.settingPreferences=Voreinstellungen setzen\u2026 Freeplane.progress.startCreateController=Controller starten\u2026 Freeplane.progress.updateLookAndFeel=Erscheinungsbild aktualisieren\u2026 freeplane_reverted=Freeplane_Wiederhergestellt_ FreeplaneHandbook.text=Freeplane-Handbuch FreeplaneHelpStarter.text=Hilfeseiten\u2026 FreeplaneHelpStarter.tooltip=Freeplane Hilfe general_settings=Allgemeine Einstellungen globally_accessible=Global zug\u00E4nglich goto=Gehe zu goto.noActions=Keine Zielknoten GotoLinkNodeAction.text=Folge Link GotoNodeAction.text=Gehe zu Knoten \u2026 GrabKeyDialog.common.cancel=Abbrechen GrabKeyDialog.common.ok=OK GrabKeyDialog.grab-key.assigned-to=Zugewiesen zu GrabKeyDialog.grab-key.assigned-to.none=Nicht zugewiesen GrabKeyDialog.grab-key.clear=L\u00F6schen GrabKeyDialog.grab-key.remove=Entfernen GrabKeyDialog.grab-key.remove-ask=Sind Sie sicher, dass Sie diese Tastenzuweisung entfernen m\u00F6chten? GrabKeyDialog.grab-key.title=Neues Tastaturk\u00FCrzel zuweisen green=Gr\u00FCn grouping=Gruppierung help=&Hilfe help_misc=Verschiedenes HideableAction.tooltip=Markiert jeden ge\u00E4nderten Knoten mit einer definierbaren Hintergrundfarbe. HideAllAttributesAction.text=Alle verbergen HierarchicalIcons2Action.text=Schnittmenge der Icons aller Unterknoten bilden HierarchicalIconsAction.text=Vereinigung der Icons aller Unterknoten bilden HierarchicalIconsAction.tooltip=Oberknoten zeigt Icons der Unterknoten verkleinert an. home=Home hot_keys=Tastaturk\u00FCrzel hot_keys_table=Tabelle der Tastaturk\u00FCrzel HotKeyInfoAction.text=Tastenk\u00FCrzel-\u00DCbersicht html_export_based_on_headings=HTML-Export - \u00DCberschriftenbasiert html_export_fold_all=HTML-Export - alles eingefaltet html_export_fold_currently_folded=HTML-Export - mit aktueller Faltung html_export_no_folding=HTML-Export - ohne Faltung html_problem=Kann HTML nicht verarbeiten

{0} icon_0%=&0% icon_100%=&100% icon_25%=&25% icon_50%=&50% icon_75%=&75% icon_addition=Addition icon_attach=&Hierhin sehen icon_audio=Audio icon_back=&Zur\u00FCck icon_bee=&Freeplane icon_bell=&Erinnerung icon_bookmark=&Hervorragend icon_broken-line=&Unterbrochen icon_button_cancel=&Nicht OK icon_button_ok=&OK icon_calendar=&Termin icon_checked=Markiert icon_clanbomber=&Gef\u00E4hrlich icon_clock=&Zeit icon_clock2=&Erinnerung icon_closed=&Kein Eingang icon_decrypted=N&icht verschlossen icon_desktop_new=&Nicht vergessen icon_division=Division icon_down=Nach &Unten icon_edit=&Verfeinern icon_encrypted=&Verschlossen icon_executable=Ausf\u00FChrbar icon_family=&Familie icon_fema=Mann und Frau icon_female1=&Frau1 icon_female2=&Frau2 icon_females=Fraue&n icon_flag=&Rote Flagge icon_flag-black=&Schwarze Flagge icon_flag-blue=&Blaue Flagge icon_flag-green=&Gr\u00FCne Flagge icon_flag-orange=&Orangefarbene Flagge icon_flag-pink=&Pinkfarbene Flagge icon_flag-yellow=G&elbe Flagge icon_folder=&Ordner icon_forward=&Vorw\u00E4rts icon_freemind_butterfly=Free&Mind icon_full-0=Priorit\u00E4t &0 icon_full-1=Priorit\u00E4t &1 icon_full-2=Priorit\u00E4t &2 icon_full-3=Priorit\u00E4t &3 icon_full-4=Priorit\u00E4t &4 icon_full-5=Priorit\u00E4t &5 icon_full-6=Priorit\u00E4t &6 icon_full-7=Priorit\u00E4t &7 icon_full-8=Priorit\u00E4t &8 icon_full-9=Priorit\u00E4t &9 icon_go=&Gr\u00FCne Ampel icon_gohome=&Home icon_group=Gru&ppe icon_help=&Frage icon_hourglass=&Warten icon_icon_not_found=Das Icon wurde nicht gefunden icon_idea=&Idee icon_image=Bild icon_info=I&nfo icon_internet=Internet icon_internet_warning=Internet-Warnung icon_kaddressbook=&Telefon icon_kmail=&E-Mail icon_knotify=&Musik icon_korn=&Postkasten icon_ksmiletris=Ich bin &zufrieden icon_launch=&Abflug icon_licq=&S\u00FC\u00DF icon_list=&Liste icon_Mail=&Post icon_male1=&Mann1 icon_male2=&Mann2 icon_males=M\u00E4nne&r icon_menu=I&cons icon_messagebox_warning=&Wichtig icon_mindmap=Mindmap icon_multiplication=Multiplikation icon_narrative=Erz\u00E4hlung icon_negative=&Negativ icon_neutral=N&eutral icon_password=&Passwort icon_pencil=Noch zu &verfeinern icon_penguin=&Linux icon_positive=&Positiv icon_prepare=G&elbe Ampel icon_revision=Revision icon_revision-green=Revision (gr\u00FCn) icon_revision-pink=Revision (pink) icon_revision-red=Revision (rot) icon_smiley-angry=Smiliey (w\u00FCtend) icon_smiley-neutral=Smiley (neutral) icon_smiley-oh=Smiley (\u00FCberrascht) icon_smily_bad=Smiley (nicht gut) icon_stop=Ampel (rot) icon_stop-sign=Zeichen (Stopp) icon_subtraction=Mathe (Subtraktion) icon_unchecked=Nicht markiert icon_up=Nach &Oben icon_user_icon=&Benutzerdefinierte Icons icon_very_negative=&Sehr Negativ icon_very_positive=Se&hr Positiv icon_video=&Video icon_wizard=&Magisch icon_xmag=Noch zu &diskutieren icon_yes=&Wichtig IconGroupPopupAction.arrows.text=Pfeile IconGroupPopupAction.docs_folders.text=Dokumente & Ordner IconGroupPopupAction.flags.text=Flaggen IconGroupPopupAction.math.text=Mathematisch IconGroupPopupAction.media.text=Medien IconGroupPopupAction.miscellaneous.text=Verschiedenes IconGroupPopupAction.nature.text=Natur IconGroupPopupAction.numbers.text=Nummern IconGroupPopupAction.office.text=B\u00FCro IconGroupPopupAction.people.text=Personen IconGroupPopupAction.rating.text=Bewertung IconGroupPopupAction.signs.text=Zeichen IconGroupPopupAction.smiley.text=Smiley IconGroupPopupAction.time.text=Zeit IconGroupPopupAction.user.text=Benutzerdefinierte Icons IconProgressExtended10Action.text=Erweiterte Fortschrittsanzeige (10%) IconProgressExtended10Action.tooltip=F\u00FCgt eine Fortschrittsanzeige als Bild ein, die bei einem Doppelklick darauf um 10% erh\u00F6ht wird.
Strg + Doppelklick reduziert den Wert, bzw entfernt bei 0% die Anzeige. IconProgressExtended25Action.text=Erweiterte Fortschrittsanzeige (25%) IconProgressExtended25Action.tooltip=F\u00FCgt eine Fortschrittsanzeige als Bild ein, die bei einem Doppelklick darauf um 25% erh\u00F6ht wird.
Strg + Doppelklick reduziert den Wert, bzw entfernt bei 0% die Anzeige. IconProgressIconDownAction.text=Fortschritt reduzieren IconProgressIconDownAction.tooltip=Reduziert/ F\u00FCgt ein/ Entfernt Fortschritts-Icon (100% -> 75% -> 50% -> 25% -> 0% -> entfernen). IconProgressIconUpAction.text=Fortschritt erh\u00F6hen IconProgressIconUpAction.tooltip=Erh\u00F6ht/ F\u00FCgt Fortschritts-Icon ein (0% -> 25% -> 50% -> 75% -> 100% + OK). IconProgressRemoveAction.text=Entferne Fortschritts-Icon IconProgressRemoveAction.tooltip=Entfernt Fortschritts-Icon und erweitertes Fortschritts-Icon. icons=Icons IconSelectionPlugin.text=Icon aus Tabelle w\u00E4hlen\u2026 IconSelectionPlugin.tooltip=Ein Fenster erscheint, in dem ein Icon ausgew\u00E4hlt werden kann. image_covertLink=Link in Bild umwandeln ImageFlavorHandler=Bild (als separate Datei) images=Bilder import=Zweig i&mportieren import_export=Konvertieren import_linked_branch_no_link=Der ausgew\u00E4hlte Knoten ist mit keiner anderen Freeplane-Datei verkn\u00FCpft, die importiert werden k\u00F6nnte. ImportAction.text=Importieren ImportBranchAction.text=aus Datei\u2026 ImportExplorerFavoritesAction.text=aus Explorer-Favoriten\u2026 ImportFolderStructureAction.text=aus Ordnerstruktur\u2026 ImportLinkedBranchAction.text=aus Link ImportLinkedBranchWithoutRootAction.text=Verkn\u00FCpfter Zweig ohne Wurzel\u2026 ImportMindmanagerFiles.text=aus MindManager X5 Mindmap\u2026 ImportXmlFile.text=XML-Datei importieren increase_branch_font_size=Schrift des Zweigs vergr\u00F6ssern IncreaseNodeFontAction.text=Gr\u00F6\u00DFere Schrift internal_error.tooltip=Interne Fehler sind aufgetreten. Details im Logfile {0}. invalid_export_file=Ung\u00FCltiger Dateiname f\u00FCr den Export invalid_file_msg=Konnte die Datei {0} nicht finden invalid_or_ambiguous_reference=Ung\u00FCltige oder mehrdeutige Referenz "{0}" invalid_uri={0} ist keine g\u00FCltige URI invalid_url=Konnte keine g\u00FCltige URL erstellen invalid_url_msg=Konnte keine g\u00FCltige URL erstellen f\u00FCr {0} ItalicAction.text=Kursiv italicise_branch=Zweig kursiv java_version=Java-Version: {0} JoinNodesAction.separator.format=Verschmelze Knoten mit "{0}" lastOpenedMaps=Zuletzt ge\u00F6ffnete Mindmaps lastOpenedMaps.noActions=Keine Mindmaps im Verlauf latex_editor=LaTeX-Formel bearbeiten LatexDeleteLatexAction.text=LaTeX Formel entfernen LatexEditLatexAction.text=LaTeX-Formel bearbeiten\u2026 LatexInsertLatexAction.msg1=Sie versuchen gerade, eine veraltete LaTeX-Formel einzuf\u00FCgen.
Die neue Art, um LaTeX Text/Formeln einzuf\u00FCgen, ist hier beschrieben: LatexInsertLatexAction.msg2=Kurzfassung:
    \n
  • benutzen Sie ein "\\latex "-Pr\u00E4fix im Knotentext oder
  • \n
  • "Ansicht" \u2192 "Werkzeugleiste", dann "Knotentext" \u2192 "Format" \u2192 "LaTeX"
  • \n
LatexInsertLatexAction.text=LaTeX-Formel einf\u00FCgen\u2026 latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=inch LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px less_than_two_selected_nodes=Bitte mindestens zwei Knoten ausw\u00E4hlen, zwischen denen Verbindungen gezeichnet werden sollen. licences=Lizenzen license=Lizenz license_text=Dieses Programm ist freie Software; es kann unter den Bedingungen
der von der Free Software Foundation ver\u00F6ffentlichten GNU General
Public License weiterverteilt und/oder modifiziert werden; bezugnehmend
auf Version 2 der Lizenz oder einer sp\u00E4teren Version (die Wahl steht
dem Nutzer frei).

Dieses Programm wird in der Hoffnung verbreitet, dass es f\u00FCr den Anwender
hilfreich ist, allerdings OHNE JEGLICHE GARANTIE; nicht einmal
die implizite Garantie der TAUGLICHKEIT ODER EIGNUNG ZU EINEM
PARTIKUL\u00C4REN ZWECK. Weitere Details sind in der GNU General
Public License zu finden.

Eine Kopie der GNU General Public License sollte diesem Programm
beiliegen; falls nicht, wird um entsprechende R\u00FCckmeldung an die Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA, gebeten. link_error=Falscher Link "{0}" kann nicht geladen werden link_not_available_any_more=Die Verkn\u00FCpfung ist nicht mehr g\u00FCltig, da der Zielknoten {0} in der Zwischenzeit gel\u00F6scht wurde. link_not_found=Link {0} nicht gefunden. links=Hyper&link load=&Laden load_accelerator_presets=Sammlung laden load_accelerator_presets.noActions=Keine Voreinstellungen LoadAcceleratorPresetsAction.textPatterns.text=Textmuster locking_failed_by_open=Die Mindmap {0} ist in Benutzung. Daher wird sie schreibgesch\u00FCtzt ge\u00F6ffnet. locking_failed_by_save_as=Die Mindmap {0} ist in Benutzung. Daher wurde die Aktion " Mindmap speichern unter..." abgebrochen. locking_old_lock_removed=Die Mindmap {0} war in Benutzung durch den Benutzer {1}. Die Dateisperrung wurde aufgehoben, da sie veraltet war. long_node_changed_cancel=Knoten wurde ver\u00E4ndert. Wollen Sie diese \u00C4nderungen verwerfen? long_node_changed_submit=Knoten wurde ver\u00E4ndert. Wollen Sie diese \u00C4nderungen speichern? lots_of_links_warning=Durch diesen Befehl w\u00FCrden sehr viele graphische Links erzeugt. Sollen diese Links wirklich erzeugt werden? main=Start main_menu=Men\u00FC main_resource_directory=Installationsverzeichnis: {0} MainView.errorUpdateText=Fehler beim Zuweisen des Textes der Eingabe: {0}:{1}. MakeLinkFromAnchorAction.text=Link von Anker hierher MakeLinkFromAnchorAction.tooltip=Erstellt einen lokalen bzw. globalen Hyperlink
vom Bezugsknoten zum selektierten Knoten MakeLinkToAnchorAction.text=Link von hier zum Anker MakeLinkToAnchorAction.tooltip=erstellt einen lokalen bzw. globalen Hyperlink
vom selektierten Knoten zum Bezugsknoten manage_styles=Knotenstile verwalten ManageAddOnsAction.text=Add-Ons... ManageAddOnsDialog.activate=Aktivieren ManageAddOnsDialog.activation.success={0} wird bei einem Neustart aktiviert. ManageAddOnsDialog.authored.by=von {0} ManageAddOnsDialog.cannot.activate=Kann {0} nicht aktivieren, da es bereits aktiv ist. ManageAddOnsDialog.cannot.configure=Kann {0} nicht konfigurieren. ManageAddOnsDialog.cannot.deactivate=Kann {0} nicht deaktivieren, da es nicht aktiv ist. ManageAddOnsDialog.cannot.deinstall=Kann {0} nicht deinstallieren. ManageAddOnsDialog.configure=Konfigurieren ManageAddOnsDialog.deactivate=Deaktivieren ManageAddOnsDialog.deactivation.success={0} wird bei einem Neustart deaktiviert. ManageAddOnsDialog.deinstall=Deinstallieren ManageAddOnsDialog.deinstallation.success={0} wird bei einem Neustart deinstalliert. ManageAddOnsDialog.error=Fehler bei der Installation: {0}. ManageAddOnsDialog.install=&Installieren ManageAddOnsDialog.install.from.known.location=Add-On von einem bekannten Ort installieren ManageAddOnsDialog.install.tooltip=Hier die URL einer Add-On-Datei eintragen ManageAddOnsDialog.map.not.opened=Mindmap {0} scheint nicht ge\u00F6ffnet zu sein. ManageAddOnsDialog.really.deinstall={0} wirklich deinstallieren? ManageAddOnsDialog.search=Add-Ons suchen ManageAddOnsDialog.search.file=Durchsuchen ManageAddOnsDialog.select.tooltip=Datei ausw\u00E4hlen ManageAddOnsDialog.status.downloading=Datei wird heruntergeladen\u2026 ManageAddOnsDialog.status.installing=Add-On wird installiert\u2026 ManageAddOnsDialog.status.success={0} erfolgreich installiert. ManageAddOnsDialog.tab.install=Suchen und installieren ManageAddOnsDialog.tab.install.tooltip=Suchen und installieren von neuen Add-Ons ManageAddOnsDialog.tab.manage=Add-Ons ManageAddOnsDialog.tab.manage.themes=Themen ManageAddOnsDialog.tab.manage.themes.tooltip=Verwaltung installierter Themen ManageAddOnsDialog.tab.manage.tooltip=Installierte Add-Ons verwalten ManageAddOnsDialog.visit.addon.page=Add-On-Seite besuchen\u2026 ManageConditionalStylesAction.text=Bedingte Formatierung f\u00FCr die Mindmap ManageNodeConditionalStylesAction.text=Bedingte Formatierung f\u00FCr den Knoten map_already_exists=Die Mindmap existiert bereits. Soll sie \u00FCberschrieben werden? map_background=Hintergrund der Mindmap map_background_image=Hintergrundbild map_corrupted=Die Mindmap ist nicht lesbar. M\u00F6chten Sie die Details sehen? map_load_error=Mindmap {0} konnte nicht geladen werden map_locked_by_open=Die Mindmap {0} ist in Benutzung durch den Benutzer {1}. Daher wird sie schreibgesch\u00FCtzt ge\u00F6ffnet. map_locked_by_save_as=Die Mindmap {0} ist in Benutzung durch den Benutzer {1}. Daher wurde die Aktion "Mindmap speichern unter..." abgebrochen. map_not_saved=Die Mindmap wurde noch nicht gespeichert. MapBackgroundClearAction.text=Leeren MapBackgroundColorAction.text=Hintergrundfarbe MapBackgroundImageAction.text=Hintergrundbild\u2026 maps=Mindmaps MaxNodeWidth.text=Maximale Breite eines Knotens festlegen menu_applyStyle=Knotenstil anwenden menu_attributes=&Attribute menu_clouds=Wolken menu_copy=&Kopieren menu_coreFormat=&Knoten menu_details=Details menu_displayAttributes=Knoten-&Attribute menu_encryption=&Passwort menu_error=Fehler in benutzerdefinierter Men\u00FC-Struktur {0}:\n{1}\nAbbruch menu_extensions=Knoten-&Eigenschaften menu_group=&Gruppierung menu_hoverView=Tooltips menu_iconByCategory=Icons nach Kategorie\u2026 menu_iconView=Icons menu_image=Bild menu_insert=&Einf\u00FCgen menu_latex_formula=LaTeX Formel menu_manageStyles=Knotenstile &verwalten menu_moveNode=Knoten an&ordnen menu_newNode=&Neuer Knoten menu_node=Knoten menu_node_features=Knoten&eigenschaften menu_nodes=&Knoten menu_nodeView=Knoten-Umgebung menu_noteView=Notizen menu_openmaps=Maps menu_remove_icons=Icons entfernen menu_removeAttribute=Attribute entfernen menu_select=Ausw\u00E4hlen menu_time=&Zeitmanagement menu_title=Knoten-&Inhalt menu_viewmode=Ansichtseinstellungen menuname=Formel MenuUtils.invalid_menuitem={0} ist kein g\u00FCltiger Schl\u00FCssel f\u00FCr Men\u00FC-Elemente. mind_map=Mindmap mindmap=Mindmap MindMapNodesFlavorHandler=Knoten-Hierarchie mindmaps=&Mindmaps mindmaps_desc=Mindmaps (*.mm) mindmaps_filter_desc=Filter (*.mmfilter) MinNodeWidth.text=Minimale Breite eines Knotens festlegen misc=Verschiedenes miscellaneous=Verschiedenes mode_Browse=Ansichtsmodus mode_File=Dateimodus mode_MindMap=Mindmap-Modus mode_na=Modus nicht vorhanden mode_status=Modus ge\u00E4ndert zu {0} mode_StyleMap=Formatierung bearbeiten mode_title=Freeplane - {0} modes=Modi ModesMenuAction.Browse.text=Browser-Ansicht ModesMenuAction.File.text=Datei-Explorer-Ansicht ModesMenuAction.MindMap.text=Editor-Ansicht most_recent_files=&Zuletzt ge\u00F6ffnete Dateien MoveAction.text=Verschieben MoveSelectedNodeAction.CENTER.text=Auf Knoten zentrieren MoveSelectedNodeAction.EAST.text=Bewege ausgew\u00E4hlten Knoten an den rechten Rand MoveSelectedNodeAction.WEST.text=Bewege ausgew\u00E4hlten Knoten an den linken Rand MoveToRootAction.text=Wurzelknoten zentrieren NameConditionAction.text=Name zuweisen navigate=&Navigation navigate_main=Start navigate_nodes=Knoten navigate_select=Ausw\u00E4hlen NavigationNextMapAction.text=N\u00E4chste Mindmap NavigationPreviousMapAction.text=Vorherige Mindmap new=&Neu new_map_from_user_templates.text=Neue Mindmap aus Vorlage\u2026 new_mindmap=Neue Mindmap new_node=Neuer Knoten new_node_as_sibling_not_possible_for_the_root=Der Wurzelknoten kann keine Geschwister haben new_version_available=Die neue Programmversion ''{0}'' ist verf\u00FCgbar NewChildAction.text=Neuer Unterknoten NewerFileRevisionsFoundDialog.cancel=&\u00DCberspringen NewerFileRevisionsFoundDialog.cancel.tooltip=Datei nicht \u00F6ffnen NewerFileRevisionsFoundDialog.file_last_modified=Zeitstempel NewerFileRevisionsFoundDialog.file_name=Datei NewerFileRevisionsFoundDialog.file_size=Bytes NewerFileRevisionsFoundDialog.open=\u00D6ffnen NewerFileRevisionsFoundDialog.open.tooltip=Datei \u00F6ffnen, auch falls sie veraltet sein k\u00F6nnte NewerFileRevisionsFoundDialog.question=Neuere Versionen von {0} gefunden! NewerFileRevisionsFoundDialog.restore=&Wiederherstellen NewerFileRevisionsFoundDialog.restore.tooltip={0} mit {1} ersetzen NewerFileRevisionsFoundDialog.title=Neuere Dateiversion gefunden! NewFreeNodeAction.text=Neuer schwebender Knoten NewLevelStyleAction.text=Neue "Automatisches Layout"-Ebene newmap.install.addon.question={0} scheint ein Add-On Paket zu sein.\nM\u00F6chten Sie es installieren?\n(W\u00E4hlen Sie "Nein" zum normalem \u00D6ffnen.) newmap.install.addon.title=Add-On installieren? NewMapAction.text=Neue Mindmap NewMapViewAction.text=Neue Mindmap-Ansicht NewParentNode.text=Neuen \u00FCbergeordneten Knoten NewParentNode.tooltip=Knoten um eine Position vom Wurzelknoten abr\u00FCcken NewPreviousSiblingAction.text=Knoten oberhalb NewSiblingAction.text=Knoten unterhalb NewSummaryAction.text=Knoten zusammenfassen (ausgew\u00E4hlte Knoten) NewUserStyleAction.text=Neuer Knoten-Stil aus Auswahl NextNodeAction.BACK.text=Zum vorherigen Knoten NextNodeAction.BACK_N_FOLD.text=Zum vorherigen Knoten (Unterknoten falten) NextNodeAction.FORWARD.text=Zum n\u00E4chsten Knoten NextNodeAction.FORWARD_N_FOLD.text=Zum n\u00E4chsten Knoten (Unterknoten falten) NextPresentationItemAction.text=N\u00E4chsten Pr\u00E4sentationspunkt entfalten no=Nein no_copy_attributes_before_paste_attributes=Sie k\u00F6nnen ein Attribut erst dann einf\u00FCgen, wenn Sie ein anderes kopiert haben. NO_FORMAT=Text no_format_copy_before_format_paste=Sie k\u00F6nnen ein Format erst dann einf\u00FCgen, wenn Sie ein anderes kopiert haben. no_found_from={0} wurde von "{1}" aus nicht gefunden. no_more_found_from= Keine weiteren Fundstellen von{0} beginnend von "{1}" aus. no_previous_find=Keine vorherigen Fundstellen. no_styles_found_in_map=Es wurden in der Mindmap keine Stile gefunden no_translation_strings_found=Keine \u00FCbersetzbare Zeichenkette gefunden node=Knoten node_alias=Knoten-Alias: node_changed_discard_changes=Knoten wurde ver\u00E4ndert. Wollen Sie diese \u00C4nderungen verwerfen? node_details=Knotendetails node_is_write_protected=Zielknoten ist schreibgesch\u00FCtzt. node_location_help=Ziehen \u00E4ndert die Knotenlage, Strg+Ziehen \u00E4ndert die Knotenabst\u00E4nde, Doppelklick und Strg+Doppelklick setzt sie zur\u00FCck. node_popup_scripting=Skripte node_selector=Knotenauswahl node_selector_message=Doppelklick w\u00E4hlt Knoten aus node_settings=Knoteneinstellungen node_styles=Knotenstile NodeBackgroundColorAction.text=Hintergrundfarbe\u2026 NodeColorAction.text=Schriftfarbe\u2026 NodeColorBlendAction.text=Schriftfarbe aufhellen NodeDownAction.text=Nach unten tauschen NodeEnumerationAction.NodeVisibility.HIDDEN.text=Versteckter Knoten NodeEnumerationAction.NodeVisibilityConfiguration.SHOW_HIDDEN_NODES.text=Versteckte Knoten zeigen NodeExtensions.EditNodeExtensions=Bearbeite Knotenerweiterungen NodeExtensions.RemoveNodeExtensions=Entferne Knotenerweiterungen NodeListAction.text=Suchen und ersetzen\u2026 NodeListAction.tooltip=Zeigt alle Knoten in einer filterbaren Liste an. nodes=Knoten NodeShapeAction.bubble.text=Knotentyp Blase NodeShapeAction.fork.text=Knotentyp Linie NodeShapeAction.narrow_hexagon.text=Schmales Sechseck NodeShapeAction.oval.text=Oval NodeShapeAction.rectangle.text=Rechteck NodeShapeAction.wide_hexagon.text=Weites Sechseck NodeUpAction.text=Nach oben tauschen nonboldify_branch=Zweig normal nonitalicise_branch=Zweig nicht kursiv normal=Normal not_saved_for_image_error=Die Mindmap muss gespeichert werden, bevor man ein Bild mit der Dateiauswahl setzen kann not_saved_for_link_error=Die Mindmap muss gespeichert werden, bevor ein Link per Dateiauswahl gesetzt werden kann note_window_location=Notiz-Editor-&Position notes=Noti&z NotFoldingNextPresentationItemAction.text=N\u00E4chsten Pr\u00E4sentationspunkt entfalten NotificationOptions.CLOSE=Schlie\u00DFen NotificationOptions.REMIND_ME_LATER=Erinnere mich sp\u00E4ter NotificationOptions.REMOVE_REMINDER=Erinnerung entfernen NotificationOptions.SELECT_NODE=Zur Erinnerung gehen ok=&OK OKAction.text=OK OldReminderListAction.text=Zeige vergangene Erinnerungen\u2026 OldReminderListAction.tooltip=Zeigt vergangene Erinnerungszeiten und die entsprechenden Knoten auf allen ge\u00F6ffneten MindMaps an. OnlineReference.text=Online-Mindmap-Dokumentation open=\u00D6ffnen open_asMindMap=Mindmap OpenAction.text=\u00D6ffnen\u2026 OpenApiDocumentationAction.text=Freeplane API\u2026 OpenFreeplaneSiteAction.text=Freeplanes Webseite \u00F6ffnen OpenMapsAddLocation.text=Ort aus Landkarte hinzuf\u00FCgen\u2026 OpenMapsRemoveLocation.text=Landkarteneintrag entfernen OpenMapsViewLocation.text=Ort auf Landkarte anzeigen\u2026 OpenPathAction.text=Datei \u00F6ffnen OpenURLMapAction.text=\u00D6ffnen aus URL\u2026 OpenUserDirAction.text=Benutzerverzeichnis \u00F6ffnen option_changes_may_require_restart=Die meisten Eigenschafts\u00E4nderungen werden erst bei einem Neustart von Freeplane aktiv. OptionalDontShowMeAgainDialog.cancel=&Nein OptionalDontShowMeAgainDialog.dontShowAgain=Nicht wieder &fragen. OptionalDontShowMeAgainDialog.ok=&Ja OptionalDontShowMeAgainDialog.rememberMyDescision=&Entscheidung merken OptionPanel.absolute=absolut OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automatisches Layout OptionPanel.ADD_CHILD=Unterknoten hinzuf\u00FCgen OptionPanel.ADD_SIBLING=Knoten auf gleicher Ebene hinzuf\u00FCgen OptionPanel.addons=Add-Ons OptionPanel.af=Afrikanisch OptionPanel.always_fold_all_after_load=Alle Knoten falten OptionPanel.always_load_last_maps=Laden Sie die letzten Mindmaps zus\u00E4tzlich zu den neuen Mindmaps OptionPanel.always_load_last_maps.tooltip=\u00D6ffnen Sie die letzten Dateien, die in den obigen Optionen festgelegt wurden, und starten Sie Freeplane mit einem anderen Mindmap, die als Argument angegeben ist. OptionPanel.always_save_folding=immer OptionPanel.always_save_folding_state=Aktuelle Faltung immer speichern OptionPanel.always_save_folding_state.tooltip=Wenn diese Option ausgew\u00E4hlt wird, f\u00FChrt jedes Auf- bzw. Zuklappen einer Ebene dazu, dass die Mindmap als ver\u00E4ndert betrachtet wird. Beim Schlie\u00DFen von Freeplane wird dann nach dem Speicherwunsch gefragt. OptionPanel.always_show_less_than_N_nodes_after_load=Manche Knoten entfalten OptionPanel.always_unfold_all_after_load=Keine Knoten falten OptionPanel.antialias=Darstellung OptionPanel.antialias.tooltip=Bestimmt das Aussehen der Mindmap. Bitte beachten: Je h\u00F6her die Kantengl\u00E4ttung ist, desto mehr Rechenzeit wird f\u00FCr die Darstellung ben\u00F6tigt. OptionPanel.antialias_all=Kantengl\u00E4ttung auf alles anwenden OptionPanel.antialias_edges=Kantengl\u00E4ttung nur auf die Verbindungslinien der Knoten anwenden OptionPanel.antialias_none=Keine Kantengl\u00E4ttung anwenden OptionPanel.antialias_svg=Kantengl\u00E4ttung f\u00FCr SVGs OptionPanel.antialias_svg.tooltip=Bestimmt das Aussehen der Icons. Bitte beachten:
Je h\u00F6her die Kantengl\u00E4ttung ist, desto mehr Rechenzeit wird f\u00FCr die Darstellung ben\u00F6tigt. OptionPanel.Appearance=Aussehen OptionPanel.approximate_search_threshold=Schwelle f\u00FCr \u00C4hnlichkeitsvergleich OptionPanel.approximate_search_threshold.tooltip=Schwelle f\u00FCr \u00C4hnlichkeitserkennung beim Vergleichen festlegen.
siehe http://freeplane.sourceforge.net/wiki/index.php/Approximate_search
(je gr\u00F6\u00DFer der Wert desto enger die zul\u00E4ssige
Variationsbreite f\u00FCr das Suchergebnis) OptionPanel.ar=Arabisch / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Bogen OptionPanel.as_parent=wie der \u00FCbergeordnete Knoten OptionPanel.ask=Nachfragen OptionPanel.auto_edge_color=Farbe {0} OptionPanel.automatic=Automatisch OptionPanel.automaticFormat_level=Automatisches Layout OptionPanel.automaticFormat_level1=Format des Wurzelknotens OptionPanel.automaticFormat_level2=Format der 1. Ebene OptionPanel.backup_file_number=Anzahl der aufbewahrten Backup-Dateien OptionPanel.Behaviour=Verhalten OptionPanel.bezier=Bezier-Kurve OptionPanel.bg=Bulgarisch / \u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 OptionPanel.border_color=Farbe OptionPanel.border_color_matches_edge_color=Benutze Kantenfarbe OptionPanel.border_dash=Rahmenlinientyp OptionPanel.border_dash_matches_edge_dash=Benutze Rahmenlinientyp OptionPanel.border_width=Linienst\u00E4rke OptionPanel.border_width_matches_edge_width=Benutze Kantenst\u00E4rke OptionPanel.bubble=Blase OptionPanel.ca=Katalan, Valencian / Catal\u00E0 OptionPanel.Cancel=Abbrechen OptionPanel.center_selected_node=Selektierten Knoten automatisch zentrieren OptionPanel.check_updates_automatically=Automatisch nach Updates suchen OptionPanel.childpattern=Stil der Unterknoten OptionPanel.childpattern.tooltip=Das gew\u00E4hlte Muster wird auf alle Unterknoten angewendet. OptionPanel.clear_all_setters=Alle ver\u00E4ndern OptionPanel.clear_all_setters.tooltip=Schaltet alle \u00C4nderungshinweise ein oder aus. OptionPanel.cloud=Wolke OptionPanel.cloudcolor=Wolkenfarbe OptionPanel.cloudshape=Wolkenformen OptionPanel.combined=Kombiniert OptionPanel.compare_as_number=Als Zahl vergleichen OptionPanel.compile_only_changed_script_files=Nur ge\u00E4nderte Dateien kompilieren OptionPanel.compile_only_changed_script_files.tooltip=bereits kompilierte Klassendateien nicht ver\u00E4ndern, bis sich die Quelldatei \u00E4ndert OptionPanel.compiled_script_cache_size=Kompilierte Skript- und Formel-Cache-Gr\u00F6\u00DFe OptionPanel.connector_arrows=Verbindungspfeile OptionPanel.connector_dash=Linienart OptionPanel.convert_to_current_version=Sollen Mindmaps von \u00E4lteren Freeplane-Versionen
automatisch zur aktuellen Version konvertiert werden? OptionPanel.convert_to_current_version.tooltip=Nur sehr gro\u00DFe Mindmaps, die nicht konvertiert werden sollen
(hierzu braucht man Expertenwissen), kann man ohne Umwandlung \u00F6ffnen. OptionPanel.copyFormatToNewSibling=Kopiere Formatierung auf neue Geschwister OptionPanel.copyFormatToNewSiblingIncludesIcons=Kopiere Format mit Symbolen OptionPanel.cs=Tschechisch / \u010Desky OptionPanel.cut_nodes_without_question=Knoten ohne Best\u00E4tigung ausschneiden? OptionPanel.cut_nodes_without_question.tooltip=Wenn diese Option ausgew\u00E4hlt wird, werden die Knoten ohne Best\u00E4tigung ausgeschnitten. Ein versehentliches Dr\u00FCcken kann zu Datenverlust f\u00FChren. OptionPanel.cut_out_pictures_when_pasting_html=Bilder von HTML entfernen OptionPanel.da=D\u00E4nisch / dansk OptionPanel.date_format=Standard Datumsformat OptionPanel.date_format.tooltip=M\u00F6gliche Werte sind: Entweder "SHORT" (kurzes Format), "MEDIUM" (mittellanges Format), "FULL" (alles) oder ein Muster wie "dd.MM.yyyy". OptionPanel.datetime_format=Standard Datums- und Zeitformat OptionPanel.datetime_format.tooltip=Eingabe von ,.
M\u00F6gliche Werte sind: Entweder "SHORT" (kurzes Format), "MEDIUM" (mittellanges Format), "FULL" (alles) oder ein Muster wie "dd.MM.yyyy hh:mm". OptionPanel.de=Deutsch / Deutsch OptionPanel.default=Standard OptionPanel.default_attribute_key_column_width=Voreingestellte Breite der Schl\u00FCssel-Spalte eines Attributs OptionPanel.default_attribute_value_column_width=Voreingestellte Breite der Werte-Spalte eines Attributs OptionPanel.default_browser_command_mac=Standard-Browser-Befehl f\u00FCr Mac OptionPanel.default_browser_command_mac.tooltip=und MAC: (Danke an Nick!) OptionPanel.default_browser_command_other_os=Standard-Browser-Befehl f\u00FCr andere Betriebssysteme OptionPanel.default_browser_command_other_os.tooltip= Das ist typischerweise Linux: OptionPanel.default_browser_command_windows_9x=Standard-Browser-Befehl f\u00FCr Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=F\u00FCr Windows (die Anf\u00FChrungszeichen sind notwendig, da Links Gleichheitszeichen enthalten k\u00F6nnen). OptionPanel.default_browser_command_windows_nt=Standard-Browser-Befehl f\u00FCr Windows NT OptionPanel.default_browser_command_windows_nt.tooltip=F\u00FCr Windows (die Anf\u00FChrungszeichen sind notwendig, da Links Gleichheitszeichen enthalten k\u00F6nnen). OptionPanel.default_charset=Zeichensatz OptionPanel.default_save_dir=Standardverzeichnis f\u00FCr neue Mindmaps OptionPanel.Defaults=Standards OptionPanel.delete_automatic_saves_at_exit=L\u00F6schen der automatisch gespeicherten Mindmaps beim Verlassen OptionPanel.delete_automatic_saves_at_exit.tooltip= Wenn diese Option ausgew\u00E4hlt ist, werden beim Schlie\u00DFen von Freeplane alle automatisch erstellten Sicherungen gel\u00F6scht. OptionPanel.delete_nodes_without_question=Knoten ohne Best\u00E4tigung l\u00F6schen? OptionPanel.delete_nodes_without_question.tooltip=Wenn diese Option ausgew\u00E4hlt ist, werden Knoten ohne Nachfrage gel\u00F6scht. Dies kann bei unbeabsichtigtem L\u00F6schen zu Datenverlust f\u00FChren. OptionPanel.disable_cursor_move_paper.tooltip=Kein speziellen Cursor w\u00E4hrend des Verschiebe-Vorgangs angezeigen. OptionPanel.display_inline_editor_for_all_new_nodes=Eingebetteter Editor f\u00FCr neue Knoten OptionPanel.display_node_id=Knoten-ID anzeigen OptionPanel.edgecolor=Linienfarbe OptionPanel.edgecolor.tooltip=Linieneigenschaft der Verbindung zum Oberknoten (wird auch auf alle Unterknoten angewendet) OptionPanel.edgedash=Rahmenlinientyp OptionPanel.edgestyle=Linientyp OptionPanel.edgestyle.tooltip=Linieneigenschaft der Verbindung zum Oberknoten (wird auch auf alle Unterknoten angewendet) OptionPanel.edgewidth=Linienst\u00E4rke OptionPanel.edgewidth.tooltip=Linieneigenschaft der Verbindung zum Oberknoten (wird auch auf alle Unterknoten angewendet) OptionPanel.EDIT_CURRENT=Inhalt \u00FCberschreiben OptionPanel.edit_on_double_click=Text bei &Doppelklick bearbeiten OptionPanel.editor_extra_width=Vergr\u00F6\u00DFerungsschritte des Knotens bei Texteingabe [px] OptionPanel.editor_extra_width.tooltip=Legt fest, um wie viele Pixel der Knoten verbreitert wird, wenn bei der Texteingabe der Rand erreicht wird. OptionPanel.el=Griechisch / \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Schaltfl\u00E4chen oben anzeigen OptionPanel.el__enter_confirms_by_default= beendet den Dialog OptionPanel.el__max_default_window_height=Maximale Fensterh\u00F6he OptionPanel.el__max_default_window_width=Maximale Fensterbreite OptionPanel.el__min_default_window_height=Minimale Fensterh\u00F6he OptionPanel.el__min_default_window_width=Minimale Fensterbreite OptionPanel.el__position_window_below_node=Fensterposition unter dem Knoten OptionPanel.en=Englisch / english OptionPanel.Environment=Allgemein OptionPanel.es=Spanisch (Kastilien)/ espa\u00F1ol, castellano OptionPanel.et=Estnisch / eesti, eesti keel OptionPanel.eu=Baskisch OptionPanel.execute_scripts_without_asking=Skripte ohne Nachfragen ausf\u00FChren? OptionPanel.execute_scripts_without_asking.tooltip=Skripte sind in Freeplane nicht beschr\u00E4nkt und k\u00F6nnen daher auf alle Ressourcen des Rechners zugreifen.
Sie sollten daher nur dann ausgef\u00FChrt werden, wenn eine zuverl\u00E4ssige Quelle sichergestellt ist. OptionPanel.execute_scripts_without_exec_restriction=Ausf\u00FChren anderer Applikationen erlauben (NICHT empfohlen) OptionPanel.execute_scripts_without_exec_restriction.tooltip=Diese Option ist dann zu aktivieren, wenn Groovy-Skripte auch andere Anwendungen
(wie z.B. den Browser) ohne Nachfrage ausf\u00FChren k\u00F6nnen sollen.
VORSICHT: b\u00F6sartige Skripte k\u00F6nnen dann den Computer besch\u00E4digen! OptionPanel.execute_scripts_without_file_restriction=Lesenden Zugriff auf Dateien erlauben (NICHT empfohlen) OptionPanel.execute_scripts_without_file_restriction.tooltip=Diese Option ist dann zu aktivieren, falls Groovy-Skripte lesenden Zugriff auf Dateien ben\u00F6tigen.
VORSICHT: auch b\u00F6sartige Skripte haben dann lesenden Zugriff auf Daten! OptionPanel.execute_scripts_without_network_restriction=Netzwerkoperationen erlauben (NICHT empfohlen) OptionPanel.execute_scripts_without_network_restriction.tooltip=Diese Option ist dann zu aktivieren, falls Groovy-Skripte auf das Netzwerk zugreifen k\u00F6nnen sollen.
VORSICHT: b\u00F6sartige Skripte k\u00F6nnen dann pers\u00F6nliche Daten \u00FCber das Netz verschicken! OptionPanel.execute_scripts_without_write_restriction=Schreibenden Zugriff auf Dateien erlauben (NICHT empfohlen) OptionPanel.execute_scripts_without_write_restriction.tooltip=Diese Option ist dann zu aktivieren, falls Groovy-Skripte schreibenden/l\u00F6schenden Zugriff auf Dateien ben\u00F6tigen.
VORSICHT: b\u00F6sartige Skripte k\u00F6nnen dann Dateien modifizieren bzw. Datentr\u00E4ger besch\u00E4digen! OptionPanel.experimental_file_locking_on=Experimentelles Sperren der ge\u00F6ffneten Dateien OptionPanel.experimental_file_locking_on.tooltip= Experimentelles Feature OptionPanel.export_icons_in_html=Icons nach HTML exportieren OptionPanel.export_icons_in_html.tooltip=Gibt an, ob die Icons auch nach HTML exportiert werden sollen. Allerdings m\u00FCssen die Icons dann auch immer mit dem HTML kopiert werden, damit sie gefunden werden. OptionPanel.exported_image_resolution_dpi=Bildaufl\u00F6sung (in DPI) beim Export OptionPanel.Files=Dateien OptionPanel.first=Am Anfang OptionPanel.fit_to_viewport=Hintergrundbild auf Fenstergr\u00F6\u00DFe anpassen OptionPanel.fold_on_click_inside=Knoten beim Hineinklicken falten / entfalten OptionPanel.foldingsymbolwidth=Gr\u00F6\u00DFe des Symbols, das die Faltung anzeigt OptionPanel.foldingsymbolwidth.tooltip=Gr\u00F6\u00DFe des Kreises, der die Faltung symbolisiert OptionPanel.fork=Linie OptionPanel.format_locale=Lokal \u00FCbliche Formatierung OptionPanel.format_locale.tooltip=Lokalisierungsabh\u00E4ngiges Zahlen- und Datumsformat w\u00E4hlen OptionPanel.formula_disable_caching=Cache-Speicher f\u00FCr die Auswertung von Formeln deaktivieren OptionPanel.formula_disable_plugin=Formelauswertung deaktivieren OptionPanel.fr=Franz\u00F6sisch / Fran\u00E7ais OptionPanel.gl=Gallizisch / Galego OptionPanel.goto_note_end_on_edit=Bewegt den Cursor ans Ende OptionPanel.grid_size=Punktabstand f\u00FCr Platzierungsraster OptionPanel.groovy_editor_font=Schriftart f\u00FCr den Groovy Syntax-Highlighting Editor OptionPanel.groovy_editor_font.tooltip=Benutze z.B. 'Dialog' or 'Monospaced' wenn du Unicode-Zeichen benutzt! OptionPanel.groovy_editor_font_size=Schriftgr\u00F6\u00DFe f\u00FCr den Groovy Syntax-Highlighting Editor OptionPanel.gtk=Gtk OptionPanel.hi=Hindi / \u0939\u093F\u0928\u094D\u0926\u0940 OptionPanel.hide_edge=Linie verstecken OptionPanel.hide_single_end_connectors=Einseitige Verbindung ausblenden OptionPanel.highlight_formulas=Formeln hervorheben OptionPanel.horizontal=Horizontal OptionPanel.hr=Kroatisch / hrvatski OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=\u00DCberschriftenbasiert OptionPanel.html_export_fold_all=Alles zuklappen OptionPanel.html_export_fold_currently_folded=Aktuelle Faltung OptionPanel.html_export_folding=HTML-Export des Faltungszustands OptionPanel.html_export_no_folding=Ohne Faltung OptionPanel.hu=Ungarisch / Magyar OptionPanel.ic_disable=Deaktiviert OptionPanel.ic_file=Verwende Festplatte OptionPanel.ic_ram=Verwende Arbeitsspeicher OptionPanel.icon=Icon OptionPanel.icon.tooltip=Falls angewendet, hat der Knoten nur genau dieses Icon. OptionPanel.icon_size=Icongr\u00F6\u00DFe OptionPanel.icons.list=Liste der angezeigten Standard-Icons OptionPanel.icons.list.tooltip=Hier k\u00F6nnen die Standard-Icons sortieren oder deaktivieren werden. Die Eintr\u00E4ge m\u00FCssen dabei mit einem ";" getrennt sein. OptionPanel.id=Indonesisch / Bahasa Indonesia OptionPanel.IGNORE=Nichts tun OptionPanel.ignore_unassigned_f_keys=Nicht zugewiesene F-Tasten ignorieren OptionPanel.il__enter_confirms_by_default= beendet die Texteingabe im Knoten OptionPanel.image_cache=f\u00FCr Bilder OptionPanel.indentationUsesTabsInTextOutput=Benutze Tabulatoren in der Textausgabe OptionPanel.it=Italienisch / italiano OptionPanel.ja=Japanisch / \u65E5\u672C\u8A9E OptionPanel.JoinNodesAction.textSeparators=Texttrennzeichen OptionPanel.key_type_action=Bei Tastendruck OptionPanel.Keystrokes=Tasten OptionPanel.kn=Kannada / Kanaresisch OptionPanel.ko=Koreanisch / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Schriftart OptionPanel.label_font_size=Schriftgr\u00F6\u00DFe OptionPanel.language=Sprache OptionPanel.language.tooltip=Dies ist die Sprache, die im Programm verwendet wird. 'Automatisch' bedeutet, dass die Sprache des Benutzers geladen wird, soweit vorhanden. OptionPanel.last=Am Ende OptionPanel.last_opened_list_length=Anzahl der zuletzt ge\u00F6ffneten Dateien unter Datei -> Zuletzt ge\u00F6ffnete Mindmaps OptionPanel.latex_disable_editor=Deaktiviere den LaTeX Syntax-Highlighting Editor OptionPanel.latex_disable_editor.tooltip=Aktivieren, falls du Probleme mit dem LaTeX Editor hast OptionPanel.latex_editor_font=Schriftart f\u00FCr den LaTeX Syntax-Highlighting Editor OptionPanel.latex_editor_font.tooltip=Benutze z.B. 'Dialog' or 'Monospaced' wenn du Unicode-Zeichen benutzt! OptionPanel.latex_editor_font_size=Schriftgr\u00F6\u00DFe f\u00FCr den LaTeX Syntax-Highlighting Editor OptionPanel.latex_macros=Gemeinsame LaTeX-Makros OptionPanel.layout_map_on_text_change=Mindmap w\u00E4hrend des Bearbeitens aktualisieren OptionPanel.layout_map_on_text_change.tooltip=F\u00FCr h\u00F6here Geschwindigkeit ausschalten OptionPanel.linear=Linear OptionPanel.links=Links OptionPanel.links.tooltip=Links k\u00F6nnen etweder relativ, oder absolut sein. OptionPanel.load_folding=Faltungszustand der Mindmap laden OptionPanel.load_folding_from_map_default_fold_all=Von Mindmap laden oder alles einfalten OptionPanel.load_folding_from_map_default_unfold_all=Von Mindmap laden oder alles entfalten OptionPanel.load_last_map=Automatisch letzte Mindmap laden OptionPanel.load_last_map.tooltip=Wenn selektiert, l\u00E4dt Freeplane beim Start, automatisch die zuletzt ge\u00F6ffnete Mindmap. OptionPanel.load_last_maps=Alle zuletzt ge\u00F6ffneten Mindmaps laden OptionPanel.lookandfeel=Erscheinungsbild OptionPanel.lookandfeel.scaleuifonts=Schriftarten skalieren OptionPanel.lookandfeel.scaleuifonts.tooltip=N\u00FCtzlich f\u00FCr Bildschirme mit hoher Aufl\u00F6sung OptionPanel.lookandfeel.tooltip=Bei Problemen bitte einfach 'Standard' w\u00E4hlen. OptionPanel.lt=Litauisch / kalba OptionPanel.markClones=Farbige Klon-Markierung OptionPanel.markSelectedClones=Farbige Klon-Markierung bei Auswahl OptionPanel.max_displayed_node_count=Maximale Anzahl angezeigter Knoten OptionPanel.max_image_width=Maximale Anzeigebreite f\u00FCr Bilder OptionPanel.max_image_width.tooltip=Neu eingef\u00FCgte Abbildungen werden entsprechend herunterskaliert OptionPanel.max_menu_item_count=Maximale Anzahl an Men\u00FC-Eintr\u00E4gen OptionPanel.max_menu_item_count.tooltip=Limitiert die Anzahl von Elementen des Untermen\u00FCs (mindestens 10) OptionPanel.max_node_width=Maximale Knotenbreite OptionPanel.max_shortened_text_length=Maximale L\u00E4nge des gek\u00FCrzten Knotentexts OptionPanel.menuItemFontSize=Men\u00FC-Schriftgr\u00F6\u00DFe OptionPanel.metal=Metall OptionPanel.min_node_width=Minimale Knotenbreite OptionPanel.monitor_size_inches=Monitorgr\u00F6\u00DFe (in Zoll) OptionPanel.motif=Motif OptionPanel.narrow_hexagon=Schmales Sechseck OptionPanel.nb=Norwegisch Bokm\u00E5l / Norsk bokm\u00E5l OptionPanel.never_save_folding=nie OptionPanel.neverShowSurvey=Fragen, Umfragen und Tipps nicht anzeigen OptionPanel.nl=Niederl\u00E4ndisch, Fl\u00E4misch / Nederlands, Vlaams OptionPanel.nn=Norwegisch Nynorsk / Norsk nynorsk OptionPanel.nodebackgroundcolor=Knotenhintergrundfarbe OptionPanel.nodebackgroundcolor.tooltip=Hier wird die Knotenhintergrundfarbe eingestellt, die erscheint, wenn der Knoten nicht selektiert ist. OptionPanel.nodecolor=Knotenfarbe OptionPanel.nodecolor.tooltip=Hier wird die Knotenvordergrundfarbe eingestellt, die erscheint, wenn der Knoten nicht selektiert ist. OptionPanel.nodefontbold=Fett OptionPanel.nodefonthyperlink=Hyperlink OptionPanel.nodefontitalic=Kursiv OptionPanel.nodefontname=Knotenschrift OptionPanel.nodefontsize=Schriftgr\u00F6\u00DFe OptionPanel.nodefontstrikethrough=Durchgestrichen OptionPanel.nodeformat=Format OptionPanel.nodeformat.tooltip=Textersetzung und/oder Formatierung:
  • Textersetzung (%s ist der Originaltext), z.B.. VORSICHT: %s
  • Formatierung von Datumswerten und Zahlen - siehe Beispiele in der Auswahlbox
OptionPanel.nodenumbering=Nummerierung OptionPanel.nodenumbering.tooltip=F\u00FCgt hierarchische Nummerierung (z.B. 1.3.1) dem Knotentext hinzu. OptionPanel.nodeshape=Knotenform OptionPanel.nodetext=Knotentext OptionPanel.nodetext.tooltip=Legt den Text eines Knotens fest. Der vorherige Text wird gel\u00F6scht, wenn ein solcher Stil angewendet wird. OptionPanel.nothing=Nichts OptionPanel.number_format=Standard Zahlenformat OptionPanel.number_format.tooltip=Ein Muster das "#" f\u00FCr optionale, oder eine "0" f\u00FCr obligatorische Stellen enth\u00E4lt. Beispiel: "0.00" "0.0%", "$#.00", "#0" OptionPanel.number_of_different_files_for_automatic_save=Anzahl der verschiedenen Dateien f\u00FCr die automatische Speicherung OptionPanel.number_of_different_files_for_automatic_save.tooltip=Anzahl verschiedener Sicherungen, in denen die Maps gespeichert werden sollen. Das erste automatische Speichern erfolgt in der ersten Datei, und so weiter bis zur n+1-Datei, der wieder in der ersten Datei gespeichert wird (zyklisch). OptionPanel.oc=Okzitanisch OptionPanel.OK=Speichern OptionPanel.org.freeplane.plugin.bugreport=Fehlerberichte senden OptionPanel.org.freeplane.plugin.bugreport.allowed=Immer senden OptionPanel.org.freeplane.plugin.bugreport.ask=Report-Dialog zeigen OptionPanel.org.freeplane.plugin.bugreport.denied=Nie senden OptionPanel.org.freeplane.plugin.bugreport.userid=Optional \u00FCbertragbare ID OptionPanel.org.freeplane.plugin.svg.export.pdf.convert_text_to_shapes=Text in Formen beim PDF-Export umwandeln OptionPanel.org.freeplane.plugin.svg.export.svg.embed_fonts=Schriftarten in SVG einbetten OptionPanel.outline_hgap=Horizontaler Abstand OptionPanel.outline_vgap=Vertikaler Abstand OptionPanel.outline_view_fits_window_width=Gliederungsansicht auf Fensterbreite anpassen OptionPanel.oval=Oval OptionPanel.paint_connectors_behind=Verbindungen hinter den Knoten zeichnen OptionPanel.parse_data=Erkenne Datum-, Datum/Zeit- und Zahleneingaben OptionPanel.parse_data.tooltip=Erkenne Datum-, Datum/Zeit- und Zahleneingaben und wende Standardformate an; z.B. 100.000,00, 31.12, 31.12.99, 1999-12-31 und 1999-12-31 23:59 OptionPanel.parse_formulas=Erkenne Formeln OptionPanel.parse_formulas.tooltip=Formeln in Knoten analysieren, die mit einem Gleichheitszeichen ("=") beginnen: Siehe http://www.freeplane.org/wiki/index.php/Formulas OptionPanel.parse_latex=Erkenne LaTeX OptionPanel.parse_latex.tooltip=LaTeX-Formeln nach Format oder Pr\u00E4fix auswerten: Siehe http://www.freeplane.org/wiki/index.php/LaTeX_in_Freeplane OptionPanel.PASTE_HTML=Einf\u00FCgen als HTML OptionPanel.PASTE_PLAIN_TEXT=Einf\u00FCgen als Text OptionPanel.pasteImagesFromFiles=Bilder aus Dateien einf\u00FCgen OptionPanel.pasteImagesFromFiles.tooltip=Bild einf\u00FCgen, wenn es in die Mindmap gezogen wurde OptionPanel.path_property_may_not_be_empty=Der Pfad darf nicht leer sein! Die \u00C4nderungen wurden r\u00FCckg\u00E4ngig gemacht. OptionPanel.patternname=Name OptionPanel.patternname.tooltip=Eindeutiger Name des Stils OptionPanel.pl=Polnisch / polski OptionPanel.placenewbranches=Neuen Zweig einf\u00FCgen OptionPanel.placenewbranches.tooltip=Legt fest, wo neue Zweige eingef\u00FCgt werden. OptionPanel.plugin.tooltip=Nicht mitgelieferte Plugins. OptionPanel.plugins=Plugins OptionPanel.Presentation=Pr\u00E4sentation OptionPanel.presentation.combineAll=Alle Pr\u00E4sentationen verbinden OptionPanel.presentation.exportDirectory=Verzeichnisname exportierter Pr\u00E4sentationen OptionPanel.presentation.maxDropBoxRowCount=Maximale Reihen in Ausklappbox OptionPanel.presentation.maxDropBoxRowCount.tooltip=Anwenden f\u00FCr Pr\u00E4sentations- und Folienauswahl OptionPanel.presentation.processesEscapeKey=Pr\u00E4sentation mit beenden OptionPanel.presentation.processesNavigationKeys=Navigationstasten f\u00FCr die Steuerung der Pr\u00E4sentation OptionPanel.presentation.slideDisplaysAllNodes=Alle Foliennotizen automatisch entfalten OptionPanel.presentation.slowMotion=Zeitlupe OptionPanel.presentation.switchToFullScreen=Vollbild aktivieren OptionPanel.presentation.switchToSpotlight=Rampenlicht aktivieren OptionPanel.presentation.zoom=Zoom aktivieren OptionPanel.printonwhitebackground=wei\u00DFen Hintergrund zum Drucken verwenden OptionPanel.printonwhitebackground.tooltip=Legt fest, dass immer wei\u00DF als Hintergrund beim Drucken verwendet wird. OptionPanel.pt_BR=Protugiesisch (Brasilien)/ Portugu\u00EAs (Brasil) OptionPanel.pt_PT=Portugiesisch (Portugal) / Portugu\u00EAs (Portugal) OptionPanel.RECT=Rechteck OptionPanel.rectangle=Rechteck OptionPanel.relative=relativ OptionPanel.remind_type_of_new_nodes.tooltip=
  • "Nachfragen" fragt nach
  • "Ja" zeigt den Richt-Text-Editor an
  • "Nein" verwendet den einfachen Text-Editor
OptionPanel.remind_use_rich_text_in_new_nodes=F\u00FCr eingef\u00FCgte Knoten erweiterte Formatierung verwenden OptionPanel.reminder.showPastRemindersOnStart=Zeige vergangene Erinnerungen OptionPanel.remindersBlink=Blinkende Erinnerung OptionPanel.remindersShowNotifications=Erinnerung erzeugt Benachrichtigungseinblendung OptionPanel.remindersStandardDelay=Erinnerungsaufschub OptionPanel.remove_notes_without_question=Notizen ohne Nachfrage l\u00F6schen? OptionPanel.remove_notes_without_question.tooltip=Wenn diese Option gew\u00E4hlt ist, werden die Notizen des Knotens ohne Warnung gel\u00F6scht. Dies kann bei unbeabsichtigtem L\u00F6schen zu Datenverlust f\u00FChren. OptionPanel.resources_use_default_font_for_notes_too=Standardschriftart auch f\u00FCr Notizen verwenden OptionPanel.resources_use_margin_top_zero_for_notes=Oberen Rand f\u00FCr Notizen entfernen OptionPanel.revision_color=Revisionsfarbe OptionPanel.revision_color.tooltip=Hintergrundfarbe f\u00FCr ge\u00E4nderte Knoten. OptionPanel.ROUND_RECT=Abgerundetes Rechteck OptionPanel.ru=Russisch / \u0420\u0443\u0441\u0441\u043A\u0438\u0439 \u044F\u0437\u044B\u043A OptionPanel.save_folding=Faltung speichern OptionPanel.save_folding_if_map_is_changed=Wenn Mindmap ver\u00E4ndert wurde OptionPanel.save_last_position_in_map=Letzte Position in Mindmap speichern OptionPanel.save_last_visited_node=Letzte Selektion in Mindmap merken OptionPanel.save_modification_times=\u00C4nderungszeiten speichern OptionPanel.script_classpath=Skripte Klassenpfad: Verzeichnisse, die Klassen und/oder JARs enthalten (siehe Tooltip) OptionPanel.script_classpath.tooltip=Eine Liste von JARs und/oder Verzeichnissen, die zum Klassenpfad der Skripte/Formeln hinzugef\u00FCgt wird.
Verwenden Sie ";" (Windows) oder ":" (Linux, Mac), um die Eintr\u00E4ge der Liste voneinander zu trennen.
Verzeichnisse werden nach JAR- und .class-Dateien durchsucht.
Relative Pfade werden als relativ zum Freeplane-Benutzerverzeichnis angesehen.
Wenn Sie den Klassenpfad angeben, muss er lesbar sein. OptionPanel.script_compilation_disabled_extensions=Dateiendungen, die nicht kompiliert werden sollen (siehe Tooltip) OptionPanel.script_compilation_disabled_extensions.tooltip=Wenn alle Skripte einer zus\u00E4tzlich installierten Sprache
(au\u00DFer Groovy und JavaScript) grunds\u00E4tzliche Kompilationsfehler
haben, kann das Hinzuf\u00FCgen der Dateiendung hier helfen
(kommaseparierte Liste). OptionPanel.script_directories=Suchpfad f\u00FCr Skripte (siehe Tooltip) OptionPanel.script_directories.tooltip=Eine Liste von Skript-Verzeichnissen (zus\u00E4tzlich zu "scripts").
Verwende ";"(Windows) oder ":" (Linux, Mac) um die Eintr\u00E4ge voneinander zu trennen.
Relative Pfadangaben beziehen sich auf das Freeplane-Benutzerverzeichnis. OptionPanel.script_user_key_name_for_signing=Optionaler Aliasname eines privaten Schl\u00FCssels, um Skripte zu signieren OptionPanel.script_user_key_name_for_signing.tooltip=Wenn Sie Ihre Skripte selbst signieren wollen, dann geben Sie hier einen Alias f\u00FCr den Schl\u00FCssel ein.
Es wird erwartet, dass der Schl\u00FCssel im Standard-Schl\u00FCsselspeicher ist.
Das geheime Passwort des Schl\u00FCssels muss mit dem Passwort des Schl\u00FCsselspeichers \u00FCbereinstimmen. OptionPanel.scrollbar_increment=Geschwindigkeit OptionPanel.scrolling_speed=Geschwindigkeit beim Scrollen OptionPanel.scrollOnUnfold=Mindmap nach dem Entfalten eines Knotens neu zentrieren OptionPanel.selection_method=Auswahlmodus OptionPanel.selection_method.tooltip=Mit dem folgenden Schalter kann die verz\u00F6gerte Auswahl eines Schemas aktiviert bzw. deaktiviert werden. \u00C4ndern Sie diese Option nicht, da sie ohnehin in auto.properties gespeichert werden. OptionPanel.selection_method_by_click=Durch Mausklick OptionPanel.selection_method_delayed=Verz\u00F6gert OptionPanel.selection_method_direct=Direkt OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Stile OptionPanel.separator.anti_alias=Kantengl\u00E4ttung OptionPanel.separator.attributes=Attribute OptionPanel.separator.automatic_save=Automatisches Speichern OptionPanel.separator.behaviour=Verhalten OptionPanel.separator.browser=Browser OptionPanel.separator.cache=Cache OptionPanel.separator.clones=Klone OptionPanel.separator.cloud=Wolke OptionPanel.separator.CloudControls=Wolken OptionPanel.separator.commands_for_the_program=Programm OptionPanel.separator.connectors=Verbindungen OptionPanel.separator.data_formats=Formatieren und Erkennen von Datumseingaben OptionPanel.separator.default_colors=Standard-Farben OptionPanel.separator.default_fonts=Standard-Schriftarten OptionPanel.separator.default_styles=Standard-Stile OptionPanel.separator.edge_colors=Automatische Randfarbe OptionPanel.separator.EdgeControls=Linien OptionPanel.separator.edit_long_node_window=Externer Editor f\u00FCr gro\u00DFe Knoten OptionPanel.separator.editing=Editor-Einstellungen OptionPanel.separator.export=Export OptionPanel.separator.files=Dateien OptionPanel.separator.formula=Formeln OptionPanel.separator.General=Allgemein OptionPanel.separator.html_export=HTML-Export OptionPanel.separator.html_import=HTML-Import OptionPanel.separator.hyperlink_types=Hyperlink-Typen OptionPanel.separator.icon_properties=Icons OptionPanel.separator.IconControls=Icons OptionPanel.separator.Icons=Icons OptionPanel.separator.icons=Piktogramme in "Icon W\u00E4hlen..." OptionPanel.separator.initial_map_size=Anf\u00E4ngliche Gr\u00F6\u00DFe der Mindmap OptionPanel.separator.inline_editor=Texteingabe im Knoten OptionPanel.separator.JoinNodesAction=Knoten verschmelzen OptionPanel.separator.key_typing=Tastatureingabe OptionPanel.separator.language=Sprache OptionPanel.separator.latex=LaTeX OptionPanel.separator.load=Laden OptionPanel.separator.look_and_feel=Erscheinungsbild OptionPanel.separator.mouse_wheel=Mausrad OptionPanel.separator.new_node_commands=Knotenerzeugung OptionPanel.separator.node_editing_commands=Knotenver\u00E4nderung OptionPanel.separator.node_navigation_commands=Knotennavigation OptionPanel.separator.NodeBorder=Knotenrand OptionPanel.separator.NodeColors=Knotenfarben OptionPanel.separator.NodeFont=Knotenschrift OptionPanel.separator.NodeShape=Knotenform OptionPanel.separator.NodeStyle=Knotenstil OptionPanel.separator.NodeText=Knotentext OptionPanel.separator.notifications=Nachfragen OptionPanel.separator.org.freeplane.plugin.bugreport=Automatischer Fehlerbericht OptionPanel.separator.other_defaults=Andere Standards OptionPanel.separator.others=Andere Tastenkombinationen OptionPanel.separator.outline_view=Gliederungsansicht OptionPanel.separator.patterns=Stile OptionPanel.separator.presentation=Pr\u00E4sentation OptionPanel.separator.reminderOptions=Erinnerungseinstellungen OptionPanel.separator.RichTextEditor=Rich-Text-Editor OptionPanel.separator.root_node_appearance=Stil des Wurzel-Knotens OptionPanel.separator.save=Speichern OptionPanel.separator.scripting=Skripte OptionPanel.separator.scrollbar=Bildlaufleiste OptionPanel.separator.search=Suchen OptionPanel.separator.selection_colors=Selektionsfarben OptionPanel.separator.selection_method=Auswahlmodus OptionPanel.separator.single_instance_mode=Freeplane-Instanzen OptionPanel.separator.size_limits=Gr\u00F6\u00DFenbeschr\u00E4nkung OptionPanel.separator.spelling=Rechtschreibpr\u00FCfung OptionPanel.separator.SplitToWordsAction=Aufteilen des Knotens in W\u00F6rter OptionPanel.separator.status=Status-Zeile OptionPanel.separator.surveys=Umfragen OptionPanel.separator.svg_icons=SVG Icons OptionPanel.separator.tooltip=Tooltips OptionPanel.separator.undo=R\u00FCckg\u00E4ngig OptionPanel.separator.updates=Programm-Aktualisierungen OptionPanel.set_property_text=Ver\u00E4ndern OptionPanel.set_property_text.tooltip=
  • Leer=Nicht \u00E4ndern
  • Minus=Eigenschaft l\u00F6schen (also auf den Standard zur\u00FCcksetzen)
  • Plus=Eigenschaft setzen.
OptionPanel.setscript=Ver\u00E4ndern? OptionPanel.setscript.tooltip=Schaltet die M\u00F6glichkeit zu, ein Skript zu dem Stil hinzuzuf\u00FCgen, dass ausgef\u00FChrt wird, wenn der Stil angewendet wird. OptionPanel.shape_horizontal_margin=Horizontaler Abstand OptionPanel.shape_vertical_margin=Vertikaler Abstand OptionPanel.sharp_bezier=Geschwungen und spitz OptionPanel.sharp_linear=Spitze gerade Linie OptionPanel.shouldCenterSmallMaps=Kleine Mindmaps zentrieren OptionPanel.show_connectors=Verbindungslinien zeigen OptionPanel.show_connectors.false=nur Pfeile OptionPanel.show_connectors.for_selection=f\u00FCr Auswahl OptionPanel.show_connectors.never=nie OptionPanel.show_connectors.true=immer OptionPanel.show_creation_modification_in_status=\u00C4nderungszeit in der Statusleiste anzeigen OptionPanel.show_creation_modification_in_tooltip=\u00C4nderungszeiten anzeigen OptionPanel.show_icon_for_attributes=Icon f\u00FCr Attribut anzeigen OptionPanel.show_icons=Symbole zeigen OptionPanel.show_less_than_N_nodes_by_default_after_load=Gespeicherten Knotendarstellung von Mindmap laden bzw. manche Knoten entfalten OptionPanel.show_node_tooltips=Notiz anzeigen OptionPanel.show_note_icon_in_tooltip=Notizsymbol in Tooltip zeigen OptionPanel.show_note_icons=Icon f\u00FCr Notiz anzeigen OptionPanel.show_styles_in_tooltip=Stil-Name anzeigen OptionPanel.signed_script_are_trusted=Signierten Skripts vertrauen (empfohlen) OptionPanel.signed_script_are_trusted.tooltip=Wenn Skripte von einer vertrauensw\u00FCrdigen Stelle (z.B. von den Freeplane Entwicklern, oder von Ihnen selbst) signiert sind werden sie ohne Restriktionen ausgef\u00FChrt. OptionPanel.simplyhtml.default_paste_mode=Standard-Einf\u00FCgemodus OptionPanel.single_backup_directory=Nur ein Verzeichnis f\u00FCr Backup-Dateien verwenden OptionPanel.single_backup_directory.tooltip=Backup-Dateien und automatisch gespeicherte Dateien werden gemeinsam in einem Verzeichnis gespeichert. OptionPanel.single_backup_directory_path=Backupverzeichnis (falls vorherige Option gew\u00E4hlt ist) OptionPanel.single_backup_directory_path.tooltip=\u00DCberschreibt den Standardpfad <freeplaneuserdir>/.backup OptionPanel.single_instance=Dateien in einer aktiven Freeplane-Instanz \u00F6ffnen OptionPanel.single_instance_force=Eine zweite Instanz von Freeplane in jedem Fall verhindern OptionPanel.single_instance_force.tooltip=Vermeidet eine zweite Instanz, selbst wenn keine ladbare Datei existiert OptionPanel.sk=Slovakisch / sloven\u010Dina OptionPanel.skip_template_selection=Vorlagenauswahl-Dialog \u00FCberspringen OptionPanel.sl=Slovenisch / sloven\u0161\u010Dina OptionPanel.slow_scroll_selected_node=Langsames Scrollen zum selektierten Knoten OptionPanel.spelling_opt_case_sensitive=Gro\u00DF-/Kleinschreibung OptionPanel.spelling_opt_ignore_all_caps_words=W\u00F6rter aus Gro\u00DFbuchstaben ignorieren OptionPanel.spelling_opt_ignore_capitalization=Gro\u00DFbuchstaben am Wortbeginn ignorieren OptionPanel.spelling_opt_ignore_words_with_numbers=W\u00F6rter mit Ziffern ignorieren OptionPanel.spelling_opt_suggestions_limit_dialog=Maximale Anzahl der Vorschl\u00E4ge im Dialog OptionPanel.spelling_opt_suggestions_limit_menu=Maximale Anzahl der Vorschl\u00E4ge im Men\u00FC OptionPanel.SplitToWordsAction.auxiliaryWordList=Liste mit Hilfsw\u00F6rtern OptionPanel.SplitToWordsAction.charactersAcceptedInWord=Zeichen in W\u00F6rtern OptionPanel.SplitToWordsAction.leaveOriginalNodeEmpty=Ursprungsknoten leer lassen OptionPanel.SplitToWordsAction.nodeNumbersInLine=Knotennummer in der Zeile OptionPanel.SplitToWordsAction.saveOriginalTextAsDetails=Speichere Originaltext als Zusatz OptionPanel.spotlight=Rampenlicht OptionPanel.spotlight_background_color=Hintergrundfarbe des Rampenlichtes OptionPanel.sr=Serbisch / \u0441\u0440\u043F\u0441\u043A\u0438 OptionPanel.standard_template=Standardvorlage OptionPanel.standardbackgroundcolor=Standard-Hintergrundfarbe OptionPanel.standardbackgroundcolor.tooltip=Legt die Standardfarbe des Hintergrundes fest (in HTML-Notation) OptionPanel.standardcloudcolor=Standard Wolkenfarbe OptionPanel.standardcloudcolor.tooltip=Legt die Standard Wolkenfarbe fest (in HTML-Notation) OptionPanel.standardcloudestyle=Standard Wolkenstil OptionPanel.standardcloudestyle.tooltip=Legt den Standard-Wolkenstil fest. Im Moment wird nur die geschwungene Form (Bezier) unterst\u00FCtzt. OptionPanel.standardcloudshape=Standard-Wolkenform OptionPanel.standarddrawrectangleforselection=Selektierten Knoten durch Rechteck anzeigen OptionPanel.standarddrawrectangleforselection.tooltip=Zeigt den selektierten Knoten an, indem ein Rechteck um ihn gezeichnet wird. OptionPanel.standardlinkcolor=Standard Verbindung-Farbe OptionPanel.standardlinkcolor.tooltip=Legt die Standardfarbe der Verbindung fest (in HTML-Notation). OptionPanel.standardlinkestyle=Standard-Verbindungs-Stil OptionPanel.standardlinkestyle.tooltip=Legt den Standardstil f\u00FCr die Verbindung fest. OptionPanel.standardselectednodecolor=Standard-Farbe f\u00FCr ausgew\u00E4hlte Knoten OptionPanel.standardselectednodecolor.tooltip=Legt die Standardfarbe f\u00FCr selektierte Knoten fest (in HTML-Notation). Gilt nur, wenn die Option "Selektierten Knoten durch Rechteck anzeigen" nicht selektiert ist. OptionPanel.standardselectednoderectanglecolor=Farbe f\u00FCr das Rechteck zur Anzeige des ausgew\u00E4hlten Knoten OptionPanel.standardselectednoderectanglecolor.tooltip=Legt die Farbe des Rechtecks fest mit dem der selektierte Knoten angezeigt wird (in HTML-Notation). Gilt nur, wenn die Option "Selektierten Knoten durch Rechteck anzeigen" selektiert ist. OptionPanel.STAR=Stern OptionPanel.statesymbolwidth=Breite der Statussymbole OptionPanel.structured_html_import=Importiere HTML als Knotenhierarchie OptionPanel.structured_icon_toolbar=Strukturierte Icon-Toolbar OptionPanel.summary=Zusammenfassung OptionPanel.sv=Schwedisch / svenska OptionPanel.ta=Tamil / \u0BA4\u0BAE\u0BBF\u0BB4\u0BCD OptionPanel.text.use_ctrl_key=Um den Programm-Funktionen ein Tastaturk\u00FCrzel zuzuweisen,
verwenden Sie die Men\u00FCfunktion "Extras -> Tastaturk\u00FCrzel zuweisen" OptionPanel.textalignment=Textausrichtung OptionPanel.time_for_automatic_save=Zeitabstand f\u00FCr automatisches Speichern OptionPanel.time_for_automatic_save.tooltip=Legt die Zeit zwischen zwei aufeinanderfolgenden automatischen Speicherungen in Millisekunden fest. Wenn Sie diese Funktion deaktivieren wollen, dann setzen Sie die Zeit auf 200.00.00.000. OptionPanel.time_for_delayed_selection=Zeit f\u00FCr die verz\u00F6gerte Auswahl (in Millisekunden) OptionPanel.time_for_delayed_selection.tooltip=Legt fest, wie lange die Maus \u00FCber dem Knoten sein muss, bevor er ausgew\u00E4hlt wird. Ein Wert von 1 bedeutet direkte Auswahl mit der Maus (ohne Klick). OptionPanel.toolbar_icon_height=H\u00F6he der Symbole in der Symbolleiste OptionPanel.toolTipManager.dismissDelay=Ausblenden des Tooltips (in Millisekunden) OptionPanel.toolTipManager.initialDelay=Anf\u00E4ngliche Verz\u00F6gerung (in Millisekunden) OptionPanel.toolTipManager.max_tooltip_height=Maximale H\u00F6he der Kurzinformation OptionPanel.toolTipManager.max_tooltip_height.tooltip=Die maximale H\u00F6he der Kurzinformation in Pixeln. OptionPanel.toolTipManager.max_tooltip_width=Maximale Anzeigebreite f\u00FCr Kurzinformation OptionPanel.toolTipManager.max_tooltip_width.tooltip=Die maximale Breite der Kurzinformation in Pixeln. OptionPanel.toolTipManager.reshowDelay=Verz\u00F6gerung zur erneuten Anzeige (in Millisekunden) OptionPanel.tr=T\u00FCrkisch / T\u00FCrk\u00E7e OptionPanel.uk_UA=Ukrainisch / \u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=Unbekannte Schriftart OptionPanel.undo_levels=Anzahl widerrufbarer Aktionen OptionPanel.undo_levels.tooltip=Legt fest, wie viele Aktionen r\u00FCckg\u00E4ngig gemacht werden k\u00F6nnen. OptionPanel.unfold_on_navigation=Knoten mit Hilfe von Navigationstasten aufklappen OptionPanel.unfold_on_paste=Knoten beim Einf\u00FCgen entfalten OptionPanel.unfold_on_paste.tooltip=Knoten beim Einf\u00FCgen und beim Drag-And-Drop entfalten OptionPanel.uniform_shape=Einheitlich OptionPanel.use_auto_edge_color=Farbe {0} verwenden OptionPanel.use_common_out_point_for_root_node=Alle Linien am Wurzel-Knoten starten aus einem Punkt OptionPanel.use_common_out_point_for_root_node.tooltip=Wenn selektiert, starten alle Linien am Wurzelknoten aus einem Punkt. OptionPanel.use_svg_icons=Benutze SVG-Icons OptionPanel.use_svg_icons.tooltip=Bestimmt die Qualit\u00E4t der Symboldarstellung. SVG-Symbole ben\u00F6tigen mehr Zeit. OptionPanel.use_tabbed_pane=Karteireiter verwenden OptionPanel.use_tabbed_pane.tooltip=Wenn selektiert, werden Mindmaps in Tabs angezeigt (wie in Firefox :-) ). OptionPanel.validate_classpath_needs_readaccess=Skripte: Wenn Sie den Classpath definieren, m\u00FCssen sie den lesenden Zugriff auf Dateien erlauben! OptionPanel.validate_invalid_date_format=Standard-Format f\u00FCr Datum ist ung\u00FCltig OptionPanel.validate_invalid_datetime_format=Standard-Format f\u00FCr Datum-Zeit ist ung\u00FCltig OptionPanel.validate_invalid_number_format=Standard-Format f\u00FCr Zahlen ist ung\u00FCltig OptionPanel.validate_write_without_read=Skripte: Evtl. ben\u00F6tigen Sie zus\u00E4tzlich zum schreibenden Zugriff auch den lesenden Zugriff auf Dateien. OptionPanel.validation_error=Fehler bei der Auswertung:

{0}

Bitte \u00E4ndern Sie die Voreinstellungen, um die Fehler zu beheben. OptionPanel.validation_warning=Warnung(en) bei der Auswertung:

{0} OptionPanel.vertical_child_gap=Raum zwischen Nachfahren OptionPanel.vertical_child_gap.tooltip=Vertikaler Abstand zwischen Kindknoten OptionPanel.vi=Vietnamesisch / Ti\u1EBFng Vi\u1EC7t OptionPanel.wheel_velocity=Geschwindigkeit OptionPanel.wheel_velocity.tooltip=Ein gr\u00F6\u00DFerer Wert resultiert in schnelleren Bewegungen der Mindmap bei Bet\u00E4tigung des Mausrades. OptionPanel.wide_hexagon=Weites Sechseck OptionPanel.windows=Windows OptionPanel.zh_CN=Einfaches Chinesisch / \u7B80\u4F53\u5B57 OptionPanel.zh_TW=Traditionelles Chinesisch / \u7E41\u9AD4\u5B57 org.freeplane.plugin.bugreport.agree=Senden org.freeplane.plugin.bugreport.always_agree=Immer senden org.freeplane.plugin.bugreport.always_deny=Niemals senden org.freeplane.plugin.bugreport.deny=Nicht senden org.freeplane.plugin.bugreport.dialog.title=Automatischer Fehlerreport org.freeplane.plugin.bugreport.freeplane_team=Nachricht vom Freeplane-Team org.freeplane.plugin.bugreport.lastreport=Fehlernachverfolgung: org.freeplane.plugin.bugreport.never=Niemals nach Hilfe fragen org.freeplane.plugin.bugreport.question=Freeplane hat eine automatische Fehlerr\u00FCckverfolgungs-Funktion. org.freeplane.plugin.bugreport.report=Derzeitiger Report org.freeplane.plugin.bugreport.wanted_bug=Ein interner Fehler ist aufgetreten.\nK\u00F6nnen Sie bitte einen Fehlerbericht einreichen und beschreiben, was Sie getan haben, um uns zu helfen, den Fehler zu reproduzieren? org.freeplane.plugin.script.NodeIdHighlighter.node_is_not_defined=Der Knoten {0} ist nicht definiert out_of_memory=Zu wenig Speicher. overwrite_keyset_question=Bestehende Tastaturk\u00FCrzel-Sammlung \u00FCberschrieben? PageAction.text=Seite einrichten\u2026 password_is_not_ascii=Passwort enth\u00E4lt Zeichen ausserhalb des ASCII-Zeichensatzes PasteAction.text=Einf&\u00FCgen PasteAttributes.text=Attribute einf\u00FCgen PatternNewNameProperty=Neuer Stil PatternToString.backgroundColor=Hintergrundfarbe PatternToString.Child=Stil des Unterknotens PatternToString.color=Farbe PatternToString.EdgeColor=Linienfarbe PatternToString.EdgeStyle=Linienform PatternToString.EdgeWidth=Linienst\u00E4rke PatternToString.FontBold=Fett PatternToString.FontItalic=Kursiv PatternToString.FontName=Schrift PatternToString.Icon=Icon PatternToString.NodeFontSize=Schriftgr\u00F6\u00DFe periodic_formula={0}* n + {1} PeriodUnit.DAY=Tage PeriodUnit.HOUR=Stunden PeriodUnit.MINUTE=Minuten PeriodUnit.MONTH=Monate PeriodUnit.WEEK=Wochen PeriodUnit.YEAR=Jahre plugins/latex/LatexNodeHook.editorTitle=LaTex bearbeiten plugins/script_filter=Skript-Filter {0} plugins/script_filter_error={0} soll einen Boolean zur\u00FCckgeben von {1}. Der R\u00FCckgabewert ist aber {2} plugins/script_filter_execute_error=Beim Ausf\u00FChren des {0}\nf\u00FCr Knoten {1}\nist ein Fehler aufgetreten:\n{2} plugins/ScriptEditor.cancel=\u00C4nderungen verwerfen und &abbrechen plugins/ScriptEditor.exit=\u00C4nderungen &speichern und schlie\u00DFen plugins/ScriptEditor.FORBIDDEN_ACTION=In Freeplane sind Groovy-Skripte eingeschr\u00E4nkt. Die folgenden {0,choice,0#File|1#Network|2#Exec} Operationen sind verboten: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Sie k\u00F6nnen dies in den Programmeinstellungen \u00E4ndern. plugins/ScriptEditor.menu_actions=&Aktionen plugins/ScriptEditor.new_script=&Neues Skript plugins/ScriptEditor.run=&Starten plugins/ScriptEditor.sign=Skript s&ignieren\u2026 plugins/ScriptEditor/window.Result=Ergebnis: plugins/ScriptEditor/window.title=Skript-Editor plugins/ScriptingEngine.illegalAccessToInternalAPI=Unerlaubter Zugriff auf die interne API (Paket {0}). - Bitte kontaktieren Sie das Freeplane-Team, falls die Skript-API nicht ausreicht. preferences=Einstellungen presentation=Pr\u00E4sentation presentation.combineAll=Alle Pr\u00E4sentationen verbinden print=Drucken print_preview_title=Druckvorschau PrintAction.text=Drucken\u2026 PrintDirectAction.text=Drucken printing_settings=Druckskalierung PrintPreviewAction.text=Druckvorschau\u2026 program_terminates=Interner Fehler, Programm wird beendet. progress=Fortschritts-Icon (%) QuickFilterAction.text=Schnellfilter QuickFindAction.BACK.text=Suche r\u00FCckw\u00E4rts QuickFindAction.FORWARD.text=Suche vorw\u00E4rts QuickFindAllAction.text=alle passenden Knoten ausw\u00E4hlen QuickHighlightAction.text=alle passenden Knoten hervorheben QuitAction.text=Beenden read_only=Schreibgesch\u00FCtzt ReadScriptError.text=Fehler beim Lesen des Skripts really_convert_to_current_version=Diese Mindmap wurde mit einer \u00E4lteren Version von Freeplane erzeugt.
Soll sie konvertiert werden (empfohlen)?
Nicht konvertierte Mindmaps k\u00F6nnen evtl. nicht richtig angezeigt werden. really_cut_node=Knoten wirklich ausschneiden? really_execute_script=Wollen Sie wirklich die Skripte in dieser Mindmap ausf\u00FChren? Es ist m\u00F6glich, dass diese Skripte ihren Rechner besch\u00E4digen. really_remove_node=Knoten wirklich l\u00F6schen? really_remove_notes=Wollen Sie wirklich die Notizen l\u00F6schen? ReapplyFilterAction.text=Erneut anwenden red=Rot RedefineStyleAction.text=Stil neu festlegen RedoAction.text=Wiederherstellen RedoFilterAction.text=Wiederherstellen regular_expressions=Regul\u00E4re Ausdr\u00FCcke reminder.appendButton=Datum in Auswahl einf\u00FCgen reminder.Cancel=Abbrechen reminder.cancelButton=Abbrechen reminder.closeButton=Schlie\u00DFen reminder.Created=Erzeugt reminder.Details=Details reminder.Export=Markierte Knoten exportieren reminder.Find=Suchen reminder.Goto=Selektieren und schlie\u00DFen reminder.hour=Stunde: reminder.Icons=Icons reminder.Map=Mindmap reminder.menu_actions=Aktionen reminder.minute=Minute: reminder.Modified=Ver\u00E4ndert reminder.Notes=Notizen reminder.Reminder=Erinnerung reminder.reminderButton=Wiedervorlage reminder.reminderButton.tooltip=Zur gegebenen Zeit werden Sie durch blinkende Icons benachrichtigt - allerdings nur, wenn Freeplane l\u00E4uft.
Wenn Sie Freeplane beenden, wird der Timer beim n\u00E4chsten \u00D6ffnen dieser Mindmap erneut gestartet. reminder.reminderNode.tooltip=Wiedervorlage am {0,date} {0,time}. reminder.reminderNode_onlyOneDate=Zur Zeit kann nur eine Erinnerung pro Knoten gespeichert werden.
Die aktuelle Erinnerung ist f\u00FCr {0,date} {0,time} geplant, Sie wollten allerdings {1,date} {1,time}.

Wollen Sie die Erinnerungszeit des Knotens \u00E4ndern (JA)
oder m\u00F6chten Sie die alte beibehalten (NEIN)? reminder.remindLaterButton=sp\u00E4tere Erinnerung reminder.remindLaterButton.tooltip=sp\u00E4tere Erinnerung reminder.Remove_All=Alle Erinnerungen entfernen reminder.Remove_Selected=Ausgew\u00E4hlte Erinnerungen entfernen reminder.removeReminderButton=Wiedervorlage &entfernen reminder.removeReminderButton.tooltip=Entfernt alle Wiedervorlagen der ausgew\u00E4hlten Knoten. reminder.Replace=Ersetzen reminder.Replace_All=Alle ersetzen reminder.Replace_Selected=Markierte ersetzen reminder.Run_All=Alle Skripte starten reminder.Run_Selected=Ausgew\u00E4hlte Skripte starten reminder.Select=Ausw\u00E4hlen reminder.Text=Text reminder.todayButton=Heute reminder.WindowTitle=Erinnerungen verwalten reminder.WindowTitle_All_Nodes=Suchen & Ersetzen reminder.WindowTitle_pastReminders=Vergangene Erinnerungen reminder_script_error=Fehler {0} in Erinnerungs-Skript in Mindmap {1} Knoten {2} ReminderHookAction.text=Wiedervorlage entfernen ReminderHookAction.tooltip=Entfernt eine Wiedervorlage. ReminderListAction.text=Aufgaben und Erinnerungen verwalten\u2026 ReminderListAction.tooltip=Zeigt alle Wiedervorlagezeiten und die dazugeh\u00F6rigen Knoten. reminderNotification=Erinnerungsbenachrichtigung remove_file_from_list_on_error=Konnte die Datei {0} nicht \u00F6ffnen. Soll sie aus der Liste der zuletzt ge\u00F6ffneten Mindmaps entfernt werden? remove_shortcut_question=Tastaturk\u00FCrzel ersetzen? RemoveAllAlwaysUnfoldedNodeFlagsAction.text=Entfaltete Knoten zur\u00FCcksetzen RemoveAllAlwaysUnfoldedNodeFlagsAction.tooltip=Erlaubt das Auf-/Zuklappen f\u00FCr jeden Knoten RemoveAllIconsAction.text=L\u00F6sche alle RemoveConnectorAction.text=Verbindung entfernen RemoveEncryption.text=Knotenpasswort entfernen RemoveFormatAction.text=Format entfernen RemoveIcon_0_Action.text=L\u00F6sche erstes RemoveIconAction.text=L\u00F6sche letztes RemoveNoteAction.text=l&\u00F6schen RemoveNoteAction.tooltip=Entfernt Notizen von evtl. mehreren Knoten. rename=&Umbenennen repair_link=Link reparieren repair_link_question=Die Mindmap konnte nicht gefunden werden. Link von Hand reparieren? replace=Ersetzen replace_shortcut_question=Dieses Tastaturk\u00FCrzel ist bereits zugewiesen an:\n{0}\nSoll die Zuweisung ge\u00E4ndert werden? replace_shortcut_title=Tastaturk\u00FCrzel ersetzen? ReportBugAction.text=Programm-Fehler melden RequestFeatureAction.text=Verbesserungsvorschlag machen reset_to_default=Standard benutzen ResetNodeLocationAction.text=Position zur\u00FCcksetzen ResetStyleAction.text=Knotenstil zur\u00FCcksetzen resources=Ressourcen RevertAction.text=Aus Revisionsverlauf wiederherstellen RevisionPluginAction.text=&\u00C4nderungen markieren ribbon.extras=Extras ribbon.filter=Filter ribbon.formatting=Formatierung ribbon.help=Hilfe ribbon.home=Startseite ribbon.navigate=Navigieren ribbon.nodes=Knoten ribbon.resources=Ressourcen ribbon.search_and_filter=Such- und Filterfunktion ribbon.tools_and_settings=Werkzeuge und Einstellungen ribbon.view=Ansicht save=&Speichern save_failed=Der Versuch, {0} zu speichern, ist fehlgeschlagen. save_unsaved=Soll die folgende Mindmap gespeichert werden? save_unsaved_styles=Knotenstile speichern? SaveAcceleratorPresetsAction.text=Sammlung speichern\u2026 SaveAction.text=Mindmap speichern SaveAction_readonlyMsg=Diese Mindmap ist schreibgesch\u00FCtzt. Bitte benutzen Sie "Datei" \u2192 "Speichern unter\u2026" um diese Mindmap zu speichern. SaveAction_readonlyTitle=Versuch, eine schreibgesch\u00FCtzte Karte zu speichern SaveAll.text=Alle Mindmaps speichern SaveAll.tooltip=Speichert alle ge\u00F6ffneten Mindmaps SaveAs_toReadonlyMsg={0} ist schreibgesch\u00FCtzt. Bitte eine andere Datei zum Speichern ausw\u00E4hlen. SaveAs_toReadonlyTitle=Versuche in eine schreibgesch\u00FCtzte Datei zu speichern SaveAsAction.text=Mindmap speichern unter\u2026 saved=Gespeichert saving_canceled=Speichervorgang abgebrochen scanners_not_loaded=Scanner konnten nicht geladen werden, Datei korrupt scheme_evaluate=Auswerten! script_execution_disabled=Ausf\u00FChrung von Skripten ist deaktiviert, siehe Extras/Einstellungen/Plugins ScriptEditor.text=Skript-Editor\u2026 ScriptEditor.tooltip=Erm\u00F6glicht es Freeplane \u00FCber Skripte zu steuern. ScriptEditorPanel.changed_cancel=Die Skripte wurden ver\u00E4ndert. Wollen Sie wirklich abbrechen? scripting=Skripte scripting_api_generator_legend=Legende scripting_api_generator_proxy=Proxy scripting_api_generator_title=Skript-API scripting_api_generator_utilities=Dienstprogramme scripting_api_generator_web=Web-Ressourcen ScriptsRunToggleAction.ON_SELECTED_NODE.text=Skripte auf alle ausgew\u00E4hlten Knoten anwenden ScriptsRunToggleAction.ON_SELECTED_NODE_RECURSIVELY.text=Skripte auf alle ausgew\u00E4hlten Knoten rekursiv anwenden ScriptsRunToggleAction.ON_SINGLE_NODE.text=Skripte auf einen ausgew\u00E4hlten Knoten anwenden search_and_filter=Suchen und filtern select_favorites_folder=Ordner w\u00E4hlen der Favoriten enth\u00E4lt select_file_export_to=Datei ausw\u00E4hlen, die exportiert werden soll select_folder_for_importing=W\u00E4hlen Sie den Ordner aus, der importiert werden soll select_icon=Iconauswahl select_menu_item_dialog=Men\u00FCeintrag ausw\u00E4hlen select_menu_item_root_node=Men\u00FC select_template=Vorlage ausw\u00E4hlen SelectAllAction.text=Alle sichtbaren Knoten ausw\u00E4hlen SelectBranchAction.text=Zweig markieren SelectedPasteAction.text=Einf\u00FCgen als\u2026 SelectFilteredNodesAction.text=Knoten ausw\u00E4hlen, die dem Filter entsprechen selection_method_by_click=Einfacher Mausklick selektiert selection_method_delayed=Verz\u00F6gerte automatische Selektion selection_method_direct=Mausber\u00FChrung selektiert SelectNoteAction.text=Notizfenster einblenden SelectNoteAction.tooltip=Wechselt vom bzw. zum Notiz-Editor set_accelerator_on_next_click_helpmessage=Um ein neues Tastaturk\u00FCrzel zu erstellen, klicken Sie auf den gew\u00FCnschten Men\u00FCeintrag. SetAccelerator.dialogTitle=Tastaturk\u00FCrzel zuweisen SetAccelerator.keystrokeDetected=Tastaturk\u00FCrzel {0} ist keinem Men\u00FCeintrag zugeordnet. SetAcceleratorOnNextClickAction.text=Tastaturk\u00FCrzel zuweisen SetAlwaysUnfoldedNodeFlagsAction.text=Behalte entfaltete Knoten SetAlwaysUnfoldedNodeFlagsAction.tooltip=Verhindert das Zuklappen f\u00FCr gegenw\u00E4rtig aufgeklappte Knoten SetImageByFileChooserAction.text=Bildverkn\u00FCpfung erstellen\u2026 SetLinkAnchorAction.text=Setze Anker SetLinkAnchorAction.tooltip=Gew\u00E4hlten Knoten als k\u00FCnftigen Bezugspunkt
zu lokalen oder globalen Verkn\u00FCpfungen machen. SetLinkAnchorAction.tooltip_anchored=Setzt aktuellen Knoten als Bezugspunkt von dem aus
bzw. zu dem ein lokaler bzw. datei\u00FCbergreifender
Hyperlink erstellt werden kann.
Aktuell: {0} SetLinkByFileChooserAction.text=Link auf Datei\u2026 SetLinkByTextFieldAction.text=Link per Textfeldeingabe\u2026 SetNodeAliasAction.text=Knoten-Alias setzen SetNodeLink.text=Link auf Knoten\u2026 SetNoteWindowPosition.bottom.text=Unten SetNoteWindowPosition.left.text=Links SetNoteWindowPosition.right.text=Rechts SetNoteWindowPosition.top.text=Oben SetShortenerStateAction.text=Knoten verk\u00FCrzt anzeigen sf_login_required=Anmeldung bei SourceForge erforderlich. Fortfahren? ShowAllAttributesAction.text=Alle anzeigen ShowAncestorsAction.text=zeige Vorg\u00E4nger ShowAttributeDialogAction.text=Attribute verwalten\u2026 ShowDescendantsAction.text=zeige Nachfolger ShowFilterToolbarAction.text=Filter-Symbolleiste ShowFirstSlideAction.text=Erste Folie ShowFirstSlideAndStartPresentationAction.text=Pr\u00E4sentation von Beginn starten ShowFormatPanel.text=Werkzeugleiste ShowFormatPanel.tooltip=Dialog, in dem Knoten- und Kantenformate auf einmal ge\u00E4ndert werden k\u00F6nnen. ShowHideNoteAction.text=Notiz-Editor anzeigen ShowHideNoteAction.tooltip=Damit kann man das Notizfenster verbergen bzw. wieder anzeigen. ShowLastSlideAction.text=Letzte Folie ShowNextChildAction.text=N\u00E4chsten Unterknoten anzeigen ShowNextSlideAction.text=N\u00E4chste Folie ShowNotesInMapAction.text=Notiz immer einblenden ShowPreferencesAction.dialog=Einstellungen ShowPreferencesAction.text=Einstellungen\u2026 ShowPreviousSlideAction.text=Vorherige Folie ShowSelectedAttributesAction.text=Nur ausgew\u00E4hlte anzeigen ShowSelectionAsRectangleAction.text=Rechteck als Auswahlmarkierung simplyhtml.aboutFrameTitle=\u00DCber dieses Programm simplyhtml.aboutLabel=\u00DCber SimplyHTML\u2026 simplyhtml.alignCenter=Zentriert simplyhtml.alignLabel=Ausrichtung: simplyhtml.alignLeft=Links simplyhtml.alignRight=Rechts simplyhtml.allCellsRangeLabel=Alle Zellen simplyhtml.allOccurrencesReplaced=Alle \u00DCbereinstimmungen ersetzt simplyhtml.appendTableColLabel=Spalte anh\u00E4ngen simplyhtml.appendTableRowLabel=Zeile anh\u00E4ngen simplyhtml.applyCellAttrLabel=Anwenden auf simplyhtml.backgroundLabel=Hintergrund: simplyhtml.blackFontColorLabel=Schwarz simplyhtml.blueFontColorLabel=Blau simplyhtml.boldItalicName=Fett kursiv simplyhtml.boldName=Fett simplyhtml.borderColorLabel=Farbe: simplyhtml.borderWidthLabel=Breite simplyhtml.bottomLabel=Unten: simplyhtml.cancelBtnName=Abbrechen simplyhtml.cellBorderTabLabel=Rahmen simplyhtml.cellGenTabLabel=Allgemein simplyhtml.cellMarginTabLabel=Abstand simplyhtml.cellPanelTitle=Zellenformat simplyhtml.clearFormatLabel=Formatierung l\u00F6schen simplyhtml.clearFormatTip=Formatierung l\u00F6schen simplyhtml.close=Schlie\u00DFen simplyhtml.closeBtnName=Schlie\u00DFen simplyhtml.colorLabel=Farbe simplyhtml.copyLabel=Kopieren simplyhtml.copyTip=Kopieren simplyhtml.cTagNameHead1=\u00DCberschrift 1 simplyhtml.cTagNameHead2=\u00DCberschrift 2 simplyhtml.cTagNameHead3=\u00DCberschrift 3 simplyhtml.cTagNameHead4=\u00DCberschrift 4 simplyhtml.cTagNameHead5=\u00DCberschrift 5 simplyhtml.cTagNameHead6=\u00DCberschrift 6 simplyhtml.cTagNameLink=Verkn\u00FCpfung simplyhtml.cTagNameOL=Nummerierte Liste simplyhtml.cTagNamePara=Absatz simplyhtml.cTagNameUL=Bullet-Liste simplyhtml.cutLabel=Ausschneiden simplyhtml.cutTip=Ausschneiden simplyhtml.decreaseFontSizeLabel=Kleiner simplyhtml.defaultDocName=Ohne Titel simplyhtml.deleteTableColLabel=Spalte l\u00F6schen simplyhtml.deleteTableRowLabel=Zeile l\u00F6schen simplyhtml.docTitleQuery=Neuer Titel: simplyhtml.docTitleTitle=Dokumenttitel bearbeiten simplyhtml.editLabel=Bearbeiten simplyhtml.effectLabel=Effekt simplyhtml.familyLabel=Familie simplyhtml.findNext=Suchen\u2026 simplyhtml.findReplaceDialogTitle=Suchen & Ersetzen simplyhtml.findReplaceLabel=Suchen & Ersetzen simplyhtml.findReplaceTip=Suchen & Ersetzen simplyhtml.fontBoldLabel=Fett simplyhtml.fontBoldTip=Fett an- und ausschalten simplyhtml.fontColorLabel=Textfarbe simplyhtml.fontColorTip=Textfarbe simplyhtml.fontDialogTitle=Zeichen formatieren simplyhtml.fontItalicLabel=Kursiv simplyhtml.fontItalicTip=Kursiv an- und ausschalten simplyhtml.fontLabel=Zeichen\u2026 simplyhtml.fontTabLabel=Schriftart simplyhtml.fontTip=Zeichen formatieren\u2026 simplyhtml.fontUnderlineLabel=Unterstreichen simplyhtml.fontUnderlineTip=Unterstreichen an- und ausschalten simplyhtml.foregroundLabel=Vordergrund: simplyhtml.formatLabel=Format simplyhtml.formatListLabel=Liste\u2026 simplyhtml.formatListTip=Listenformat \u00E4ndern simplyhtml.formatParaLabel=Absatz\u2026 simplyhtml.formatParaTip=Absatzformat \u00E4ndern simplyhtml.formatTableLabel=Tabelle\u2026 simplyhtml.formatTableTip=Tabelle formatieren simplyhtml.greenFontColorLabel=Gr\u00FCn simplyhtml.helpLabel=Hilfe simplyhtml.htmlTabTitle=HTML-Code-Ansicht simplyhtml.imageFileDesc=Bilddateien simplyhtml.increaseFontSizeLabel=Gr\u00F6\u00DFer simplyhtml.insertTableColLabel=Spalte einf\u00FCgen simplyhtml.insertTableLabel=Tabelle\u2026 simplyhtml.insertTableMsg=Wieviele Spalten? simplyhtml.insertTableRowLabel=Zeile einf\u00FCgen simplyhtml.insertTableTitle=Tabelle einf\u00FCgen simplyhtml.italicName=Kursiv simplyhtml.layoutTabTitle=Layout-Ansicht simplyhtml.leftLabel=Links: simplyhtml.listDialogTitle=Liste formatieren simplyhtml.listIndentTitle=Einr\u00FCckung: simplyhtml.listPosInside=Einger\u00FCckt simplyhtml.listPositionLabel=Position: simplyhtml.listPosOutside=Ausger\u00FCckt simplyhtml.listTypeCircle=Leerer Kreis Bulletzeichen simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeDisc=Ausgef\u00FCllter Kreis als Bulletzeichen simplyhtml.listTypeLabel=Typ: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=Keine simplyhtml.listTypeSquare=Rechteckiges Bulletzeichen simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=Au\u00DFen simplyhtml.matchApproximately=\u00C4hnlichkeitssuche simplyhtml.matchApproximately.tooltip=Gibt an, ob \u00E4hnliche Treffer angezeigt werden sollen,
z.B. Suche nach 'files' findet 'flies'. simplyhtml.matchCase=Gro\u00DF-/Kleinschreibung simplyhtml.matchCase.tooltip=Gibt an, ob Gro\u00DF/Kleinschreibung bei der Suche beachtet werden soll. simplyhtml.newStyleDefaultName=Neue Formatvorlage simplyhtml.nextTableCellLabel=N\u00E4chste Zelle simplyhtml.noLineLabel=Keine simplyhtml.noMoreOccurrencesFound=Keine (weiteren) \u00DCbereinstimmungen gefunden simplyhtml.okBtnName=OK simplyhtml.paddingLabel=Innen simplyhtml.paraAlignCenterLabel=Zentriert simplyhtml.paraAlignCenterTip=Paragraph zentriert ausrichten simplyhtml.paraAlignLeftLabel=Linksb\u00FCndig simplyhtml.paraAlignLeftTip=Paragraph linksb\u00FCndig ausrichten simplyhtml.paraAlignRightLabel=Rechtsb\u00FCndig simplyhtml.paraAlignRightTip=Paragraph rechtsb\u00FCndig ausrichten simplyhtml.paraStyleDialogTitle=Absatzformat simplyhtml.paraTabLabel=Absatz simplyhtml.pasteHTMLLabel=Einf\u00FCgen als HTML simplyhtml.pasteLabel=Einf\u00FCgen simplyhtml.pastePlainTextLabel=Einf\u00FCgen als Text simplyhtml.pasteTip=Einf\u00FCgen simplyhtml.plainName=Standard simplyhtml.previewLabel=Vorschau simplyhtml.previewText=Dies ist ein Test simplyhtml.prevTableCellLabel=Vorige Zelle simplyhtml.printLabel=Drucken\u2026 simplyhtml.redFontColorLabel=Rot simplyhtml.redoLabel=Wiederholen simplyhtml.redoTip=Wiederholen simplyhtml.removeFontColorLabel=Farbe entfernen simplyhtml.replace=Ersetzen\u2026 simplyhtml.replaceAll=Alles simplyhtml.replaceDone=Fertig simplyhtml.replaceNo=Nein simplyhtml.replaceThisQuery=Ersetzen simplyhtml.replaceWith=Ersetzen mit: simplyhtml.replaceYes=Ja simplyhtml.rightLabel=Rechts: simplyhtml.searchDown=Nach unten suchen simplyhtml.searchDown.tooltip=Von oben nach unten suchen. simplyhtml.searchFromStart=Vom Anfang an suchen simplyhtml.searchFromStart.tooltip=Von Anfang an (und nicht ab der Cursorposition) suchen. simplyhtml.searchUp=Nach oben suchen simplyhtml.searchUp.tooltip=Von unten nach oben suchen. simplyhtml.selectAllLabel=Alles ausw\u00E4hlen simplyhtml.selectedFontColorLabel=Selektierte Textfarbe simplyhtml.sizeLabel=Gr\u00F6\u00DFe simplyhtml.standardStyleName=Standard simplyhtml.strikeLabel=Durchgestrichen simplyhtml.styleLabel=Stil simplyhtml.styleNameInputText=Name der Formatvorlage? simplyhtml.styleNameInputTitle=Formatvorlage speichern simplyhtml.tableBgColLabel=Hintergrundfarbe: simplyhtml.tableDialogTitle=Tabelle formatieren simplyhtml.tableLabel=Tabelle simplyhtml.tablePanelTitle=Tabellenformat simplyhtml.tableWidthLabel=Breite: simplyhtml.textIndentLabel=Einr\u00FCckung: simplyhtml.textToFind=Suche Text: simplyhtml.thisCellRangeLabel=Diese Zelle simplyhtml.thisColRangeLabel=Diese Spalte simplyhtml.thisRowRangeLabel=Diese Zeile simplyhtml.toggleBulletsLabel=Aufz\u00E4hlung ein/aus simplyhtml.toggleBulletsTip=Aufz\u00E4hlung ein/aus simplyhtml.toggleNumbersLabel=Numerierung ein/aus simplyhtml.toggleNumbersTip=Numerierung ein/aus simplyhtml.topLabel=Oben: simplyhtml.uLineLabel=Unterstrichen simplyhtml.unableToOpenFileError=Datei kann nicht ge\u00F6ffnet werden simplyhtml.unableToRedoError=Wiederholen nicht m\u00F6glich: simplyhtml.unableToUndoError=R\u00FCckg\u00E4ngig nicht m\u00F6glich: simplyhtml.undoLabel=R\u00FCckg\u00E4ngig simplyhtml.undoTip=R\u00FCckg\u00E4ngig simplyhtml.valignBaseline=Basislinie simplyhtml.valignBottom=Unten simplyhtml.valignLabel=Vert. Ausrichtung: simplyhtml.valignMiddle=Mittig simplyhtml.valignTop=Oben simplyhtml.wholeWordsOnly=Nur ganze Worte simplyhtml.wholeWordsOnly.tooltip=Treffer auf ganze W\u00F6rter beschr\u00E4nken. slide.add=Hinzuf\u00FCgen slide.add.tooltip=aktuell ausgew\u00E4hlte Knoten zur Pr\u00E4sentation hinzuf\u00FCgen slide.at_center.tooltip=im Zentrum slide.content=Folieninhalt slide.descendants=Unterknoten zeigen slide.edge=am Rand slide.filter=Filter slide.first=Erster slide.last=Letzter slide.next=N\u00E4chster slide.nofilter=Kein Filter slide.on_the_left.tooltip=auf der linken Seite slide.on_the_right.tooltip=auf der rechten Seite slide.placenode=Markierten Knoten platzieren slide.placenode.tooltip=wenn die Folie pr\u00E4sentiert wird slide.present=Pr\u00E4sentation starten slide.presentation=Pr\u00E4sentation slide.presentations=Pr\u00E4sentationen slide.previous=Vorheriger slide.remove=Entfernen slide.remove.tooltip=aktuell ausgew\u00E4hlte Knoten von Folie entfernen slide.select=Ausw\u00E4hlen slide.select.tooltip=Folienknoten in Mindmap ausw\u00E4hlen slide.set=Setzen slide.set.tooltip=Aktuell ausgew\u00E4hlter Knoten zur Folie hinzuf\u00FCgen slide.setfilter=Filter setzen slide.setfilter.tooltip=Filter setzen oder entfernen, wenn Folie gezeigt wird slide.setfoldingstate=Falzstatus einstellen slide.setfoldingstate.tooltip=Falzstatus wiederherstellen, wenn Folie gezeigt wird slide.setzoom=Zoom einstellen slide.setzoom.tooltip=Zoom setzen / entfernen, wenn Folie gezeigt wird slide.showancestors=\u00DCbergeordnete Knoten zeigen slide.showonlyselected=nur ausgew\u00E4hlte Knoten zeigen slide.showonlyselected.tooltip=Versteckt andere Knoten, wenn Folie gezeigt wird slide.slides=Folien slide.stop=Beenden sort=Sortieren SortNodes.text=Unterknoten alphabetisch sortieren SortNodes.tooltip=Unterknoten eines Knotens alphabetisch sortieren. split=&Teilen SplitConditionAction.text=Aufteilen SplitNode.text=Text aufteilen SplitNode.tooltip=Knoteninhalt wird auf mehrere Knoten verteilt. SplitToWordsAction.text=Nach {0} W\u00F6rtern pro Zeile teilen STANDARD_FORMAT=Standard StartPresentationAction.text=Pr\u00E4sentation starten StartPresentationOrShowNextSlideAction.text=Pr\u00E4sentation starten / n\u00E4chste Folie stop_processing=Stop StopPresentationAction.text=Pr\u00E4sentation beenden StrikeThroughAction.text=Durchgestrichen StringFlavorHandler=Knotenhierarchie als einfacher Text StructuredHtmlFlavorHandler=Knotenhierarchie als HTML style=Stil style_already_exists=Dieser Knotenstil existiert bereits. styledialog.cancel.text=Abbrechen styledialog.ok.text=OK styles=Knoten&stile styles.AutomaticLayout=Automatisches Layout styles.connection=Verbindung styles.date=Datum styles.definition=Definition styles.description=Beschreibung styles.floating_node=Schwebender Knoten styles.idea=Idee styles.important=Wichtig styles.key=Schl\u00FCssel styles.list=Liste styles.needs_action=Handlungsbedarf styles.note=Notiz styles.ok=OK styles.pending=Unerledigt styles.predefined=Standard Knotenstile styles.question=Frage styles.quotation=Zitat styles.root_node=Knotenstile styles.subsubtopic=Unterunterbegriff styles.subtopic=Unterbegriff styles.topic=Oberbegriff styles.user-defined=Benutzerdefinierte Knotenstile styles.website=Website styles_background_html=\n \n \n \n \n \n \n \n \n \n
\n
\n \u00DCber diesen Lernstil\n
\n
\n
\n Dieser Standard wurde nach 11 Jahren Bildungsforschung dar\u00FCber, wie man den Prozess des Lernens leichter und schneller machen kann, entwickelt.\n
\n
\n Er hat den Zweck den Prozess des Aufnehmens, Verarbeitens, Verstehens und Beherrschens von Wissen, Informationen und Ideen so schnell und leicht wie m\u00F6glich zu machen.\n
\n
\n Er wurde von Jonas Batista (Brazil) entwickelt.\n Sie k\u00F6nnen weitere Information unter www.jonasbatista.com.br/ finden.\n
\n
\n
\n \n
\n Jonas Batista
\n
\n
\n \n styles_menu=Knotenstile submenu_keystroke_in_use_error=Tastaturk\u00FCrzel {0} kann nicht f\u00FCr ein Untermen\u00FC ({1}) verwendet werden und wurde deshalb entfernt. summary_nodes=Gruppierungsknoten summary_not_possible=Knoten-Zusammenfassung aus aktueller Selektion kann nicht erstellt werden svg=SVG task.filter=Filtern task.formatting=Formatieren task.help=Hilfe task.navigate=Navigieren task.nodes=Knoten task.resources=Ressourcen task.tools_and_settings=Werkzeuge und Einstellungen task.view=Ansicht template_dir=Standardvorlagen TextAlignAction.CENTER.text=Zentrierter Text TextAlignAction.DEFAULT.text=Voreinstellung TextAlignAction.LEFT.text=Links ausgerichteter Text TextAlignAction.RIGHT.text=Rechts ausgerichteter Text textalignment=Textausrichtung TextChangeHotKeyAction.text=Tastenk\u00FCrzel f\u00FCr Text\u00E4nderung setzen TimeManagementAction.text=Kalender anzeigen\u2026 TimeManagementAction.tooltip=Zeigt das Kalender-Modul von Kai Toedter. TimePeriodUnits.days=Tage TimePeriodUnits.hours=Stunden TimePeriodUnits.minutes=Minuten TimePeriodUnits.ms=Millisekunden TimePeriodUnits.seconds=Sekunden TimePeriodUnits.weeks=Wochen ToggleChildrenFoldedAction.text=Unterknoten falten / entfalten ToggleDetailsAction.text=Knotendetails ein-/ausblenden ToggleFBarAction.text=Funktionstasten ToggleFoldedAction.text=Knoten falten / entfalten ToggleFullScreenAction.text=Vollbildmodus ToggleLeftToolbarAction.text=Icons ToggleMenubarAction.text=Men\u00FC ToggleRibbonAction.text=Multifunktionsleiste minimieren ToggleScrollbarsAction.text=Bildlaufleiste ToggleStatusAction.text=Statuszeile ToggleToolbarAction.text=Werkzeuge tools_and_settings=Werkzeuge und Einstellungen tools_misc=Verschiedenes tooltips=Schnellinfos TranslatedElement.BORDER=Textrand TranslatedElement.TEXT=Text TranslatedElement.TOOLTIP=Tooltip TutorialAction.text=Tutorial uiTextChanger.originalTextIsNotDefined=Ursprungstext ist nicht definiert uiTextChanger.replaceText=Ersetze Text undefined_error=Ein unerwarteter Fehler ist aufgetreten. Eine Fehlernachricht im Forum w\u00E4re hilfreich. underline=Unterstrich UnderlineAction.text=Unterstreichen underlined=Unterstrichen UndoAction.text=R\u00FCckg\u00E4ngig UndoFilterAction.text=R\u00FCckg\u00E4ngig unfold=Entfalten UnfoldAllAction.text=Gesamten Zweig entfalten UnfoldAllAction.tooltip=Faltet die Unterknoten des selektierten Zweigs auf UnfoldOneLevelAction.text=Weitere Ebene entfalten UnfoldOneLevelAction.tooltip=Faltet die selektierten Knoten eine weitere Ebene auf. unparsedLatexPatternFormat=LaTeX f\u00FCr Export up=Auf UpConditionAction.text=Auf update_failed=Update ist fehlgeschlagen mit der Meldung {0} UpdateCheckAction.text=Auf Updates pr\u00FCfen updatecheckdialog=Updatepr\u00FCfung updater.component=Komponente updater.goToDownload=Gehe zu Download updater.version.installed=Installierte Version updater.version.latest=Aktuellste Version updater.version.noUpdateUrl=Keine Update-URL bzw. Homepage f\u00FCr dieses Add-On. updater.version.unknown=unbekannt updater.version.unreachable=Unerreichbare Quelle: updater.viewChangelog=zeige Changelog url_error=Diese URL ist fehlerhaft! url_open_error=Die URL {0} konnte nicht geladen werden. used_in_menu=Dieses Tastaturk\u00FCrzel kann nicht gesetzt werden, da es bereits im Men\u00FC verwendet wird. UsePlainTextAction.text=Nur reiner Text user_config_folder=Benutzerkonfiguration: {0} user_defined_filters=Benutzerdefinierte Filter user_defined_scale=Benutzerdefinierte &Gr\u00F6\u00DFe user_defined_zoom=Benutzerdefiniert user_defined_zoom_status_bar=Der Zoom wurde ge\u00E4ndert und steht nun auf dem benutzerdefinierten Wert von {0}%. user_icon={0} user_template_dir=Benutzerdefinierte Vorlagen user_zoom=Druckvergr\u00F6\u00DFerung (0.0 - 2.0): userScripts=Skripte value_format=Zahlenformat version_up_to_date=Sie benutzen bereits die aktuellste Version view=&Ansicht view_misc=Verschiedenes view_mode=Ansichtsmodus ViewLayoutTypeAction.OUTLINE.text=Gliederungsansicht viewsettings=Ansichtseinstellungen web_resources=Web-Ressourcen WebDocuAction.text=Web Dokumentation WhatsNewAction.text=Was ist neu in Freeplane 1.5.x width=Breite wrong_regexp=Der regul\u00E4re Ausdruck "{0}" ist fehlerhaft (Fehler {1}) xslt_export.html=HTML-Dokument xslt_export.latex=LaTex Dokument xslt_export.latexbook=LaTex Buch xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=Microsoft Excel 2003 XML xslt_export.ms_project=Microsoft Project 2003 XML xslt_export.ms_word=Microsoft Word 2003 XML xslt_export.text=Klartext xslt_export_not_possible=Freeplane XSLT-Export nicht m\u00F6glich yes=Ja zoom=Zoom ZoomInAction.text=Zoom &+ ZoomOutAction.text=Zoom &- freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_el.properties0100644 0000000 0000000 00001074406 13532733541 027633 0ustar000000000 0000000 about_text=Freeplane - \u03B4\u03C9\u03C1\u03B5\u03AC\u03BD \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7\u03C2 \u03C3\u03BA\u03AD\u03C8\u03B5\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C3\u03C5\u03B3\u03BA\u03C1\u03CC\u03C4\u03B7\u03C3\u03B7\u03C2 \u03B3\u03BD\u03CE\u03C3\u03B7\u03C2 AboutAction.text=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC acceleratorPresets=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03BA\u03B1\u03AF\u03C1\u03B9\u03C9\u03BD \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD accelerators_loading_error=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B2\u03AC\u03C3\u03C9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03C4\u03B1\u03C7\u03C5\u03BD\u03C4\u03AD\u03C2 \u03B1\u03C0\u03CC {0} 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/AutomaticLayout.properties_StyleDialogTitle=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 accessories/plugins/EncryptNode.properties_0=\u0395\u03C0\u03AD\u03BB\u03B5\u03BE\u03B5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC \u03B3\u03B9\u03B1 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03B1 accessories/plugins/EncryptNode.properties_1=\u039F\u03B9 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03AF \u03B4\u03B5\u03BD \u03C3\u03C5\u03BC\u03C0\u03AE\u03C0\u03C4\u03BF\u03C5\u03BD \u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03C5 \u03C3\u03CD\u03BD\u03C4\u03BF\u03BC\u03BF\u03B9. accessories/plugins/EncryptNode.properties_2=\u0394\u03CE\u03C3\u03B5 \u039A\u03C9\u03B4\u03B9\u03BA\u03CC: accessories/plugins/EncryptNode.properties_3=\u0395\u03C0\u03B1\u03BD\u03AD\u03BB\u03B1\u03B2\u03B5 \u039A\u03C9\u03B4\u03B9\u03BA\u03CC: accessories/plugins/EncryptNode.properties_4=\u0395\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C3\u03C5\u03BD\u03B8\u03B7\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC \u03C3\u03B1\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\u03B9\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\u03C5\u03C1\u03BF accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=\u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03B5\u03BD\u03B1\u03BB\u03BB\u03AC\u03BE\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\u03B9\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. \u0393\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03AD\u03C4\u03BF\u03B9\u03BF\u03C5 \u03BA\u03BF\u03BC\u03B2\u03BF\u03C5, \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD. 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 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03C9\u03C3\u03C4\u03CC\u03C2. accessories/plugins/Export_JavaWebStart.text=Java Web Start\u2026 accessories/plugins/Export_JavaWebStart.tooltip=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 \u03B3\u03B9\u03B1 Java Web Start. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 \u03C9\u03C2 \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF TWiki. accessories/plugins/ExportWithXSLT.tooltip=\u0391\u03C5\u03C4\u03AE \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03AF\u03B1 \u03BF\u03BC\u03BF\u03B9\u03CC\u03BC\u03BF\u03C1\u03C6\u03B7 \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 scripts. accessories/plugins/ExportWithXSLT_Applet.text=Java Applet\u2026 accessories/plugins/ExportWithXSLT_Applet.tooltip=\u0395\u03BE\u03AC\u03B3\u03B5\u03B9 \u03C4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C9\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AF\u03B4\u03B9\u03BF java. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (\u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 JavaScript)\u2026 accessories/plugins/ExportWithXSLT_HTML3.text=\u03A9\u03C2 XHTML (Clickable map image version)... accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=\u03A0\u03CC\u03C1\u03BF\u03B9 \u03B1\u03C0\u03BF \u03C4\u03BF\u03BD RESOURCES \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF TaskJuggler... accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=\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_TASKSTJI.text=\u0395\u03C1\u03B3\u03B1\u03C3\u03AF\u03B5\u03C2 \u03B1\u03C0\u03BF TASKS \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF TaskJuggler ... accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=\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. action_keystroke_in_use_error=\u03A4\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF {0} \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 {1} \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 {2} active=\u0395\u03BD\u03B5\u03C1\u03B3\u03CC actual_map_styles=\u03A7\u03B1\u03C1\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7 \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03CC \u03CC\u03C1\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03C3\u03C4\u03B5\u03AF \u03C3\u03C4\u03BF\u03BD \u039A\u03CC\u03BC\u03B2\u03BF actual_node_styles=\u03A3\u03C4\u03C5\u03BB \u039A\u03CC\u03BC\u03B2\u03C9\u03BD \u03C5\u03C0\u03CC \u03CC\u03C1\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03C4\u03B7\u03BA\u03B1\u03BD \u03C3\u03C4\u03BF\u03BD \u039A\u03CC\u03BC\u03B2\u03BF add=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 AddConnectorAction.text=\u03A3\u03C7\u03CC\u03BB\u03B9\u03BF AddElementaryConditionAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 AddExecutionLinkAction.text=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03C5\u03C0\u03B5\u03C1\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE\u03C2 \u039B\u03A3... AddLocalLinkAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 AddMenuItemLinkAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03C4\u03BF \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u03C4\u03BF\u03C5 \u03BC\u03B5\u03BD\u03BF\u03CD... AddOnDetailsPanel.authored.by=\u0391\u03C0\u03CC {0} AddOnDetailsPanel.header.function=\u03A3\u03C5\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 AddOnDetailsPanel.header.menu=\u0398\u03AD\u03C3\u03B7 \u039C\u03B5\u03BD\u03BF\u03CD AddOnDetailsPanel.header.shortcut=\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 AddOnDetailsPanel.homepage=\u0391\u03C1\u03C7\u03B9\u03BA\u03AE \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1: addons.installer.canceled=\u0397 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 addons.installer.confirm.licence=

\u0386\u03B4\u03B5\u03B9\u03B1

{0}

\u0391\u03C0\u03BF\u03B4\u03AD\u03C7\u03B5\u03C3\u03B8\u03B5 \u03C4\u03B7\u03BD \u03AC\u03B4\u03B5\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2;

addons.installer.failed=\u0397 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5: {0} addons.installer.freeplaneversion.format.error=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03C3\u03C4\u03BF {0} (\u03C4\u03B9\u03BC\u03AE: {1}) addons.installer.groovy.script.name=To script {0} \u03B4\u03B5\u03BD \u03C4\u03B5\u03BB\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 \u03BC\u03B5 ".groovy" addons.installer.html.script=\u03A4\u03BF \u03BA\u03C5\u03C1\u03AF\u03C9\u03C2 \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 script \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF \u03C9\u03C2 HTML addons.installer.install=\u0395\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 addons.installer.invalid.keyboard.shortcut=\u039C\u03B7 \u03AD\u03B3\u03BA\u03C5\u03C1\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 {0}. addons.installer.licence.unchanged=\u0397 \u03AC\u03B4\u03B5\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 addons.installer.map.structure=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C3\u03C4\u03B7 \u03B4\u03BF\u03BC\u03AE \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7: {0} addons.installer.missing.child.nodes=\u039B\u03B5\u03AF\u03C0\u03BF\u03C5\u03BD \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03A4\u03AD\u03BA\u03BD\u03C9\u03BD: {0} addons.installer.missing.permission.attribute=Script {0}: \u03BB\u03B5\u03AF\u03C0\u03BF\u03C5\u03BD \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03B4\u03B9\u03BA\u03B1\u03B9\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD {1} addons.installer.missing.properties=\u039B\u03B5\u03AF\u03C0\u03BF\u03C5\u03BD \u03BF\u03B9 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2: {0} addons.installer.missing.translation=\u039B\u03B5\u03AF\u03C0\u03B5\u03B9 \u03B7 \u03BC\u03B5\u03C4\u03AC\u03C6\u03C1\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 {0} \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1 {1} addons.installer.no.scripts=\u0394\u03B5 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD scripts addons.installer.no.zipdata=\u0394\u03B5 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1 zip addons.installer.nonstandard.permissions=\u03A4\u03BF script \u03B1\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF \u03C4\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 \u03B4\u03B9\u03BA\u03B1\u03B9\u03CE\u03BC\u03B1\u03C4\u03B1 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03AD\u03C7\u03BF\u03C5\u03BD \u03B4\u03C9\u03B8\u03B5\u03AF : {0}.\n\u039D\u03B1 \u03C4\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03C9 \u03C3\u03C4\u03B1 \u03C4\u03C5\u03C0\u03B9\u03BA\u03AC \u03B4\u03B9\u03BA\u03B1\u03B9\u03CE\u03BC\u03B1\u03C4\u03B1; addons.installer.one.child.expected=\u03A0\u03B5\u03C1\u03AF\u03BC\u03B5\u03BD\u03B1 \u03B1\u03BA\u03C1\u03B9\u03B2\u03CE\u03C2 \u03AD\u03BD\u03B1 \u0384\u03A4\u03AD\u03BA\u03BD\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF {0} \u03B1\u03BB\u03BB\u03AC \u03C0\u03AE\u03C1\u03B1 {1} addons.installer.script.name.suffix=\u038C\u03BD\u03BF\u03BC\u03B1 \u03C3\u03B5\u03BD\u03B1\u03C1\u03AF\u03BF\u03C5 {0} \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03BA\u03B1\u03C4\u03AC\u03BB\u03B7\u03BE\u03B7 \u03CC\u03C0\u03C9\u03C2 ".groovy" addons.installer.script.no.execution_mode=\u0394\u03B5\u03BD \u03BF\u03C1\u03AF\u03C3\u03B8\u03B7\u03BA\u03B5 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF {0} addons.installer.script.no.menulocation=\u0394\u03B5\u03BD \u03BF\u03C1\u03AF\u03C3\u03B8\u03B7\u03BA\u03B5 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 \u03B8\u03AD\u03C3\u03B7\u03C2 \u03BC\u03B5\u03BD\u03BF\u03CD \u03B3\u03B9\u03B1 \u03C4\u03BF {0} addons.installer.script.no.menutitle=\u0394\u03B5\u03BD \u03BF\u03C1\u03AF\u03C3\u03B8\u03B7\u03BA\u03B5 \u03C0\u03B1\u03C1\u03AC\u03BC\u03B5\u03C4\u03C1\u03BF\u03C2 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD \u03BC\u03B5\u03BD\u03BF\u03CD \u03B3\u03B9\u03B1 \u03C4\u03BF {0} addons.installer.script.no.permissions=\u0394\u03B5\u03BD \u03BF\u03C1\u03AF\u03C3\u03B8\u03B7\u03BA\u03B1\u03BD \u03B4\u03B9\u03BA\u03B1\u03B9\u03CE\u03BC\u03B1\u03C4\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF {0} addons.installer.success=\u0397 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5.\n\u03A4\u03BF \u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03BF \u03B8\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF \u03BC\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B1\u03BD\u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2. addons.installer.success.update=\u0397 \u03B1\u03BD\u03B1\u03B2\u03AC\u03B8\u03BC\u03B9\u03C3\u03B7 \u03B1\u03C0\u03CC {0} \u03C3\u03C4\u03BF {1} \u03AE\u03C4\u03B1\u03BD \u03B5\u03C0\u03B9\u03C4\u03C5\u03C7\u03AE\u03C2. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B1\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B5\u03C0\u03B1\u03BD\u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2. addons.installer.title=\u0395\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03C9\u03BD addons.installer.too.new=\u0397 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C0\u03BF\u03C5 \u03C4\u03C1\u03AD\u03C7\u03B5\u03C4\u03B5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03BD\u03AD\u03B1 {0}. \u03A4\u03BF \u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03BF \u03B4\u03BF\u03C5\u03BB\u03B5\u03CD\u03B5\u03B9 \u03BC\u03AD\u03C7\u03C1\u03B9 \u03C4\u03B7\u03BD {1} addons.installer.too.old=\u0397 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C0\u03BF\u03C5 \u03C4\u03C1\u03AD\u03C7\u03B5\u03C4\u03B5 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03BF\u03BB\u03CD \u03C0\u03B1\u03BB\u03B9\u03AC {0}. \u03A7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C3\u03B8\u03B5 \u03C4\u03BF\u03C5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF\u03BD \u03C4\u03B7\u03BD {1} addons.installer.unknown.deinstallation.rules=\u0386\u03B3\u03BD\u03C9\u03C3\u03C4\u03BF\u03C2 \u03C4\u03C1\u03CC\u03C0\u03BF\u03C2 \u03B1\u03C0\u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 {0} addons.installer.update=\u0391\u03BD\u03B1\u03B2\u03AC\u03B8\u03BC\u03B9\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 {0} addons.installer.warning=\u0398\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03B3\u03BA\u03B1\u03B8\u03B9\u03C3\u03C4\u03AC\u03C4\u03B5 \u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 \u03BC\u03CC\u03BD\u03BF \u03B1\u03C0\u03CC \u03C0\u03B7\u03B3\u03AD\u03C2 \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C0\u03B9\u03C3\u03C4\u03B5\u03CD\u03B5\u03C3\u03C4\u03B5. \u039A\u03B1\u03BA\u03CC\u03B2\u03BF\u03C5\u03BB\u03BF \u03BB\u03BF\u03B3\u03B9\u03C3\u03BC\u03B9\u03BA\u03CC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03AD\u03C3\u03B5\u03B9 \u03B6\u03B7\u03BC\u03B9\u03AC \u03C3\u03C4\u03B1 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1 \u03C3\u03B1\u03C2 \u03AE \u03C0\u03B1\u03C1\u03B1\u03B2\u03AF\u03B1\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B9\u03B4\u03B9\u03C9\u03C4\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03AC\u03C2 \u03C3\u03B1\u03C2. addons.site=http://freeplane.sourceforge.net/addons/ AddStyleAttributes.text=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03B1\u03C0\u03CC \u03C4\u03BF \u03A3\u03C4\u03C5\u03BB AddStyleAttributes.tooltip=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF \u03A3\u03C4\u03C5\u03BB \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 AllMapsNodeListAction.text=\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 \u03C3\u03B5 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 always=\u03A0\u03AC\u03BD\u03C4\u03B1 AlwaysUnfoldedNodeAction.text=\u0391\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 \u03A0\u03AC\u03BD\u03C4\u03B1 (\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2/\u03B1\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7) antialias_all=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7: \u039F\u03BB\u03B1 antialias_edges=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7: \u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 antialias_none=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7: \u0391\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03AE apply=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE ApplyAction.text=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE ApplyFormatPlugin.text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2... ApplyFormatPlugin.tooltip=\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1 \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 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2. ApplyNoFilteringAction.text=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF ApplySelectedViewConditionAction.text=\u03A6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u039A\u03CC\u03BC\u03B2\u03C9\u03BD ApplyToVisibleAction.text=\u0395\u03C6\u03B1\u03C1\u03BC\u03CC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF\u03C5\u03C2 \u03C6\u03B9\u03BB\u03C4\u03C1\u03B1\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 as_parent=\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 AskForHelp.text=\u0396\u03B7\u03C4\u03AE\u03C3\u03C4\u03B5 \u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 AssignAttributesAction.text=\u0391\u03BD\u03AC\u03B8\u03B5\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD... 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_name=\u038C\u03BD\u03BF\u03BC\u03B1 \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD attribute_name_or_value=\u038C\u03BD\u03BF\u03BC\u03B1 \u03AE \u03C4\u03B9\u03BC\u03AE \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD 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\u03B1 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03AC \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 attribute_value=\u03A4\u03B9\u03BC\u03AE \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD attributes_AddAttributeAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD \u03C3\u03B5 \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF... attributes_adding_empty_attribute_error=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B5\u03BD\u03CC attributes_all=\u038C\u03BB\u03B1 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC attributes_assign_dialog=\u0395\u03BE\u03B5\u03BB\u03B9\u03B3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 \u03A7\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_title=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \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.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_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\u03B1 \u03B1\u03BD\u03BF\u03B9\u03BA\u03C4\u03AC \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 attributes_no_import_candidates_found=\u0392\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_RemoveAllAttributesAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD attributes_RemoveFirstAttributeAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03CE\u03C4\u03BF\u03C5 \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD attributes_RemoveLastAttributeAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF\u03C5 \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD 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\u03AD\u03BB\u03B5\u03BE\u03B5 \u03CC\u03BB\u03B1 attributes_show=\u0394\u03B5\u03AF\u03BE\u03B5 attributes_skip_root=\u03A0\u03B1\u03C1\u03AC\u03BB\u03B5\u03B9\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 attributes_visible=\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF attributes_visible.tooltip=\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF automatic_layout=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u0391\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 automatic_layout_disabled=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\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}) ... AutomaticEdgeColor.FOR_BRANCHES=\u03B3\u03B9\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BA\u03BB\u03AC\u03B4\u03B9\u03B1 AutomaticEdgeColor.FOR_COLUMNS=\u03B3\u03B9\u03B1 \u03C3\u03C4\u03AE\u03BB\u03B5\u03C2 AutomaticEdgeColor.FOR_LEVELS=\u03B3\u03B9\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03B1 AutomaticEdgeColor.ON_BRANCH_CREATION=\u03BC\u03B5 \u03C4\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BA\u03BB\u03B1\u03B4\u03B9\u03BF\u03CD AutomaticEdgeColorHookAction.text=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03AC\u03BA\u03C1\u03C9\u03BD AutomaticLayout.ALL=\u03B3\u03B9\u03B1 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 AutomaticLayout.HEADINGS=\u03B3\u03B9\u03B1 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03A6\u03CD\u03BB\u03BB\u03B1 AutomaticLayout.level=\u0395\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF {0} AutomaticLayout.level.root=\u03A1\u03AF\u03B6\u03B1 AutomaticLayoutAction.text=\u0395\u03C6\u03AC\u03C1\u03BC\u03BF\u03C3\u03B5 \u03C3\u03C4\u03C5\u03BB \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 AutomaticLayoutAction.tooltip=\u0394\u03B9\u03BF\u03C1\u03B8\u03CE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2.
\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. AutomaticLayoutControllerAction.ALL.text=\u03B3\u03B9\u03B1 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 AutomaticLayoutControllerAction.COLUMNS.text=\u03B3\u03B9\u03B1 \u03C3\u03C4\u03AE\u03BB\u03B5\u03C2 AutomaticLayoutControllerAction.HEADINGS.text=\u03B3\u03B9\u03B1 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03A6\u03CD\u03BB\u03BB\u03B1 AutomaticLayoutControllerAction.null.text=\u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF BackAction.text=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE BackAction.tooltip=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C6\u03B5\u03B9 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1 background=\u03A5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF bitmaps=\u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 bitmap black=\u039C\u03B1\u03CD\u03C1\u03BF BlinkingNodeHookAction.text=\u0391\u03C0\u03B1\u03C3\u03C4\u03C1\u03AC\u03C0\u03C4\u03C9\u03BD \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 BlinkingNodeHookAction.tooltip=\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\u03AE \u03C4\u03BF \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 \u03BF\u03C7\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 blue=\u039C\u03C0\u03BB\u03B5 BoldAction.text=\u00A8\u0395\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 browse=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7... calendar_attributes_panel=\u0397\u03BC\u03B5\u03C1\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF \u03BA\u03B1\u03B9 \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC calendar_panel=\u0397\u03BC\u03B5\u03C1\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF can_not_clone_encrypted_node=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BA\u03BB\u03C9\u03BD\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 can_not_connect_to_info_server=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B8\u03CE \u03C3\u03C4\u03BF \u03B4\u03B9\u03B1\u03BA\u03BF\u03BC\u03B9\u03C3\u03C4\u03AE \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD can_not_delete_predefined_style=\u0394\u03B5 \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C9 \u03C4\u03BF \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03A3\u03C4\u03C5\u03BB can_not_delete_root_style=\u0394\u03B5 \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C9 \u03C4\u03BF \u03A3\u03C4\u03C5\u03BB \u03C1\u03AF\u03B6\u03B1\u03C2 can_not_delete_style_group=\u0394\u03B5 \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C9 \u03C4\u03BF \u03A3\u03C4\u03C5\u03BB \u03C4\u03B7\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2 can_not_encrypt_cloned_node=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE\u03C3\u03B5\u03B9 \u03BA\u03BB\u03C9\u03BD\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 can_not_save_key_set=\u0394\u03B5 \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03C9 \u03C4\u03B7\u03BD \u03BF\u03BC\u03AC\u03B4\u03B1 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD cancel=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 CancelAction.text=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 cannot_add_parent_diff_parents=\u0393\u03B9\u03B1 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7\u03BD \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1, \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BF\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\u03AD\u03B1. 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 \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C1\u03AF\u03B6\u03B1\u03C2 \u03B4\u03B5 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF \u03AE \u03BD\u03B1 \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_into_child_node=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BC\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03AE\u03C3\u03B5\u03B9 \u03C3\u03B5 \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF cannot_move_to_child=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03BC\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03AE\u03C3\u03C9 \u03AD\u03BD\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5. CenterAction.text=\u03A3\u03C4\u03BF \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF ChangeConnectorArrowsAction.backward.text=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE ChangeConnectorArrowsAction.both.text=\u03A3\u03C7\u03B5\u03B4\u03AF\u03B1\u03C3\u03B7 \u03B2\u03AD\u03BB\u03BF\u03C5\u03C2 \u03BC\u03C0\u03C1\u03BF\u03C2 \u03C0\u03AF\u03C3\u03C9 ChangeConnectorArrowsAction.forward.text=\u0395\u03BC\u03C0\u03C1\u03CC\u03C2 ChangeConnectorArrowsAction.none.text=\u039A\u03B1\u03BD\u03AD\u03BD\u03B1 ChangeConnectorArrowsAction.text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03B2\u03B5\u03BB\u03CE\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ChangeConnectorShapeAction.CUBIC_CURVE.text=\u039A\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 ChangeConnectorShapeAction.EDGE_LIKE.text=\u0395\u03BE\u03BF\u03BC\u03BF\u03AF\u03C9\u03C3\u03B7 \u03AC\u03BA\u03C1\u03C9\u03BD ChangeConnectorShapeAction.LINE.text=\u0393\u03C1\u03B1\u03BC\u03BC\u03AE ChangeConnectorShapeAction.LINEAR_PATH.text=\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC \u03BC\u03BF\u03BD\u03BF\u03C0\u03AC\u03C4\u03B9 ChangeNodeLevelLeftsAction.text=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC ChangeNodeLevelLeftsAction.tooltip=\u03A3\u03C4\u03B1 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03B7\u03C2 \u03C1\u03AF\u03B6\u03B1\u03C2 \u03BF\u03B9 \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BA\u03AC\u03C4\u03C9. \u0391\u03BD \u03B3\u03AF\u03BD\u03BF\u03C5\u03BD \u03C4\u03AD\u03BA\u03BD\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03BD\u03C9\u03C4\u03AD\u03C1\u03C9 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD. \u03A3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C4\u03B7\u03C2 \u03C1\u03AF\u03B6\u03B1\u03C2 \u03BF\u03B9 \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9. \u0391\u03C0 \u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03B7 \u03C1\u03AF\u03B6\u03B1 \u03BF\u03B9 \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B1\u03BB\u03BB\u03AC\u03B6\u03BF\u03C5\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03AD\u03C2. ChangeNodeLevelRightsAction.text=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC ChangeNodeLevelRightsAction.tooltip=\u03A3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C4\u03B7\u03C2 \u03C1\u03AF\u03B6\u03B1\u03C2 \u03BF\u03B9 \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BA\u03AC\u03C4\u03C9. \u0391\u03BD \u03B3\u03AF\u03BD\u03BF\u03C5\u03BD \u03C4\u03AD\u03BA\u03BD\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03BD\u03C9\u03C4\u03AD\u03C1\u03C9 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD. \u03A3\u03C4\u03B1 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03B7\u03C2 \u03C1\u03AF\u03B6\u03B1\u03C2 \u03BF\u03B9 \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03BC\u03B5\u03C4\u03B1\u03C4\u03BF\u03C0\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9. \u0391\u03C0 \u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03B7 \u03C1\u03AF\u03B6\u03B1 \u03BF\u03B9 \u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B1\u03BB\u03BB\u03AC\u03B6\u03BF\u03C5\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03AD\u03C2. choose_cloud_color=\u0394\u03B9\u03AC\u03BB\u03B5\u03BE\u03B5 \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2: choose_edge_color=\u0394\u03B9\u03AC\u03BB\u03B5\u03BE\u03B5 \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 choose_map_background_color=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 choose_node_background_color=\u0394\u03B9\u03AC\u03BB\u03B5\u03BE\u03B5 \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF: choose_node_color=\u0394\u03B9\u03AC\u03BB\u03B5\u03BE\u03B5 \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5: ClearLinkAnchorAction.text=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ClearLinkAnchorAction.tooltip=\u03BA\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03CD\u03B6\u03B5\u03C5\u03BE\u03B7\u03C2 \u03C4\u03BF\u03C5 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C0\u03BF\u03C5 \u03BF\u03C1\u03AF\u03C3\u03B1\u03C4\u03B5 \u03C0\u03C1\u03B9\u03BD CloneAction.text=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B5 \u03BA\u03BB\u03CE\u03BD\u03BF close_btn=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF CloseAction.text=\u039A\u03BB\u03B5\u03AF\u03C3\u03B5 \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD \u03C7\u03AC\u03C1\u03C4\u03B7 CloseAllMapsAction.text=\u039A\u03BB\u03B5\u03AF\u03C3\u03B5 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 CloseAllOtherMapsAction.text=\u039A\u03BB\u03B5\u03AF\u03C3\u03B5 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03AC\u03BB\u03BB\u03BF\u03C5\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 cloud_shapes=\u03A3\u03C7\u03AE\u03BC\u03B1\u03C4\u03B1 \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2 CloudAction.text=\u039D\u03AD\u03C6\u03BF\u03C2 CloudColorAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u039D\u03AD\u03C6\u03BF\u03C5\u03C2... CloudShapeAction.ARC.text=\u03A4\u03CC\u03BE\u03BF CloudShapeAction.RECT.text=\u039F\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03BF CloudShapeAction.ROUND_RECT.text=\u039F\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03BF \u03BC\u03B5 \u03C3\u03C4\u03C1\u03BF\u03B3\u03B3\u03C5\u03BB\u03AD\u03C2 \u03B3\u03C9\u03BD\u03AF\u03B5\u03C2 CloudShapeAction.STAR.text=\u0391\u03C3\u03C4\u03AD\u03C1\u03B9 collection.copy.presentation=\u0391\u03BD\u03C4\u03AD\u03B3\u03C1\u03B1\u03C8\u03B5 \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03AF\u03B1\u03C3\u03B7 collection.copy.slide=\u0391\u03BD\u03C4\u03AD\u03B3\u03C1\u03B1\u03C8\u03B5 \u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1 collection.delete=\u0394\u03B9\u03AD\u03B3\u03C1\u03B1\u03C8\u03B5 collection.down=\u039A\u03AC\u03C4\u03C9 collection.move=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 collection.moveTo=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03C3\u03C4\u03B7 \u03B8\u03AD\u03C3\u03B7 collection.new.presentation=\u039D\u03AD\u03B1 \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03AF\u03B1\u03C3\u03B7 collection.new.slide=\u039D\u03AD\u03B1 \u03B4\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1 collection.up=\u03A0\u03AC\u03BD\u03C9 ColorProperty.ResetColor=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 combined=\u03A3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03CC\u03C2 condition=\u03A3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B7 confirmation=\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7 connector=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 connector_arrows=\u0392\u03AD\u03BB\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 connector_label=\u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 connector_lines=\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 connector_shapes=\u03A3\u03C7\u03AE\u03BC\u03B1 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 ConnectorColorAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2... controls=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03B9 ConvertCloneToIndependentNodeAction.text=\u039E\u03B5\u03BA\u03BB\u03C9\u03BD\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 CopyAction.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE CopyAction.tooltip=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C4\u03BF\u03BC\u03AD\u03B1 CopyAttributes.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD CopyIDAction.text=\u0391\u03BD\u03C4\u03AD\u03B3\u03C1\u03B1\u03C8\u03B5 ID \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 CopyMapStylesAction.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03A3\u03C4\u03C5\u03BB \u03C7\u03AC\u03C1\u03C4\u03B7 \u03B1\u03C0\u03CC... CopyNodeURIAction.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE URI \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 copyright=\u03A0\u03BD\u03B5\u03C5\u03BC\u03B1\u03C4\u03B9\u03BA\u03AC \u03B4\u03B9\u03BA\u03B1\u03B9\u03CE\u03BC\u03B1\u03C4\u03B1 \u00A9 2000-2014 \u03BF\u03BC\u03AC\u03B4\u03B1 Freeplane \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03BF\u03B9 CopySingleAction.text=\u0391\u03BD\u03C4\u03AD\u03B3\u03C1\u03B1\u03C8\u03B5 \u03BA\u03CC\u03BC\u03B2\u03BF (\u03BC\u03BF\u03BD\u03BF\u03CD) CopySingleAction.tooltip=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03CC\u03BD\u03BF \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 CopyStyleExtensionsAction.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03C0\u03B5\u03BA\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u039A\u03CC\u03BC\u03B2\u03BF \u03A3\u03C4\u03C5\u03BB corrupt_map=\u03A4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 \u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1 CreateConjunctConditionAction.text=\u039A\u03B1\u03B9 CreateDisjunctConditionAction.text=\u0389 CreateNotSatisfiedConditionAction.text=\u038C\u03C7\u03B9 current_dir=\u03A7\u03AC\u03C1\u03C4\u03B5\u03C2 CutAction.text=\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 DecreaseNodeFontAction.text=\u039C\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC default=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF DefaultColorAction.text=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 defaultstyle.attributes=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC defaultstyle.details=\u039B\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 defaultstyle.floating=\u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 defaultstyle.note=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE delete_child=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BA\u03BF\u03BC\u03B2\u03BF\u03C5 DeleteAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 DeleteConditionAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE DeleteDetailsAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03B9\u03CE\u03BD \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 DeleteLevelStyleAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03A3\u03C4\u03C5\u03BB \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 DeleteStyleAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03A3\u03C4\u03C5\u03BB DeleteUserStyleAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03C5\u03BB \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 dialect_info.app=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 {0} \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5 \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 {1} dialect_info.later_version=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 \u03B5\u03B3\u03BA\u03B5\u03C6\u03AC\u03BB\u03BF\u03C5 {0} \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5 \u03BC\u03B9\u03B1 \u03BC\u03B5\u03C4\u03B1\u03B3\u03B5\u03BD\u03AD\u03C3\u03C4\u03B5\u03C1\u03B7 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03B1\u03C5\u03C4\u03BF\u03CD \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2. dialect_info.unknownApp=\u0386\u03B3\u03BD\u03C9\u03C3\u03C4\u03BF\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03CC\u03C2 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 {0} dialect_info.unknownURL=\u0386\u03B3\u03BD\u03C9\u03C3\u03C4\u03B7 \u03B4\u03B9\u03BA\u03C4\u03C5\u03B1\u03BA\u03AE \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1. dialect_info.url=\u0395\u03C0\u03B9\u03C3\u03BA\u03B5\u03C5\u03B8\u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03BD \u03B9\u03C3\u03C4\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 {0} \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1. dialect_info.warning=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03B9, \u03B1\u03C0\u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03C3\u03B8\u03B5\u03AF \u03AE \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03C4\u03B5\u03AF \u03BC\u03B5 \u03C0\u03C1\u03BF\u03B2\u03BB\u03AE\u03BC\u03B1\u03C4\u03B1. DirectHtmlFlavorHandler=HTML \u03C9\u03C2 \u03AD\u03BD\u03B1\u03C2 \u03BC\u03CC\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 DocumentationAction.text=\u03A4\u03B5\u03BA\u03BC\u03B7\u03C1\u03AF\u03C9\u03C3\u03B7 down=\u039A\u03AC\u03C4\u03C9 DownConditionAction.text=\u039A\u03AC\u03C4\u03C9 download=\u039A\u03B1\u03C4\u03AD\u03B2\u03B1\u03C3\u03BC\u03B1 dropped_file_error=\u0394\u03B5\u03BD \u03B1\u03BD\u03BF\u03AF\u03C7\u03B8\u03B7\u03BA\u03B1\u03BD \u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1. \u039F \u03BB\u03CC\u03B3\u03BF\u03C2: {0} edge=\u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 edge_is_formatted_by_style=\u0397 \u03BC\u03BF\u03C1\u03C6\u03AE \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5 \u03B5\u03BB\u03AD\u03B3\u03C7\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB. \u0391\u03BB\u03BB\u03AC\u03BE\u03C4\u03B5 \u03C4\u03BF \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03CC \u03C3\u03C4\u03C5\u03BB \u03B1\u03BD \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9. edge_style=\u039C\u03BF\u03C1\u03C6\u03AE \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 edge_width=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 edge_widths=E\u03CD\u03C1\u03B7 \u03AC\u03BA\u03C1\u03B7\u03C2 EdgeColorAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2... EdgeProperties=\u0399\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03AC\u03BA\u03C1\u03B7\u03C2 EdgeStyleAction.bezier.text=Bezier EdgeStyleAction.bezier.tooltip=\u0391\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5 \u03C9\u03C2 \u03BF\u03BC\u03B1\u03BB\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE. EdgeStyleAction.hide_edge.text=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03BF\u03C1\u03AF\u03BF\u03C5 EdgeStyleAction.hide_edge.tooltip=\u0393\u03B9\u03B1 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03B1\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF \u03B3\u03BF\u03BD\u03AD\u03B1
\u03C9\u03C2 \u03B4\u03B9\u03B1\u03BA\u03B5\u03BA\u03BF\u03BC\u03BC\u03AD\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE. \u0391\u03BB\u03BB\u03B9\u03CE\u03C2 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5. EdgeStyleAction.horizontal.text=\u039F\u03C1\u03B9\u03B6\u03CC\u03BD\u03C4\u03B9\u03B1 EdgeStyleAction.horizontal.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03BA\u03AC\u03B8\u03B5\u03C4\u03C9\u03BD \u03B5\u03C5\u03B8\u03B5\u03B9\u03CE\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B1 \u03CC\u03C1\u03B9\u03B1. EdgeStyleAction.linear.text=\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03AE EdgeStyleAction.linear.tooltip=\u0391\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5 \u03C3\u03B1\u03BD \u03B5\u03C5\u03B8\u03B5\u03AF\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE. EdgeStyleAction.sharp_bezier.text=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF\u03C2 Bezier EdgeStyleAction.sharp_bezier.tooltip=\u0391\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5 \u03C3\u03B1\u03BD \u03BF\u03BC\u03B1\u03BB\u03AE \u03BA\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 \u03BC\u03B5 \u03B1\u03B9\u03C7\u03BC\u03B7\u03C1\u03AC \u03AC\u03BA\u03C1\u03B1. EdgeStyleAction.sharp_linear.text=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC\u03C2 EdgeStyleAction.sharp_linear.tooltip=\u0391\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03C1\u03AF\u03BF\u03C5 \u03C3\u03B1\u03BD \u03B5\u03C5\u03B8\u03B5\u03AF\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03BC\u03B5 \u03B1\u03B9\u03C7\u03BC\u03B7\u03C1\u03AC \u03AC\u03BA\u03C1\u03B1. EdgeStyleAsParentAction.text=\u03A9\u03C2 \u03B3\u03BF\u03BD\u03AD\u03B1\u03C2 EdgeStyleAsParentAction.tooltip=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C4\u03C5\u03BB \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03AD\u03B1. EdgeWidthAction_width_parent.text=\u0393\u03BF\u03BD\u03AD\u03B1\u03C2 EdgeWidthAction_width_thin.text=\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\u03B9\u03C2 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03BF\u03B9 \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF\u03B9 \u03AE \u03C0\u03BB\u03AC\u03B3\u03B9\u03BF\u03B9 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 ; edit_details=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03B5\u03B9\u03CE\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 edit_end_label=\u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1
\u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 edit_label_font_family=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC edit_label_font_size=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 edit_link_manually=\u0395\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 \u03BA\u03AD\u03BD\u03C4\u03C1\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C3\u03B5 \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF edit_middle_label=\u039C\u03B5\u03C3\u03B1\u03AF\u03B1
\u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 edit_note=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 edit_source_label=\u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1
\u0391\u03C1\u03C7\u03AE\u03C2 edit_target_label=\u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1
\u03C0\u03C1\u03BF\u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD edit_transparency_label=\u0394\u03B9\u03B1\u03C6\u03AC\u03BD\u03B5\u03B9\u03B1 edit_width_label=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 EditAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 EditAttributesAction.text=\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 EditDetailsAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BB\u03B5\u03C0\u03C1\u03BF\u03BC\u03B5\u03C1\u03B5\u03B9\u03CE\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C3\u03B5 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03C2 EditDetailsInDialogAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03B5\u03B9\u03CE\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C3\u03B5 \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF editEdgeColors=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03AC\u03C3\u03BF\u03C5 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03AC\u03BA\u03C1\u03B7\u03C2 EditFilterAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 EditLongAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 ... EditNoteInDialogAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF EditScript=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 script... EditStylesAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03A3\u03C4\u03C5\u03BB EncryptedMap.text=\u039D\u03AD\u03BF\u03C2 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C4\u03B5\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF\u03C2 (\u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C2) \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2... EncryptedMap.tooltip=\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 encryption=\u039A\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B7 enter_base_url=\u03A0\u03C1\u03CC\u03BA\u03B5\u03B9\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BA\u03BF\u03BB\u03AE\u03C3\u03C9 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2. \u0394\u03CE\u03C3\u03B5 \u03C4\u03BF \u03B2\u03B1\u03C3\u03B9\u03BA\u03CC URL. enter_command=\u0395\u03B9\u03C3\u03AE\u03B3\u03B1\u03B3\u03B5 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE enter_condition_name=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03BD\u03AD\u03B1\u03C2 \u03C3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B7\u03C2 enter_confirms=\u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03B9\u03CE\u03C3\u03C4\u03B5 \u03BC\u03B5 Enter enter_keyset_name=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2 enter_map_url=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE URL \u03C7\u03AC\u03C1\u03C4\u03B7 enter_new_style_name=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BD\u03AD\u03BF\u03C5 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03A3\u03C4\u03C5\u03BB enter_zoom=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BC\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7\u03C2 EnterPassword.text=\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u039A\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 error=\u039B\u03AC\u03B8\u03BF\u03C2 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 \u03BA\u03B1\u03C4\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE error_in_template=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 {0}. \u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C4\u03B5 \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF. errornumber={0} \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1\u03C4\u03B1 ExecuteScript.available_modes.tooltip={0} \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF \u03B3\u03B9\u03B1 ExecuteScript.script=\u03A3\u03B5\u03BD\u03AC\u03C1\u03B9\u03BF ExecuteScriptError.text=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03BF script:\n{0} ExecuteScriptForAllNodes.text=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD scripts ExecuteScriptForSelectionAction.text=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD script \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 ExecuteScriptOnSelectedNode.text=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 {0} \u03C3\u03B5 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 ExecuteScriptOnSelectedNodeRecursively.text=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 {0} \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF, \u03B5\u03C0\u03B1\u03BD\u03B1\u03BB\u03B7\u03C0\u03C4\u03B9\u03BA\u03AC ExecuteScriptOnSingleNode.text=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 {0} \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF ExecuteScripts.noScriptsAvailable=\u039A\u03B1\u03BD\u03AD\u03BD\u03BF \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF ExecuteScripts.text=Scripts ExecuteScriptSecurityError.text=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 script: {0} export_failed=\u0397 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5 export_pdf_text=\u039C\u03BF\u03C1\u03C6\u03AE \u03BC\u03B5\u03C4\u03B1\u03C6\u03B5\u03C1\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 (PDF) export_svg_text=\u039A\u03BB\u03B9\u03BC\u03B1\u03BA\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03B4\u03B9\u03B1\u03BD\u03C5\u03C3\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03CC (SVG) ExportAction.text=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C7\u03AC\u03C1\u03C4\u03B7... ExportAllPresentationsAction.text=\u0395\u03BE\u03AE\u03B3\u03B1\u03B3\u03B5 \u03CC\u03BB\u03B5\u03C2 \u03C4\u03B9\u03C2 \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03B9\u03AC\u03C3\u03B5\u03B9\u03C2 \u03C3\u03B5 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 PNG ExportBranchAction.text=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03BA\u03BB\u03B1\u03B4\u03B9\u03BF\u03CD \u03C3\u03B5 \u03BD\u03AD\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7... ExportBranchToHTMLAction.text=\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 \u03C3\u03B5 HTML exported_file={0} \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF ExportPdf.text=\u03C9\u03C2 PDF... ExportPresentationAction.text=\u0395\u03BE\u03AE\u03B3\u03B1\u03B3\u03B5 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03C0\u03B1\u03C1\u03BF\u03C5\u03C3\u03AF\u03B1\u03C3\u03B7 \u03C3\u03B5 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 PNG ExportSvg.text=\u03C9\u03C2 SVG... ExportToHTMLAction.text=\u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE HTML ExportToImage.jpg.text=\u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE JPEG... ExportToImage.png.text=\u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE PNG... ExportToOoWriter.text=\u03A9\u03C2 \u03AD\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF \u03C4\u03BF\u03C5 Open Office Writer ... extension_menu=\u03A6\u03C5\u03C3\u03B9\u03BA\u03AE \u039C\u03BF\u03C1\u03C6\u03AE ExternalImage_popupMenu_Change=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE... ExternalImage_popupMenu_Open=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C0\u03B5\u03C1\u03B9\u03B7\u03B3\u03B7\u03C4\u03AE ExternalImage_popupMenu_Remove=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE ExternalImage_popupMenu_ResetZoom=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 \u03BC\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7\u03C2 ExternalImageAddAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2... ExternalImageChangeAction.text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2... ExternalImageRemoveAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 ExtractLinkFromTextAction.text=\u039C\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03BC\u03AD\u03C3\u03B1 \u03B1\u03C0\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF ExtractLinkFromTextAction.tooltip=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C5\u03C0\u03B5\u03C1\u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C4\u03B7 \u03B4\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 extras=\u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 f_button_unassigned=\u03BA\u03B5\u03BD\u03CC FaqOpenURLAction.text=\u03A3\u03C5\u03BD\u03AE\u03B8\u03B5\u03B9\u03C2 \u0395\u03C1\u03C9\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 file=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF file_already_exists=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF {0} \u03C5\u03C0\u03B1\u03C1\u03C7\u03B5\u03B9. \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_accessible=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF {0} \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B2\u03AC\u03C3\u03B9\u03BC\u03BF file_not_found=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF {0} \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 FileListFlavorHandler=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 FileProperties_BranchLeafCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD \u03C3\u03C4\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B1 \u03BA\u03BB\u03B1\u03B4\u03B9\u03AC: FileProperties_BranchNodeCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C3\u03C4\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B1 \u03BA\u03BB\u03B1\u03B4\u03B9\u03AC: FileProperties_ChangesSinceLastSave=\u0391\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7: FileProperties_FileName=\u038C\u03BD\u03BF\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5: FileProperties_FileSaved=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C4\u03B7\u03BA\u03B5: FileProperties_FileSize=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5: FileProperties_MainBranchCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03BA\u03C5\u03C1\u03AF\u03C9\u03C2 \u03BA\u03BB\u03B1\u03B4\u03B9\u03CE\u03BD: FileProperties_NeverSaved=\u0394\u03B5\u03BD \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C4\u03B7\u03BA\u03B5 \u03C0\u03BF\u03C4\u03AD FileProperties_NodeChildCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03C0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD \u03C4\u03C9\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD: FileProperties_NodeSelectionCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD: FileProperties_TotalFilteredCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C4\u03B1\u03B9\u03C1\u03B9\u03AC\u03B6\u03BF\u03C5\u03BD \u03C3\u03C4\u03BF \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF: FileProperties_TotalLeafCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD: FileProperties_TotalNodeCount=\u03A0\u03BB\u03AE\u03B8\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD: FilePropertiesAction.text=\u03A3\u03C4\u03B1\u03C4\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03C7\u03AC\u03C1\u03C4\u03B7... FileRevisionsDialog.cancel=\u0386\u03BA\u03C5\u03C1\u03BF FileRevisionsDialog.file_last_modified=\u03A7\u03C1\u03BF\u03BD\u03B9\u03BA\u03AE \u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7 FileRevisionsDialog.file_name=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF FileRevisionsDialog.file_size=Bytes FileRevisionsDialog.open=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 FileRevisionsDialog.open.tooltip=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B1\u03BA\u03CC\u03BC\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BA\u03C4\u03CC\u03C2 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 FileRevisionsDialog.question=\u0391\u03BD\u03B1\u03B8\u03B5\u03C9\u03C1\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 {0} FileRevisionsDialog.restore=\u0391\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 FileRevisionsDialog.restore.tooltip=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 {0} \u03BC\u03B5 {1} FileRevisionsDialog.title=\u0391\u03BD\u03B1\u03B8\u03B5\u03C9\u03C1\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 filter=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF filter_add=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 filter_and=\u039A\u03B1\u03B9 filter_any_text=\u039A\u03AD\u03BD\u03C4\u03C1\u03BF, \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 \u03AE \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 filter_clone_snapshot=\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03BB\u03CE\u03BD\u03BF\u03B9 \u03C4\u03B7\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 filter_clones=\u039A\u03BB\u03CE\u03BD\u03BF\u03B9 \u03C4\u03B7\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 filter_conditions=\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 filter_contains=\u03A0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 filter_created_after=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5\u03C4\u03AC filter_created_before=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u03C0\u03C1\u03B9\u03BD filter_delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE filter_details=\u039B\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 filter_dialog=\u03A3\u03C5\u03BD\u03B8\u03AD\u03C3\u03B7 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5 filter_does_not_exist=\u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 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=\u0394\u03CE\u03C3\u03B5 \u03C4\u03B9\u03BC\u03AE filter_even_level=\u038A\u03B4\u03B9\u03BF \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 filter_exist=\u03A5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 filter_icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF 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_leaf=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C6\u03CD\u03BB\u03BB\u03BF\u03C5 filter_link=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B9\u03C3\u03C4\u03BF\u03CD (Hyperlink) filter_match_approximately=\u03A0\u03B5\u03C1\u03AF\u03C0\u03BF\u03C5 filter_match_approximately.tooltip=\u039D\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B5\u03B3\u03B3\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03C4\u03B1\u03B9\u03C1\u03B9\u03AC\u03C3\u03BC\u03B1\u03C4\u03B1,
\u03C0\u03C7. \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 '\u03BC\u03CD\u03B3\u03B5\u03C2' \u03B8\u03B1 \u03B2\u03C1\u03B5\u03B9 \u03BA\u03B1\u03B9 '\u03BC\u03CD\u03B5\u03C2'. filter_match_case=\u03A4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03BA\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD/\u03C0\u03B5\u03B6\u03CE\u03BD filter_match_case.tooltip=\u039D\u03B1 \u03BB\u03B1\u03BC\u03B2\u03AC\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C5\u03C0'\u03CC\u03C8\u03B7 \u03C4\u03B1 \u03BA\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03B1/\u03C0\u03B5\u03B6\u03AC \u03C3\u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7. filter_modified_after=\u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03B5\u03C4\u03AC filter_modified_before=\u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5 \u03C0\u03C1\u03B9\u03BD 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_node_level=\u0395\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 filter_not=\u039F\u03C7\u03B9 filter_note=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 filter_odd_level=\u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03AF\u03B4\u03B9\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 filter_or=\u0389 filter_parent=\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 filter_periodic_level=\u03C0\u03B5\u03C1\u03B9\u03BF\u03B4\u03B9\u03BA\u03CC filter_priority=\u03C0\u03C1\u03BF\u03C4\u03B5\u03C1\u03B1\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 filter_regexp_matches=\u03A4\u03B1\u03B9\u03C1\u03B9\u03AC\u03B6\u03B5\u03B9 \u03C3\u03B5 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B7 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 filter_reminder=\u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 filter_reminder_after=\u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03BC\u03B5\u03C4\u03AC filter_reminder_before=\u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C0\u03C1\u03B9\u03BD filter_reminder_executed=\u03AE\u03B4\u03B7 \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 filter_reminder_later=\u03A0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03B1\u03C1\u03B3\u03CC\u03C4\u03B5\u03C1\u03B1 filter_root=\u039A\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 filter_script=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF script filter_select=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE filter_selected_node_view=\u0395\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 filter_selected_node_view_snapshot=\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE filter_style=\u03A3\u03C4\u03C5\u03BB filter_time=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 FilterCondition=\u03A3\u03C5\u03BD\u03B8\u03AE\u03BA\u03B5\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5 filterConditions=\u039F\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C6\u03AF\u03BB\u03C4\u03C1\u03B1 filterConditions.noActions=\u039C\u03B7 \u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B1 \u03C6\u03AF\u03BB\u03C4\u03C1\u03B1 filters_not_loaded=\u03A4\u03BF \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF \u03B4\u03B5 \u03C6\u03BF\u03C1\u03C4\u03CE\u03B8\u03B7\u03BA\u03B5, \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03C1\u03AC\u03C6\u03B7\u03BA\u03B5 find=\u0392\u03C1\u03B5\u03C2 find_what=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C4\u03B9 FindAction.text=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 ... FindNextAction.text=\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 FindPreviousAction.text=\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C5 fit_map_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 fit_map_to_page_height=\u03A4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03CD\u03C8\u03BF\u03C5\u03C2 \u03C3\u03B5 \u03BC\u03AF\u03B1 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 fit_map_to_page_width=\u03A4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03C0\u03BB\u03AC\u03C4\u03BF\u03C5\u03C2 \u03C3\u03B5 \u03BC\u03AF\u03B1 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 FitToPage.text=\u039A\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03C3\u03C4\u03B1 \u03CC\u03C1\u03B9\u03B1 \u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 FitToPage.tooltip=\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 \u03C4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \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. fold=\u0394\u03AF\u03C0\u03BB\u03C9\u03C3\u03B5 FoldAllAction.text=\u03A3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7/\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD FoldAllAction.tooltip=\u0394\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9/\u03A3\u03C5\u03BC\u03C0\u03C4\u03AF\u03C3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5. FoldOneLevelAction.text=\u03A3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7 \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF FoldOneLevelAction.tooltip=\u0394\u03B9\u03C0\u03BB\u03CE\u03BD\u03B5\u03B9/\u03A3\u03C5\u03BC\u03C0\u03C4\u03AE\u03C3\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. follow_clone=\u0395\u03BD\u03C4\u03CC\u03C2 "{0}" follow_graphical_link=\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03B5 "{0}" FollowLinkAction.text=\u0391\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5: font=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC FontFamilyAction.text=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 FontSizeAction.text=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 format=\u039C\u03BF\u03C1\u03C6\u03AE format_invalid_pattern=\u03BC\u03B7 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF format_menu_cloud_shapes=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03CD\u03BD\u03BD\u03B5\u03C6\u03BF\u03C5 \u03AE \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C3\u03C4\u03C5\u03BB format_menu_edge_styles=\u039C\u03BF\u03C1\u03C6\u03AE \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 format_panel=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 FormatCopy.text=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 FormatCopy.tooltip=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03B7 \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. FormatPaste.text=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03B9\u03C3\u03B7 \u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 FormatPaste.tooltip=\u0395\u03C0\u03B9\u03BA\u03BF\u03BB\u03AC \u03C4\u03B7\u03BD \u03BC\u03BF\u03C1\u03C6\u03AE \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. formats_not_loaded=\u039F\u03B9 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B4\u03B5 \u03C6\u03BF\u03C1\u03C4\u03CE\u03B8\u03B7\u03BA\u03B1\u03BD, \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03AD\u03C7\u03B5\u03B9 \u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03C1\u03B1\u03C6\u03B5\u03AF formula.error.attributeValueIsNull=\u0397 \u03C4\u03B9\u03BC\u03AE \u03C4\u03BF\u03C5 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD "{0}" \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03BA\u03B5\u03BD\u03AE \u03BC\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03BE\u03B9\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7. formula.error.circularReference=\u039A\u03C5\u03BA\u03BB\u03B9\u03BA\u03AE \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC:\u039F \u03C4\u03CD\u03C0\u03BF\u03C2 \u03C3\u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF {0} ''{1}'' \u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B5\u03B1\u03C5\u03C4\u03CC \u03C4\u03BF\u03C5. formula.EvaluateAllAction.text=\u0391\u03BE\u03B9\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD formula.EvaluateAllAction.tooltip=\u0391\u03BE\u03B9\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03A4\u03CD\u03C0\u03C9\u03BD/\u0395\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C3\u03C4\u03BF\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1 \u03C7\u03AC\u03C1\u03C4\u03B7 formula.menuname=\u03A4\u03CD\u03C0\u03BF\u03B9/\u0395\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 formula_editor=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C4\u03CD\u03C0\u03BF\u03C5 ForwardAction.text=\u0395\u03BC\u03C0\u03C1\u03CC\u03C2 ForwardAction.tooltip=\u03A0\u03C1\u03BF\u03C7\u03C9\u03C1\u03AC\u03B5\u03B9 \u03BC\u03C0\u03C1\u03BF\u03C3\u03C4\u03AC \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BB\u03C5\u03C3\u03AF\u03B4\u03B1 FreeNodeAction.text=\u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 (\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2/\u03B1\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7) Freeplane.progress.buildScreen=\u039A\u03B1\u03C4\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE \u03BF\u03B8\u03CC\u03BD\u03B7\u03C2... Freeplane.progress.createController=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B5\u03BB\u03B5\u03B3\u03BA\u03C4\u03AE... Freeplane.progress.createInitialMode=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B1\u03C1\u03C7\u03B9\u03BA\u03BF\u03CD \u03C4\u03C1\u03CC\u03C0\u03BF\u03C5... Freeplane.progress.endStartup=\u03A4\u03AD\u03BB\u03BF\u03C2 \u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7\u03C2. Freeplane.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... Freeplane.progress.gettingPreferences=\u0391\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... Freeplane.progress.loadMaps=\u0391\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD... Freeplane.progress.propagateLookAndFeel=\u039C\u03B5\u03C4\u03AC\u03B4\u03BF\u03C3\u03B7 \u0395\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03B1\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7\u03C2... Freeplane.progress.settingPreferences=\u03A1\u03CD\u03B8\u03BC\u03B9\u03C3\u03B7 \u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD... Freeplane.progress.startCreateController=\u0395\u03BD\u03B1\u03C1\u03BE\u03B7 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03B5\u03BB\u03B5\u03B3\u03BA\u03C4\u03AE... Freeplane.progress.updateLookAndFeel=\u0391\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B7 \u0395\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03B1\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7\u03C2... freeplane_reverted=Freeplane_Reverted_ FreeplaneHelpStarter.text=\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1... FreeplaneHelpStarter.tooltip=\u0395\u03C0\u03B1\u03C5\u03BE\u03B7\u03BC\u03AD\u03BD\u03B7 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03C4\u03BF\u03C5 Freeplane goto=\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03B5 goto.noActions=\u039C\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03C3\u03C4\u03CC\u03C7\u03BF\u03B9 GotoLinkNodeAction.text=\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B7 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 GrabKeyDialog.common.cancel=\u0391\u03BA\u03C5\u03C1\u03BF 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.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 \u03C4\u03B7\u03BD \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7? GrabKeyDialog.grab-key.title=\u0394\u03CE\u03C3\u03B5 \u03BD\u03AD\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF green=\u03A0\u03C1\u03AC\u03C3\u03B9\u03BD\u03BF help=\u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 HideableAction.tooltip=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 \u03C4\u03BF \u03C6\u03CC\u03BD\u03C4\u03BF \u03B3\u03B9\u03B1 \u03BA\u03AC\u03B8\u03B5 \u03B1\u03BB\u03BB\u03B1\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF. HideAllAttributesAction.text=\u039A\u03C1\u03CD\u03C8\u03B5 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC HierarchicalIcons2Action.text=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C4\u03BF\u03BC\u03AE\u03C2 \u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C4\u03C9\u03BD \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03C9\u03BD HierarchicalIconsAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03B9\u03B5\u03C1\u03B1\u03C1\u03C7\u03B9\u03BA\u03AC HierarchicalIconsAction.tooltip=\u0395\u03AC\u03BD \u03AD\u03BD\u03B1\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 \u03BC\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF, \u03B8\u03B1 \u03C4\u03BF \u03B4\u03B5\u03AF\u03C7\u03BD\u03C9 \u03C3\u03B5 \u03BC\u03B9\u03BA\u03C1\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03B5\u03B3\u03CE. hot_keys=\u03A3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 hot_keys_table=\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD HotKeyInfoAction.text=\u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF\u03C5 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 - \u039F\u03BB\u03B1 \u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03AD\u03BD\u03B1 html_export_fold_currently_folded=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE HTML - \u03C3\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 - \u03C3\u03B5 \u03C0\u03BB\u03AE\u03C1\u03B7 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 html_problem=\u0394\u03B5 \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03C9 html

{0} icon_0%=0% icon_100%=100% icon_25%=25% icon_50%=50% icon_75%=75% icon_addition=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 icon_attach=\u039A\u03BF\u03AF\u03C4\u03B1 \u03B5\u03B4\u03CE icon_audio=\u0389\u03C7\u03BF\u03C2 icon_back=\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE icon_bee=Freeplane icon_bell=\u03A5\u03C0\u03BF\u03BC\u03BD\u03B7\u03C3\u03B7 icon_bookmark=\u0391\u03C1\u03B9\u03C3\u03C4\u03BF icon_broken-line=\u039A\u03BF\u03BC\u03BC\u03AD\u03BD\u03BF icon_button_cancel=\u0386\u03BA\u03C5\u03C1\u03BF icon_button_ok=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 icon_calendar=\u0397\u03BC\u03B5\u03C1\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF icon_checked=\u0395\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF icon_clanbomber=\u0395\u03C0\u03B9\u03BA\u03AF\u03BD\u03B4\u03C5\u03BD\u03BF icon_clock=\u038F\u03C1\u03B1 icon_clock2=\u03A5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 icon_closed=\u0391\u03C0\u03B1\u03B3\u03CC\u03C1\u03B5\u03C5\u03C3\u03B7 \u03B5\u03B9\u03C3\u03CC\u03B4\u03BF\u03C5 icon_decrypted=\u0391\u03C0\u03BF\u03BA\u03C1\u03C5\u03C0\u03C4\u03BF\u03B3\u03C1\u03B1\u03C6\u03B7\u03BC\u03AD\u03BD\u03BF icon_desktop_new=\u039C\u03AE\u03BD \u03BE\u03B5\u03C7\u03AC\u03C3\u03B5\u03B9\u03C2 icon_division=\u0394\u03B9\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 icon_down=\u039A\u03AC\u03C4\u03C9 icon_edit=\u0392\u03B5\u03BB\u03C4\u03AF\u03C9\u03C3\u03B7 icon_encrypted=\u039A\u03BB\u03B5\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF icon_executable=\u0395\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03B9\u03BC\u03BF icon_family=\u039F\u03B9\u03BA\u03BF\u03B3\u03AD\u03BD\u03B5\u03B9\u03B1 icon_fema=\u0386\u03BD\u03B4\u03C1\u03B1\u03C2 & \u0393\u03C5\u03BD\u03B1\u03AF\u03BA\u03B1 icon_female1=\u0393\u03C5\u03BD\u03B1\u03AF\u03BA\u03B11 icon_female2=\u0393\u03C5\u03BD\u03B1\u03AF\u03BA\u03B12 icon_females=\u0398\u03B7\u03BB\u03C5\u03BA\u03AC icon_flag=\u03A3\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\u03B1\u03BD\u03AC\u03C1\u03B9 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_icon_not_found=\u03A4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03B4\u03B5 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1 icon_idea=\u0388\u03BC\u03C0\u03BD\u03B5\u03C5\u03C3\u03B7 icon_image=\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 icon_info=\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B1 icon_internet=\u0394\u03B9\u03B1\u03B4\u03AF\u03BA\u03C4\u03C5\u03BF icon_internet_warning=\u03A0\u03C1\u03BF\u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B4\u03B9\u03B1\u03B4\u03B9\u03BA\u03C4\u03CD\u03BF\u03C5 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=\u0395\u03AF\u03BC\u03B1\u03B9 \u03C7\u03B1\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C2 icon_launch=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 icon_licq=\u03A9\u03C1\u03B1\u03AF\u03B1 icon_list=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 icon_Mail=\u0391\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1 icon_male1=\u0386\u03BD\u03B4\u03C1\u03B1\u03C21 icon_male2=\u0386\u03BD\u03B4\u03C1\u03B1\u03C22 icon_males=\u0391\u03C1\u03C3\u03B5\u03BD\u03B9\u03BA\u03AC icon_menu=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 icon_messagebox_warning=\u03A3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC icon_mindmap=\u03A7\u03AC\u03C1\u03C4\u03B7\u03C2 icon_multiplication=\u03A0\u03BF\u03BB\u03BB\u03B1\u03C0\u03BB\u03B1\u03C3\u03B9\u03B1\u03C3\u03BC\u03CC\u03C2 icon_narrative=\u0395\u03BA\u03C6\u03CE\u03BD\u03B7\u03C3\u03B7 icon_negative=\u0391\u03C1\u03BD\u03B7\u03B9\u03C4\u03B9\u03BA\u03CC icon_neutral=\u039F\u03C5\u03B4\u03AD\u03C4\u03B5\u03C1\u03BF 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_positive=\u0398\u03B5\u03C4\u03B9\u03BA\u03CC icon_prepare=\u039A\u03AF\u03C4\u03C1\u03B9\u03BD\u03BF \u03C6\u03B1\u03BD\u03AC\u03C1\u03B9 icon_revision=\u0391\u03BD\u03B1\u03B8\u03B5\u03CE\u03C1\u03B7\u03C3\u03B7 icon_revision-pink=\u0391\u03BD\u03B1\u03B8\u03B5\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C1\u03BF\u03B6 icon_revision-red=\u0391\u03BD\u03B1\u03B8\u03B5\u03CE\u03C1\u03B7\u03C3\u03B7 \u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03B7 icon_smiley-angry=\u0386\u03B3\u03C1\u03B9\u03BF\u03C2 icon_smiley-neutral=\u0391\u03BD\u03CC\u03B7\u03C4\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=Stop icon_stop-sign=\u03A3\u03C4\u03BF\u03C0 icon_subtraction=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 icon_unchecked=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE icon_up=\u03A0\u03AC\u03BD\u03C9 icon_user_icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 icon_very_negative=\u03A0\u03BF\u03BB\u03CD \u03B1\u03C1\u03BD\u03B7\u03C4\u03B9\u03BA\u03CC\u03C2 icon_very_positive=\u03A0\u03BF\u03BB\u03CD \u03B8\u03B5\u03C4\u03B9\u03BA\u03CC\u03C2 icon_video=\u0392\u03AF\u03BD\u03C4\u03B5\u03BF icon_wizard=\u039C\u03B1\u03B3\u03B5\u03AF\u03B1 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 IconGroupPopupAction.arrows.text=\u0392\u03AD\u03BB\u03B7 IconGroupPopupAction.docs_folders.text=\u0388\u03B3\u03B3\u03C1\u03B1\u03C6\u03B1 & \u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03B9 IconGroupPopupAction.flags.text=\u03A3\u03B7\u03BC\u03B1\u03AF\u03B5\u03C2 IconGroupPopupAction.math.text=\u039C\u03B1\u03B8\u03B7\u03BC\u03B1\u03C4\u03B9\u03BA\u03AC IconGroupPopupAction.media.text=\u03A0\u03BF\u03BB\u03C5\u03BC\u03AD\u03C3\u03B1 IconGroupPopupAction.miscellaneous.text=\u0394\u03B9\u03AC\u03C6\u03BF\u03C1\u03B1 IconGroupPopupAction.nature.text=\u03A6\u03CD\u03C3\u03B7 IconGroupPopupAction.numbers.text=\u0391\u03C1\u03B9\u03B8\u03BC\u03BF\u03AF IconGroupPopupAction.office.text=\u0393\u03C1\u03B1\u03C6\u03B5\u03AF\u03BF IconGroupPopupAction.people.text=\u0386\u03BD\u03B8\u03C1\u03C9\u03C0\u03BF\u03B9 IconGroupPopupAction.rating.text=\u0392\u03B1\u03B8\u03BC\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7 IconGroupPopupAction.signs.text=\u03A3\u03AE\u03BC\u03B1\u03C4\u03B1 IconGroupPopupAction.smiley.text=\u03A7\u03B1\u03BC\u03CC\u03B3\u03B5\u03BB\u03BF IconGroupPopupAction.time.text=\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 IconGroupPopupAction.user.text=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 IconProgressExtended10Action.text=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B7 \u03C0\u03C1\u03CC\u03BF\u03B4\u03BF\u03C2 10% IconProgressExtended10Action.tooltip=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03AD\u03BD\u03B4\u03B5\u03B9\u03BE\u03B7 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 \u03B7 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03B1\u03C5\u03BE\u03AC\u03BD\u03B5\u03B9 \u03BA\u03B1\u03C4\u03AC 10% \u03BC\u03B5 \u03C4\u03BF \u03B4\u03B9\u03C0\u03BB\u03CC \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03CC \u03BA\u03BB\u03B9\u03BA.
Control + \u0394\u03B9\u03C0\u03BB\u03CC \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03CC \u03BA\u03BB\u03B9\u03BA \u03C4\u03BF \u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 / \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF. IconProgressExtended25Action.text=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B7 \u03C0\u03C1\u03CC\u03BF\u03B4\u03BF\u03C2 25% IconProgressExtended25Action.tooltip=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03AD\u03BD\u03B4\u03B5\u03B9\u03BE\u03B7 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 \u03B7 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03B1\u03C5\u03BE\u03AC\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03B1\u03C4\u03AC 25% \u03BC\u03B5 \u03C4\u03BF \u03B4\u03B9\u03C0\u03BB\u03CC \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03CC \u03BA\u03BB\u03B9\u03BA.
Control + \u0394\u03B9\u03C0\u03BB\u03CC \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03CC \u03BA\u03BB\u03B9\u03BA \u03C4\u03BF \u03BC\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 / \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF. IconProgressIconDownAction.text=\u039C\u03B5\u03AF\u03C9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 IconProgressIconDownAction.tooltip=\u039C\u03B5\u03B9\u03CE\u03BD\u03B5\u03B9 / \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03B9/ \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF \u03C4\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 (100% -> 75% -> 50% -> 25% -> 0% -> \u03B1\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5). IconProgressIconUpAction.text=\u0391\u03CD\u03BE\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 IconProgressIconUpAction.tooltip=\u0391\u03C5\u03BE\u03AC\u03BD\u03B5\u03B9 / \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03B9 \u03C4\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 (0% -> 25% -> 50% -> 75% -> 100% + \u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9). IconProgressRemoveAction.text=\u0391\u03C6\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 IconProgressRemoveAction.tooltip=\u0391\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF \u03C4\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C4\u03BF \u03B5\u03BA\u03C4\u03B5\u03C4\u03B1\u03BC\u03AD\u03BD\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5. icons=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 IconSelectionPlugin.text=\u0395\u03C0\u03AD\u03BB\u03B5\u03BE\u03B5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF... IconSelectionPlugin.tooltip=\u0395\u03B4\u03CE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03B9\u03C2 \u03BC\u03B9\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03BC\u03B5 \u03C5\u03C0\u03BF\u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF. image_covertLink=\u039C\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD \u03C3\u03B5 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 ImageFlavorHandler=\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 (\u03C7\u03C1\u03AE\u03C3\u03B7 \u03C7\u03C9\u03C1\u03B9\u03C3\u03C4\u03BF\u03CD \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5) import=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE 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\u03BC\u03BF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B1\u03C0\u03CC \u03B1\u03C5\u03C4\u03CC\u03BD. ImportAction.text=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE ImportBranchAction.text=\u0394\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 ... ImportExplorerFavoritesAction.text=\u0391\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B7\u03B3\u03B7\u03C4\u03AE... ImportFolderStructureAction.text=\u0394\u03BF\u03BC\u03AE \u03C6\u03B1\u03BA\u03AD\u03BB\u03C9\u03BD ... ImportLinkedBranchAction.text=\u03A3\u03C5\u03BD\u03B4\u03B5\u03BC\u03AD\u03BD\u03B7 \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 ImportLinkedBranchWithoutRootAction.text=(\u03A3\u03C5\u03BD\u03B4\u03B5\u03BC\u03AD\u03BD\u03B7 \u03B4\u03B9\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7) \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC... ImportMindmanagerFiles.text=\u03A7\u03AC\u03C1\u03C4\u03B7\u03C2 MindManager X5... ImportXmlFile.text=\u0395\u03B9\u03C3\u03AE\u03B3\u03B1\u03B3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF xml 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 IncreaseNodeFontAction.text=\u039C\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC internal_error.tooltip=\u03A3\u03C5\u03BD\u03AD\u03B2\u03B7\u03C3\u03B1\u03BD \u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03AC \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1\u03C4\u03B1. \u039A\u03AC\u03BD\u03C4\u03B5 \u03BA\u03BB\u03B9\u03BA \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 log.0 \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2. invalid_export_file=\u039C\u03AF\u03B1 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03B5\u03BE\u03B1\u03B3\u03BF\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 invalid_file_msg=\u0394\u03B5\u03BD \u03BC\u03C0\u03CC\u03C1\u03B5\u03C3\u03B5 \u03BD\u03B1 \u03B2\u03C1\u03B5\u03B9 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B3\u03B9\u03B1 {0} invalid_uri=\u039C\u03B7 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF URI {0} invalid_url=\u0394\u03B5\u03BD \u03BC\u03C0\u03CC\u03C1\u03B5\u03C3\u03B5 \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03B5\u03B9 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF URL invalid_url_msg=\u0394\u03B5\u03BD \u03BC\u03C0\u03CC\u03C1\u03B5\u03C3\u03B5 \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03B5\u03B9 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF URL \u03B3\u03B9\u03B1 {0} ItalicAction.text=\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 java_version=\u0388\u03BA\u03B4\u03BF\u03C3\u03B7 Java {0} JoinNodesAction.separator.format=\u03A3\u03C5\u03BD\u03B4\u03CD\u03B1\u03C3\u03B5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BC\u03B5 "{0}" lastOpenedMaps=\u039F\u03B9 \u03C0\u03B9\u03BF \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03BF\u03B9 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 lastOpenedMaps.noActions=\u039A\u03B1\u03BD\u03AD\u03BD\u03B1\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C3\u03C4\u03BF \u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC latex_editor=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03AC\u03C3\u03BF\u03C5 \u03C4\u03CD\u03C0\u03BF LaTeX LatexDeleteLatexAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03C4\u03CD\u03C0\u03BF LaTeX LatexEditLatexAction.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03AC\u03C3\u03BF\u03C5 \u03C4\u03CD\u03C0\u03BF LaTeX... LatexInsertLatexAction.msg1=\u03A0\u03C1\u03BF\u03C3\u03C0\u03B1\u03B8\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03AD\u03BD\u03B1 \u03C0\u03B1\u03C1\u03C9\u03C7\u03B7\u03BC\u03AD\u03BD\u03BF \u03C4\u03CD\u03C0\u03BF LaTeX.
\u039F \u03BD\u03AD\u03BF\u03C2 \u03C4\u03C1\u03CC\u03C0\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03B5\u03C4\u03B5 \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF / \u03C4\u03CD\u03C0\u03BF LaTeX \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03C6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1: LatexInsertLatexAction.msg2=\u0395\u03BD \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03AF\u03B1:
  • \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03AD\u03BD\u03B1 \u03C0\u03C1\u03CC\u03B8\u03B5\u03BC\u03B1 "\\latex " \u03C3\u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03AE
  • \u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE->\u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03B9\u03BF\u03B8\u03AE\u03BA\u03B7, \u03BC\u03B5\u03C4\u03AC \u039A\u03C5\u03C1\u03AF\u03C9\u03C2 \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF->\u039C\u03BF\u03C1\u03C6\u03AE->Latex
LatexInsertLatexAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C4\u03CD\u03C0\u03BF\u03C5 LaTeX... latexPatternFormat=LaTeX LengthUnits.cm=\u03B5\u03BA LengthUnits.in=\u03AF\u03BD\u03C4\u03C3\u03B5\u03C2 LengthUnits.mm=\u03C7\u03B9\u03BB LengthUnits.pt=\u03C3\u03B7\u03BC\u03B5\u03AF\u03B1 LengthUnits.px=\u03C0\u03AF\u03BE\u03B5\u03BB less_than_two_selected_nodes=\u0393\u03B9\u03B1 \u03BD\u03B1 \u03AD\u03C7\u03BF\u03C5\u03BC\u03B5 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03C4\u03B5 \u03C4\u03BF\u03C5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF\u03BD \u03B4\u03CD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. license=\u0386\u03B4\u03B5\u03B9\u03B1: GPL 2 \u03AE \u03BC\u03B5\u03C4\u03B1\u03B3\u03B5\u03BD\u03AD\u03C3\u03C4\u03B5\u03C1\u03B7 link_not_available_any_more=\u0397 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B4\u03B5\u03BD \u03B9\u03C3\u03C7\u03CD\u03B5\u03B9. \u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C6\u03B7\u03BA\u03B5 \u03C3\u03C4\u03BF \u03BC\u03B5\u03C3\u03BF\u03B4\u03B9\u03AC\u03C3\u03C4\u03B7\u03BC\u03B1. link_not_found=\u039F \u03B4\u03B5\u03C3\u03BC\u03CC\u03C2 {0} \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5. links=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 load=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 load_accelerator_presets=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 LoadAcceleratorPresetsAction.textPatterns.text=\u03C3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03BF\u03AF \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 locking_failed_by_open=\u03A4\u03BF \u03BA\u03BB\u03B5\u03AF\u03B4\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 {0} \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5. \u03A7\u03C1\u03AE\u03C3\u03B7 \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 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 {0} \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=\u03A4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 {0} \u03BA\u03BB\u03B5\u03B9\u03B4\u03CE\u03B8\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 {1}. \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=\u0395\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\u03BA\u03C5\u03C1\u03CE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 ? long_node_changed_submit=\u0395\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=\u0395\u03C7\u03BF\u03C5\u03BD \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B7\u03B8\u03B5\u03AF \u03C0\u03BF\u03BB\u03BB\u03BF\u03AF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03C3\u03C4\u03BF\u03BD \u03AF\u03B4\u03B9\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF. \u0398\u03AD\u03BB\u03B5\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 ? main_resource_directory=\u03A0\u03B7\u03B3\u03AD\u03C2 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 {0} MainView.errorUpdateText=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C4\u03BF {0}:{1} MakeLinkFromAnchorAction.text=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03B1\u03B3\u03BA\u03AF\u03C3\u03C4\u03C1\u03C9\u03C3\u03B7\u03C2 MakeLinkFromAnchorAction.tooltip=\u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C4\u03BF\u03C0\u03B9\u03BA\u03BF\u03CD \u03AE \u03B4\u03B9\u03BA\u03C4\u03C5\u03B1\u03BA\u03BF\u03CD \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD \u03B1\u03C0\u03CC
\u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03B1\u03B3\u03BA\u03B9\u03C3\u03C4\u03C1\u03C9\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF MakeLinkToAnchorAction.text=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03C4\u03B7\u03BD \u03B1\u03B3\u03BA\u03AF\u03C3\u03C4\u03C1\u03C9\u03C3\u03B7 MakeLinkToAnchorAction.tooltip=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B5\u03BD\u03CC\u03C2 \u03C4\u03BF\u03C0\u03B9\u03BA\u03BF\u03CD \u03AE \u03B4\u03B9\u03BA\u03C4\u03C5\u03B1\u03BA\u03BF\u03CD \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD \u03B1\u03C0\u03CC
\u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BD \u03B1\u03B3\u03BA\u03B9\u03C3\u03C4\u03C1\u03C9\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF ManageAddOnsAction.text=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 ManageAddOnsDialog.activate=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 ManageAddOnsDialog.activation.success=\u03C4\u03BF {0} \u03B8\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03BC\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B1\u03BD\u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 ManageAddOnsDialog.authored.by=\u03B1\u03C0\u03CC {0} ManageAddOnsDialog.cannot.activate=\u03A4\u03BF {0} \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AE\u03B4\u03B7 \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC ManageAddOnsDialog.cannot.configure=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BC\u03B5\u03C4\u03C1\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C9 \u03C4\u03BF {0} ManageAddOnsDialog.cannot.deactivate=\u03A4\u03BF {0} \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC ManageAddOnsDialog.cannot.deinstall=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B1\u03C0\u03B5\u03B3\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AE\u03C3\u03C9 \u03C4\u03BF {0} ManageAddOnsDialog.configure=\u03A0\u03B1\u03C1\u03B1\u03BC\u03B5\u03C4\u03C1\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 ManageAddOnsDialog.deactivate=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 ManageAddOnsDialog.deactivation.success=\u03C4\u03BF {0} \u03B8\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03BC\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B1\u03BD\u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 ManageAddOnsDialog.deinstall=\u0391\u03C0\u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 ManageAddOnsDialog.deinstallation.success=\u03C4\u03BF {0} \u03B8\u03B1 \u03B1\u03C0\u03B5\u03B3\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03B1\u03B8\u03B5\u03AF \u03BC\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B1\u03BD\u03B5\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 ManageAddOnsDialog.error=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 {0} ManageAddOnsDialog.install=\u0395\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 ManageAddOnsDialog.install.from.known.location=\u0395\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03BF\u03C5 \u03B1\u03C0\u03CC \u03B3\u03BD\u03C9\u03C3\u03C4\u03AE \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 ManageAddOnsDialog.install.tooltip=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE URL \u03B5\u03B4\u03CE ManageAddOnsDialog.map.not.opened=\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 {0} \u03B4\u03B5 \u03C6\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03AD\u03C7\u03B5\u03B9 \u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03B5\u03AF ManageAddOnsDialog.really.deinstall=\u0391\u03C0\u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03B1; ManageAddOnsDialog.search=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03C9\u03BD ManageAddOnsDialog.search.file=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 ManageAddOnsDialog.select.tooltip=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 ManageAddOnsDialog.status.downloading=\u039A\u03B1\u03C4\u03AD\u03B2\u03B1\u03C3\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5... ManageAddOnsDialog.status.installing=\u0395\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03BF\u03C5... ManageAddOnsDialog.status.success=\u0395\u03C0\u03B9\u03C4\u03C5\u03C7\u03CE\u03C2 \u03B5\u03B3\u03BA\u03B1\u03C4\u03B5\u03C3\u03C4\u03B7\u03BC\u03AD\u03BD\u03B1 {0}. ManageAddOnsDialog.tab.install=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 ManageAddOnsDialog.tab.install.tooltip=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B5\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BD\u03AD\u03C9\u03BD \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03C9\u03BD ManageAddOnsDialog.tab.manage=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 ManageAddOnsDialog.tab.manage.themes=\u0398\u03AD\u03BC\u03B1\u03C4\u03B1 ManageAddOnsDialog.tab.manage.themes.tooltip=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03B5\u03B3\u03BA\u03B1\u03C4\u03B5\u03C3\u03C4\u03B7\u03BC\u03AD\u03BD\u03C9\u03BD \u03B8\u03B5\u03BC\u03AC\u03C4\u03C9\u03BD ManageAddOnsDialog.tab.manage.tooltip=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03B5\u03B3\u03BA\u03B1\u03C4\u03B5\u03C3\u03C4\u03B7\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03C9\u03BD ManageAddOnsDialog.visit.addon.page=\u0395\u03C0\u03AF\u03C3\u03BA\u03B5\u03C8\u03B7 \u03C3\u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03C9\u03BD... ManageConditionalStylesAction.text=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03CC \u03CC\u03C1\u03BF\u03C5\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF ManageNodeConditionalStylesAction.text=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03CC \u03CC\u03C1\u03BF\u03C5\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF map_already_exists=\u03A4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AE\u03B4\u03B7. \u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03BF\u03C5\u03BC\u03B5 ; map_corrupted=\u0394\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03BA\u03B1\u03C4\u03B5\u03C3\u03C4\u03C1\u03B1\u03BC\u03AD\u03BD\u03BF. \u0398\u03AD\u03BB\u03B5\u03B9\u03C2 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 ? map_load_error=\u0394\u03B5\u03BD \u03BC\u03C0\u03CC\u03C1\u03B5\u03C3\u03B1 \u03BD\u03B1 \u03C6\u03BF\u03C1\u03C4\u03CE\u03C3\u03C9 \u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 {0} map_locked_by_open=\u03A4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 {0} \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03B5\u03BB\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 {1}. \u03A4\u03BF \u03B1\u03BD\u03BF\u03AF\u03B3\u03C9 \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7. map_locked_by_save_as=\u03A4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 {0} \u03B5\u03B9\u03BD\u03B1\u03B9 \u03BA\u03BB\u03B5\u03B9\u03B4\u03C9\u03BC\u03AD\u03BD\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 {1}. \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. map_not_saved=\u03A4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \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. MapBackgroundColorAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 MaxNodeWidth.text=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF\u03C5 \u03C0\u03BB\u03AC\u03C4\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 menu_applyStyle=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03A3\u03C4\u03C5\u03BB menu_attributes=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC menu_clouds=\u03A3\u03CD\u03BD\u03BD\u03B5\u03C6\u03B1 menu_copy=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE menu_coreFormat=\u039A\u03AD\u03BD\u03C4\u03C1\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 menu_details=\u039B\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 menu_displayAttributes=\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 menu_encryption=\u03A0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C3\u03AF\u03B1 \u03BC\u03B5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC menu_error=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C3\u03C4\u03B7 \u03B4\u03BF\u03BC\u03AE \u03BC\u03B5\u03BD\u03BF\u03CD \u03C0\u03BF\u03C5 \u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 {0}:\n{1}\n\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 menu_group=\u039F\u03BC\u03AC\u03B4\u03B1 \u039A\u03CC\u03BC\u03B2\u03C9\u03BD menu_hoverView=\u03A0\u03B5\u03B4\u03AF\u03B1 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1\u03C2 menu_iconByCategory=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03B1\u03BD\u03AC \u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1... menu_iconView=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 menu_image=\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 menu_insert=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE menu_latex_formula=\u03B5\u03BD\u03C4\u03BF\u03BB\u03AE LaTeX menu_manageStyles=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03A3\u03C4\u03C5\u03BB menu_moveNode=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03C4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7 menu_newNode=\u039D\u03AD\u03BF\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 menu_node=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 menu_node_features=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 menu_nodes=\u039A\u03CC\u03BC\u03B2\u03BF\u03B9 menu_nodeView=\u039A\u03AD\u03BD\u03C4\u03C1\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 menu_noteView=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 menu_remove_icons=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD menu_removeAttribute=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD menu_select=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE menu_time=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5 menu_title=\u039A\u03AD\u03BD\u03C4\u03C1\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 menu_viewmode=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03CE\u03BD MenuUtils.invalid_menuitem=\u03C4\u03BF {0} \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03B3\u03BA\u03C5\u03C1\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD mindmap=\u0394\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 MindMapNodesFlavorHandler=\u0399\u03B5\u03C1\u03B1\u03C1\u03C7\u03AF\u03B1 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD mindmaps=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 mindmaps_desc=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 (*.mm) mindmaps_filter_desc=\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 (*.mmfilter) MinNodeWidth.text=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF\u03C5 \u03C0\u03BB\u03AC\u03C4\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 mode_Browse=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 mode_File=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u0391\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD mode_MindMap=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD mode_na=\u03A4\u03C1\u03CC\u03C0\u03BF\u03C2 \u03BC\u03AE \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF\u03C2 mode_status=\u039F \u03C4\u03C1\u03CC\u03C0\u03BF\u03C2 \u03AC\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C3\u03C4\u03BF {0} mode_title=Freeplane - {0} Mode modes=\u03A4\u03C1\u03CC\u03C0\u03BF\u03B9 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 ModesMenuAction.Browse.text=\u03A0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD ModesMenuAction.File.text=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD ModesMenuAction.MindMap.text=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 Mind Map most_recent_files=\u03A0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 MoveSelectedNodeAction.CENTER.text=\u039A\u03B5\u03BD\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u039A\u03CC\u03BC\u03B2\u03BF MoveToRootAction.text=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03B7\u03BD \u0391\u03C1\u03C7\u03AE NameConditionAction.text=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 navigate=\u03A0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7 NavigationNextMapAction.text=\u0395\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 NavigationPreviousMapAction.text=\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u0394\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 new=\u039D\u03AD\u03BF new_map_from_user_templates.text=\u039D\u03AD\u03BF\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03B1\u03C0\u03CC \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF... new_mindmap=\u039D\u03AD\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 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 \u03C3\u03C5\u03B3\u03B3\u03B5\u03BD\u03AE\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC new_version_available=\u039D\u03AD\u03B1 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B7 {0} NewChildAction.text=\u039D\u03AD\u03BF\u03C2 \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 NewerFileRevisionsFoundDialog.cancel=\u03A0\u03B1\u03C1\u03AC\u03BA\u03B1\u03BC\u03C8\u03B7 NewerFileRevisionsFoundDialog.cancel.tooltip=\u039C\u03B7\u03BD \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9\u03C2 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF NewerFileRevisionsFoundDialog.file_last_modified=\u03A3\u03B7\u03BC\u03AC\u03B4\u03B9 \u03B7\u03BC/\u03BD\u03B9\u03B1\u03C2-\u03CE\u03C1\u03B1\u03C2 NewerFileRevisionsFoundDialog.file_name=\u0391\u03C1\u03C7\u03B5\u03AF\u03BF NewerFileRevisionsFoundDialog.file_size=Bytes NewerFileRevisionsFoundDialog.open=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 NewerFileRevisionsFoundDialog.open.tooltip=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B1\u03BA\u03CC\u03BC\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BA\u03C4\u03CC\u03C2 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 NewerFileRevisionsFoundDialog.question=\u0392\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD \u03BD\u03AD\u03B5\u03C2 \u03B5\u03BA\u03B4\u03CC\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 {0}! NewerFileRevisionsFoundDialog.restore=\u0391\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 NewerFileRevisionsFoundDialog.restore.tooltip=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 {0} \u03BC\u03B5 \u03C4\u03BF {1} NewerFileRevisionsFoundDialog.title=\u039D\u03AD\u03B5\u03C2 \u03B5\u03BA\u03B4\u03CC\u03C3\u03B5\u03B9\u03C2 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD! NewLevelStyleAction.text=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03C4\u03C5\u03BB \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 newmap.install.addon.question=\u03C4\u03BF {0} \u03C6\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C3\u03B1\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03BF.\n\u039D\u03B1 \u03C4\u03BF \u03B5\u03B3\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AE\u03C3\u03C9; (\u03BC\u03B5 \u039F\u03A7\u0399 \u03B1\u03C0\u03BB\u03CE\u03C2 \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF) newmap.install.addon.title=\u0395\u03B3\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03BF\u03C5; NewMapAction.text=\u039D\u03AD\u03BF NewMapViewAction.text=\u039D\u03AD\u03B1 \u03B1\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7 \u03C7\u03AC\u03C1\u03C4\u03B7 NewParentNode.text=\u039D\u03AD\u03BF\u03C2 \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 NewParentNode.tooltip=\u039F\u03BB\u03BF\u03B9 \u03BF\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03BF\u03BC\u03B2\u03BF\u03B9, \u03C0\u03AC\u03BD\u03B5 \u03C3\u03B5 \u03BD\u03AD\u03BF \u03B3\u03BF\u03BD\u03AD\u03B1. NewPreviousSiblingAction.text=\u039D\u03AD\u03BF \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C2 \u03B1\u03B4\u03B5\u03C1\u03C6\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 NewSiblingAction.text=\u039D\u03AD\u03BF\u03C2 \u03B1\u03B4\u03B5\u03C1\u03C6\u03B9\u03BA\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 NewSummaryAction.text=\u039D\u03AD\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7\u03C2 (\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9) NewUserStyleAction.text=\u039D\u03AD\u03BF \u03C3\u03C4\u03C5\u03BB \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE NextNodeAction.BACK.text=\u03A3\u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF NextNodeAction.BACK_N_FOLD.text=\u03A3\u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF (\u03BC\u03B5 \u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1) NextNodeAction.FORWARD.text=\u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF NextNodeAction.FORWARD_N_FOLD.text=\u03C3\u03C4\u03BF\u03BD \u03B1\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF (\u03BC\u03B5 \u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1) no=\u039F\u03C7\u03B9 no_copy_attributes_before_paste_attributes=\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C8\u03C4\u03B5 \u03C0\u03C1\u03CE\u03C4\u03B1 \u03BA\u03AC\u03C4\u03B9. NO_FORMAT=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF no_format_copy_before_format_paste=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BA\u03BF\u03BB\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BC\u03AF\u03B1 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C0\u03C1\u03B9\u03BD \u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9\u03C2. no_found_from=\u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5 \u03C4\u03BF "{0}" \u03B1\u03C0\u03CC \u03C4\u03BF "{1}". no_more_found_from=\u0394\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD \u03AC\u03BB\u03BB\u03B1 "{0}" \u03B1\u03C0\u03CC \u03C4\u03BF "{1}". no_previous_find=\u0397 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03AE\u03C4\u03B1\u03BD \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1. no_styles_found_in_map=\u0394\u03B5 \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD \u03C3\u03C4\u03C5\u03BB \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 node=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 node_changed_discard_changes=\u0395\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\u03BA\u03C5\u03C1\u03CE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 ? node_is_write_protected=\u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B1\u03C4\u03B5\u03C5\u03BC\u03AD\u03BD\u03BF\u03C2 node_location_help=\u03BC\u03B5 \u03C3\u03CD\u03C1\u03C3\u03B9\u03BC\u03BF \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03B7 \u03B8\u03AD\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5, \u03BC\u03B5 ctrl + \u03C3\u03CD\u03C1\u03C3\u03B9\u03BC\u03BF \u03B1\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03B7 \u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7, \u03BC\u03B5 \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03BA\u03B1\u03B9 ctrl+\u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03BA\u03B1\u03B8\u03B1\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BF\u03B9 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03B8\u03AD\u03C3\u03B7\u03C2 node_selector=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 node_selector_message=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA node_styles=\u03A3\u03C4\u03C5\u03BB \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD NodeBackgroundColorAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5... NodeColorAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5... NodeColorBlendAction.text=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BC\u03AF\u03BE\u03B7\u03C2 NodeDownAction.text=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03BA\u03AC\u03C4\u03C9 NodeExtensions.EditNodeExtensions=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B5\u03C0\u03B5\u03BA\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD NodeExtensions.RemoveNodeExtensions=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03B5\u03C0\u03B5\u03BA\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD NodeListAction.text=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7... NodeListAction.tooltip=\u0394\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 \u03BC\u03B5 \u03C4\u03B9\u03C2 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B5\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2/\u03BC\u03B5\u03C4\u03B1\u03B2\u03BF\u03BB\u03AE\u03C2. NodeShapeAction.bubble.text=\u03A6\u03BF\u03CD\u03C3\u03BA\u03B1 NodeShapeAction.fork.text=\u0394\u03B9\u03C7\u03AC\u03BB\u03B1- Fork NodeUpAction.text=\u039A\u03CC\u03BC\u03B2\u03BF\u03C2 \u03C0\u03AC\u03BD\u03C9 nonboldify_branch=\u03B1\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF\u03C5 nonitalicise_branch=\u03B1\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C0\u03BB\u03B1\u03B3\u03AF\u03C9\u03BD normal=\u03A3\u03C5\u03BD\u03AE\u03B8\u03B7\u03C2 not_saved_for_image_error=\u039F \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03C4\u03B5\u03AF \u03C0\u03C1\u03CE\u03C4\u03B1 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BF\u03C1\u03AF\u03C3\u03B5\u03C4\u03B5 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 not_saved_for_link_error=\u03A4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03B8\u03B5\u03AF, \u03C0\u03C1\u03B9\u03BD \u03BD\u03B1 \u03BC\u03C0\u03BF\u03C1\u03AD\u03C3\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03BF\u03C1\u03AF\u03C3\u03B5\u03C4\u03B5 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AC note_window_location=\u0398\u03AD\u03C3\u03B7 \u03C0\u03B5\u03B4\u03AF\u03BF\u03C5 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD notes=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 NotFoldingNextPresentationItemAction.text=\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B1\u03C0\u03B5\u03B9\u03BA\u03CC\u03BD\u03B9\u03C3\u03B7\u03C2 ok=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 OKAction.text=\u0395\u03BD\u03C4\u03AC\u03BE\u03B5\u03B9 OnlineReference.text=\u039F\u03B4\u03B7\u03B3\u03AF\u03B5\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03C3\u03C4\u03BF \u03B4\u03B9\u03B1\u03B4\u03AF\u03BA\u03C4\u03C5\u03BF open_asMindMap=Mind Map OpenAction.text=\u0391\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1... OpenFreeplaneSiteAction.text=\u0399\u03C3\u03C4\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 Freeplane OpenPathAction.text=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 OpenURLMapAction.text=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C7\u03AC\u03C1\u03C4\u03B7 \u03B1\u03C0\u03CC URL... OpenUserDirAction.text=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 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 \u03BE\u03B1\u03BD\u03B1\u03BE\u03B5\u03BA\u03B9\u03BD\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF Freeplane. OptionalDontShowMeAgainDialog.cancel=\u038C\u03C7\u03B9 OptionalDontShowMeAgainDialog.dontShowAgain=\u039C\u03B7 \u03BC\u03B5 \u03C1\u03C9\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BE\u03B1\u03BD\u03AC 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=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7\u03C2 OptionPanel.ADD_CHILD=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.ADD_SIBLING=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B4\u03AF\u03B4\u03C5\u03BC\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.addons=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 OptionPanel.always_fold_all_after_load=\u03A4\u03CD\u03BB\u03B9\u03B3\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD OptionPanel.always_load_last_maps=\u03A6\u03CC\u03C1\u03C4\u03C9\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u03BD\u03AD\u03C9\u03BD \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD OptionPanel.always_load_last_maps.tooltip=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C4\u03C9\u03BD \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03C9\u03BD \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03BC\u03B5 \u03B2\u03AC\u03C3\u03B7 \u03C4\u03B9\u03C2 \u03C0\u03B1\u03C1\u03B1\u03C0\u03AC\u03BD\u03C9 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2, \u03BA\u03B1\u03B9 \u03AC\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C4\u03BF\u03C5 FP \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7. OptionPanel.always_save_folding=\u03A0\u03AC\u03BD\u03C4\u03B1 OptionPanel.always_save_folding_state=\u039D\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03AC\u03BD\u03C4\u03B1 \u03BF\u03B9 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 \u03C4\u03C5\u03BB\u03AF\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.always_save_folding_state.tooltip=\u0391\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF, \u03BA\u03AC\u03B8\u03B5 \u03C4\u03CD\u03BB\u03B9\u03B3\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C0\u03C1\u03BF\u03BA\u03B1\u03BB\u03B5\u03AF \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03BA\u03B1\u03B9 \u03C3\u03BF\u03C5 \u03C5\u03C0\u03B5\u03BD\u03B8\u03C5\u03BC\u03AF\u03B6\u03B5\u03B9 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2. OptionPanel.always_unfold_all_after_load=\u039E\u03B5\u03C4\u03CD\u03BB\u03B9\u03B3\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD OptionPanel.antialias=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\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 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2. \u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF \u03CC\u03BC\u03C9\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03BF \u03C7\u03C1\u03CC\u03BD\u03BF . OptionPanel.antialias_all=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7: \u039F\u03BB\u03B1 OptionPanel.antialias_edges=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7: \u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 OptionPanel.antialias_none=\u03A7\u03C9\u03C1\u03AF\u03C2 \u03BF\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7 OptionPanel.Appearance=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 OptionPanel.approximate_search_threshold=\u038C\u03C1\u03B9\u03BF \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B5\u03B3\u03B3\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE \u03C4\u03B1\u03CD\u03C4\u03B9\u03C3\u03B7 OptionPanel.approximate_search_threshold.tooltip=Threshold for approximate matching
see http://freeplane.sf.net/wiki/index.php/Approximate_search
(the higher the fewer variations
of the search term will be found) OptionPanel.ar=Ar OptionPanel.ARC=\u03A4\u03CC\u03BE\u03BF OptionPanel.as_parent=\u03A9\u03C2 \u03B3\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=\u03A4\u03C1\u03CC\u03C0\u03BF\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \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.backup_file_number=\u0391\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03B1 \u03B1\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B4\u03B9\u03B1\u03C4\u03B7\u03C1\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 OptionPanel.Behaviour=\u03A3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC OptionPanel.bezier=\u039A\u03B1\u03BC\u03C0\u03CD\u03BB\u03B7 Bezier OptionPanel.bubble=\u03A6\u03BF\u03CD\u03C3\u03BA\u03B1 OptionPanel.ca=\u039A\u03B1\u03C4\u03B1\u03BB\u03B1\u03BD\u03B9\u03BA\u03AC OptionPanel.Cancel=\u0391\u03BA\u03C5\u03C1\u03BF OptionPanel.center_selected_node=\u039A\u03B5\u03BD\u03C4\u03C1\u03AC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 OptionPanel.check_updates_automatically=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03BD\u03B1\u03B2\u03B1\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03CC\u03C4\u03B1\u03BD \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 OptionPanel.childpattern=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03B1\u03C0\u03CC\u03B3\u03BF\u03BD\u03BF\u03C2 OptionPanel.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\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2. OptionPanel.clear_all_setters=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD OptionPanel.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. OptionPanel.cloud=\u03A3\u03CD\u03BD\u03BD\u03B5\u03C6\u03BF OptionPanel.cloudcolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C3\u03CD\u03BD\u03BD\u03B5\u03C6\u03BF\u03C5 OptionPanel.cloudshape=\u03A3\u03C7\u03AE\u03BC\u03B1 \u03C3\u03CD\u03BD\u03BD\u03B5\u03C6\u03BF\u03C5 OptionPanel.combined=\u03A3\u03C5\u03BD\u03B4\u03C5\u03B1\u03C3\u03BC\u03CC\u03C2 OptionPanel.compare_as_number=\u03A3\u03CD\u03B3\u03BA\u03C1\u03B9\u03C3\u03B7 \u03C3\u03B1\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03AF OptionPanel.convert_to_current_version=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BC\u03B5\u03C4\u03C1\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B1\u03C0\u03CC \u03C0\u03B1\u03BB\u03B1\u03B9\u03AC \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7
\u03C3\u03B5 \u03BD\u03AD\u03B1 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7; OptionPanel.convert_to_current_version.tooltip=\u039C\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03B4\u03B5 \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE
(\u03B3\u03B9\u03B1 \u03AD\u03BC\u03C0\u03B5\u03B9\u03C1\u03BF\u03C5\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2) \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03B3\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03BF\u03C0\u03AE. OptionPanel.cs=Cs OptionPanel.cut_nodes_without_question=\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C7\u03C9\u03C1\u03B9\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7; OptionPanel.cut_nodes_without_question.tooltip=\u0391\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03C7\u03B8\u03B5\u03AF \u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \u03B8\u03B1 \u03B1\u03C0\u03BF\u03BA\u03CC\u03C0\u03C4\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C0\u03C1\u03BF\u03BA\u03BB\u03B7\u03B8\u03B5\u03AF \u03C7\u03AC\u03C3\u03B9\u03BC\u03BF \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03B1\u03C0\u03CC \u03BB\u03AC\u03B8\u03BF\u03C2. OptionPanel.da=Dk OptionPanel.date_format=\u03A4\u03C5\u03C0\u03B9\u03BA\u03AE \u03BC\u03BF\u03C1\u03C6\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 OptionPanel.date_format.tooltip=\u0395\u03AF\u03C4\u03B5 SHORT, MEDIUM, LONG \u03AE FULL \u03AE \u03C4\u03B7\u03C2 \u03BC\u03BF\u03C1\u03C6\u03AE\u03C2 "\u039C\u039C/\u03B7\u03B7/\u03B5\u03B5\u03B5\u03B5" OptionPanel.datetime_format=\u03A4\u03C5\u03C0\u03B9\u03BA\u03AE \u03BC\u03BF\u03C1\u03C6\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 \u03CE\u03C1\u03B1\u03C2 OptionPanel.datetime_format.tooltip=\u0395\u03AF\u03C4\u03B5 <\u03C3\u03C4\u03C5\u03BB \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2>,<\u03C3\u03C4\u03C5\u03BB \u03CE\u03C1\u03B1\u03C2> (\u03BC\u03B5 SHORT, MEDIUM, LONG \u03AE FULL \u03C3\u03B1\u03BD \u03C3\u03C4\u03C5\u03BB) \u03AE \u03C4\u03B7\u03C2 \u03BC\u03BF\u03C1\u03C6\u03AE\u03C2 "\u039C/\u03B7/\u03B5\u03B5\u03B5\u03B5 \u03C9\u03C9:\u03BB\u03BB" OptionPanel.de=De OptionPanel.default=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE OptionPanel.default_attribute_key_column_width=\u03A4\u03C5\u03C0\u03B9\u03BA\u03CC \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03BA\u03BB\u03B5\u03B9\u03B4\u03B9\u03BF\u03CD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD OptionPanel.default_attribute_value_column_width=\u03A4\u03C5\u03C0\u03B9\u03BA\u03CC \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD \u03C4\u03B9\u03BC\u03AE\u03C2 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 Os OptionPanel.default_browser_command_other_os.tooltip= \u03A3\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). 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). OptionPanel.default_charset=\u039A\u03C9\u03B4\u03B9\u03BA\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 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\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03C9\u03BD \u03B1\u03C1\u03C7\u03B5\u03AF\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 Freeplane, \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=\u0391\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03C7\u03B8\u03B5\u03AF \u03BF\u03B9 \u03BA\u03CC\u03BC\u03B2\u03BF\u03B9 \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 \u03B1\u03C0\u03CC \u03BB\u03AC\u03B8\u03BF\u03C2. OptionPanel.disable_cursor_move_paper.tooltip=\u039C\u03AE\u03BD \u03B4\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9\u03C2 'move' \u03BA\u03B5\u03C1\u03C3\u03BF\u03C1, \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B4\u03B5\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03B5\u03B9\u03CE\u03BD \u03C7\u03B1\u03C1\u03C4\u03B9\u03BF\u03CD OptionPanel.display_inline_editor_for_all_new_nodes=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03BF\u03CD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03BD\u03AD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 OptionPanel.display_node_id=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.edgecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.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 \u03C0\u03B1\u03C4\u03C1\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\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2) OptionPanel.edgestyle=\u03A4\u03CD\u03C0\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.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 \u03C0\u03B1\u03C4\u03C1\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\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2) OptionPanel.edgewidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.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 \u03C0\u03B1\u03C4\u03C1\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\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2) OptionPanel.EDIT_CURRENT=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03BF\u03BC\u03AD\u03BD\u03BF\u03C5 OptionPanel.edit_on_double_click=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BC\u03B5 \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA OptionPanel.editor_extra_width=\u0392\u03AE\u03BC\u03B1 \u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03BF\u03C5 \u03C0\u03BB\u03AC\u03C4\u03BF\u03C5\u03C2 OptionPanel.editor_extra_width.tooltip=\u039A\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03C4\u03C9\u03BD pixels \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B1\u03C5\u03BE\u03B7\u03B8\u03B5\u03AF \u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B1\u03BD \u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B5\u03C0\u03B5\u03BA\u03C4\u03B5\u03AF\u03BD\u03B5\u03B9 \u03C4\u03BF \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2. OptionPanel.el=El OptionPanel.el__buttons_above=\u039A\u03BF\u03C5\u03BC\u03C0\u03B9\u03AC \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03C1\u03C5\u03C6\u03AE OptionPanel.el__enter_confirms_by_default=\u03A4\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF Enter \u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03AF\u03C9\u03C3\u03B7 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\u03B9\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.en=En OptionPanel.Environment=\u03A0\u03B5\u03C1\u03B9\u03B2\u03AC\u03BB\u03BB\u03BF\u03BD OptionPanel.es=Es OptionPanel.et=Et OptionPanel.execute_scripts_without_asking=\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 script OptionPanel.execute_scripts_without_asking.tooltip=\u03A4\u03B1 Freeplane scripts \u03B2\u03B1\u03C3\u03B9\u03BA\u03AC \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03BD \u03BD\u03B1 \u03BA\u03AC\u03BD\u03BF\u03C5\u03BD \u03BA\u03AC\u03B8\u03B5 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03BF\u03C5.
\u038C\u03BC\u03C9\u03C2 \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03AD\u03C7\u03B5\u03B9\u03C2 \u03C0\u03BF\u03B9\u03B1 scripts \u03B8\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C2. OptionPanel.execute_scripts_without_exec_restriction=\u039D\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03AC\u03BB\u03BB\u03C9\u03BD \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03AC\u03C4\u03C9\u03BD (\u0394\u03B5 \u03C3\u03C5\u03BD\u03B9\u03C3\u03C4\u03AC\u03C4\u03B1\u03B9) OptionPanel.execute_scripts_without_exec_restriction.tooltip=\u0391\u03BD \u03C4\u03B1 scripts \u03C0\u03BF\u03C5 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B5 \u03B8\u03AD\u03BB\u03BF\u03C5\u03BD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03B5 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AD\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.
\u038C\u03BC\u03C9\u03C2 \u03BD\u03B1 \u03B3\u03BD\u03C9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03CD\u03C0\u03BF\u03C0\u03C4\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 \u03B8\u03B1 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7! OptionPanel.execute_scripts_without_file_restriction=\u039D\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 (\u0394\u0395 \u03C3\u03C5\u03BD\u03B9\u03C3\u03C4\u03AC\u03C4\u03B1\u03B9) OptionPanel.execute_scripts_without_file_restriction.tooltip=\u0391\u03BD \u03C4\u03B1 scripts \u03C0\u03BF\u03C5 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B5 \u03B8\u03AD\u03BB\u03BF\u03C5\u03BD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1
\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.
\u038C\u03BC\u03C9\u03C2 \u03BD\u03B1 \u03B3\u03BD\u03C9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03CD\u03C0\u03BF\u03C0\u03C4\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 \u03B8\u03B1 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7! OptionPanel.execute_scripts_without_network_restriction=\u039D\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03C4\u03BF \u03B4\u03B9\u03B1\u03B4\u03AF\u03BA\u03C4\u03C5\u03BF (\u0394\u0395 \u03C3\u03C5\u03BD\u03B9\u03C3\u03C4\u03AC\u03C4\u03B1\u03B9) OptionPanel.execute_scripts_without_network_restriction.tooltip=\u0391\u03BD \u03C4\u03B1 scripts \u03C0\u03BF\u03C5 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B5 \u03B8\u03AD\u03BB\u03BF\u03C5\u03BD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03C4\u03BF \u03B4\u03B9\u03B1\u03B4\u03AF\u03BA\u03C4\u03C5\u03BF
\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.
\u038C\u03BC\u03C9\u03C2 \u03BD\u03B1 \u03B3\u03BD\u03C9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03CD\u03C0\u03BF\u03C0\u03C4\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 \u03B8\u03B1 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7! OptionPanel.execute_scripts_without_write_restriction=\u039D\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD (\u0394\u0395 \u03C3\u03C5\u03BD\u03B9\u03C3\u03C4\u03AC\u03C4\u03B1\u03B9) OptionPanel.execute_scripts_without_write_restriction.tooltip=\u0391\u03BD \u03C4\u03B1 scripts \u03C0\u03BF\u03C5 \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B5 \u03B8\u03AD\u03BB\u03BF\u03C5\u03BD \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03B5 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1
\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.
\u038C\u03BC\u03C9\u03C2 \u03BD\u03B1 \u03B3\u03BD\u03C9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B5 \u03CC\u03C4\u03B9 \u03CD\u03C0\u03BF\u03C0\u03C4\u03B1 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03B1 \u03B8\u03B1 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7! 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.fold_on_click_inside=\u0394\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03BF \u03BA\u03BB\u03B9\u03BA OptionPanel.foldingsymbolwidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C3\u03C5\u03BC\u03B2\u03CC\u03BB\u03BF\u03C5 \u03C3\u03CD\u03BC\u03C0\u03C4\u03B9\u03BE\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\u03B1\u03BA\u03BB\u03AC\u03B4\u03C9\u03C3\u03B7 OptionPanel.format_locale=\u039A\u03C9\u03B4\u03B9\u03BA\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 OptionPanel.format_locale.tooltip=\u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C0\u03B9\u03BA\u03CE\u03BD \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C4\u03C9\u03BD \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD OptionPanel.formula_disable_caching=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B7\u03C2 \u03B1\u03BE\u03B9\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7\u03C2 \u03C3\u03C5\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD OptionPanel.formula_disable_plugin=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B1\u03BE\u03B9\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03C3\u03C5\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD OptionPanel.fr=Fr OptionPanel.gl=Gl OptionPanel.goto_note_end_on_edit=\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B4\u03C1\u03BF\u03BC\u03AD\u03B1 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03C3\u03C4\u03BF \u03C4\u03AD\u03BB\u03BF\u03C2 OptionPanel.grid_size=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C0\u03BB\u03AD\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.gtk=Gtk OptionPanel.hide_edge=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C0\u03B5\u03C1\u03B9\u03B8\u03C9\u03C1\u03AF\u03BF\u03C5 OptionPanel.highlight_formulas=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 \u03C3\u03C5\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD OptionPanel.horizontal=\u039F\u03C1\u03B9\u03B6\u03CC\u03BD\u03C4\u03B9\u03B1 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=\u03A3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7/\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD OptionPanel.html_export_fold_currently_folded=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B1\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03C4\u03CE\u03C1\u03B1 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.ic_disable=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 OptionPanel.ic_file=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03B4\u03AF\u03C3\u03BA\u03BF\u03C5 OptionPanel.ic_ram=\u03A3\u03C4\u03B7 \u03BC\u03BD\u03AE\u03BC\u03B7 RAM OptionPanel.icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF OptionPanel.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\u03AE \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1. OptionPanel.icons.list=\u039A\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C4\u03C5\u03C0\u03B9\u03BA\u03CE\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 OptionPanel.icons.list.tooltip=\u0395\u03B4\u03CE \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03B9\u03C2 \u03AE \u03BD\u03B1 \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C8\u03B5\u03B9\u03C2 \u03C4\u03B1 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1. \u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 ";" OptionPanel.id=Id OptionPanel.IGNORE=\u039C\u03B7\u03BD \u03BA\u03AC\u03BD\u03B5\u03B9\u03C2 \u03C4\u03AF\u03C0\u03BF\u03C4\u03B1 OptionPanel.il__enter_confirms_by_default=\u03A4\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF ENTER \u03B5\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03B9\u03CE\u03BD\u03B5\u03B9 OptionPanel.image_cache=\u03B3\u03B9\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 OptionPanel.it=It OptionPanel.ja=Ja OptionPanel.key_type_action=\u03CC\u03C4\u03B1\u03BD \u03C0\u03B1\u03C4\u03B7\u03B8\u03B5\u03AF \u03AD\u03BD\u03B1 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF OptionPanel.Keystrokes=\u03A0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AE\u03C3\u03B5\u03B9\u03C2 OptionPanel.ko=Kr OptionPanel.label_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 OptionPanel.label_font_size=\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 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. '\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF' \u03B4\u03BF\u03BA\u03B9\u03BC\u03AC\u03B6\u03B5\u03B9 \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\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 \u03C0\u03C1\u03BF\u03C3\u03C6\u03AC\u03C4\u03C9\u03BD OptionPanel.layout_map_on_text_change=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C7\u03AC\u03C1\u03C4\u03B7 \u03CC\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 OptionPanel.layout_map_on_text_change.tooltip=\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B5\u03C1\u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 OptionPanel.linear=\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC OptionPanel.links=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 OptionPanel.links.tooltip=\u039F\u03C1\u03AF\u03B6\u03B5\u03B9 \u03B4\u03B5\u03C3\u03BC\u03CC, \u03B5\u03AF\u03C4\u03B5 \u03B1\u03C0\u03CC\u03BB\u03C5\u03C4\u03B1 \u03AE \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC OptionPanel.load_folding=\u038C\u03C4\u03B1\u03BD \u03C6\u03BF\u03C1\u03C4\u03C9\u03B8\u03B5\u03AF OptionPanel.load_folding_from_map_default_fold_all=\u0394\u03B9\u03AC\u03B2\u03B1\u03C3\u03BC\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 \u03AE \u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD OptionPanel.load_folding_from_map_default_unfold_all=\u0394\u03B9\u03AC\u03B2\u03B1\u03C3\u03BC\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 \u03AE \u03BE\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD OptionPanel.load_last_map=\u0391\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03C4\u03BF \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 OptionPanel.load_last_map.tooltip=\u039F\u03C4\u03B1\u03BD \u03C4\u03BF Freeplane \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.load_last_maps=\u0394\u0399\u03AC\u03B2\u03B1\u03C3\u03BC\u03B1 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03C9\u03BD \u03C7\u03B1\u03C1\u03C4\u03CE\u03BD OptionPanel.lookandfeel=\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7 OptionPanel.lookandfeel.tooltip=\u0397 \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03BA\u03B1\u03B9 \u03B1\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.max_displayed_node_count=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF\u03C2 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03C0\u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD OptionPanel.max_image_width=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2 OptionPanel.max_image_width.tooltip=\u039F\u03B9 \u03BD\u03AD\u03B5\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03B8\u03B1 \u03BC\u03B5\u03B9\u03CE\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 OptionPanel.max_menu_item_count=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF\u03C2 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03C9\u03BD \u03BC\u03B5\u03BD\u03BF\u03CD OptionPanel.max_menu_item_count.tooltip=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03C4\u03C9\u03BD \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03C9\u03BD \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03C5\u03C0\u03BF\u03BC\u03B5\u03BD\u03BF\u03CD, \u03C4\u03BF\u03C5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF\u03BD 10 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_shortened_text_length=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 OptionPanel.metal=Metal OptionPanel.min_node_width=\u0395\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.motif=Motif OptionPanel.nb=Nb OptionPanel.never_save_folding=\u03A0\u03BF\u03C4\u03AD OptionPanel.nl=Nl OptionPanel.nn=Nn OptionPanel.nodebackgroundcolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.nodebackgroundcolor.tooltip=\u039F\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.nodecolor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.nodecolor.tooltip=\u03A4\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \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. OptionPanel.nodefontbold=\u0388\u03BD\u03C4\u03BF\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC OptionPanel.nodefonthyperlink=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 OptionPanel.nodefontitalic=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC OptionPanel.nodefontname=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.nodefontsize=\u03BC\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 OptionPanel.nodeformat=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 OptionPanel.nodeformat.tooltip=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03B1\u03B9/\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7:
  • \u0395\u03C0\u03AD\u03BA\u03C4\u03B1\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 (%s \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C4\u03BF \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF), \u03C0.\u03C7. \u03A0\u03A1\u039F\u03A3\u039F\u03A7\u0397: %s
  • \u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CE\u03BD \u03BA\u03B1\u03B9 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03B9\u03CE\u03BD - \u03B4\u03B5\u03C2 \u03C4\u03B1 \u03C0\u03B1\u03C1\u03B1\u03B4\u03B5\u03AF\u03B3\u03BC\u03B1\u03C4\u03B1
OptionPanel.nodenumbering=\u0391\u03C1\u03AF\u03B8\u03BC\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD OptionPanel.nodenumbering.tooltip=\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03C3\u03B5\u03B9\u03C1\u03B9\u03B1\u03BA\u03CC \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC (\u03C0\u03C7 1.3.1) \u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5. OptionPanel.nodetext=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.nodetext.tooltip=nodetext.tooltip OptionPanel.nothing=\u03A4\u03AF\u03C0\u03BF\u03C4\u03B5 OptionPanel.number_format=\u03A4\u03C5\u03C0\u03B9\u03BA\u03AE \u03BC\u03BF\u03C1\u03C6\u03AE \u03B1\u03C1\u03B9\u03B8\u03BC\u03CE\u03BD OptionPanel.number_format.tooltip=\u0391\u03BD \u03AD\u03BD\u03B1 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03B5\u03B9 "#" \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03B5\u03C1\u03B1\u03B9\u03C4\u03B9\u03BA\u03AC \u03AE "0" \u03B3\u03B9\u03B1 \u03C5\u03C0\u03BF\u03C7\u03C1\u03B5\u03C9\u03C4\u03B9\u03BA\u03AC \u03C8\u03B7\u03C6\u03AF\u03B1. \u03A0\u03B1\u03C1\u03B1\u03B4\u03B5\u03AF\u03B3\u03BC\u03B1\u03C4\u03B1: "0.00", "0.0%", "$#.00", "#0" 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 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03B3\u03B9\u03B1 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\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\u03B1\u03B9 \u03BF\u03CD\u03C4\u03C9 \u03BA\u03B1\u03B8\u03B5\u03BE\u03AE\u03C2, \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.org.freeplane.plugin.bugreport=\u03A0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03AE OptionPanel.org.freeplane.plugin.bugreport.allowed=\u039D\u03B1 \u03B1\u03C0\u03BF\u03C3\u03C4\u03AD\u03BB\u03BB\u03B5\u03C4\u03B1\u03B9 \u03C0\u03AC\u03BD\u03C4\u03B1 OptionPanel.org.freeplane.plugin.bugreport.ask=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 OptionPanel.org.freeplane.plugin.bugreport.denied=\u039D\u03B1 \u03BC\u03B7\u03BD \u03B1\u03C0\u03BF\u03C3\u03C4\u03AD\u03BB\u03BB\u03B5\u03C4\u03B1\u03B9 \u03C0\u03BF\u03C4\u03AD OptionPanel.org.freeplane.plugin.bugreport.userid=\u03A0\u03C1\u03BF\u03B1\u03B9\u03C1\u03B5\u03C4\u03B9\u03BA\u03CC\u03C2 \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B1\u03C0\u03BF\u03C3\u03C4\u03B1\u03BB\u03BB\u03B5\u03AF OptionPanel.outline_hgap=\u039F\u03C1\u03B9\u03B6\u03CC\u03BD\u03C4\u03B9\u03B1 \u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 OptionPanel.outline_vgap=\u039A\u03AC\u03B8\u03B5\u03C4\u03B7 \u03B1\u03C0\u03CC\u03C3\u03C4\u03B1\u03C3\u03B7 OptionPanel.paint_connectors_behind=\u03A7\u03C1\u03C9\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C2 \u03C0\u03AF\u03C3\u03C9 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 OptionPanel.parse_data=\u0391\u03BD\u03B1\u03B3\u03BD\u03CE\u03C1\u03B9\u03C3\u03B7 \u03C4\u03B7\u03BD \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C4\u03C9\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CE\u03BD \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03B9\u03CE\u03BD OptionPanel.parse_data.tooltip=\u039D\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C0\u03B1\u03B8\u03B5\u03AF \u03BD\u03B1 \u03B5\u03C1\u03BC\u03B7\u03BD\u03B5\u03CD\u03C3\u03B5\u03B9 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B5\u03C2, \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B5\u03C2-\u03CE\u03C1\u03B5\u03C2 \u03BA\u03B1\u03B9 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD\u03C2 \u03BA\u03B1\u03B9 \u03BD\u03B1 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B5\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2. \u03A0\u03B1\u03C1\u03B1\u03B4\u03B5\u03AF\u03B3\u03BC\u03B1\u03C4\u03B1: 100,000.00, 12/31, 12/31/99, 1999-12-31 and 1999-12-31 23:59 OptionPanel.PASTE_HTML=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03C3\u03B1\u03BD HTML OptionPanel.PASTE_PLAIN_TEXT=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03C3\u03B1\u03BD \u03B1\u03C0\u03BB\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF OptionPanel.path_property_may_not_be_empty=\u0397 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AC\u03B4\u03B5\u03B9\u03B1. \u0397 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5. OptionPanel.patternname=\u039F\u03BD\u03BF\u03BC\u03B1 OptionPanel.patternname.tooltip=\u039C\u03BF\u03BD\u03B1\u03B4\u03B9\u03BA\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C0\u03C1\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5 OptionPanel.pl=Pl OptionPanel.placenewbranches=\u03A4\u03BF\u03C0\u03BF\u03B8\u03AD\u03C4\u03B7\u03C3\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03B4\u03B9\u03B1\u03BA\u03BB\u03B1\u03B4\u03CE\u03C3\u03B5\u03B9\u03C2 OptionPanel.placenewbranches.tooltip=\u0395\u03B4\u03CE \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C4\u03B5\u03AF\u03C2 \u03BD\u03AD\u03B5\u03C2 \u03B4\u03B9\u03B1\u03BA\u03BB\u03B1\u03B4\u03CE\u03C3\u03B5\u03B9\u03C2. \u0395\u03B3\u03BA\u03C5\u03C1\u03B5\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 'first' \u03BA\u03B1\u03B9 'last' OptionPanel.plugin.tooltip=\u0394\u03B5\u03C5\u03C4\u03B5\u03C1\u03B5\u03CD\u03BF\u03BD\u03C4\u03B1 \u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1. OptionPanel.plugins=\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 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=\u039D\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C0\u03AC\u03BD\u03C4\u03B1 \u03BB\u03B5\u03C5\u03BA\u03CC \u03C6\u03CC\u03BD\u03C4\u03BF \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.RECT=\u039F\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03BF OptionPanel.relative=\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC OptionPanel.remind_type_of_new_nodes.tooltip="\u0395\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7" \u03B8\u03B1 \u03C3\u03B5 \u03C1\u03C9\u03C4\u03AE\u03C3\u03B5\u03B9 (\u03B1\u03BD \u03B1\u03BC\u03C6\u03B9\u03B2\u03AC\u03BB\u03BB\u03B5\u03B9\u03C2).
"\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 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5.
"\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_nodes=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B3\u03B9\u03B1\u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BA\u03BF\u03BB\u03BB\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2 OptionPanel.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.remove_notes_without_question.tooltip=\u0391\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03C7\u03B8\u03B5\u03AF \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 \u03C3\u03B2\u03B7\u03C3\u03C4\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 \u03B1\u03C0\u03CC \u03BB\u03AC\u03B8\u03BF\u03C2. OptionPanel.resources_use_default_font_for_notes_too=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B7\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC\u03C2 \u03BA\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 OptionPanel.resources_use_margin_top_zero_for_notes=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03C0\u03AC\u03BD\u03C9 \u03BA\u03B5\u03BD\u03BF\u03CD \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 OptionPanel.revision_color=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2 OptionPanel.revision_color.tooltip=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. OptionPanel.ROUND_RECT=\u03A3\u03C4\u03C1\u03BF\u03B3\u03B3\u03C5\u03BB\u03B5\u03BC\u03AD\u03BD\u03BF \u03BF\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03BF OptionPanel.ru=Ru OptionPanel.save_folding=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03B4\u03B9\u03C0\u03BB\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.save_folding_if_map_is_changed=\u03B1\u03BD \u03BF \u03C7\u03AC\u03C1\u03C4\u03B7\u03C2 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9 OptionPanel.save_modification_times=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03CE\u03C1\u03B1\u03C2 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 OptionPanel.script_classpath=\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03C2 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 script: \u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03B9 \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03BF\u03C5\u03BD \u03BA\u03BB\u03AC\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B1\u03B9/\u03AE JARs OptionPanel.script_classpath.tooltip=\u0397 \u03BB\u03AF\u03C3\u03C4\u03B1 \u03BC\u03B5 JARs \u03BA\u03B1\u03B9/\u03AE \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5\u03C2 \u03BC\u03B5 scripts \u03BA\u03B1\u03B9 \u03C3\u03C5\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2
\u03A7\u03C1\u03AE\u03C3\u03B7 ; (Windows) \u03AE : (Linux, Mac) \u03B3\u03B9\u03B1 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC.
\u039F\u03B9 \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF\u03B9 \u03BD\u03B1 \u03C8\u03AC\u03C7\u03C4\u03BF\u03CD\u03BD \u03B3\u03B9\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03B1 JARs \u03BA\u03B1\u03B9 .class.
\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03B9 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03CC\u03BB\u03C5\u03C4\u03B1 \u03BC\u03BF\u03BD\u03BF\u03C0\u03AC\u03C4\u03B9\u03B1 \u03B8\u03B5\u03C9\u03C1\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03BF \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 Freeplane.
\u0391\u03BD \u03BF\u03C1\u03AF\u03C3\u03B5\u03C4\u03B5 \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C4\u03BF\u03C5 \u03B4\u03CE\u03C3\u03B5\u03C4\u03B5 \u03BA\u03B1\u03B9 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03B4\u03B9\u03AC\u03B2\u03B1\u03C3\u03BC\u03B1!! OptionPanel.script_directories=\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03C2 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2 scripts OptionPanel.script_directories.tooltip=\u039B\u03AF\u03C3\u03C4\u03B1 \u03BC\u03B5 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5\u03C2.
\u03A7\u03C1\u03AE\u03C3\u03B7 ; (Windows) \u03AE : (Linux, Mac) \u03B3\u03B9\u03B1 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC.
\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03B9 \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03CC\u03BB\u03C5\u03C4\u03B1 \u03BC\u03BF\u03BD\u03BF\u03C0\u03AC\u03C4\u03B9\u03B1 \u03B8\u03B5\u03C9\u03C1\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03BF \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 Freeplane. OptionPanel.script_user_key_name_for_signing=\u03A0\u03C1\u03BF\u03B1\u03B9\u03C1\u03B5\u03C4\u03B9\u03BA\u03CC \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF \u03B3\u03B9\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 OptionPanel.script_user_key_name_for_signing.tooltip=\u0391\u03BD \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C5\u03C0\u03BF\u03B3\u03C1\u03AC\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B1 script \u03C3\u03B1\u03C2 \u03B4\u03CE\u03C3\u03C4\u03B5 \u03C4\u03BF \u03BA\u03BB\u03B5\u03B9\u03B4\u03AF \u03B5\u03B4\u03CE.
\u039F \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AF\u03B4\u03B9\u03BF\u03C2 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03BF. OptionPanel.scrollbar_increment=\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 OptionPanel.scrolling_speed=\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7\u03C2 \u03C7\u03AC\u03C1\u03C4\u03B7 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 \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7 \u03B1\u03C5\u03C4\u03CC, \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\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 \u03BA\u03BB\u03B9\u03BA OptionPanel.selection_method_delayed=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03B5\u03C1\u03B7\u03BC\u03AD\u03BD\u03B7 OptionPanel.selection_method_direct=\u0391\u03BC\u03B5\u03C3\u03B7 OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 OptionPanel.separator.anti_alias=\u039F\u03C0\u03C4\u03B9\u03BA\u03AE \u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\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.cache=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B7 OptionPanel.separator.CloudControls=\u03A3\u03CD\u03BD\u03BD\u03B5\u03C6\u03B1 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.connectors=\u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2 OptionPanel.separator.data_formats=\u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03BC\u03B5\u03C4\u03AC\u03C6\u03C1\u03B1\u03C3\u03B7 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD 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 \u03A3\u03C4\u03CD\u03BB OptionPanel.separator.EdgeControls=\u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 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.editing=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 OptionPanel.separator.files=\u0391\u03C1\u03C7\u03B5\u03AF\u03B1 OptionPanel.separator.formula=\u03A3\u03C5\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 OptionPanel.separator.General=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC OptionPanel.separator.html_export=\u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE Html OptionPanel.separator.html_import=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE HTML OptionPanel.separator.hyperlink_types=\u0395\u03AF\u03B4\u03B7 \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\u03C4\u03BF "\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD..." OptionPanel.separator.initial_map_size=\u0391\u03C1\u03C7\u03B9\u03BA\u03CC \u03BC\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.separator.inline_editor=\u0395\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD 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.load=\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 OptionPanel.separator.look_and_feel=\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03AF\u03C3\u03B8\u03B7\u03C3\u03B7 OptionPanel.separator.mouse_wheel=\u03A1\u03CC\u03B4\u03B1 \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.NodeColors=\u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.separator.NodeFont=\u0393\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.separator.NodeShape=\u039C\u03BF\u03C1\u03C6\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.separator.NodeStyle=\u03A3\u03C4\u03C5\u03BB \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.separator.NodeText=\u039A\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF OptionPanel.separator.notifications=\u0395\u03C0\u03B9\u03B2\u03B5\u03B2\u03B1\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 OptionPanel.separator.org.freeplane.plugin.bugreport=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03BB\u03B1\u03B8\u03CE\u03BD 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.outline_view=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7\u03C2 OptionPanel.separator.patterns=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 OptionPanel.separator.RichTextEditor=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 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.scripting=Scripting OptionPanel.separator.scrollbar=\u039C\u03C0\u03AC\u03C1\u03B1 \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7\u03C2 OptionPanel.separator.search=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 OptionPanel.separator.selection_colors=\u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03CE\u03BD OptionPanel.separator.selection_method=\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 OptionPanel.separator.single_instance_mode=\u039C\u03BF\u03BD\u03B1\u03B4\u03B9\u03BA\u03AE \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.separator.size_limits=\u038C\u03C1\u03B9\u03B1 \u03BC\u03B5\u03B3\u03B5\u03B8\u03CE\u03BD OptionPanel.separator.spelling=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03BA\u03BF\u03CD \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 OptionPanel.separator.status=\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 OptionPanel.separator.undo=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 OptionPanel.separator.updates=\u0391\u03BD\u03B1\u03B2\u03B1\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 OptionPanel.set_property_text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE OptionPanel.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 (\u03C3\u03B5 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B5\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2), \u03A3\u03CD\u03BD=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 OptionPanel.setscript=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE; OptionPanel.setscript.tooltip=\u0388\u03BD\u03B1 script \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BF\u03C1\u03B9\u03C3\u03B8\u03B5\u03AF \u03C3\u03C4\u03BF \u03C3\u03C4\u03C5\u03BB. OptionPanel.sharp_bezier=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF bezier OptionPanel.sharp_linear=\u0391\u03C0\u03CC\u03C4\u03BF\u03BC\u03BF \u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC OptionPanel.show_creation_modification_in_tooltip=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03CE\u03C1\u03B1\u03C2 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 OptionPanel.show_icon_for_attributes=\u0394\u03B5\u03AF\u03BE\u03B5 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03B3\u03B9\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC OptionPanel.show_node_tooltips=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD OptionPanel.show_note_icons=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD OptionPanel.show_styles_in_tooltip=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C4\u03C5\u03BB \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C3\u03C4\u03B1 \u03C0\u03B5\u03B4\u03AF\u03B1 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1\u03C2 OptionPanel.signed_script_are_trusted=\u0395\u03BC\u03C0\u03B9\u03C3\u03C4\u03BF\u03C3\u03CD\u03BD\u03B7 \u03C3\u03B5 \u03C5\u03C0\u03BF\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03B1 scripts (\u03C3\u03C5\u03BD\u03B9\u03C3\u03C4\u03AC\u03C4\u03B1\u03B9). OptionPanel.signed_script_are_trusted.tooltip=\u0391\u03BD \u03C4\u03B1 scripts \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C5\u03C0\u03BF\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03B1 \u03B1\u03C0\u03CC \u03AD\u03BC\u03C0\u03B9\u03C3\u03C4\u03B7 \u03C0\u03B7\u03B3\u03AE (\u03C0\u03C7 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF\u03C2 \u03C4\u03BF\u03C5 Freeplane \u03AE \u03B5\u03C3\u03AC\u03C2), \u03B5\u03BA\u03C4\u03B5\u03BB\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03BF\u03CD\u03C2. OptionPanel.simplyhtml.default_paste_mode=\u039A\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7\u03C2 OptionPanel.single_backup_directory=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03B1\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03B1 OptionPanel.single_backup_directory.tooltip= \u03B1\u03BD \u03C4\u03BF \u03B1\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF \u03BA\u03B1\u03B9 \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7\u03C2 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03BC\u03BF\u03C5\u03BD \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03B1\u03BD\u03C4\u03AF \u03C3\u03B5 \u03C5\u03C0\u03BF\u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C4\u03BF\u03C5 \u03C7\u03AC\u03C1\u03C4\u03B7 OptionPanel.single_backup_directory_path=\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03C2 \u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03C9\u03BD (\u03B1\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03C7\u03B8\u03B5\u03AF \u03B7 \u03C0\u03B1\u03C1\u03B1\u03C0\u03AC\u03BD\u03C9 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE) OptionPanel.single_backup_directory_path.tooltip=\u03A0\u03B1\u03C1\u03B1\u03BA\u03AC\u03BC\u03C0\u03C4\u03B5\u03B9 \u03C4\u03BF \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF <freeplaneuserdir>/.\u03B1\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF OptionPanel.single_instance=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD \u03C3\u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03C4\u03C1\u03AD\u03C7\u03B5\u03B9 OptionPanel.single_instance_force=\u0391\u03C0\u03BF\u03C6\u03C5\u03B3\u03AE \u03B4\u03B5\u03CD\u03C4\u03B5\u03C1\u03B7\u03C2 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2 \u03C0\u03AC\u03BD\u03C4\u03B1 OptionPanel.single_instance_force.tooltip=\u0391\u03C0\u03BF\u03C6\u03C5\u03B3\u03AE \u03B4\u03B5\u03CD\u03C4\u03B5\u03C1\u03B7\u03C2 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2 \u03B1\u03BA\u03CC\u03BC\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03BD \u03B4\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AC\u03BB\u03BB\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03B3\u03B9\u03B1 \u03B4\u03B9\u03AC\u03B2\u03B1\u03C3\u03BC\u03B1 OptionPanel.sk=Sk OptionPanel.sl=Sl OptionPanel.spelling_opt_case_sensitive=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C0\u03B5\u03B6\u03CE\u03BD/\u03BA\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD OptionPanel.spelling_opt_ignore_all_caps_words=\u0391\u03B3\u03BD\u03CC\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03BB\u03AD\u03BE\u03B5\u03C9\u03BD \u03BC\u03B5 \u03BA\u03B1\u03C6\u03B1\u03BB\u03B1\u03AF\u03B1. OptionPanel.spelling_opt_ignore_capitalization=\u0391\u03B3\u03BD\u03CC\u03B7\u03C3\u03B7 \u03BA\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD \u03C3\u03C4\u03BF \u03BE\u03B5\u03BA\u03AF\u03BD\u03B7\u03BC\u03B1 \u03BB\u03AD\u03BE\u03B7\u03C2 OptionPanel.spelling_opt_ignore_words_with_numbers=\u0391\u03B3\u03BD\u03CC\u03B7\u03C3\u03B7 \u03BB\u03AD\u03BE\u03B5\u03C9\u03BD \u03BC\u03B5 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD\u03C2 OptionPanel.spelling_opt_suggestions_limit_dialog=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03B1\u03C1\u03AF\u03B8\u03BC\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03C3\u03C4\u03BF\u03C5\u03C2 \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5\u03C2 OptionPanel.spelling_opt_suggestions_limit_menu=\u039C\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03B1\u03C1\u03AF\u03B8\u03BC\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03C3\u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD OptionPanel.sr=\u03A3\u03B5\u03C1\u03B2\u03B9\u03BA\u03AC / \u0441\u0440\u043F\u0441\u043A\u0438 OptionPanel.standard_template=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF OptionPanel.standardbackgroundcolor=\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 OptionPanel.standardbackgroundcolor.tooltip=\u03A4\u03BF \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE html OptionPanel.standardcloudcolor=\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2 OptionPanel.standardcloudcolor.tooltip=\u03A4\u03BF \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2 \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE html OptionPanel.standardcloudestyle=\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C3\u03C4\u03CD\u03BB \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2 OptionPanel.standardcloudestyle.tooltip=\u03A4\u03BF \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03BF \u03C3\u03C4\u03CD\u03BB \u03BD\u03AD\u03C6\u03BF\u03C5\u03C2. \u03A0\u03C1\u03CC\u03C2 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C5\u03C0\u03BF\u03C3\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 \u03BC\u03B5 \u03C0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 OptionPanel.standarddrawrectangleforselection.tooltip=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03BC\u03B5 \u03C0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1. OptionPanel.standardlinkcolor=\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 OptionPanel.standardlinkcolor.tooltip=\u03A4\u03BF \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD \u03C3\u03B5 \u03BC\u03BF\u03C1\u03C6\u03AE html OptionPanel.standardlinkestyle=\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C3\u03C4\u03C5\u03BB \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 OptionPanel.standardlinkestyle.tooltip=\u039F \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C2 \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD. currently, \u03A0\u03C1\u03CC\u03C2 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C5\u03C0\u03BF\u03C3\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03BF \u03C4\u03CD\u03C0\u03BF\u03C2 'bezier' OptionPanel.standardselectednodecolor=\u039A\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\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 \u03BA\u03B1\u03BD\u03BF\u03BD\u03B9\u03BA\u03CC \u03C7\u03C1\u03CE\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B1\u03BD \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03BF\u03C5\u03BC\u03B5. \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 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.standardselectednoderectanglecolor.tooltip=\u03A4\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C4\u03C9\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD. \u03A7\u03C1\u03AE\u03C3\u03B7 html (#RRGGBB \u03B4\u03B5\u03BA\u03B1\u03B5\u03BE\u03B1\u03B4\u03B9\u03BA\u03AD\u03C2 \u03C4\u03B9\u03BC\u03AD\u03C2) OptionPanel.STAR=\u0391\u03C3\u03C4\u03AD\u03C1\u03B9 OptionPanel.structured_html_import=\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE HTML \u03C9\u03C2 \u03B4\u03BF\u03BC\u03AE \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 OptionPanel.structured_icon_toolbar=\u0394\u03BF\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u03BC\u03C0\u03AC\u03C1\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03C9\u03BD OptionPanel.summary=\u03A0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7 OptionPanel.sv=Se OptionPanel.text.use_ctrl_key=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03BF\u03C5 '\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2' \u03B1\u03C0\u03CC \u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD 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.toolTipManager.dismissDelay=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7\u03C2 \u03C3\u03B5 ms OptionPanel.toolTipManager.initialDelay=\u0391\u03C1\u03C7\u03B9\u03BA\u03AE \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03C3\u03B5 ms OptionPanel.toolTipManager.max_tooltip_width=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03AE\u03C2 OptionPanel.toolTipManager.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\u03B7\u03C2 \u03C3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03AE\u03C2 (\u03C3\u03B5 pixels). OptionPanel.toolTipManager.reshowDelay=\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03B5\u03C0\u03B1\u03BD\u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2 \u03C3\u03B5 ms OptionPanel.tr=Tr OptionPanel.uk_UA=Uk UA OptionPanel.undefined_font=\u039C\u03AE \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC OptionPanel.undo_levels=\u0395\u03C0\u03AF\u03C0\u03B5\u03B4\u03B1/\u0392\u03AE\u03BC\u03B1\u03C4\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 \u03C3\u03C4\u03B7\u03BD \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE "\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7". OptionPanel.unfold_on_paste=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 OptionPanel.unfold_on_paste.tooltip=\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03AE \u03C4\u03BF Drag-And_Drop OptionPanel.use_common_out_point_for_root_node=\u03A4\u03B1 \u03AC\u03BA\u03C1\u03B1 \u03BE\u03B5\u03BA\u03B9\u03BD\u03AC\u03BD\u03B5 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03C3\u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF OptionPanel.use_common_out_point_for_root_node.tooltip=\u03A4\u03B1 \u03AC\u03BA\u03C1\u03B1 \u03BE\u03B5\u03BA\u03B9\u03BD\u03AC\u03BD\u03B5 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1 \u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03C3\u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03CC\u03BC\u03B2\u03BF OptionPanel.use_tabbed_pane=\u03A7\u03C1\u03AE\u03C3\u03B7 tabs OptionPanel.use_tabbed_pane.tooltip=\u0391\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03BF\u03B9 \u03C7\u03AC\u03C4\u03B5\u03C2 \u03B8\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03B5 tabs (\u03CC\u03C0\u03C9\u03C2 \u03C3\u03C4\u03BF\u03BD Firefox). OptionPanel.validate_classpath_needs_readaccess=Scripting: \u038C\u03C4\u03B1\u03BD \u03BF\u03C1\u03AF\u03B6\u03B5\u03B9\u03C2 classpath \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD ! OptionPanel.validate_invalid_date_format=\u039B\u03AC\u03B8\u03BF\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 OptionPanel.validate_invalid_datetime_format=\u039B\u03AC\u03B8\u03BF\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 - \u03CE\u03C1\u03B1\u03C2 OptionPanel.validate_invalid_number_format=\u039B\u03AC\u03B8\u03BF\u03C2 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CE\u03BD OptionPanel.validate_write_without_read=Scripting: \u03C3\u03BA\u03B5\u03C6\u03C4\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03C4\u03B5 \u0391\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7/\u0391\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03C3\u03B5 \u0395\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE/\u0391\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5. OptionPanel.validation_error=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03B5\u03B3\u03BA\u03C5\u03C1\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2:

{0}

\u03A0\u03B1\u03C1\u03B1\u03BA\u03B1\u03BB\u03CE \u03B1\u03BB\u03BB\u03AC\u03BE\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B9\u03BF\u03C1\u03B8\u03CE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1.. OptionPanel.validation_warning=\u03A0\u03C1\u03BF\u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B5\u03B3\u03BA\u03C5\u03C1\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2:

{0} OptionPanel.vi=Vi OptionPanel.wheel_velocity=\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 OptionPanel.wheel_velocity.tooltip=\u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03C4\u03B9\u03BC\u03AE \u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C0\u03B9\u03BF \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03B7 \u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C1\u03CC\u03B4\u03B1\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7. OptionPanel.windows=Windows OptionPanel.zh_CN=Zh CN OptionPanel.zh_TW=Zh org.freeplane.plugin.bugreport.agree=\u0391\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AE org.freeplane.plugin.bugreport.always_agree=\u0391\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AE \u03C0\u03AC\u03BD\u03C4\u03B1 org.freeplane.plugin.bugreport.always_deny=\u039D\u03B1 \u03BC\u03B7\u03BD \u03B1\u03C0\u03BF\u03C3\u03C4\u03B1\u03BB\u03BB\u03B5\u03AF \u03C0\u03BF\u03C4\u03AD org.freeplane.plugin.bugreport.deny=\u039D\u03B1 \u03BC\u03B7\u03BD \u03B1\u03C0\u03BF\u03C3\u03C4\u03B1\u03BB\u03BB\u03B5\u03AF org.freeplane.plugin.bugreport.dialog.title=\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C0\u03C1\u03BF\u03B2\u03BB\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD org.freeplane.plugin.bugreport.freeplane_team=\u03BC\u03AE\u03BD\u03C5\u03BC\u03B1 \u03C3\u03C4\u03B7\u03BD \u03BF\u03BC\u03AC\u03B4\u03B1 Freeplane org.freeplane.plugin.bugreport.never=\u039C\u03B7 \u03BC\u03B5 \u03C1\u03C9\u03C4\u03AC\u03C2 \u03B3\u03B9\u03B1 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03C0\u03BF\u03C4\u03AD org.freeplane.plugin.bugreport.question=\u03A4\u03BF Freeplane \u03AD\u03C7\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BC\u03B7\u03C7\u03B1\u03BD\u03AE \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 \u03C3\u03C6\u03B1\u03BB\u03BC\u03AC\u03C4\u03C9\u03BD. org.freeplane.plugin.bugreport.report=\u03A4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC org.freeplane.plugin.script.NodeIdHighlighter.node_is_not_defined=\u039F \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 {0} \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03BF\u03C1\u03B9\u03C3\u03B8\u03B5\u03AF out_of_memory=\u0397 \u03BC\u03BD\u03AE\u03BC\u03B7 RAM \u03B3\u03AD\u03BC\u03B9\u03C3\u03B5. overwrite_keyset_question=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C1\u03C9\u03BD ? PageAction.text=\u0394\u03B9\u03B1\u03BC\u03CC\u03C1\u03C6\u03C9\u03C3\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2... password_is_not_ascii=\u03BF \u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 ASCII PasteAction.text=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03B7\u03C3\u03B7 PasteAttributes.text=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD PatternNewNameProperty=\u039D\u03AD\u03BF \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF PatternToString.backgroundColor=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\u03BF\u03C5 PatternToString.Child=\u03A3\u03C4\u03C5\u03BB \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03C9\u03BD 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=\u039C\u03BF\u03C1\u03C6\u03AE \u03C0\u03B5\u03C1\u03B9\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2 PatternToString.EdgeWidth=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03A0\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 periodic_formula={0}*n + {1} PeriodUnit.DAY=\u03B7\u03BC\u03AD\u03C1\u03B5\u03C2 PeriodUnit.HOUR=\u03CE\u03C1\u03B5\u03C2 PeriodUnit.MINUTE=\u03BB\u03B5\u03C0\u03C4\u03AC PeriodUnit.MONTH=\u03BC\u03AE\u03BD\u03B5\u03C2 PeriodUnit.WEEK=\u03B5\u03B2\u03B4\u03BF\u03BC\u03AC\u03B4\u03B5\u03C2 PeriodUnit.YEAR=\u03C7\u03C1\u03CC\u03BD\u03B9\u03B1 plugins/latex/LatexNodeHook.editorTitle=\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AE\u03C2 LaTeX plugins/script_filter=\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF script {0} plugins/script_filter_error={0} \u03AD\u03C0\u03C1\u03B5\u03C0\u03B5 \u03BD\u03B1 \u03B5\u03C0\u03B9\u03C3\u03C4\u03C1\u03AD\u03C8\u03B5\u03B9 \u03BB\u03BF\u03B3\u03B9\u03BA\u03CC \u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1 \u03C3\u03C4\u03BF {1} \u03B1\u03BB\u03BB\u03AC \u03B5\u03C0\u03AD\u03C3\u03C4\u03C1\u03B5\u03C8\u03B5 {2} plugins/ScriptEditor.cancel=\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD \u03BA\u03B1\u03B9 \u0388\u03BE\u03BF\u03B4\u03BF\u03C2 plugins/ScriptEditor.exit=\u0395\u03BE\u03BF\u03B4\u03BF\u03C2 plugins/ScriptEditor.FORBIDDEN_ACTION=\u03A4\u03B1 scripts Freeplane groovy \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B1. \u0397 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 {0,choice,0#File|1#Network|2#Exec} \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} {2}. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9\u03C2 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B1\u03C4\u03BF\u03C2. plugins/ScriptEditor.menu_actions=\u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 plugins/ScriptEditor.new_script=\u039D\u03AD\u03BF script plugins/ScriptEditor.run=\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 plugins/ScriptEditor.sign=\u03A5\u03C0\u03BF\u03B3\u03C1\u03B1\u03C6\u03AE script... 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.illegalAccessToInternalAPI=\u03A0\u03B1\u03C1\u03AC\u03BD\u03BF\u03BC\u03B7 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03C4\u03BF \u03B5\u03C3\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC API (\u03C0\u03B1\u03BA\u03AD\u03C4\u03BF {0}). - \u03A0\u03B1\u03C1\u03B1\u03BA\u03B1\u03BB\u03CE \u03B5\u03C0\u03B9\u03BA\u03BF\u03B9\u03BD\u03C9\u03BD\u03AE\u03C3\u03C4\u03B5 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03BF\u03BC\u03AC\u03B4\u03B1 \u03C4\u03BF\u03C5 Freeplane \u03B3\u03B9\u03B1 \u03B4\u03B9\u03B5\u03C5\u03BA\u03C1\u03B9\u03BD\u03AE\u03C3\u03B5\u03B9\u03C2.. preferences=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\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 PrintAction.text=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7 \u03C7\u03AC\u03C1\u03C4\u03B7... PrintDirectAction.text=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7... printing_settings=\u039A\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 PrintPreviewAction.text=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B9\u03C3\u03B7 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2... progress=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C0\u03C1\u03BF\u03CC\u03B4\u03BF\u03C5 (%) QuickFilterAction.text=\u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF QuickFindAction.BACK.text=\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C5 QuickFindAction.FORWARD.text=\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 QuickFindAllAction.text=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C4\u03B1\u03B9\u03C1\u03B9\u03AC\u03B6\u03BF\u03C5\u03BD QuickHighlightAction.text=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03BA\u03CC\u03BC\u03B2\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C4\u03B1\u03B9\u03C1\u03B9\u03AC\u03B6\u03BF\u03C5\u03BD QuitAction.text=\u0395\u03BE\u03BF\u03B4\u03BF\u03C2 read_only=\u039C\u03CC\u03BD\u03BF \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 ReadScriptError.text=\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 script 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\u03BF\u03B9\u03BF \u03C0\u03B1\u03BB\u03B9\u03AC \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C4\u03BF\u03C5 Freeplane.
\u039D\u03B1 \u03C4\u03BF \u03BC\u03B5\u03C4\u03B1\u03C4\u03C1\u03AD\u03C8\u03C9 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BC\u03BF\u03C1\u03C6\u03AE (\u03C3\u03C5\u03BD\u03B9\u03C3\u03C4\u03AC\u03C4\u03B1\u03B9) ? really_cut_node=\u03A3\u03AF\u03B3\u03BF\u03C5\u03C1\u03B1 \u03B8\u03B5\u03C2 \u03BD\u03B1 \u03BA\u03CC\u03C8\u03C9 \u03C4\u03BF\u03BD(\u03BF\u03C5\u03C2) \u03BA\u03CC\u03BC\u03B2\u03BF(\u03BF\u03C5\u03C2)? really_execute_script=\u03A3\u03AF\u03B3\u03BF\u03C5\u03C1\u03B1 \u03B8\u03B5\u03C2 \u03BD\u03B1 \u03B5\u03BA\u03C4\u03B5\u03BB\u03AD\u03C3\u03C9 \u03C4\u03B1 scripts \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 ? \u039C\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BA\u03AC\u03BD\u03BF\u03C5\u03BD \u03B6\u03B7\u03BC\u03B9\u03AC \u03C3\u03C4\u03BF\u03BD \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03AE \u03C3\u03BF\u03C5. really_remove_node=\u03A3\u03AF\u03B3\u03BF\u03C5\u03C1\u03B1 \u03B8\u03B5\u03C2 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C9 \u03C4\u03BF\u03BD(\u03C4\u03BF\u03C5\u03C2) \u03BA\u03CC\u03BC\u03B2\u03BF (\u03BF\u03C5\u03C2) ? really_remove_notes=\u03A3\u03AF\u03B3\u03BF\u03C5\u03C1\u03B1 \u03B8\u03B5\u03C2 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C9 \u03C4\u03B7(\u03C4\u03B9\u03C2) \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7(\u03C3\u03B5\u03B9\u03C2) ? ReapplyFilterAction.text=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1\u03C2 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5 \u03C0\u03AC\u03BB\u03B9 red=\u039A\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF RedefineStyleAction.text=\u0395\u03C0\u03B1\u03BD\u03B1\u03C0\u03C1\u03BF\u03C3\u03B4\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A3\u03C4\u03C5\u03BB RedoAction.text=\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7 RedoFilterAction.text=\u0395\u03C0\u03B1\u03BD\u03AC\u03BB\u03B7\u03C8\u03B7 regular_expressions=\u0395\u03BA\u03C6\u03C1\u03AC\u03C3\u03B5\u03B9\u03C2 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2 reminder.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 reminder.Cancel=\u0391\u03BA\u03C5\u03C1\u03BF reminder.cancelButton=\u0391\u03BA\u03C5\u03C1\u03BF reminder.closeButton=\u039A\u03BB\u03B5\u03AF\u03C3\u03B5 reminder.Created=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 reminder.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 reminder.Find=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 reminder.Goto=\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 reminder.hour=\u03A9\u03C1\u03B1: reminder.Icons=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03B1 reminder.Map=\u0394\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 reminder.menu_actions=\u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B5\u03C2 reminder.minute=\u039B\u03B5\u03C0\u03C4\u03CC: reminder.Modified=\u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5 reminder.Notes=\u03A3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 reminder.Reminder=\u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 reminder.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 reminder.reminderButton.tooltip=\u039F\u03C4\u03B1\u03BD \u03C4\u03BF \u03C0\u03B1\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5, \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C4\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C7\u03C1\u03BF\u03BD\u03CC\u03BC\u03B5\u03C4\u03C1\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03BF\u03C1\u03AF\u03C3\u03B5\u03C4\u03B5. \u0398\u03B1 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03AE\u03C4\u03B5 \u03BC\u03B5 \u03B1\u03C0\u03B1\u03C3\u03C4\u03C1\u03AC\u03C0\u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF.
\u0395\u03AC\u03BD \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1, \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 \u03B1\u03BD\u03BF\u03AF\u03BE\u03B5\u03C4\u03B5. reminder.reminderNode.tooltip=\u03A5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 {0,date} {0,time}. reminder.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\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF.
\u0397 \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03B3\u03B9\u03B1 {0,date} {0,time}, \u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C3\u03B1\u03C2 \u03AE\u03C4\u03B1\u03BD {1,date} {1,time}.

\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C7\u03C1\u03CC\u03BD\u03BF \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7\u03C2 (\u039D\u03B1\u03AF)
\u03AE \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03BA\u03C1\u03B1\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03BF \u03C0\u03B1\u03BB\u03B9\u03CC (\u039F\u03C7\u03B9); reminder.remindLaterButton=\u03A5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03B1\u03C1\u03B3\u03CC\u03C4\u03B5\u03C1\u03B1 reminder.remindLaterButton.tooltip=\u03A5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03B1\u03C1\u03B3\u03CC\u03C4\u03B5\u03C1\u03B1 reminder.removeReminderButton=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7\u03C2 reminder.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\u03BD \u03BA\u03CC\u03BC\u03B2\u03BF. reminder.Replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 reminder.Replace_All=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD reminder.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 reminder.Select=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE reminder.Text=\u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF reminder.todayButton=\u03A3\u03AE\u03BC\u03B5\u03C1\u03B1 reminder.WindowTitle=\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5 reminder.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 ReminderHookAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7\u03C2 ReminderHookAction.tooltip=\u0391\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF \u03C4\u03B7\u03BD \u03C5\u03C0\u03B5\u03BD\u03B8\u03CD\u03BC\u03B9\u03C3\u03B7 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1 \u03BA\u03CC\u03BC\u03B2\u03BF. ReminderListAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03B7\u03BD \u03BB\u03AF\u03C3\u03C4\u03B1 \u03C7\u03C1\u03BF\u03BD\u03BF\u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03BF\u03CD ... ReminderListAction.tooltip=\u03A0\u03C1\u03BF\u03B2\u03AC\u03BB\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03BF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C5\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C7\u03B5\u03C4\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5\u03C2. remove_file_from_list_on_error=\u03A4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF {0} \u03B4\u03B5\u03BD \u03B1\u03BD\u03BF\u03AF\u03C7\u03C4\u03B7\u03BA\u03B5. \u039D\u03B1 \u03C4\u03BF \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03C9 \u03B1\u03C0\u03CC \u03C4\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1 \u03C4\u03C9\u03BD \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 ? remove_shortcut_question=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2 ? remove_shortcut_title=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2; RemoveAllIconsAction.text=\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 RemoveConnectorAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 RemoveEncryption.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD RemoveFormatAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 RemoveIcon_0_Action.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C0\u03C1\u03CE\u03C4\u03BF\u03C5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 RemoveIconAction.text=\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C0\u03C1\u03CC\u03C3\u03C6\u03B1\u03C4\u03BF\u03C5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 RemoveNoteAction.text=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 RemoveNoteAction.tooltip=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03C6\u03B5\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C0\u03BF\u03BB\u03BB\u03CE\u03BD \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03BC\u03B1\u03B6\u03AF. rename=\u039C\u03B5\u03C4\u03BF\u03BD\u03BF\u03BC\u03B1\u03C3\u03AF\u03B1 repair_link=\u0395\u03C0\u03B9\u03C3\u03BA\u03B5\u03C5\u03AE \u03B4\u03B5\u03C3\u03BC\u03BF\u03CD repair_link_question=\u0394\u03B5\u03BD \u03BC\u03C0\u03CC\u03C1\u03B5\u03C3\u03B1 \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03BE\u03C9 \u03C4\u03BF \u03C3\u03C5\u03BD\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1. \u039D\u03B1 \u03BA\u03AC\u03BD\u03BF\u03C5\u03BC\u03B5 \u03B5\u03C0\u03B9\u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7 ; replace=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 replace_shortcut_question=\u0391\u03C5\u03C4\u03AE \u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03AD\u03C7\u03B5\u03B9 \u03B1\u03BD\u03B1\u03C4\u03B5\u03B8\u03B5\u03AF \u03C3\u03C4\u03BF\n {0}.\n\u039D\u03B1 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03B1\u03B8\u03B5\u03AF ? replace_shortcut_title=\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2 ? ReportBugAction.text=\u0391\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03C4\u03B5 \u03AD\u03BD\u03B1 \u03C0\u03C1\u03CC\u03B2\u03BB\u03B7\u03BC\u03B1 RequestFeatureAction.text=\u0396\u03B7\u03C4\u03AE\u03C3\u03C4\u03B5 \u03BC\u03B9\u03B1 \u03BD\u03AD\u03B1 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 reset_to_default=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5 ResetNodeLocationAction.text=\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03B8\u03AD\u03C3\u03B7\u03C2 ResetStyleAction.text=\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A3\u03C4\u03C5\u03BB \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 RevertAction.text=\u0391\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF\u03C0\u03B9\u03BA\u03CC \u03B9\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC RevisionPluginAction.text=\u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03C4\u03BF\u03C5 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C6\u03CC\u03BD\u03C4\u03BF\u03C5 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03B8\u03B5\u03C9\u03C1\u03AE\u03C3\u03B5\u03C9\u03BD save=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 save_failed=\u0397 \u03C0\u03C1\u03BF\u03C3\u03C0\u03AC\u03B8\u03B5\u03B9\u03B1 \u03B3\u03B9\u03B1 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03BF\u03C5 {0} \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 \u03C4\u03BF \u03B1\u03BA\u03CC\u03BB\u03BF\u03C5\u03B8\u03BF \u03B4\u03B9\u03AC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 ; save_unsaved_styles=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03C9\u03BD \u03A3\u03C4\u03C5\u03BB ? SaveAcceleratorPresetsAction.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03BF\u03BC\u03AC\u03B4\u03B1\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD SaveAction.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 SaveAll.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD SaveAll.tooltip=\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. SaveAsAction.text=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C9\u03C2... saved=\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03BF saving_canceled=\u0397 \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03B1\u03BA\u03C5\u03C1\u03CE\u03B8\u03B7\u03BA\u03B5 scanners_not_loaded=\u039F\u03B9 \u03C3\u03B1\u03C1\u03C9\u03C4\u03AD\u03C2 \u03B4\u03B5\u03BD \u03C6\u03BF\u03C1\u03C4\u03CE\u03B8\u03B7\u03BA\u03B1\u03BD, \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF \u03AD\u03C7\u03B5\u03B9 \u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03C1\u03B1\u03C6\u03B5\u03AF scheme_evaluate=\u0391\u03C0\u03BF\u03C4\u03AF\u03BC\u03B7\u03C3\u03B7! script_execution_disabled=\u0397 \u03B5\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 script \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5, \u03B4\u03B5\u03AF\u03C4\u03B5 \u03C3\u03C4\u03BF \u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1/\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2/\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 ScriptEditor.text=\u03A3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7\u03C2 \u03B4\u03AD\u03C3\u03BC\u03B7\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD... ScriptEditor.tooltip=\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 Freeplane. ScriptEditorPanel.changed_cancel=\u039F\u03B9 \u03B5\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2 \u03AC\u03BB\u03BB\u03B1\u03BE\u03B1\u03BD. \u0398\u03AD\u03BB\u03B5\u03B9\u03C2 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C1\u03AF\u03C8\u03B5\u03B9\u03C2 \u03C4\u03B9\u03C2 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2; scripting_api_generator_legend=\u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 scripting_api_generator_proxy=Proxy scripting_api_generator_title=Scripting API scripting_api_generator_utilities=\u0392\u03BF\u03B7\u03B8\u03AE\u03BC\u03B1\u03C4\u03B1 scripting_api_generator_web=\u03A0\u03B7\u03B3\u03AD\u03C2 \u0394\u03B9\u03B1\u03B4\u03B9\u03BA\u03C4\u03CD\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 "\u03A4\u03B1 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03B1 " \u03C3\u03B1\u03C2 select_file_export_to=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF\u03C5 \u03B3\u03B9\u03B1 \u0395\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE 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\u03AC\u03B3\u03BF\u03C5\u03BC\u03B5 select_icon=\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03AD\u03BD\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF select_menu_item_dialog=\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5 \u03AD\u03BD\u03B1 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u03B1\u03C0\u03CC \u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD select_menu_item_root_node=\u039C\u03B5\u03BD\u03BF\u03CD SelectAllAction.text=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AE SelectBranchAction.text=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03BC\u03C6\u03B1\u03BD\u03BF\u03CD\u03C2 \u03BA\u03BB\u03AC\u03B4\u03BF\u03C5 SelectedPasteAction.text=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03C9\u03C2... 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\u03B9\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 SelectNoteAction.text=\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 SelectNoteAction.tooltip=\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 SetAcceleratorOnNextClickAction.text=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF\u03C5 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2 SetImageByFileChooserAction.text=\u0395\u03B9\u03BA\u03CC\u03BD\u03B1 ... SetLinkAnchorAction.text=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 SetLinkAnchorAction.tooltip=\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C9\u03C2 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC
\u03B3\u03B9\u03B1 \u03BC\u03B5\u03BB\u03BB\u03BF\u03BD\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2 \u03C4\u03BF\u03C0\u03B9\u03BA\u03CE\u03BD \u03AE \u03BA\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03CE\u03BD \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD. SetLinkAnchorAction.tooltip_anchored=\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 \u03C9\u03C2 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC
\u03B3\u03B9\u03B1 \u03BC\u03B5\u03BB\u03BB\u03BF\u03BD\u03C4\u03B9\u03BA\u03AD\u03C2 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2 \u03C4\u03BF\u03C0\u03B9\u03BA\u03CE\u03BD \u03AE \u03BA\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03CE\u03BD \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD.
\u03A4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC:
{0} SetLinkByFileChooserAction.text=\u0394\u03B5\u03C3\u03BC\u03CC\u03C2 (\u0393\u03C1\u03B1\u03C6\u03B9\u03BA\u03AE \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B1\u03C1\u03C7\u03B5\u03AF\u03C9\u03BD) ... SetLinkByTextFieldAction.text=\u0394\u03B5\u03C3\u03BC\u03CC\u03C2 (\u03A0\u03B5\u03B4\u03AF\u03BF \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5) ... SetNodeLink.text=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5... SetNoteWindowPosition.bottom.text=\u039A\u03AC\u03C4\u03C9 SetNoteWindowPosition.left.text=\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC SetNoteWindowPosition.right.text=\u0394\u03B5\u03BE\u03B9\u03AC SetNoteWindowPosition.top.text=\u039A\u03BF\u03C1\u03C5\u03C6\u03AE SetShortenerStateAction.text=\u0395\u03BB\u03B1\u03C7\u03B9\u03C3\u03C4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 sf_login_required=\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u0395\u03AF\u03C3\u03BF\u03B4\u03BF\u03C2 \u03C3\u03C4\u03BF SourceFoge. \u039D\u03B1 \u03C3\u03C5\u03BD\u03B5\u03C7\u03AF\u03C3\u03C9; ShowAllAttributesAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC ShowAncestorsAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03C0\u03C1\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 ShowAttributeDialogAction.text=\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 ShowDescendantsAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03BF\u03C5\u03C2 ShowFilterToolbarAction.text=\u039C\u03C0\u03AC\u03C1\u03B1 \u03A6\u03AF\u03BB\u03C4\u03C1\u03C9\u03BD ShowFormatPanel.tooltip=\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B4\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF \u03C0\u03BF\u03C5 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03C4\u03BF\u03C5 \u039A\u03CC\u03BC\u03B2\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u0386\u03BA\u03C1\u03C9\u03BD \u03B1\u03BB\u03BB\u03AC\u03BE\u03BF\u03C5\u03BD \u03AC\u03BC\u03BC\u03B5\u03C3\u03B1. ShowHideNoteAction.text=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5/\u039A\u03C1\u03CD\u03C8\u03B5 \u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03C3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7\u03C2 ShowHideNoteAction.tooltip=\u0395\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03BC\u03B5\u03BD\u03BF\u03CD \u03B3\u03B9\u03B1 \u03C4\u03B1 \u03BC\u03B9\u03BA\u03C1\u03AC \u03B2\u03AD\u03BB\u03B7 \u03C3\u03C4\u03B7 \u03B4\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE. ShowNextChildAction.text=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03A0\u03B1\u03B9\u03B4\u03B9\u03BF\u03CD ShowNotesInMapAction.text=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u039A\u03CC\u03BC\u03B2\u03C9\u03BD \u03C3\u03C4\u03BF \u03C7\u03AC\u03C1\u03C4\u03B7 ShowPreferencesAction.dialog=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 ShowPreferencesAction.text=\u03A0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03B9\u03C2 ... ShowSelectedAttributesAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03B1 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC ShowSelectionAsRectangleAction.text=\u039F\u03C1\u03B8\u03BF\u03B3\u03CE\u03BD\u03B9\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\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\u03BF 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=\u03A5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\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=\u03C0\u03C5\u03B8\u03BC\u03AD\u03BD\u03B1\u03C2: simplyhtml.cancelBtnName=\u0391\u03BA\u03C5\u03C1\u03BF simplyhtml.cellBorderTabLabel=\u03A0\u03B5\u03C1\u03AF\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 simplyhtml.cellGenTabLabel=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC simplyhtml.cellMarginTabLabel=\u03A0\u03B5\u03C1\u03B9\u03B8\u03CE\u03C1\u03B9\u03BF simplyhtml.cellPanelTitle=\u03BC\u03BF\u03C1\u03C6\u03AE \u03BA\u03B5\u03BB\u03B9\u03BF\u03C5 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\u03B5 simplyhtml.closeBtnName=\u039A\u03BB\u03B5\u03AF\u03C3\u03B5 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=\u0394\u03B5\u03C3\u03BC\u03CC\u03C2 simplyhtml.cTagNameOL=\u03A4\u03B1\u03BE\u03B9\u03BD\u03BF\u03BC\u03B7\u03BC\u03AD\u03BD\u03B7 \u039B\u03AF\u03C3\u03C4\u03B1 simplyhtml.cTagNamePara=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2 simplyhtml.cTagNameUL=\u039B\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\u03C4\u03B9\u03C4\u03BB\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=\u03C4\u03AF\u03C4\u03BB\u03BF\u03C2: simplyhtml.docTitleTitle=\u03A3\u03CD\u03BD\u03C4\u03B1\u03BE\u03B7 \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=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 simplyhtml.findReplaceLabel=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 simplyhtml.findReplaceTip=\u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 & \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 simplyhtml.fontBoldLabel=\u0388\u03BD\u03C4\u03BF\u03BD\u03B1 simplyhtml.fontBoldTip=\u03AD\u03BD\u03C4\u03BF\u03BD\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 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.fontItalicLabel=\u03A0\u03BB\u03AC\u03B3\u03B9\u03B1 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.fontUnderlineLabel=\u03A5\u03C0\u03BF\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 simplyhtml.fontUnderlineTip=\u03C5\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\u03BD \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 \u03A0\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 \u039B\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\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\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\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.matchApproximately=\u03A0\u03C1\u03BF\u03C3\u03B5\u03B3\u03B3\u03B9\u03C3\u03C4\u03B9\u03BA\u03AE \u03C4\u03B1\u03CD\u03C4\u03B9\u03C3\u03B7 simplyhtml.matchApproximately.tooltip=\u039D\u03B1 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B5\u03B3\u03B3\u03B9\u03C3\u03C4\u03B9\u03BA\u03AD\u03C2 \u03C4\u03B1\u03C5\u03C4\u03AF\u03C3\u03B5\u03B9\u03C2,
\u03C0\u03C7. \u03B7 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 '\u03C0\u03AC\u03B3\u03BF' \u03B8\u03B1 \u03B2\u03C1\u03B5\u03B9 \u03BA\u03B1\u03B9 '\u03C0\u03AC\u03C4\u03BF' simplyhtml.matchCase=\u03A4\u03B1\u03AF\u03C1\u03B9\u03B1\u03C3\u03BC\u03B1 \u03A0\u03B5\u03B6\u03CE\u03BD/\u039A\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD simplyhtml.matchCase.tooltip=\u039D\u03B1 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03AD\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u039A\u03B5\u03C6\u03B1\u03BB\u03B1\u03AF\u03C9\u03BD / \u03A0\u03B5\u03B6\u03CE\u03BD. simplyhtml.newStyleDefaultName=\u03BD\u03AD\u03BF \u03CD\u03C6\u03BF\u03C2 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=\u038E\u03C6\u03BF\u03C2 \u03A0\u03B1\u03C1\u03B1\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 simplyhtml.paraTabLabel=\u03A0\u03B1\u03C1\u03AC\u03B3\u03C1\u03B1\u03C6\u03BF\u03C2 simplyhtml.pasteHTMLLabel=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 HTML simplyhtml.pasteLabel=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03B7\u03C3\u03B7 simplyhtml.pastePlainTextLabel=\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03B1\u03C0\u03BB\u03BF\u03CD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 simplyhtml.pasteTip=\u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03B7\u03C3\u03B7 simplyhtml.plainName=\u03B1\u03C0\u03BB\u03AC simplyhtml.previewLabel=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B9\u03C3\u03B7 simplyhtml.previewText=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B9\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.printLabel=\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7... 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=\u0388\u03B3\u03B9\u03BD\u03B5 simplyhtml.replaceNo=\u039F\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.searchDown.tooltip=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C0\u03AC\u03BD\u03C9 \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.searchFromStart.tooltip=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C0\u03AC\u03BD\u03C9 \u03B1\u03BD\u03C4\u03AF \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B8\u03AD\u03C3\u03B7. simplyhtml.searchUp=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9 simplyhtml.searchUp.tooltip=\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03BA\u03AC\u03C4\u03C9 \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=\u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 simplyhtml.styleLabel=\u03A4\u03C1\u03CC\u03C0\u03BF\u03C2 simplyhtml.styleNameInputText=\u039F\u03BD\u03BF\u03BC\u03B1 \u03BD\u03AD\u03BF\u03C5 \u03CD\u03C6\u03BF\u03C5\u03C2; simplyhtml.styleNameInputTitle=\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03CD\u03C6\u03BF\u03C5\u03C2 simplyhtml.tableBgColLabel=\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C5\u03C0\u03CC\u03B2\u03B1\u03B8\u03C1\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\u03AF\u03B4\u03B1 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9 simplyhtml.toggleBulletsTip=\u03BB\u03AF\u03C3\u03C4\u03B1 \u03BC\u03B5 \u03BA\u03BF\u03C5\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=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03BE\u03C9 \u03C4\u03BF \u03B1\u03C1\u03C7\u03B5\u03AF\u03BF 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=\u0392\u03B1\u03C3\u03B9\u03BA\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE simplyhtml.valignBottom=\u03C0\u03C5\u03B8\u03BC\u03AD\u03BD\u03B1\u03C2 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 \u03BF\u03BB\u03CC\u03BA\u03BB\u03B7\u03C1\u03B5\u03C2 \u03BB\u03AD\u03BE\u03B5\u03B9\u03C2 simplyhtml.wholeWordsOnly.tooltip=\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03CE\u03BD \u03C3\u03B5 \u03BF\u03BB\u03CC\u03BA\u03BB\u03B7\u03C1\u03B5\u03C2 \u03BB\u03AD\u03BE\u03B5\u03B9\u03C2 SortNodes.text=\u03A4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7 \u03B1\u03C0\u03BF\u03B3\u03CC\u03BD\u03C9\u03BD SortNodes.tooltip=\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. split=&\u03A7\u03CE\u03C1\u03B9\u03C3\u03B5 SplitConditionAction.text=\u03A7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 SplitNode.text=\u03A7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03BA\u03CC\u03BC\u03B2\u03BF\u03C5 SplitNode.tooltip=\u039F \u03BA\u03CC\u03BC\u03B2\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2 STANDARD_FORMAT=\u03A4\u03C5\u03C0\u03B9\u03BA\u03CC stop_processing=\u03A3\u03C4\u03B1\u03BC\u03AC\u03C4\u03B7\u03BC\u03B1 StringFlavorHandler=\u0391\u03C0\u03BB\u03CC \u039A\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C9\u03C2 \u03B9\u03B5\u03C1\u03B1\u03C1\u03C7\u03AF\u03B1 \u039A\u03CC\u03BC\u03B2\u03C9\u03BD StructuredHtmlFlavorHandler=HTML \u03C9\u03C2 \u03B9\u03B5\u03C1\u03B1\u03C1\u03C7\u03AF\u03B1 \u039A\u03CC\u03BC\u03B2\u03C9\u03BD style=\u03A4\u03C1\u03CC\u03C0\u03BF\u03C2 style_already_exists=\u03A4\u03BF \u03A3\u03C4\u03C5\u03BB \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03AE\u03B4\u03B7. styledialog.cancel.text=\u0386\u03BA\u03C5\u03C1\u03BF styledialog.ok.text=\u039F\u039A styles=\u03A3\u03C4\u03C5\u03BB styles.AutomaticLayout=\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03A3\u03C4\u03C5\u03BB \u0395\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5 styles.connection=\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03B7 styles.date=\u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 styles.definition=\u039F\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 styles.description=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE styles.floating_node=\u0395\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03BF\u03C2 \u039A\u03CC\u03BC\u03B2\u03BF\u03C2 styles.idea=\u0399\u03B4\u03AD\u03B1 styles.important=\u03A3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03CC styles.key=\u039A\u03BB\u03B5\u03B9\u03B4\u03AF styles.list=\u039B\u03AF\u03C3\u03C4\u03B1 styles.needs_action=\u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u0395\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1 styles.note=\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7 styles.ok=\u039F\u039A styles.pending=\u0395\u03BA\u03BA\u03C1\u03B5\u03BC\u03B5\u03AF styles.predefined=\u03A0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B1 \u03A3\u03C4\u03C5\u03BB styles.question=\u0395\u03C1\u03CE\u03C4\u03B7\u03C3\u03B7 styles.quotation=\u0391\u03C0\u03CC\u03C3\u03C0\u03B1\u03C3\u03BC\u03B1 styles.root_node=\u03A3\u03C4\u03C5\u03BB styles.subsubtopic=\u03A4\u03C1\u03AF\u03C4\u03BF \u0398\u03AD\u03BC\u03B1 styles.subtopic=\u0394\u03B5\u03C5\u03C4\u03B5\u03C1\u03B5\u03CD\u03BF\u03BD \u0398\u03AD\u03BC\u03B1 styles.topic=\u039A\u03CD\u03C1\u03B9\u03BF \u0398\u03AD\u03BC\u03B1 styles.user-defined=\u03A3\u03C4\u03C5\u03BB \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 styles.website=\u0399\u03C3\u03C4\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 styles_menu=\u0394\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B1 \u03A3\u03C4\u03C5\u03BB submenu_keystroke_in_use_error=\u03A4\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF {0} \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C5\u03C0\u03BF\u03BC\u03B5\u03BD\u03BF\u03CD {1}. \u03A4\u03BF \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u03BA\u03B1\u03C4\u03B1\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5. summary_nodes=\u039A\u03CC\u03BC\u03B2\u03BF\u03B9 \u03A0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7\u03C2 summary_not_possible=\u0394\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03CE \u03BD\u03B1 \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03C9 \u039A\u03CC\u03BC\u03B2\u03BF \u03A0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE svg=SVG template_dir=\u0393\u03B5\u03BD\u03B9\u03BA\u03AC \u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 TimeManagementAction.text=\u0394\u03B5\u03AF\u03BE\u03B5 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF ... TimeManagementAction.tooltip=\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. ToggleChildrenFoldedAction.text=\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 ToggleDetailsAction.text=\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03B5\u03B9\u03CE\u03BD ToggleFBarAction.text=F-Bar ToggleFoldedAction.text=\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7\u03C2 ToggleFullScreenAction.text=\u03A0\u03BB\u03AE\u03C1\u03B7\u03C2 \u03BF\u03B8\u03CC\u03BD\u03B7 ToggleLeftToolbarAction.text=\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD ToggleMenubarAction.text=\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03BC\u03B5\u03BD\u03BF\u03CD ToggleStatusAction.text=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 ToggleToolbarAction.text=\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD TutorialAction.text=\u039F\u03B4\u03B7\u03B3\u03CC\u03C2 \u03B5\u03BA\u03BC\u03AC\u03B8\u03B7\u03C3\u03B7\u03C2 undefined_error=\u03A3\u03C5\u03BD\u03AD\u03B2\u03B7 \u03AD\u03BD\u03B1 \u03B1\u03BD\u03B1\u03C0\u03AC\u03BD\u03C4\u03B5\u03C7\u03BF \u03BB\u03AC\u03B8\u03BF\u03C2! \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\u03AF\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 UnderlineAction.text=\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 UndoAction.text=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 UndoFilterAction.text=\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 unfold=\u039E\u03B5\u03B4\u03AF\u03C0\u03BB\u03C9\u03BC\u03B1 UnfoldAllAction.text=\u0391\u03BD\u03B1\u03B4\u03AF\u03C0\u03BB\u03C9\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD UnfoldAllAction.tooltip=\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. UnfoldOneLevelAction.text=\u039E\u03B5\u03B4\u03B9\u03C0\u03BB\u03C9\u03BC\u03B1 \u03AD\u03BD\u03B1 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03BF UnfoldOneLevelAction.tooltip=Unfolds the selected nodes by one level. up=\u03A0\u03AC\u03BD\u03C9 update_failed=\u0397 \u03B5\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u03B1\u03C0\u03AD\u03C4\u03C5\u03C7\u03B5 \u03BC\u03B5 \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1 {0} UpdateCheckAction.text=\u0388\u03BB\u03B5\u03B3\u03C7\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03B9\u03C2 updatecheckdialog=\u0394\u03B9\u03AC\u03BB\u03BF\u03B3\u03BF\u03C2 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03B5\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03C9\u03BD url_error=\u039B\u03AC\u03B8\u03BF\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03BF URL! url_open_error=\u0394\u03B5\u03BD \u03BC\u03C0\u03CC\u03C1\u03B5\u03C3\u03B1 \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03BE\u03C9 \u03C4\u03BF URL {0}. used_in_menu=\u0391\u03C5\u03C4\u03AE \u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BF\u03C1\u03B9\u03C3\u03B8\u03B5\u03AF. \u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03AE\u03B4\u03B7. UsePlainTextAction.text=\u03A7\u03C1\u03AE\u03C3\u03B7 \u03B1\u03C0\u03BB\u03BF\u03CD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 user_config_folder=\u03A6\u03AC\u03BA\u03B5\u03BB\u03BF\u03C2 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7. {0} user_defined_scale=\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03B7 \u03BA\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 user_defined_zoom=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \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 \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_icon=\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 "{0}" user_template_dir=\u03A0\u03C1\u03CC\u03C4\u03C5\u03C0\u03B1 \u03A7\u03C1\u03B7\u03C3\u03C4\u03CE\u03BD user_zoom=\u039A\u03BB\u03AF\u03BC\u03B1\u03BA\u03B1 \u03B5\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7\u03C2 (0.0 - 2.0): value_format=\u039C\u03BF\u03C1\u03C6\u03AE \u03A4\u03B9\u03BC\u03CE\u03BD version_up_to_date=\u0389\u03B4\u03B7 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B5 \u03C4\u03B7\u03BD \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 view=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE ViewLayoutTypeAction.OUTLINE.text=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03B9\u03BA\u03AE \u038C\u03C8\u03B7 WebDocuAction.text=\u03A4\u03B5\u03BA\u03BC\u03B7\u03C1\u03AF\u03C9\u03C3\u03B7 \u03C3\u03B5 \u0399\u03C3\u03C4\u03CC width=\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 wrong_regexp=\u039B\u03AC\u03B8\u03BF\u03C2 \u03C6\u03C1\u03AC\u03C3\u03B7 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2 "{0}", \u03C3\u03C6\u03AC\u03BB\u03BC\u03B1 {1} xslt_export.html=\u0388\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF HTML xslt_export.latex=\u0388\u03B3\u03B3\u03C1\u03B1\u03C6\u03BF Latex xslt_export.latexbook=\u0392\u03B9\u03B2\u03BB\u03AF\u03BF Latex xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=\u039C\u03BF\u03C1\u03C6\u03AE Excel XML (2003 \u03BA\u03B1\u03B9 \u03AC\u03BD\u03C9) xslt_export.ms_project=\u039C\u03BF\u03C1\u03C6\u03AE MS Project XML (2003 \u03BA\u03B1\u03B9 \u03AC\u03BD\u03BD\u03C9) xslt_export.ms_word=\u039C\u03BF\u03C1\u03C6\u03AE Word XML (2003 \u03BA\u03B1\u03B9 \u03AC\u03BD\u03C9) xslt_export.text=\u0391\u03C0\u03BB\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF xslt_export_not_possible=\u0394\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03C5\u03BD\u03B1\u03C4\u03AE \u03B7 \u03B5\u03BE\u03B1\u03B3\u03C9\u03B3\u03AE \u03C9\u03C2 Freeplane XSLT yes=\u039D\u03B1\u03B9 ZoomInAction.text=\u039C\u03B5\u03B3\u03AD\u03B8\u03C5\u03BD\u03C3\u03B7 ZoomOutAction.text=\u03A3\u03BC\u03AF\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7 freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_es.properties0100644 0000000 0000000 00000363534 13545605134 027644 0ustar000000000 0000000 about_text=Freeplane - software libre para la creaci\u00F3n de mapas mentales y construcci\u00F3n del conocimiento AboutAction.text=Acerca de acceleratorPresets=Atajos de teclado predefinidos accelerators_loading_error=No se puede cargar aceleradores desde {0} accessories/plugins/ApplyFormatPlugin.dialog.title=Cambiar el formato de los nodos accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Cambiar patr\u00F3n accessories/plugins/EncryptNode.properties_0=Elegir una contrase\u00F1a para nodo protegido (cifrado) accessories/plugins/EncryptNode.properties_1=Las contrase\u00F1as no son iguales o son muy cortas. accessories/plugins/EncryptNode.properties_2=Introducir contrase\u00F1a: accessories/plugins/EncryptNode.properties_3=Vuelva a introducir la contrase\u00F1a: accessories/plugins/EncryptNode.properties_4=Introduzca su contrase\u00F1a. accessories/plugins/EncryptNode.properties_5=Recuerde que la resistencia del cifrado
depende casi completamente de la calidad de su contrase\u00F1a. accessories/plugins/EncryptNode.properties_6=OK accessories/plugins/EncryptNode.properties_7=Cancelar accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Solo puede cambiar el estado de protecci\u00F3n con contrase\u00F1a (cifrado) de un nodo cifrado. Por favor, inserte dicho nodo usando el men\u00FA de herramientas. accessories/plugins/EncryptNode.properties_select_me=\u00A1Selecci\u00F3name para continuar! accessories/plugins/EncryptNode.properties_wrong_password=La contrase\u00F1a no es correcta. accessories/plugins/Export_JavaWebStart.text=Java Web Start\u2026 accessories/plugins/Export_JavaWebStart.tooltip=Exporta el mapa para Java Web Start. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Exporta el mapa como un documento TWiki. accessories/plugins/ExportWithXSLT.tooltip=Este es un m\u00E9todo est\u00E1ndar de exportaci\u00F3n. accessories/plugins/ExportWithXSLT_Applet.text=Java Applet\u2026 accessories/plugins/ExportWithXSLT_Applet.tooltip=Exporta el mapa como un applet java para el navegador. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (versi\u00F3n JavaScript)\u2026 accessories/plugins/ExportWithXSLT_HTML3.text=XHTML (versi\u00F3n de mapa din\u00E1mico)\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Recursos del nodo RECURSOS al archivo TaskJuggler\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Exporta recursos del nodo RECURSOS al m\u00F3dulo Taskjuggler. accessories/plugins/ExportWithXSLT_TASKSTJI.text=Tareas del nodo TAREAS al archivo TaskJuggler\u2026 accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Exporta tareas desde el nodo TAREAS al m\u00F3dulo Taskjuggler. action_keystroke_in_use_error=La combinaci\u00F3n de teclas {0} que quiere asignar a la acci\u00F3n {1} ya est\u00E1 en uso para la acci\u00F3n {2} active=Activo actual_map_styles=Estilos condicionales del mapa aplicados al nodo actual_node_styles=Estilos condicionales de nodos aplicados al nodo add=&A\u00F1adir AddConnectorAction.text=Conectar AddElementaryConditionAction.text=A\u00F1adir AddExecutionLinkAction.text=A\u00F1adir un hiperv\u00EDnculo para ejecutar una orden del SO\u2026 AddLocalLinkAction.text=A\u00F1adir hiperenlace local AddMenuItemLinkAction.text=A\u00F1adir hiperenlace a elemento del men\u00FA\u2026 AddOnDetailsPanel.authored.by=Por {0} AddOnDetailsPanel.header.function=Funci\u00F3n AddOnDetailsPanel.header.menu=Ubicaci\u00F3n del men\u00FA AddOnDetailsPanel.header.shortcut=Atajo AddOnDetailsPanel.homepage=P\u00E1gina de inicio: addons.installer.canceled=Instalaci\u00F3n cancelada addons.installer.confirm.licence=

Licencia

{0}

\u00BFAcepta esta licencia?

addons.installer.failed=Fall\u00F3 la instalaci\u00F3n: {0} addons.installer.freeplaneversion.format.error=Error en el formato de {0} (valor: {1}) addons.installer.html.script=El cuerpo del script puede que no est\u00E9 en formato HTML addons.installer.install=Instalar addons.installer.invalid.keyboard.shortcut=Atajo no v\u00E1lido {0}. addons.installer.licence.unchanged=La licencia sigue sin cambios addons.installer.map.structure=Error en la estructura del mapa: {0} addons.installer.missing.child.nodes=Faltan nodos hijos: {0} addons.installer.missing.permission.attribute=Script {0}: faltan atributos de permisos {1} addons.installer.missing.properties=Propiedades no encontradas: {0} addons.installer.missing.translation=No hay traducci\u00F3n de {0} para {1} addons.installer.no.scripts=No se encontraron scripts addons.installer.no.zipdata=No se encontraron datos comprimidos addons.installer.nonstandard.permissions=El script requiere los siguiente permisos que actualmente no est\u00E1n habilitados: {0}.\n\u00BFDeber\u00EDan ser a\u00F1adidos a los permisos habituales? addons.installer.one.child.expected=Se esperaba exactamente un hijo de {0} pero hay {1}. addons.installer.script.name.suffix=El nombre del script {0} no tiene un sufijo como ".groovy" addons.installer.script.no.execution_mode=No hay definido "modo de ejecuci\u00F3n" para {0} addons.installer.script.no.menulocation=No hay atributo "menuLocation" definido para {0} addons.installer.script.no.menutitle=No hay atributo "menuTitleKey" definido para {0} addons.installer.script.no.permissions=Sin permisos definidos para {0} addons.installer.success=Instalaci\u00F3n correcta.\nEl nuevo complemento estar\u00E1 disponible tras reiniciar. addons.installer.success.update=Actualizada correctamente de la {0} a {1}.\nAlgunas funciones solo estar\u00E1n disponibles tras reiniciar. addons.installer.title=Instalador de complementos addons.installer.too.new=Su versi\u00F3n actual de Freeplane {0} es muy reciente. Este complemento soporta hasta la {1} addons.installer.too.old=Su versi\u00F3n actual de Freeplane {0} es muy antigua. Este complemento requiere al menos {1} addons.installer.unknown.deinstallation.rules=Sin detalles para la desintalaci\u00F3n de {0} addons.installer.update=Actualizar a partir de la versi\u00F3n {0} addons.installer.warning=Solo deber\u00EDa instalar complementos de fuentes de confianza. El software malintencionado puede da\u00F1ar sus datos o comprometer su privacidad. addons.site=https://www.freeplane.org/addons/ AddStyleAttributes.text=Atributos a partir del estilo AddStyleAttributes.tooltip=A\u00F1adir atributos a partir del estilo del nodo AllMapsNodeListAction.text=Buscar y reemplazar en todos los mapas always=Siempre AlwaysUnfoldedNodeAction.text=Nodo siempre desplegado (fijar/quitar) antialias_all=Suavizar todo antialias_edges=Suavizar bordes antialias_none=No suavizar apply=&Aplicar ApplyAction.text=Aplicar ApplyFormatPlugin.text=Cambiar formato\u2026 ApplyFormatPlugin.tooltip=Presenta una ventana de di\u00E1logo en el que los atributos del nodo y del borde pueden ser cambiados al mismo tiempo. ApplyNoFilteringAction.text=Sin filtrado ApplySelectedViewConditionAction.text=Filtrar nodos seleccionados ApplyToVisibleAction.text=Se aplica a los nodos seleccionados as_parent=Como padre AskForHelp.text=Pedir ayuda en el foro AssignAttributesAction.text=Buscar y reemplazar atributos\u2026 attribute_delete=Borrar todos los valores attribute_delete_value=Borrar este valor attribute_font_size.tooltip=Tama\u00F1o de fuente del atributo attribute_list_box_label_text=Valores existentes attribute_name=Nombre del atributo attribute_name_or_value=Nombre o valor del atributo attribute_replace=Reemplazar con attribute_top=Todos los atributos conocidos para los mapas cargados attribute_value=Valor del atributo attributes_AddAttributeAction.text=A\u00F1adir atributo en ventana de di\u00E1logo\u2026 attributes_adding_empty_attribute_error=No se puede usar una cadena vac\u00EDa como nombre de atributo attributes_all=Todos los atributos attributes_assign_dialog=Editor de atributos extendido attributes_attribute=Atributos attributes_close=Cerrar attributes_deselect_all=Nada attributes_dialog_title=Gestor de atributos attributes_edit=Editar attributes_edit.tooltip=Editar conjunto attributes_for_selected=Nodos seleccionados attributes_for_visible=Todos los nodos visibles attributes_import=&Importar attributes_import.tooltip=Importar atributos de otros mapas cargados attributes_no_import_candidates_found=No encontrado ning\u00FAn atributo nuevo attributes_popup_delete=Borrar attributes_popup_down=Abajo attributes_popup_edit=Editar attributes_popup_hide=Ocultar attributes_popup_new=Nuevo atributo attributes_popup_optimal_width=Ancho \u00F3ptimo attributes_popup_up=Arriba attributes_refresh=Actualizar attributes_RemoveAllAttributesAction.text=Eliminar todos los atributos attributes_RemoveFirstAttributeAction.text=Eliminar el primer atributo attributes_RemoveLastAttributeAction.text=Eliminar el \u00FAltimo atributo attributes_restricted_attributes.tooltip=Restringir conjunto de atributos attributes_restricted_values.tooltip=Restringir conjunto de valores para el atributo actual attributes_restriction=Conjunto restringido attributes_select_all=Todo attributes_select_all.tooltip=Seleccionar/deseleccionar todos attributes_show=Mostrar attributes_skip_root=Omitir nodo ra\u00EDz attributes_visible=Visible seleccionado attributes_visible.tooltip=Visible seleccionado automatic_layout=Dise\u00F1o autom\u00E1tico automatic_layout_disabled=deshabilitado automatically_save_message=Mapa guardado autom\u00E1ticamente (usando el nombre de archivo {0})\u2026 AutomaticEdgeColor.FOR_BRANCHES=por ramas AutomaticEdgeColor.FOR_COLUMNS=por columnas AutomaticEdgeColor.FOR_LEVELS=por niveles AutomaticEdgeColor.ON_BRANCH_CREATION=En la creaci\u00F3n de ramas AutomaticEdgeColorHookAction.text=Color del borde autom\u00E1tico AutomaticLayout.ALL=para todos los nodos AutomaticLayout.HEADINGS=para nodos que no est\u00E9n sueltos AutomaticLayout.level=Nivel {0} AutomaticLayout.level.root=Ra\u00EDz AutomaticLayoutAction.text=Aplicar estilos de nivel AutomaticLayoutAction.tooltip=Corrige el dise\u00F1o del mapa.
El primer nivel es negro, el segundo azul, etc. AutomaticLayoutControllerAction.ALL.text=para todos los nodos AutomaticLayoutControllerAction.COLUMNS.text=para columnas AutomaticLayoutControllerAction.HEADINGS.text=para nodos que no est\u00E9n sueltos AutomaticLayoutControllerAction.null.text=deshabilitado BackAction.text=Ir atr\u00E1s BackAction.tooltip=Salta hacia atr\u00E1s en la cadena de selecci\u00F3n background=Fondo bitmaps=Mapas de bits black=Negro BlinkingNodeHookAction.text=Nodo parpadeante BlinkingNodeHookAction.tooltip=Esto hace que el nodo parpadee. Pero tenga cuidado. No lo utilice en muchos nodos y no lo haga junto con otros formatos autom\u00E1ticos en el mismo nodo blue=Azul BoldAction.text=Negrita boldify_branch=Poner en negrita branch=Rama browse=Navegar\u2026 calendar_attributes_panel=Calendario y atributos calendar_panel=Calendario can_not_clone_encrypted_node=No se puede clonar nodos cifrados can_not_connect_to_info_server=No se puede conectar con el servidor de informaci\u00F3n can_not_delete_predefined_style=No se puede borrar el estilo predefinido can_not_delete_root_style=No se puede borrar el estilo ra\u00EDz can_not_delete_style_group=No se puede borrar el grupo de estilo can_not_encrypt_cloned_node=No se puede cifrar nodos clonados can_not_save_key_set=No se puede guardar el conjunto de teclas de acceso r\u00E1pido cancel=&Cancelar CancelAction.text=Cancelar cannot_add_parent_diff_parents=Todos los nodos deben tener el mismo nodo padre para poder usar esta funci\u00F3n. cannot_add_parent_to_root=El nodo ra\u00EDz no puede ser a\u00F1adido a un nuevo nodo padre. cannot_delete_root=El nodo ra\u00EDz no puede ser borrado o cortado. cannot_join_nodes_with_children=No se pueden unir nodos con hijos cannot_move_into_child_node=No se puede mover al nodo hijo cannot_move_to_child=No se puede mover un nodo a uno de sus hijos. CenterAction.text=Centrar ChangeConnectorArrowsAction.backward.text=Dibujar flechas hacia atr\u00E1s ChangeConnectorArrowsAction.both.text=Dibujar flechas hacia delante y atr\u00E1s ChangeConnectorArrowsAction.forward.text=Dibujar flechas hacia delante ChangeConnectorArrowsAction.none.text=Ninguno ChangeConnectorArrowsAction.text=Cambiar flechas del conector ChangeConnectorShapeAction.CUBIC_CURVE.text=Curva ChangeConnectorShapeAction.EDGE_LIKE.text=Simular borde ChangeConnectorShapeAction.LINE.text=L\u00EDnea ChangeConnectorShapeAction.LINEAR_PATH.text=Trazo lineal ChangeNodeLevelLeftsAction.text=Mover nodo (hermano de padres) ChangeNodeLevelLeftsAction.tooltip=A la izquierda del ra\u00EDz, el nodos son desplazados hacia abajo. Se convierten en hijos de su hermano superior. A la derecha del ra\u00EDz, los nodos son desplazados hacia arriba. Directamente en el ra\u00EDz, los nodos cambian de lado. ChangeNodeLevelRightsAction.text=Mover nodo (hijo de hermanos) ChangeNodeLevelRightsAction.tooltip=A la derecha del ra\u00EDz, los nodos son desplazados hacia abajo. Se convierten en hijos de su hermano superior. A la izquierda del ra\u00EDz, los nodos son desplazados hacia arriba. Directamente en el ra\u00EDz, los nodos cambian de lado. choose_cloud_color=Elegir color de nube: choose_edge_color=Elegir color del borde choose_map_background_color=Elegir el color de fondo del mapa choose_node_background_color=Elegir el color de fondo del nodo: choose_node_color=Elegir color del nodo: ClearLinkAnchorAction.text=Borrar la etiqueta de ancla ClearLinkAnchorAction.tooltip=quitar la etiqueta previa de ancla del nodo CloneAction.text=Pegar clon close_btn=&Cerrar CloseAction.text=Cerrar el mapa actual CloseAllMapsAction.text=Cerrar todos los mapas CloseAllOtherMapsAction.text=Cerrar los dem\u00E1s mapas cloud_shapes=Formas de nube CloudAction.text=A\u00F1adir/eliminar nube (predeterminado) CloudColorAction.text=Color de nube\u2026 CloudShapeAction.ARC.text=Arco CloudShapeAction.RECT.text=Rect\u00E1ngulo CloudShapeAction.ROUND_RECT.text=Rect\u00E1ngulo redondeado CloudShapeAction.STAR.text=Estrella collection.copy.presentation=Copiar presentaci\u00F3n collection.copy.slide=Copiar diapositiva collection.delete=Borrar collection.down=Bajar collection.move=Mover collection.moveTo=Mover a la posici\u00F3n collection.new.presentation=Nueva presentaci\u00F3n collection.new.slide=Nueva diapositiva collection.up=Arriba ColorProperty.ResetColor=Restablecer color combined=Combinado condition=Condici\u00F3n confirmation=Confirmaci\u00F3n connector=Conector connector_arrows=Flechas del conector connector_label=Etiqueta del conector connector_lines=L\u00EDneas del conector connector_shapes=Formas del conector ConnectorColorAction.text=Color del conector\u2026 controls=Controles ConvertCloneToIndependentNodeAction.text=Desclonar copy_name={0} (copia) CopyAction.text=Copiar CopyAction.tooltip=Copiar rama seleccionada CopyAttributes.text=Copiar atributos CopyIDAction.text=Copiar ID del nodo CopyMapStylesAction.text=Copiar estilo de mapa a partir de\u2026 CopyNodeURIAction.text=Copiar URI del nodo copyright=Copyright \u00A9 2000-2019 Equipo de Freeplane y otros CopySingleAction.text=Copiar nodo (sin hijos) CopySingleAction.tooltip=Copiar solo el nodo seleccionado CopyStyleExtensionsAction.text=Copiar extensiones a partir del nodo de estilo CopySuggestedReferenceAction.text=Copiar referencia del nodo corrupt_map=El contenido del mapa est\u00E1 da\u00F1ado CreateConjunctConditionAction.text=Y CreateDisjunctConditionAction.text=O CreateNotSatisfiedConditionAction.text=No current_dir=Mapas CutAction.text=Cortar decrease_branch_font_size=Fuente m\u00E1s peque\u00F1a DecreaseNodeFontAction.text=Fuente m\u00E1s peque\u00F1a default=Predeterminado defaultAuxiliaryWordList=un, el, de DefaultColorAction.text=Color predeterminado defaultstyle.attributes=Atributos defaultstyle.details=Detalles defaultstyle.floating=Nodo flotante defaultstyle.note=Nota delete=&Borrar delete_child=Borrar nodo DeleteAction.text=Eliminar nodo DeleteConditionAction.text=Borrar DeleteDetailsAction.text=Eliminar detalles del nodo DeleteLevelStyleAction.text=Eliminar estilo de nivel DeleteStyleAction.text=Eliminar estilo DeleteUserStyleAction.text=Eliminar estilo definido por el usuario dialect_info.app=El archivo del mapa mental {0} fue creado con el programa {1}. dialect_info.later_version=El archivo del mapa mental {0} fue creado con una versi\u00F3n posterior de este programa. dialect_info.unknownApp=El archivo del mapa mental {0} fue creado por un programa desconocido. dialect_info.unknownURL=Su sitio web es desconocido. dialect_info.url=Visitar sitio web del programa {0} para m\u00E1s informaci\u00F3n. dialect_info.warning=Puede que Freeplane no lo abra, muestre o guarde correctamente. DirectHtmlFlavorHandler=HTML como nodo simple DocumentationAction.text=Documentaci\u00F3n down=Abajo DownConditionAction.text=Abajo download=Descargar dropped_file_error=No se pudo abrir el/los archivo(s) descargado(s). Raz\u00F3n: {0} edge=Borde edge_is_formatted_by_style=El formato del borde lo determina el estilo. Edite los estilos relacionados si es necesario. edge_style=Estilo de borde edge_width=Grosor de borde edge_widths=Grosores de borde EdgeColorAction.text=Color del borde\u2026 EdgeProperties=Propiedades del borde EdgeStyleAction.bezier.text=Curvado suavemente (bezier) EdgeStyleAction.bezier.tooltip=Mostrar el borde como una curva suave. EdgeStyleAction.hide_edge.text=Ocultar borde EdgeStyleAction.hide_edge.tooltip=Para los nodos seleccionados, mostrar el borde hacia el padre como
l\u00EDnea de puntos. Si no, ocultar el borde. EdgeStyleAction.horizontal.text=Horizontal EdgeStyleAction.horizontal.tooltip=Usar l\u00EDneas rectas perpendiculares para los bordes. EdgeStyleAction.linear.text=Lineal EdgeStyleAction.linear.tooltip=Mostrar el borde como una l\u00EDnea recta. EdgeStyleAction.sharp_bezier.text=Curvado puntiagudo (bezier) EdgeStyleAction.sharp_bezier.tooltip=Mostrar el borde como una curva suave con extremos puntiagudos. EdgeStyleAction.sharp_linear.text=Lineal puntiagudo EdgeStyleAction.sharp_linear.tooltip=Mostrar el borde como una l\u00EDnea recta con extremos puntiagudos. EdgeStyleAsParentAction.text=Como padre EdgeStyleAsParentAction.tooltip=Usar estilo de borde del nodo padre.[obsoleto] EdgeWidthAction_width_parent.text=Padre EdgeWidthAction_width_thin.text=Delgado edit=&Editar edit.decision=Editor HTML edit.edit_rich_text=\u00BFQuiere usar formatos como negrita o cursivas? edit_details=Editar detalles del nodo edit_end_label=Etiqueta
del conector edit_label_font_family=Fuente edit_label_font_size=Tama\u00F1o de fuente edit_link_manually=Editar hiperenlace manualmente\u2026 edit_long_node=Editar n\u00FAcleo del nodo en ventana de di\u00E1logo edit_middle_label=Etiqueta
intermedia edit_note=Editar nota edit_source_label=Etiqueta
de fuente edit_target_label=Etiqueta
de destino edit_transparency_label=Transparencia edit_width_label=Ancho EditAction.text=Editar n\u00FAcleo del nodo en la l\u00EDnea EditAttributesAction.text=Editar atributo en la l\u00EDnea EditDetailsAction.text=Editar detalles del nodo en la l\u00EDnea EditDetailsInDialogAction.text=Editar detalles del nodo en ventana de di\u00E1logo editEdgeColors=Editar colores de bordes EditFilterAction.text=Componer filtro EditLongAction.text=Editar n\u00FAcleo del nodo en ventana de di\u00E1logo EditNoteInDialogAction.text=Editar nota en ventana de di\u00E1logo EditScript=Editar script\u2026 EditStylesAction.text=Editar estilos EncryptedMap.text=Nuevo mapa protegido (cifrado)\u2026 EncryptedMap.tooltip=Nuevo mapa protegido encryption=Cifrado enter_base_url=Voy a pegar enlaces relativos. Por favor, introduzca la URL base. enter_command=Introducir orden enter_condition_name=Introducir nuevo nombre de condici\u00F3n enter_confirms=&Retorno confirma enter_keyset_name=Introducir nombre del conjunto de teclas de acceso r\u00E1pido enter_map_url=Introducir URL del mapa enter_new_style_name=Introducir nuevo nombre de estilo enter_node_id_or_reference=Introducir ID o referencia del nodo enter_zoom=Introducir zum EnterPassword.text=Introducir contrase\u00F1a error=Error error_applying_template=Error al aplicar la plantilla XSL. error_creating_directory=No se puede crear el directorio para exportar. error_in_template=Errores en plantilla de mapa predeterminada {0}. Pruebe a eliminar este archivo. errornumber={0} errores ExecuteScript.available_modes.tooltip={0} est\u00E1 disponible para ExecuteScript.script=Script ExecuteScriptError.text=Error al ejecutar el script:\n{0} ExecuteScriptForAllNodes.text=Ejecutar todos los scripts ExecuteScriptForSelectionAction.text=Ejecutar scripts de los nodos seleccionados ExecuteScriptOnSelectedNode.text=Ejecutar {0} en todos los nodos seleccionados ExecuteScriptOnSelectedNodeRecursively.text=Ejecutar {0} en los nodos seleccionados, recursivamente ExecuteScriptOnSingleNode.text=Ejecutar {0} en un nodo seleccionado ExecuteScripts.noScriptsAvailable=No est\u00E1 disponible ExecuteScripts.text=Scripts ExecuteScriptSecurityError.text=Ocurri\u00F3 un error mientras se ejecutaba el script: {0} export_failed=Ha fallado la exportaci\u00F3n export_pdf_text=Formato de documento portable (PDF) export_svg_text=Gr\u00E1fico vectorial escalable (SVG) ExportAction.text=Exportar mapa\u2026 ExportAllPresentationsAction.text=Exportar todas las presentaciones a im\u00E1genes PNG ExportBranchAction.text=Mover rama a mapa nuevo\u2026 ExportBranchesAction.text=Exportar ramas\u2026 ExportBranchToHTMLAction.text=Rama como HTML exported_file=archivo {0} ExportPdf.text=PDF ExportPresentationAction.text=Exportar la presentaci\u00F3n actual a imagen PNG ExportSvg.text=SVG ExportToHTMLAction.text=HTML ExportToImage.jpg.text=JPEG ExportToImage.png.text=PNG ExportToOoWriter.text=Documento Open Office Writer\u2026 extension_menu=Estilo f\u00EDsico ExternalImage_popupMenu_Change=Cambiar\u2026 ExternalImage_popupMenu_Open=Abrir en visor ExternalImage_popupMenu_Remove=Eliminar ExternalImage_popupMenu_ResetZoom=Restablecer zum ExternalImageAddAction.text=A\u00F1adir imagen\u2026 ExternalImageChangeAction.text=Cambiar imagen\u2026 ExternalImageRemoveAction.text=Eliminar imagen ExtractLinkFromTextAction.text=Convertir enlace desde dentro del texto ExtractLinkFromTextAction.tooltip=Crear un hiperenlace a partir del texto del nodo extras=&Herramientas f_button_unassigned= FaqOpenURLAction.text=FAQ file=&Archivo file_already_exists=El archivo {0} ya existe. \u00BFQuiere sobrescribirlo? file_not_accessible=El archivo {0} no es accesible file_not_found=Archivo {0} no encontrado FileListFlavorHandler=Enlaces a archivos FileProperties_BranchLeafCount=N\u00FAmero de nodos hoja en la(s) rama(s) seleccionada(s): FileProperties_BranchNodeCount=N\u00FAmero de nodos en la(s) rama(s) seleccionada(s): FileProperties_ChangesSinceLastSave=Cambios desde la \u00FAltima vez que se guard\u00F3: FileProperties_FileName=Nombre del archivo: FileProperties_FileSaved=Archivo guardado: FileProperties_FileSize=Tama\u00F1o del archivo: FileProperties_MainBranchCount=N\u00FAmero de ramas principales: FileProperties_NeverSaved=Nunca guardado FileProperties_NodeChildCount=N\u00FAmero de hijos del nodo(s) seleccionado(s): FileProperties_NodeSelectionCount=N\u00FAmero de nodos seleccionados: FileProperties_TotalFilteredCount=N\u00FAmero de nodos que satisfacen el filtro: FileProperties_TotalLeafCount=N\u00FAmero total de nodos hoja: FileProperties_TotalNodeCount=N\u00FAmero total de nodos: FilePropertiesAction.text=Estad\u00EDsticas del mapa\u2026 FileRevisionsDialog.cancel=&Cancelar FileRevisionsDialog.file_last_modified=Marca de tiempo FileRevisionsDialog.file_name=Archivo FileRevisionsDialog.file_size=Bytes FileRevisionsDialog.open=&Abrir FileRevisionsDialog.open.tooltip=Abrir el archivo aunque est\u00E9 desactualizado FileRevisionsDialog.question=Encontradas revisiones de {0} FileRevisionsDialog.restore=Rest&aurar FileRevisionsDialog.restore.tooltip=Reemplazar {0} por {1} FileRevisionsDialog.title=Revisiones del archivo filter=F&iltro filter_add=&A\u00F1adir filter_alias=Alias filter_and=&Y filter_any_text=N\u00FAcleo, detalles o nota filter_clone_snapshot=Clones guardados de la selecci\u00F3n filter_clones=Clones de la selecci\u00F3n filter_conditions=Filtros filter_contains=Contiene filter_created_after=Creado despu\u00E9s de filter_created_before=Creado antes de filter_delete=&Borrar filter_deny=Negar filter_deny.tooltip=Invertir condici\u00F3n del filtro filter_details=Detalles filter_dialog=Creador de filtros filter_does_not_exist=No existe filter_edit_description=Editar lista de filtros filter_enter_value=Introducir valor filter_even_level=Nodo de nivel impar filter_exist=Existe filter_global=Nodo accesible globalmente filter_icon=Icono filter_is_equal_to=Es igual a filter_is_not_equal_to=No es igual a filter_leaf=Nodo hoja filter_link=Hiperenlace filter_match_approximately=&Aproximado filter_match_approximately.tooltip=Si se permiten coincidencias aproximadas,
es decir, al buscar la palabra 'files' se puede aceptar 'flies'. filter_match_case=Coincidencia &exacta filter_match_case.tooltip=Si se destaca el caso cuando hay coincidencia. filter_modified_after=Modificado despu\u00E9s de filter_modified_before=Modificado antes del filter_no_filtering=Sin filtrado (eliminar) filter_node=Texto del n\u00FAcleo filter_node_level=Nivel del nodo filter_not=&No filter_note=Nota filter_odd_level=Nodo de nivel par filter_or=&O filter_parent=Texto del nodo padre filter_periodic_level=Peri\u00F3dico filter_priority=Prioridad filter_regexp_matches=Coincide con expresiones regulares filter_reminder=Recordatorio filter_reminder_after=programado despu\u00E9s filter_reminder_before=programado antes filter_reminder_executed=ya terminado filter_reminder_later=programado m\u00E1s tarde filter_root=Nodo ra\u00EDz filter_script=Filtro de script filter_select=&Seleccionar filter_selected_node_view=Nodos seleccionados actualmente filter_selected_node_view_snapshot=Selecci\u00F3n guardada filter_starts_with=Empieza con filter_style=Estilo filter_time=Filtro de fecha FilterCondition=Condiciones del filtro filterConditions=Filtros definidos por el usuario filterConditions.noActions=Filtros sin nombre filters_not_loaded=El filtro no se pudo cargar, archivo da\u00F1ado find=Buscar find_what=\u00BFBuscar qu\u00E9? FindAction.text=&Buscar\u2026 FindNextAction.text=Buscar siguiente FindPreviousAction.text=Buscar anterior fit_background_to_page=Ajustar imagen de fondo a una p\u00E1gina fit_map_to_page=&Ajustar a una p\u00E1gina fit_map_to_page_height=Ajustar &altura a una p\u00E1gina fit_map_to_page_width=Ajustar &ancho a una p\u00E1gina FitToPage.text=Ajustar zum a la p\u00E1gina FitToPage.tooltip=Ajusta el nivel de zum tal que el mapa completo pueda verse en la ventana actual. fold=Plegar FoldAllAction.text=Plegar todo FoldAllAction.tooltip=Plegar los nodos seleccionados y todos sus hijos. FoldOneLevelAction.text=Plegar un nivel FoldOneLevelAction.tooltip=Pliega los nodos seleccionados en un nivel. follow_clone=En "{0}" follow_graphical_link=Ir a ''{0}'' FollowLinkAction.text=Abrir enlace font=Fuente FontFamilyAction.text=Familia de la fuente FontSizeAction.text=Tama\u00F1o de fuente format=F&ormato format_invalid_pattern=No es un patr\u00F3n v\u00E1lido format_menu_cloud_shapes=A\u00F1adir nube o cambiar estilo format_menu_edge_styles=&Estilos de borde format_menu_edge_widths=Grosores de &bordes format_panel=Formato FormatCopy.text=Copiar formato FormatCopy.tooltip=Copia el formato de un nodo. FormatPaste.text=Pegar formato FormatPaste.tooltip=Pega el formato de un nodo. formats_not_loaded=Los formatos no se pudieron cargar, archivo da\u00F1ado formula.ClearDependenciesAction.text=Limpiar dependencias formula.error.attributeValueIsNull=El valor del atributo "{0}" es nulo tras evaluarlo. formula.error.circularReference=Referencia circular: la f\u00F3rmula en el nodo {0} ''{1}'' hace referencia a s\u00ED misma. formula.EvaluateAllAction.text=Evaluar todo formula.EvaluateAllAction.tooltip=Evaluar todas las f\u00F3rmulas en el mapa actual formula.menuname=F\u00F3rmulas formula.TraceDependentsAction.text=Rastrear dependientes formula.TracePrecedentsAction.text=Rastrear precedentes formula_editor=Editar f\u00F3rmula ForwardAction.text=Ir adelante ForwardAction.tooltip=Salta hacia delante en la cadena de selecci\u00F3n FreeNodeAction.text=Nodo colocado libremente (fijar/quitar) Freeplane.progress.buildScreen=Construir pantalla\u2026 Freeplane.progress.createController=Crear controlador\u2026 Freeplane.progress.createInitialMode=Crear modo Inicial\u2026 Freeplane.progress.endStartup=Finalizar el arranque. Freeplane.progress.gettingPreferenceDirectories=Cargando directorios de preferencias\u2026 Freeplane.progress.gettingPreferences=Cargando preferencias\u2026 Freeplane.progress.loadMaps=Cargar mapas\u2026 Freeplane.progress.propagateLookAndFeel=Reproducir estilo y apariencia\u2026 Freeplane.progress.settingPreferences=Establecer preferencias\u2026 Freeplane.progress.startCreateController=Empezar a crear el controlador\u2026 Freeplane.progress.updateLookAndFeel=Actualizar estilo y apariencia\u2026 freeplane_reverted=Freeplane_Revertido_ FreeplaneHandbook.text=Manual de Freeplane FreeplaneHelpStarter.text=Ayuda\u2026 FreeplaneHelpStarter.tooltip=Ayuda ampliada de Freeplane globally_accessible=Accesible globalmente goto=Ir a goto.noActions=No hay nodos de destino GotoLinkNodeAction.text=Ir a enlace GotoNodeAction.text=Ir a nodo\u2026 GrabKeyDialog.common.cancel=Cancelar GrabKeyDialog.common.ok=OK GrabKeyDialog.grab-key.assigned-to=Asignado a GrabKeyDialog.grab-key.assigned-to.none=Actualmente no asignado GrabKeyDialog.grab-key.clear=Limpiar GrabKeyDialog.grab-key.remove=Eliminar GrabKeyDialog.grab-key.remove-ask=\u00BFEst\u00E1 seguro de que quiere borrar esta combinaci\u00F3n de teclas? GrabKeyDialog.grab-key.title=Introducir nueva tecla green=Verde help=&Ayuda HideableAction.tooltip=Marca el fondo de cada nodo modificado. HideAllAttributesAction.text=Ocultar todos los atributos HierarchicalIcons2Action.text=Mostrar las intersecciones de los iconos hijos HierarchicalIconsAction.text=Mostrar iconos jer\u00E1rquicamente HierarchicalIconsAction.tooltip=Si uno de mis hijos o nietos tiene un icono, tambi\u00E9n lo mostrar\u00E9 en formato peque\u00F1o. hot_keys=Teclas de acceso r\u00E1pido hot_keys_table=Tabla de teclas de acceso r\u00E1pido HotKeyInfoAction.text=Referencia de tecla html_export_based_on_headings=Exportar HTML - Basado en encabezados html_export_fold_all=Exportar HTML - Plegar todo html_export_fold_currently_folded=Exportar HTML - Plegar lo actualmente plegado html_export_no_folding=Exportar HTML - Sin plegar html_problem=No se puede procesar html

{0} icon_0%=0% icon_100%=100% icon_25%=25% icon_50%=50% icon_75%=75% icon_addition=Adici\u00F3n icon_attach=Mira aqu\u00ED icon_audio=Audio icon_back=Atr\u00E1s icon_bee=Freeplane icon_bell=Recordar icon_bookmark=Excelente icon_broken-line=Roto icon_button_cancel=No OK icon_button_ok=OK icon_calendar=Fecha icon_checked=Revisado icon_clanbomber=Peligroso icon_clock=Hora icon_clock2=Recordatorio icon_closed=Direcci\u00F3n prohibida icon_decrypted=Desbloqueado icon_desktop_new=No olvidar icon_division=Divisi\u00F3n icon_down=Abajo icon_edit=Pulir icon_encrypted=Bloqueado icon_executable=Ejecutable icon_family=Familia icon_fema=Hombre y mujer icon_female1=Mujer1 icon_female2=Mujer2 icon_females=Mujeres icon_flag=Bandera roja icon_flag-black=Bandera negra icon_flag-blue=Bandera azul icon_flag-green=Bandera verde icon_flag-orange=Bandera naranja icon_flag-pink=Bandera rosa icon_flag-yellow=Bandera amarilla icon_folder=Carpeta icon_forward=Adelante icon_freemind_butterfly=FreeMind icon_full-0=Prioridad 0 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 icon_full-8=Prioridad 8 icon_full-9=Prioridad 9 icon_go=Sem\u00E1foro en verde icon_gohome=Inicio icon_group=Grupo icon_help=Pregunta icon_hourglass=Esperando icon_icon_not_found=Icono no encontrado icon_idea=Idea icon_image=Imagen icon_info=Informaci\u00F3n icon_internet=Internet icon_internet_warning=Aviso de Internet icon_kaddressbook=Tel\u00E9fono icon_kmail=Correo electr\u00F3nico icon_knotify=M\u00FAsica icon_korn=Buz\u00F3n icon_ksmiletris=Estoy feliz icon_launch=Lanzamiento icon_licq=Agradable icon_list=Lista icon_Mail=Correo icon_male1=Hombre1 icon_male2=Hombre2 icon_males=Hombres icon_menu=I&con icon_messagebox_warning=Importante icon_mindmap=Mapa mental icon_multiplication=Multiplicaci\u00F3n icon_narrative=Narrativa icon_negative=Negativo icon_neutral=Neutro icon_password=Tecla icon_pencil=Para pulir icon_penguin=Linux icon_positive=Positivo icon_prepare=Sem\u00E1foro en \u00E1mbar icon_revision=Revisi\u00F3n icon_revision-green=Revisi\u00F3n (verde) icon_revision-pink=Revisi\u00F3n (rosa) icon_revision-red=Revisi\u00F3n (rojo) icon_smiley-angry=Emoticono (enojado) icon_smiley-neutral=Emoticono (neutral) icon_smiley-oh=Emoticono (sorpresa) icon_smily_bad=Emoticono (triste) icon_stop=Sem\u00E1foro (rojo) icon_stop-sign=Se\u00F1al (stop) icon_subtraction=Matem\u00E1ticas (sustracci\u00F3n) icon_unchecked=Sin revisar icon_up=Arriba icon_user_icon=Iconos de usuario icon_very_negative=Muy negativo icon_very_positive=Muy positivo icon_video=V\u00EDdeo icon_wizard=Magia icon_xmag=Para discutir icon_yes=Importante IconGroupPopupAction.arrows.text=Flechas IconGroupPopupAction.docs_folders.text=Documentos y carpetas IconGroupPopupAction.flags.text=Banderas IconGroupPopupAction.math.text=Matem\u00E1ticas IconGroupPopupAction.media.text=Media IconGroupPopupAction.miscellaneous.text=Miscel\u00E1nea IconGroupPopupAction.nature.text=Naturaleza IconGroupPopupAction.numbers.text=N\u00FAmeros IconGroupPopupAction.office.text=Oficina IconGroupPopupAction.people.text=Gente IconGroupPopupAction.rating.text=Clasificaci\u00F3n IconGroupPopupAction.signs.text=Se\u00F1ales IconGroupPopupAction.smiley.text=Sonriente IconGroupPopupAction.time.text=Hora IconGroupPopupAction.user.text=Iconos de usuario IconProgressExtended10Action.text=Progreso ampliado 10% IconProgressExtended10Action.tooltip=A\u00F1ade una indicaci\u00F3n de que el progreso se ha ampliado un 10% al hacer doble clic.
Control + doble clic izquierdo lo reduce o lo elimina. IconProgressExtended25Action.text=Progreso ampliado 25% IconProgressExtended25Action.tooltip=A\u00F1ade una indicaci\u00F3n de que el progreso se ha ampliado un 25% al hacer doble clic.
Control + doble clic izquierdo lo reduce o lo elimina. IconProgressIconDownAction.text=Reducir progreso IconProgressIconDownAction.tooltip=Disminuye/ inserta/elimina los iconos de progreso (100% -> 75% -> 50% -> 25% -> 0% -> eliminar). IconProgressIconUpAction.text=Aumentar progreso IconProgressIconUpAction.tooltip=incrementa/inserta los iconos de progreso (0% -> 25% -> 50% -> 75% -> 100% + OK). IconProgressRemoveAction.text=Eliminar progreso IconProgressRemoveAction.tooltip=Elimina los iconos de progreso e iconos de progreso ampliado. icons=Iconos IconSelectionPlugin.text=Icono de tabla\u2026 IconSelectionPlugin.tooltip=Aqu\u00ED puede seleccionar un icono usando una subventana. image_covertLink=Convertir enlace a imagen ImageFlavorHandler=Imagen (utilizar un archivo separado) import=I&mportar import_linked_branch_no_link=El nodo seleccionado no tiene enlaces que importar. ImportAction.text=Importar mapa ImportBranchAction.text=Rama\u2026 ImportExplorerFavoritesAction.text=Favoritos de Explorer\u2026 ImportFolderStructureAction.text=Estructura de carpetas\u2026 ImportLinkedBranchAction.text=Rama enlazada ImportLinkedBranchWithoutRootAction.text=Rama enlazada sin ra\u00EDz\u2026 ImportMindmanagerFiles.text=Mapa MindManager X5\u2026 ImportXmlFile.text=Importar archivo XML increase_branch_font_size=Agrandar fuente IncreaseNodeFontAction.text=Agrandar fuente internal_error.tooltip=Ocurrieron errores internos. Haga clic para abrir el \u00FAltimo archivo de registro.0 para m\u00E1s informaci\u00F3n. invalid_export_file=Nombre del archivo de exportaci\u00F3n no v\u00E1lido invalid_file_msg=No se pudo encontrar el archivo para {0} invalid_or_ambiguous_reference=Referencia ambigua o inv\u00E1lida "{0}" invalid_uri=URI {0} no v\u00E1lida invalid_url=No se pudo crear una URL v\u00E1lida invalid_url_msg=No se pudo crear una URL v\u00E1lida para {0} ItalicAction.text=Cursiva italicise_branch=Poner en cursiva java_version=Versi\u00F3n de Java: {0} JoinNodesAction.separator.format=Unir nodos con "{0}" lastOpenedMaps=Mapas m\u00E1s recientes lastOpenedMaps.noActions=No hay mapas en el historial latex_editor=Editar f\u00F3rmula de LaTeX LatexDeleteLatexAction.text=Eliminar f\u00F3rmula de LaTeX LatexEditLatexAction.text=Editar f\u00F3rmula de LaTeX\u2026 LatexInsertLatexAction.msg1=Est\u00E1 intentando insertar una f\u00F3rmula de LaTex antigua.
La nueva forma para crear texto o f\u00F3rmulas de LaTeX se describe en esta p\u00E1gina: LatexInsertLatexAction.msg2=En resumen:
    \n
  • use un prefijo "\\latex " en el texto del nodo o
  • \n
  • \u201CVer" \u2192 \u201CPanel de herramientas\u201D, y luego \u201CTexto central\u201D \u2192 \u201CFormato\u201D \u2192 \u201CLatex\u201D
  • \n
LatexInsertLatexAction.text=A\u00F1adir f\u00F3rmula de LaTeX\u2026 latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=pulgadas LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px less_than_two_selected_nodes=Tiene que seleccionar al menos dos nodos para poder crear enlaces. license=Licencia: GPL 2 o posterior license_text=Este programa es software libre; puede redistribuirlo o
modificarlo bajo los t\u00E9rminos de la Licencia P\u00FAblica General GNU
como ha sido publicada por la Free Software Foundation; tanto la versi\u00F3n 2
de la licencia, o (a su elecci\u00F3n) cualquier versi\u00F3n posterior.

Este programa se distribuye con la esperanza de que sea \u00FAtil,
pero SIN NINGUNA GARANT\u00CDA; incluso sin la garant\u00EDa impl\u00EDcita para su
COMERCIALIZACI\u00D3N O IDONEIDAD PARA USO PARTICULAR. Lea la
Licencia P\u00FAblica General GNU para m\u00E1s detalles.

Deber\u00EDa haber recibido una copia de la Licencia P\u00FAblica General GNU
con este programa; si no es as\u00ED, escriba a la Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. link_error=Enlace incorrecto "{0}" no se carg\u00F3 link_not_available_any_more=El enlace ya no es v\u00E1lido. El nodo {0} fue borrado. link_not_found=Enlace {0} no encontrado. links=Enlace load=&Cargar load_accelerator_presets=Cargar load_accelerator_presets.noActions=No hay predefinidos LoadAcceleratorPresetsAction.textPatterns.text=Patrones de texto locking_failed_by_open=Fall\u00F3 el bloqueo del mapa {0}. Apertura como solo lectura. locking_failed_by_save_as=Fall\u00F3 el bloqueo del mapa {0}. Acci\u00F3n ''Guardar como'' cancelada. locking_old_lock_removed=El mapa {0} fue bloqueado por el usuario {1}. Se ha quitado ya que es de hace mucho tiempo. long_node_changed_cancel=Ha cambiado el nodo. \u00BFQuiere descartar los cambios? long_node_changed_submit=Ha cambiado el nodo. \u00BFDesea guardar los cambios? lots_of_links_warning=Va a crear muchos enlaces apuntando al mismo nodo. \u00BFRealmente quiere crear estos enlaces? main_menu=Men\u00FA main_resource_directory=Fuentes de instalaci\u00F3n: {0} MainView.errorUpdateText=Error al establecer el texto para la siguiente entrada: {0}:{1}. MakeLinkFromAnchorAction.text=Crear enlace de una etiqueta de ancla MakeLinkFromAnchorAction.tooltip=crear un enlace global o local del
nodo con etiqueta de ancla al nodo seleccionado MakeLinkToAnchorAction.text=Convertir enlace a etiqueta de ancla MakeLinkToAnchorAction.tooltip=crear un enlace global o local desde
nodo seleccionado al nodo con etiqueta de ancla ManageAddOnsAction.text=Complementos ManageAddOnsDialog.activate=Activar ManageAddOnsDialog.activation.success={0} se activar\u00E1 tras reiniciar. ManageAddOnsDialog.authored.by=por {0} ManageAddOnsDialog.cannot.activate=No se puede activar: {0} ya est\u00E1 activo. ManageAddOnsDialog.cannot.configure=No se puede configurar {0}. ManageAddOnsDialog.cannot.deactivate=No se puede desactivar: {0} no est\u00E1 activo. ManageAddOnsDialog.cannot.deinstall=No se puede desinstalar {0}. ManageAddOnsDialog.configure=Configurar ManageAddOnsDialog.deactivate=Desactivar ManageAddOnsDialog.deactivation.success={0} se desactivar\u00E1 tras reiniciar. ManageAddOnsDialog.deinstall=Desinstalar ManageAddOnsDialog.deinstallation.success={0} se desinstalar\u00E1 tras reiniciar. ManageAddOnsDialog.error=Error en la instalaci\u00F3n: {0}. ManageAddOnsDialog.install=&Instalar ManageAddOnsDialog.install.from.known.location=Instalar complemento de un origen conocido ManageAddOnsDialog.install.tooltip=Introducir la URL del archivo de instalaci\u00F3n del complemento ManageAddOnsDialog.map.not.opened=Parece que el mapa {0} no est\u00E1 abierto. ManageAddOnsDialog.really.deinstall=\u00BFDe verdad quiere desinstalar {0}? ManageAddOnsDialog.search=Buscar complementos ManageAddOnsDialog.search.file=Buscar ManageAddOnsDialog.select.tooltip=Seleccionar archivo ManageAddOnsDialog.status.downloading=Descargando archivo\u2026 ManageAddOnsDialog.status.installing=Instalando complemento\u2026 ManageAddOnsDialog.status.success=Se ha instalado correctamente {0}. ManageAddOnsDialog.tab.install=Buscar e instalar ManageAddOnsDialog.tab.install.tooltip=Buscar e instalar nuevos complementos ManageAddOnsDialog.tab.manage=Complementos ManageAddOnsDialog.tab.manage.themes=Temas ManageAddOnsDialog.tab.manage.themes.tooltip=Administrar temas instalados ManageAddOnsDialog.tab.manage.tooltip=Gestionar complementos instalados ManageAddOnsDialog.visit.addon.page=Visitar la p\u00E1gina de complementos\u2026 ManageConditionalStylesAction.text=Gestionar estilos condicionales para mapa ManageNodeConditionalStylesAction.text=Gestionar estilos condicionales para nodo map_already_exists=El mapa ya existe. \u00BFQuiere sobrescribirlo? map_background=Fondo del mapa map_background_image=Imagen de fondo map_corrupted=Mapa da\u00F1ado. \u00BFVer detalle? map_load_error=No se pudo cargar el mapa {0} map_locked_by_open=El mapa {0} est\u00E1 siendo editado por el usuario {1}. Apertura como solo lectura. map_locked_by_save_as=El mapa {0} est\u00E1 siendo editado por el usuario {1}. Acci\u00F3n Guardar como cancelada. map_not_saved=El mapa no fue guardado antes. MapBackgroundClearAction.text=Limpiar MapBackgroundColorAction.text=Color de fondo MapBackgroundImageAction.text=Imagen de fondo\u2026 maps=Mapas MaxNodeWidth.text=Establecer el ancho m\u00E1ximo del nodo menu_applyStyle=Aplicar estilo menu_attributes=&Atributos menu_clouds=Nubes menu_copy=Copiar menu_coreFormat=N\u00FAcleo del nodo menu_details=Detalles menu_displayAttributes=Atributos del nodo menu_encryption=Protecci\u00F3n con contrase\u00F1as menu_error=Error en la estructura del men\u00FA definido por el usuario {0}:\n{1}\nAbortando menu_extensions=Propiedades del nodo menu_group=Grupo del nodo menu_hoverView=Ayuda sobre herramientas menu_iconByCategory=Icono por categor\u00EDa\u2026 menu_iconView=Iconos menu_image=Imagen menu_insert=In&sertar menu_latex_formula=F\u00F3rmula de LaTeX menu_manageStyles=&Administrar estilos menu_moveNode=Mover y ordenar menu_newNode=Nuevo nodo menu_node=Nodo menu_node_features=Carac&ter\u00EDsticas del nodo menu_nodes=&Nodos menu_nodeView=N\u00FAcleo del nodo menu_noteView=Notas menu_openmaps=Mapas menu_remove_icons=Eliminar iconos menu_removeAttribute=Eliminar atributo menu_select=Seleccionar menu_time=Gesti\u00F3n del tiempo menu_title=N\u00FAcleo del nodo menu_viewmode=Ver ajustes MenuUtils.invalid_menuitem={0} no es un elemento de men\u00FA v\u00E1lido. mindmap=Mapa MindMapNodesFlavorHandler=Jerarqu\u00EDa de los nodos mindmaps=&Mapas mindmaps_desc=Mapas (*.mm) mindmaps_filter_desc=Filtros (*.mmfilter) MinNodeWidth.text=Establecer el ancho m\u00EDnimo del nodo mode_Browse=Modo de navegaci\u00F3n mode_File=Modo de archivo mode_MindMap=Modo de mapa mental mode_na=Modo no disponible mode_status=Modo cambiado a {0} mode_StyleMap=Edici\u00F3n del estilo mode_title=Freeplane - {0} modes=Modos ModesMenuAction.Browse.text=Navegador de mapas ModesMenuAction.File.text=Explorador de archivos ModesMenuAction.MindMap.text=Editor de mapa mental most_recent_files=Mapas m\u00E1s recientes MoveAction.text=Mover MoveSelectedNodeAction.CENTER.text=Centrar en el nodo seleccionado MoveSelectedNodeAction.EAST.text=Mueve el nodo seleccionado a la derecha MoveSelectedNodeAction.WEST.text=Mueve el nodo seleccionado a la izquierda MoveToRootAction.text=Ir a ra\u00EDz NameConditionAction.text=Establecer nombre navigate=&Navegar NavigationNextMapAction.text=Mapa siguiente NavigationPreviousMapAction.text=Mapa anterior new=&Nuevo new_map_from_user_templates.text=Nuevo mapa usando plantilla\u2026 new_mindmap=Nuevo mapa mental new_node=Nuevo nodo new_node_as_sibling_not_possible_for_the_root=No es posible un nuevo nodo como hermano para la ra\u00EDz new_version_available=Nueva versi\u00F3n ''{0}'' disponible NewChildAction.text=Nuevo nodo hijo NewerFileRevisionsFoundDialog.cancel=&Omitir NewerFileRevisionsFoundDialog.cancel.tooltip=No abrir este archivo NewerFileRevisionsFoundDialog.file_last_modified=Marca de tiempo NewerFileRevisionsFoundDialog.file_name=Archivo NewerFileRevisionsFoundDialog.file_size=Bytes NewerFileRevisionsFoundDialog.open=&Abrir NewerFileRevisionsFoundDialog.open.tooltip=Abrir el archivo aunque est\u00E9 desactualizado NewerFileRevisionsFoundDialog.question=\u00A1Encontradas revisiones m\u00E1s reciente de {0}! NewerFileRevisionsFoundDialog.restore=Rest&aurar NewerFileRevisionsFoundDialog.restore.tooltip=Cambiar {0} por {1} NewerFileRevisionsFoundDialog.title=\u00A1Encontradas revisiones de archivo m\u00E1s recientes! NewFreeNodeAction.text=Nuevo nodo flotante NewLevelStyleAction.text=A\u00F1adir estilo de nivel newmap.install.addon.question={0} parece que es un complemento\n\u00BFDesea instalarlo?\n(Seleccione "No" para abrirlo normalmente.) newmap.install.addon.title=\u00BFInstalar el complemento? NewMapAction.text=Nuevo mapa NewMapViewAction.text=Nueva vista de mapa NewParentNode.text=Nuevo nodo padre NewParentNode.tooltip=Todos los seleccionados son enviados a un nuevo nodo padre. NewPreviousSiblingAction.text=Nuevo nodo hermano anterior NewSiblingAction.text=Nuevo nodo hermano NewSummaryAction.text=Nuevo nodo sumario (nodos seleccionados) NewUserStyleAction.text=Nuevo estilo a partir de la selecci\u00F3n NextNodeAction.BACK.text=Ir a nodo anterior NextNodeAction.BACK_N_FOLD.text=Ir a nodo anterior (plegar) NextNodeAction.FORWARD.text=Ir al nodo siguiente NextNodeAction.FORWARD_N_FOLD.text=Ir al nodo siguiente (plegar) NextPresentationItemAction.text=Desplegar siguiente elemento de presentaci\u00F3n (plegar) no=No no_copy_attributes_before_paste_attributes=No puede pegar atributos hasta que haya copiado alguno. NO_FORMAT=Texto no_format_copy_before_format_paste=No puede pegar un formato hasta que haya copiado uno. no_found_from=No {0} encontrado en "{1}". no_more_found_from=No m\u00E1s {0} encontrado en "{1}". no_previous_find=No se encuentra ninguno anterior. no_styles_found_in_map=No se encontraron estilos en el mapa no_translation_strings_found=No se encontraron cadenas traducibles node=Nodo node_alias=Alias del nodo: node_changed_discard_changes=Ha cambiado el nodo. \u00BFQuiere descartar los cambios? node_is_write_protected=El nodo destino est\u00E1 protegido contra escritura. node_location_help=Al arrastrar se cambia el nodo de sitio, ctrl+arrastre cambia las distancias, doble clic y ctrl+doble clic lo deshacen. node_popup_scripting=Scripts node_selector=Selecci\u00F3n del nodo node_selector_message=Doble clic para seleccionar el nodo node_styles=Estilos de nodo NodeBackgroundColorAction.text=Color de fondo del nodo\u2026 NodeColorAction.text=Color del nodo\u2026 NodeColorBlendAction.text=Color de la mezcla NodeDownAction.text=Mover nodo (hermano abajo) NodeEnumerationAction.NodeVisibility.HIDDEN.text=Nodo oculto NodeEnumerationAction.NodeVisibilityConfiguration.SHOW_HIDDEN_NODES.text=Mostrar nodos ocultos NodeExtensions.EditNodeExtensions=Editar extensiones del nodo NodeExtensions.RemoveNodeExtensions=Eliminar extensiones del nodo NodeListAction.text=Buscar y reemplazar\u2026 NodeListAction.tooltip=Muestra todos los nodos como una lista de b\u00FAsqueda con propiedades de filtro. NodeShapeAction.bubble.text=Burbuja NodeShapeAction.fork.text=Bifurcaci\u00F3n NodeShapeAction.narrow_hexagon.text=Hex\u00E1gono achatado NodeShapeAction.oval.text=Ovalado NodeShapeAction.rectangle.text=Rect\u00E1ngulo NodeShapeAction.wide_hexagon.text=Hex\u00E1gono ancho NodeUpAction.text=Mover nodo (hermano arriba) nonboldify_branch=Quitar negrita nonitalicise_branch=Quitar cursiva normal=Normal not_saved_for_image_error=El mapa se debe guardar antes de que pueda escoger una imagen con el selector de archivos not_saved_for_link_error=El mapa debe ser guardado antes de establecer un enlace con el selector de archivos note_window_location=Posici\u00F3n del panel de nota notes=Nota NotFoldingNextPresentationItemAction.text=Desplegar el siguiente elemento de la presentaci\u00F3n NotificationOptions.CLOSE=Cerrar NotificationOptions.REMIND_ME_LATER=Recu\u00E9rdame despu\u00E9s NotificationOptions.REMOVE_REMINDER=Eliminar recordatorio NotificationOptions.SELECT_NODE=Ir a recordatorio ok=&OK OKAction.text=OK OldReminderListAction.text=Mostrar recordatorios pasados\u2026 OldReminderListAction.tooltip=Muestra las fechas de recordatorios pasados y los nodos correspondientes en todos los mapas abiertos. OnlineReference.text=Documentaci\u00F3n de mapas en l\u00EDnea open_asMindMap=Mapa mental OpenAction.text=Abrir mapa guardado\u2026 OpenApiDocumentationAction.text=API de Freeplane\u2026 OpenFreeplaneSiteAction.text=P\u00E1gina web de Freeplane OpenMapsAddLocation.text=A\u00F1adir ubicaci\u00F3n OpenMaps\u2026 OpenMapsRemoveLocation.text=Eliminar ubicaci\u00F3n OpenMaps OpenMapsViewLocation.text=Ver ubicaci\u00F3n OpenMaps\u2026 OpenPathAction.text=Abrir archivo OpenURLMapAction.text=Abrir mapa desde una URL\u2026 OpenUserDirAction.text=Abrir directorio de usuario option_changes_may_require_restart=Para ver el efecto de los ajustes modificados, probablemente deber\u00E1 reiniciar Freeplane. OptionalDontShowMeAgainDialog.cancel=&No OptionalDontShowMeAgainDialog.dontShowAgain=&No volver a preguntar. OptionalDontShowMeAgainDialog.ok=&S\u00ED OptionalDontShowMeAgainDialog.rememberMyDescision=&Recordar mi decisi\u00F3n. OptionPanel.absolute=Absoluto OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Patrones de estilo de nivel OptionPanel.ADD_CHILD=A\u00F1adir nodo hijo OptionPanel.ADD_SIBLING=A\u00F1adir nodo hermano OptionPanel.addons=Complementos OptionPanel.af=Afrik\u00E1ans OptionPanel.always_fold_all_after_load=Plegar todo OptionPanel.always_load_last_maps=Cargar \u00FAltimos mapas junto a mapas nuevos OptionPanel.always_load_last_maps.tooltip=Abrir los \u00FAltimos archivos establecidos por las opciones anteriores, incluso iniciar FreePlane con un mapa en concreto. OptionPanel.always_save_folding=Siempre OptionPanel.always_save_folding_state=Guardar siempre los cambios del estado de plegado OptionPanel.always_save_folding_state.tooltip=Si se marca, cada plegado ensuciar\u00E1 el mapa y le recordar\u00E1 que debe guardarlo. OptionPanel.always_show_less_than_N_nodes_after_load=Desplegar algunos nodos OptionPanel.always_unfold_all_after_load=Desplegar todo OptionPanel.antialias=Suavizado OptionPanel.antialias.tooltip=Determina la calidad del mapa. M\u00E1s suavizado necesita m\u00E1s tiempo. OptionPanel.antialias_all=Suavizar todo OptionPanel.antialias_edges=Suavizar bordes OptionPanel.antialias_none=Sin suavizado OptionPanel.antialias_svg=Suavizar SVGs OptionPanel.antialias_svg.tooltip=Determina la calidad de la representaci\u00F3n SVG. M\u00E1s suavizado necesita m\u00E1s tiempo. OptionPanel.Appearance=Apariencia OptionPanel.approximate_search_threshold=L\u00EDmite para la coincidencia aproximada OptionPanel.approximate_search_threshold.tooltip=L\u00EDmite para la coincidencia aproximada
mire http://freeplane.sf.net/wiki/index.php/Approximate_search
(cuanto m\u00E1s alto, menos variaciones
se encontrar\u00E1n del t\u00E9rmino de b\u00FAsqueda) OptionPanel.ar=\u00E1rabe / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Arco OptionPanel.as_parent=Como padre OptionPanel.ask=Preguntar OptionPanel.automatic=Autom\u00E1tico OptionPanel.automaticFormat_level=Aplicar estilos de nivel OptionPanel.automaticFormat_level1=Formato del nodo ra\u00EDz OptionPanel.automaticFormat_level2=Formato de nodos de nivel 1 OptionPanel.backup_file_number=N\u00FAmero de archivos de copia de seguridad conservados OptionPanel.Behaviour=Comportamiento OptionPanel.bezier=Curvado suavemente (bezier) OptionPanel.bg=b\u00FAlgaro / \u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 OptionPanel.border_color=Color OptionPanel.border_color_matches_edge_color=Usar color de borde OptionPanel.border_dash=Tipo de l\u00EDnea de borde OptionPanel.border_dash_matches_edge_dash=Usar tipo de l\u00EDnea del borde OptionPanel.border_width=Grosor de l\u00EDnea OptionPanel.border_width_matches_edge_width=Usar grosor de borde OptionPanel.bubble=Burbuja OptionPanel.ca=catal\u00E1n, valenciano / Catal\u00E1 OptionPanel.Cancel=Cancelar OptionPanel.center_selected_node=Centrar nodo seleccionado autom\u00E1ticamente OptionPanel.check_updates_automatically=Buscar actualizaciones al iniciar el programa OptionPanel.childpattern=Patr\u00F3n de hijo OptionPanel.childpattern.tooltip=El patr\u00F3n seleccionado se aplica a todos los hijos. OptionPanel.clear_all_setters=Cambiar todo OptionPanel.clear_all_setters.tooltip=Habilita o deshabilita todas las indicaciones de cambio. OptionPanel.cloud=Nube OptionPanel.cloudcolor=Color de nube OptionPanel.cloudshape=Forma de nube OptionPanel.combined=Combinado OptionPanel.compare_as_number=Comparar como n\u00FAmeros OptionPanel.compile_only_changed_script_files=Compilar solo archivos modificados OptionPanel.compile_only_changed_script_files.tooltip=Mantener archivos de clase ya compilados hasta que el archivo fuente cambie OptionPanel.compiled_script_cache_size=Tama\u00F1o de la cach\u00E9 para scripts y f\u00F3rmulas compiladas OptionPanel.connector_arrows=Flechas del conector OptionPanel.connector_dash=Tipo de linea OptionPanel.convert_to_current_version=\u00BFConvertir autom\u00E1ticamente mapas de versiones anteriores
de Freeplane a la versi\u00F3n actual? OptionPanel.convert_to_current_version.tooltip=Solo mapas muy grandes que no requieren conversi\u00F3n
(consejo de experto) se pueden abrir sin conversi\u00F3n previa. OptionPanel.copyFormatToNewSibling=Copiar formato a nuevos hermanos OptionPanel.copyFormatToNewSiblingIncludesIcons=Copiar formato con iconos OptionPanel.cs=checo / \u010Desky OptionPanel.cut_nodes_without_question=\u00BFCortar los nodos sin confirmaci\u00F3n? OptionPanel.cut_nodes_without_question.tooltip=Si esta casilla est\u00E1 marcada, los nodos se cortan sin pedir confirmaci\u00F3n. Esto puede causar p\u00E9rdida de informaci\u00F3n si se presiona sin intenci\u00F3n. OptionPanel.cut_out_pictures_when_pasting_html=Eliminar im\u00E1genes de HTML OptionPanel.da=dan\u00E9s / dansk OptionPanel.date_format=Formato de fecha est\u00E1ndar OptionPanel.date_format.tooltip=Cualquier SHORT, MEDIUM, LONG o FULL o un patr\u00F3n como "MM/dd/yyyy" OptionPanel.datetime_format=Formato de fecha-hora est\u00E1ndar OptionPanel.datetime_format.tooltip=Cualquier , (con SHORT, MEDIUM, LONG o FULL como estilo) o un patr\u00F3n completo como "M/d/yyyy hh:mm" OptionPanel.de=alem\u00E1n / Deutsch OptionPanel.default=Predeterminado OptionPanel.default_attribute_key_column_width=Ancho est\u00E1ndar del atributo clave OptionPanel.default_attribute_value_column_width=Ancho est\u00E1ndar del valor del atributo OptionPanel.default_browser_command_mac=Orden predeterminada del navegador para Mac OptionPanel.default_browser_command_mac.tooltip= y MAC: (\u00A1gracias a to Nick!) OptionPanel.default_browser_command_other_os=Orden predeterminada del navegador para otro OS OptionPanel.default_browser_command_other_os.tooltip= Esto es normalmente Linux: OptionPanel.default_browser_command_windows_9x=Orden predeterminada del navegador para 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_windows_nt=Orden predeterminada del navegador para 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_charset=Juego de caracteres OptionPanel.default_save_dir=Directorio de guardado predeterminado OptionPanel.Defaults=Predeterminados OptionPanel.delete_automatic_saves_at_exit=Borrar guardados autom\u00E1ticos al salir OptionPanel.delete_automatic_saves_at_exit.tooltip= Si los archivos deben ser borrados autom\u00E1ticamente en el apagado normal de Freeplane, establezca la siguiente variable en 'true' OptionPanel.delete_nodes_without_question=\u00BFBorrar nodos 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. OptionPanel.disable_cursor_move_paper.tooltip=No mostrar el cursor 'mover' durante el arrastre del papel OptionPanel.display_inline_editor_for_all_new_nodes=Mostrar el editor en l\u00EDnea para todos los nodos nuevos OptionPanel.display_node_id=Mostrar ID del nodo OptionPanel.edgecolor=Color del borde OptionPanel.edgecolor.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00E9n a todos los nodos hijos) OptionPanel.edgedash=Tipo de l\u00EDnea del borde OptionPanel.edgestyle=Estilo de borde OptionPanel.edgestyle.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00E9n a todos los nodos hijos) OptionPanel.edgewidth=Grosor de borde OptionPanel.edgewidth.tooltip=Propiedad del borde del nodo padre (se aplica tambi\u00E9n a todos los nodos hijos) OptionPanel.EDIT_CURRENT=Sobrescribir contenido OptionPanel.edit_on_double_click=Editar al hacer doble clic OptionPanel.editor_extra_width=Paso extraancho OptionPanel.editor_extra_width.tooltip=Determina el n\u00FAmero de p\u00EDxeles para incrementar el ancho de un nodo si el texto supera el ancho actual. OptionPanel.el=griego / \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Botones en la parte superior OptionPanel.el__enter_confirms_by_default=Retorno confirma por defecto OptionPanel.el__max_default_window_height=Altura de ventana m\u00E1xima predeterminada OptionPanel.el__max_default_window_width=Ancho de ventana m\u00E1ximo predeterminado OptionPanel.el__min_default_window_height=Altura de ventana m\u00EDnima predeterminada OptionPanel.el__min_default_window_width=Ancho de ventana m\u00EDnimo predeterminado OptionPanel.el__position_window_below_node=Situar ventana debajo del nodo OptionPanel.en=ingl\u00E9s / English OptionPanel.Environment=Entorno OptionPanel.es=espa\u00F1ol, castellano / espa\u00F1ol, castellano OptionPanel.et=estonio / eesti, eesti keel OptionPanel.eu=Vasco OptionPanel.execute_scripts_without_asking=Ejecuci\u00F3n de script habilitada OptionPanel.execute_scripts_without_asking.tooltip=Los scripts de Freeplane son capaces de realizar cualquier acci\u00F3n en su ordenador.
Por tanto, no deber\u00EDa ejecutar aquellos de los que no est\u00E9 seguro de su uso. OptionPanel.execute_scripts_without_exec_restriction=Permitir ejecutar otras aplicaciones (no recomendado) OptionPanel.execute_scripts_without_exec_restriction.tooltip=Si sus scripts de Groovy necesitan ejecutar alguna otra aplicaci\u00F3n especial (como un navegador) sin pedir confirmaci\u00F3n(!),
debe activar esta opci\u00F3n.
\u00A1Pero \u00FAsela con cuidado, ya que scripts maliciosos pueden da\u00F1ar su ordenador! OptionPanel.execute_scripts_without_file_restriction=Permitir operaciones de archivo/lectura (no recomendado) OptionPanel.execute_scripts_without_file_restriction.tooltip=Si sus scripts de Groovy necesitan permisos de lectura (abrir, cerrar, leer),
debe activar esta opci\u00F3n.
\u00A1Pero \u00FAsela con cuidado, ya que scripts maliciosos pueden da\u00F1ar su ordenador! OptionPanel.execute_scripts_without_network_restriction=Permitir operaciones de red (no recomendado) OptionPanel.execute_scripts_without_network_restriction.tooltip=Si sus scripts de Groovy necesitan trabajar en red,
debe habilitar esta opci\u00F3n.
\u00A1Pero \u00FAsela con cuidado, ya que los scripts da\u00F1inos pueden revelar contenidos de su ordenador! OptionPanel.execute_scripts_without_write_restriction=Permitir operaciones de archivo/escritura (no recomendado) OptionPanel.execute_scripts_without_write_restriction.tooltip=Si sus scripts de Groovy necesitan permisos de escritura de archivos (escribir, \u00A1borrar!),
debe activar esta opci\u00F3n.
Se suele utilizar con permisos de lectura.
\u00A1Pero \u00FAsela con cuidado, ya que scripts maliciosos pueden da\u00F1ar su ordenador! OptionPanel.experimental_file_locking_on=Bloqueo experimental de archivos OptionPanel.experimental_file_locking_on.tooltip= Caracter\u00EDstica experimental OptionPanel.export_icons_in_html=Exportar iconos en Html OptionPanel.export_icons_in_html.tooltip= Indique si el HTML exportado de Freeplane debe contener iconos. El problema con los iconos es que, bastante a menudo, los enlaces a iconos no pueden ser encontrados en el HTML exportado. OptionPanel.exported_image_resolution_dpi=Resoluci\u00F3n de imagen exportada (en ppp) OptionPanel.Files=Archivos OptionPanel.first=Primero OptionPanel.fit_to_viewport=Ajustar imagen de fondo a ventana OptionPanel.fold_on_click_inside=Plegar al hacer clic dentro OptionPanel.foldingsymbolwidth=Ancho del s\u00EDmbolo de plegado OptionPanel.foldingsymbolwidth.tooltip=Ancho del c\u00EDrculo que indica el plegado OptionPanel.fork=Bifurcaci\u00F3n OptionPanel.format_locale=Idioma para formatos OptionPanel.format_locale.tooltip=Ajuste de localizaci\u00F3n para el formateo y an\u00E1lisis de datos OptionPanel.formula_disable_caching=Deshabilitar la cach\u00E9 para evaluaci\u00F3n de f\u00F3rmulas OptionPanel.formula_disable_plugin=Deshabilitar la evaluaci\u00F3n de f\u00F3rmulas OptionPanel.fr=franc\u00E9s / Fran\u00E7ais OptionPanel.gl=gallego / Galego OptionPanel.goto_note_end_on_edit=Mover el cursor de la nota al final OptionPanel.grid_size=Tama\u00F1o del espacio de la cuadr\u00EDcula OptionPanel.groovy_editor_font=Fuente para el editor de resaltado de sintaxis de Groovy OptionPanel.groovy_editor_font.tooltip=\u00A1Use 'Dialog' o 'Monospaced' si necesita caracteres Unicode! OptionPanel.groovy_editor_font_size=Tama\u00F1o de fuente para el editor de resaltado de sintaxis de Groovy OptionPanel.gtk=Gtk OptionPanel.hi=Hindi / \u0939\u093F\u0928\u094D\u0926\u0940 OptionPanel.hide_edge=Ocultar borde OptionPanel.hide_single_end_connectors=Ocultar conectores de un solo extremo OptionPanel.highlight_formulas=Resaltar f\u00F3rmulas OptionPanel.horizontal=Horizontal OptionPanel.hr=croata / hrvatski OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=Basado en encabezados OptionPanel.html_export_fold_all=Plegar todo OptionPanel.html_export_fold_currently_folded=Plegar lo actualmente plegado OptionPanel.html_export_folding=Plegado de exportaci\u00F3n HTML OptionPanel.html_export_no_folding=Sin plegar OptionPanel.hu=h\u00FAngaro / Magyar OptionPanel.ic_disable=Deshabilitar OptionPanel.ic_file=Usar disco OptionPanel.ic_ram=En RAM OptionPanel.icon=Icono OptionPanel.icon.tooltip=Si se aplica, el nodo tendr\u00E1 exactamente este icono. OptionPanel.icon_size=Tama\u00F1o de icono OptionPanel.icons.list=Listado de los Iconos est\u00E1ndares mostrados OptionPanel.icons.list.tooltip=Aqu\u00ED puede ordenar o deshabilitar los iconos est\u00E1ndares. Los iconos deben separarse por un ';'. OptionPanel.id=indonesio / Bahasa Indonesia OptionPanel.IGNORE=No hacer nada OptionPanel.ignore_unassigned_f_keys=Ignorar teclas de funci\u00F3n no asignadas OptionPanel.il__enter_confirms_by_default=Retorno confirma por defecto OptionPanel.image_cache=para im\u00E1genes OptionPanel.indentationUsesTabsInTextOutput=Usar tabulaciones en la salida de texto OptionPanel.it=italiano / Italiano OptionPanel.ja=japon\u00E9s / \u65E5\u672C\u8A9E OptionPanel.JoinNodesAction.textSeparators=Separador de texto OptionPanel.key_type_action=Al escribir OptionPanel.Keystrokes=Combinaciones de teclado OptionPanel.kn=canar\u00E9s / \u0C95\u0CA8\u0CCD\u0CA8\u0CA1 OptionPanel.ko=coreano / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Familia de la fuente OptionPanel.label_font_size=Tama\u00F1o de fuente OptionPanel.language=Idioma OptionPanel.language.tooltip=Este es el idioma que debe usarse en el programa. 'Autom\u00E1tico' intenta cargar el idioma actual del usuario. OptionPanel.last=\u00DAltimo OptionPanel.last_opened_list_length=Longitud del listado de \u00FAltimos archivos abiertos OptionPanel.latex_disable_editor=Deshabilitar editor de resaltado de sintaxis de LaTex OptionPanel.latex_disable_editor.tooltip=Marque esta opci\u00F3n si tiene problemas con el editor de LaTeX OptionPanel.latex_editor_font=Fuente para el editor de resaltado de sintaxis de LaTex OptionPanel.latex_editor_font.tooltip=\u00A1Use 'Dialog' o 'Monospaced' si necesita caracteres Unicode! OptionPanel.latex_editor_font_size=Tama\u00F1o de fuente para el editor de resaltado de sintaxis de LaTex OptionPanel.latex_macros=Macros de LaTeX comunes OptionPanel.layout_map_on_text_change=Mapa de dise\u00F1o durante la edici\u00F3n OptionPanel.layout_map_on_text_change.tooltip=Deshabilitar para mejorar el rendimiento OptionPanel.linear=Lineal OptionPanel.links=Enlaces OptionPanel.links.tooltip=Establecer enlaces, ya sean relativos o absolutos OptionPanel.load_folding=Cargando OptionPanel.load_folding_from_map_default_fold_all=Cargar desde mapa o plegar todo OptionPanel.load_folding_from_map_default_unfold_all=Cargar desde mapa o desplegar todo OptionPanel.load_last_map=Abrir autom\u00E1ticamente el \u00FAltimo mapa OptionPanel.load_last_map.tooltip=Si est\u00E1 marcado, cuando Freeplane se inicia, carga autom\u00E1ticamente el \u00FAltimo mapa abierto. OptionPanel.load_last_maps=Cargar todos los \u00FAltimos mapas OptionPanel.lookandfeel=Estilo y apariencia OptionPanel.lookandfeel.scaleuifonts=Escalar fuentes UI OptionPanel.lookandfeel.scaleuifonts.tooltip=\u00DAtil para pantallas de alta densidad OptionPanel.lookandfeel.tooltip=El estilo y apariencia (L&F) que se utilizar\u00E1. Est\u00E1n soportados 'metal', 'windows', 'motif' y 'gtk', 'mac' est\u00E1 disponible solamente en macOS. Por defecto significa que se usa el estilo y apariencia predeterminado. Si desea utilizar su propio L&F, por favor, ponga el nombre de la clase y aseg\u00FArese de que los archivos jar correspondientes est\u00E1n cargados. Si hay problemas con el L&F, entonces elija 'nada' . Funciona con los applets. OptionPanel.lt=lituano / kalba OptionPanel.markClones=Pintar marcas de clones OptionPanel.markSelectedClones=Pintar marcas de clones por selecci\u00F3n OptionPanel.max_displayed_node_count=N\u00FAmero m\u00E1ximo de nodos mostrados OptionPanel.max_image_width=M\u00E1ximo inicial del ancho de la imagen OptionPanel.max_image_width.tooltip=Las nuevas im\u00E1genes se ajustar\u00E1n a este ancho OptionPanel.max_menu_item_count=N\u00FAmero m\u00E1ximo de elementos del men\u00FA OptionPanel.max_menu_item_count.tooltip=Limita el n\u00FAmero de elementos en un submen\u00FA, al menos 10 OptionPanel.max_node_width=Ancho m\u00E1ximo del nodo OptionPanel.max_shortened_text_length=Ancho m\u00E1ximo de texto abreviado OptionPanel.menuItemFontSize=Tama\u00F1o de fuente de elemento del men\u00FA OptionPanel.metal=Metal OptionPanel.min_node_width=Ancho m\u00EDnimo del nodo OptionPanel.monitor_size_inches=Tama\u00F1o de monitor (pulgadas) OptionPanel.motif=Motivo OptionPanel.narrow_hexagon=Hex\u00E1gono estrecho OptionPanel.nb=bokm\u00E5l noruego / Norsk bokm\u00E5l OptionPanel.never_save_folding=Nunca OptionPanel.neverShowSurvey=No mostrar nunca preguntas, encuestas o consejos OptionPanel.nl=holand\u00E9s, flamenco / Nederlands, Vlaams OptionPanel.nn=nynorsk noruego / Norsk nynorsk OptionPanel.nodebackgroundcolor=Fondo OptionPanel.nodebackgroundcolor.tooltip=El fondo del nodo cuando no est\u00E1 seleccionado. OptionPanel.nodecolor=Texto OptionPanel.nodecolor.tooltip=El color del texto del nodo cuando no est\u00E1 seleccionado. OptionPanel.nodefontbold=Negrita OptionPanel.nodefonthyperlink=Hiperenlace OptionPanel.nodefontitalic=Cursiva OptionPanel.nodefontname=Familia de la fuente OptionPanel.nodefontsize=Tama\u00F1o de fuente OptionPanel.nodefontstrikethrough=Tachar OptionPanel.nodeformat=Formato OptionPanel.nodeformat.tooltip=Reemplazo o formateo del texto:
  • Ampliaci\u00F3n de plantilla (%s es el texto original), p. e. PRECAUCI\u00D3N: %s
  • Formato de fechas y n\u00FAmeros - v\u00E9anse los ejemplos en la caja de selecci\u00F3n
OptionPanel.nodenumbering=Numeraci\u00F3n del nodo OptionPanel.nodenumbering.tooltip=A\u00F1adir n\u00FAmero de serie (p .e., 1.3.1) al texto del nodo. OptionPanel.nodeshape=Forma del nodo OptionPanel.nodetext=Texto del n\u00FAcleo OptionPanel.nodetext.tooltip=Aqu\u00ED puede definir c\u00F3mo el texto del nodo. El texto anterior se descartar\u00E1 cuando una vez que se aplique este patr\u00F3n. OptionPanel.nothing=Nada OptionPanel.number_format=Formato de n\u00FAmero est\u00E1ndar OptionPanel.number_format.tooltip=Patr\u00F3n que contiene '#' para n\u00FAmeros opcionales o '0' para n\u00FAmeros obligatorios. Ejemplos: "0.00", "0.0%", "$#.00", "#0" OptionPanel.number_of_different_files_for_automatic_save=N\u00FAmero de archivos diferentes para guardado autom\u00E1tico OptionPanel.number_of_different_files_for_automatic_save.tooltip= n\u00FAmero n de archivos diferentes para almacenar los mapas. El primer guardado autom\u00E1tico se realiza en el primer archivo, y as\u00ED hasta el guardado n+1, a partir del cual se vuelve a guardar de forma c\u00EDclica en el primer archivo OptionPanel.oc=occitano OptionPanel.OK=Guardar OptionPanel.org.freeplane.plugin.bugreport=Norma OptionPanel.org.freeplane.plugin.bugreport.allowed=Enviar siempre OptionPanel.org.freeplane.plugin.bugreport.ask=Mostrar la ventana de di\u00E1logo para el informe OptionPanel.org.freeplane.plugin.bugreport.denied=Nunca enviar OptionPanel.org.freeplane.plugin.bugreport.userid=Identificador opcional para ser enviado OptionPanel.org.freeplane.plugin.svg.export.pdf.convert_text_to_shapes=Convertir texto a figuras en PDF exportado OptionPanel.org.freeplane.plugin.svg.export.svg.embed_fonts=Incrustar fuentes en svg OptionPanel.outline_hgap=Distancia horizontal OptionPanel.outline_vgap=Distancia vertical OptionPanel.outline_view_fits_window_width=Vista de esquema ajustada al ancho de ventana OptionPanel.oval=Ovalado OptionPanel.paint_connectors_behind=Dibujar los conectores detr\u00E1s de los nodos OptionPanel.parse_data=Reconoce la entrada de n\u00FAmeros y fecha-hora OptionPanel.parse_data.tooltip=Intente analizar la entrada de fechas, fecha-hora y n\u00FAmeros y use formatos est\u00E1ndares. Ejemplos: 100,000.00, 12/31, 12/31/99, 1999-12-31 y 1999-12-31 23:59 OptionPanel.parse_formulas=Reconocer f\u00F3rmulas OptionPanel.parse_formulas.tooltip=Analizar f\u00F3rmulas en nodos que comiencen con un signo igual ("="): v\u00E9ase http://www.freeplane.org/wiki/index.php/Formulas OptionPanel.parse_latex=Reconocer LaTex OptionPanel.parse_latex.tooltip=Reconocer f\u00F3rmulas LaTeX por formato o prefijo: v\u00E9ase http://www.freeplane.org/wiki/index.php/LaTeX_in_Freeplane. OptionPanel.PASTE_HTML=Pegar como HTML OptionPanel.PASTE_PLAIN_TEXT=Pegar como texto simple OptionPanel.pasteImagesFromFiles=Pegar im\u00E1genes desde archivos OptionPanel.pasteImagesFromFiles.tooltip=Insertar imagen si el archivo de imagen se coloca en el mapa OptionPanel.path_property_may_not_be_empty=\u00A1La propiedad de ruta no puede estar vac\u00EDa! El cambio ha sido revertido. OptionPanel.patternname=Nombre OptionPanel.patternname.tooltip=Nombre de patr\u00F3n \u00FAnico OptionPanel.pl=polaco / polski OptionPanel.placenewbranches=Ubicar ramas nuevas OptionPanel.placenewbranches.tooltip=Donde ubicar nuevas ramas. Valores v\u00E1lidos son 'primero' y '\u00FAltimo' OptionPanel.plugin.tooltip=Extensiones que no son del n\u00FAcleo. OptionPanel.plugins=Extensiones OptionPanel.Presentation=Presentaci\u00F3n OptionPanel.presentation.combineAll=Combinar todas las presentaciones OptionPanel.presentation.exportDirectory=Nombre del directorio de presentaciones exportado OptionPanel.presentation.maxDropBoxRowCount=N\u00FAmero m\u00E1ximo de filas en el cuadro desplegable OptionPanel.presentation.maxDropBoxRowCount.tooltip=Se aplica a selectores de presentaci\u00F3n y diapositiva OptionPanel.presentation.processesEscapeKey=Tecla ESCAPE termina la presentaci\u00F3n OptionPanel.presentation.processesNavigationKeys=Las teclas de navegaci\u00F3n controlan la presentaci\u00F3n OptionPanel.presentation.slideDisplaysAllNodes=Desplegar autom\u00E1ticamente todos los nodos de diapositiva OptionPanel.presentation.slowMotion=C\u00E1mara lenta OptionPanel.presentation.switchToFullScreen=Activar pantalla completa OptionPanel.presentation.switchToSpotlight=Activar foco OptionPanel.presentation.zoom=Usar zum del mapa OptionPanel.printonwhitebackground=Fondo blanco para impresi\u00F3n OptionPanel.printonwhitebackground.tooltip=Siempre usar fondo blanco para impresi\u00F3n OptionPanel.pt_BR=portugu\u00E9s (Brasil) / Portugu\u00EAs (Brasil) OptionPanel.pt_PT=portugu\u00E9s (Portugal) / Portugu\u00EAs (Portugal) OptionPanel.RECT=Rect\u00E1ngulo OptionPanel.rectangle=Rect\u00E1ngulo OptionPanel.relative=Relativo OptionPanel.remind_type_of_new_nodes.tooltip="Preguntar" siempre preguntar\u00E1 (usar en caso de duda).
"S\u00ED" muestra el editor de texto enriquecido.
"No" muestra el editor de texto simple. OptionPanel.remind_use_rich_text_in_new_nodes=Usar texto enriquecido para nodos pegados OptionPanel.reminder.showPastRemindersOnStart=Mostrar recordatorios pasados OptionPanel.remindersBlink=Recordatorios parpadean OptionPanel.remindersShowNotifications=Recordatorios muestran notificaciones emergentes OptionPanel.remindersStandardDelay=Retraso de recordatorio OptionPanel.remove_notes_without_question=\u00BFEliminar las notas sin preguntar? OptionPanel.remove_notes_without_question.tooltip=Si se marca esta casilla, las notas que correspondan a los nodos seleccionados se eliminar\u00E1n sin confirmaci\u00F3n. Esto puede provocar p\u00E9rdidas de informaci\u00F3n si se presiona sin intenci\u00F3n. OptionPanel.resources_use_default_font_for_notes_too=Usar fuente predeterminada tambi\u00E9n para notas OptionPanel.resources_use_margin_top_zero_for_notes=Eliminar el margen superior para notas OptionPanel.revision_color=Color de revisi\u00F3n OptionPanel.revision_color.tooltip=Color de fondo para los nodos modificados. OptionPanel.ROUND_RECT=Rect\u00E1ngulo redondeado OptionPanel.ru=ruso / \u0420\u0443\u0441\u0441\u043A\u0438\u0439 OptionPanel.save_folding=Guardar el estado de plegamiento OptionPanel.save_folding_if_map_is_changed=Si el mapa es modificado OptionPanel.save_last_visited_node=Guardar \u00FAltima posici\u00F3n en el mapa OptionPanel.save_modification_times=Guardar cada modificaci\u00F3n OptionPanel.script_classpath=Ruta de clase para script: directorios adicionales que contienen clases o JARs (v\u00E9ase informaci\u00F3n de herramienta) OptionPanel.script_classpath.tooltip=Una lista de JARs o directorios para a\u00F1adir a la ruta de clase de scripts y f\u00F3rmulas.
Use ; (Windows) o : (Linux, Mac) para separar entradas.
Los directorios ser\u00E1n escaneados para encontrar archivos JARs y .class.
Las rutas que no sean absolutas se considerar\u00E1n relativas al directorio del usuario de Freeplane.
\u00A1Si establece la ruta de clase, \u00A1debe tener tambi\u00E9n permisos de lectura! OptionPanel.script_compilation_disabled_extensions=Extensiones de archivo que no deben ser compiladas (v\u00E9ase informaci\u00F3n de herramienta) OptionPanel.script_compilation_disabled_extensions.tooltip=Si todos los scripts de un lenguaje adicionalmente instalado (excepto
Groovy y JavaScript) presentan un error general de compilaci\u00F3n,
trate de a\u00F1adir la extensi\u00F3n del archivo aqu\u00ED (lista separada por comas). OptionPanel.script_directories=Ruta de b\u00FAsqueda de script (v\u00E9ase informaci\u00F3n de herramienta) OptionPanel.script_directories.tooltip=Una lista de directorios (adicionales al directorio "scripts").
Use ; (Windows) o : (Linux, Mac) para separar entradas.
Las rutas que no son absolutas se considerar\u00E1n relativas al directorio del usuario de Freeplane. OptionPanel.script_user_key_name_for_signing=Alias de usuario opcional para firmar OptionPanel.script_user_key_name_for_signing.tooltip=Si quiere firmar sus scripts, introduce aqu\u00ED el alias de la clave.
Se supone que estar\u00E1 en el almac\u00E9n de claves.
La contrase\u00F1a de la clave debe coincidir con la que tiene en el almac\u00E9n (esto es lo predeterminado). OptionPanel.scrollbar_increment=Velocidad OptionPanel.scrolling_speed=Velocidad de desplazamiento autom\u00E1tica del mapa OptionPanel.scrollOnUnfold=Desplazar mapa tras desplegar un nodo OptionPanel.selection_method=M\u00E9todo de selecci\u00F3n OptionPanel.selection_method.tooltip= con el siguiente selector puede habilitar o deshabilitar el esquema de selecci\u00F3n retardado. Opciones autom\u00E1ticas. No modificar \u00E9stas mientras est\u00E9n guardadas en auto.properties de cualquier manera. OptionPanel.selection_method_by_click=Por clic OptionPanel.selection_method_delayed=Retardado OptionPanel.selection_method_direct=Directo OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Patrones OptionPanel.separator.anti_alias=Suavizado OptionPanel.separator.attributes=Atributos OptionPanel.separator.automatic_save=Guardado autom\u00E1tico OptionPanel.separator.behaviour=Comportamiento OptionPanel.separator.browser=Navegador OptionPanel.separator.cache=Cach\u00E9 OptionPanel.separator.clones=Copias id\u00E9nticas OptionPanel.separator.cloud=Nube OptionPanel.separator.CloudControls=Nubes OptionPanel.separator.commands_for_the_program=\u00D3rdenes para el programa OptionPanel.separator.connectors=Conectores OptionPanel.separator.data_formats=Formateo y an\u00E1lisis de los datos OptionPanel.separator.default_colors=Colores predeterminados OptionPanel.separator.default_fonts=Fuentes predeterminadas OptionPanel.separator.default_styles=Estilos predeterminados OptionPanel.separator.EdgeControls=Bordes OptionPanel.separator.edit_long_node_window=Editar en ventana de di\u00E1logo OptionPanel.separator.editing=Ajustes del editor OptionPanel.separator.export=Exportar OptionPanel.separator.files=Archivos OptionPanel.separator.formula=F\u00F3rmulas OptionPanel.separator.General=General OptionPanel.separator.html_export=Exportaci\u00F3n de HTML OptionPanel.separator.html_import=Importaci\u00F3n de HTML OptionPanel.separator.hyperlink_types=Tipos de hiperenlaces OptionPanel.separator.icon_properties=Iconos OptionPanel.separator.IconControls=Iconos OptionPanel.separator.icons=Iconos en "Seleccionar icono..." OptionPanel.separator.Icons=Iconos OptionPanel.separator.initial_map_size=Tama\u00F1o inicial del mapa OptionPanel.separator.inline_editor=Editor de nodos en la l\u00EDnea OptionPanel.separator.JoinNodesAction=Unir nodos OptionPanel.separator.key_typing=Pulsaci\u00F3n de teclas OptionPanel.separator.language=Idioma OptionPanel.separator.latex=LaTeX OptionPanel.separator.load=Cargar OptionPanel.separator.look_and_feel=Estilo y apariencia OptionPanel.separator.mouse_wheel=Rueda del rat\u00F3n OptionPanel.separator.new_node_commands=Nuevas \u00F3rdenes de nodo OptionPanel.separator.node_editing_commands=\u00D3rdenes de edici\u00F3n de nodos OptionPanel.separator.node_navigation_commands=\u00D3rdenes de navegaci\u00F3n de nodos OptionPanel.separator.NodeBorder=Borde de nodo OptionPanel.separator.NodeColors=Color de todo el n\u00FAcleo OptionPanel.separator.NodeFont=Fuente de todo el n\u00FAcleo OptionPanel.separator.NodeShape=Forma del nodo OptionPanel.separator.NodeStyle=Estilo de nodo OptionPanel.separator.NodeText=Texto del n\u00FAcleo OptionPanel.separator.notifications=Confirmaciones OptionPanel.separator.org.freeplane.plugin.bugreport=Informar autom\u00E1ticamente de fallos OptionPanel.separator.other_defaults=Otros predeterminados OptionPanel.separator.others=Otros enlaces clave OptionPanel.separator.outline_view=Vista de esquema OptionPanel.separator.patterns=Patrones OptionPanel.separator.presentation=Presentaci\u00F3n OptionPanel.separator.reminderOptions=Opciones de recordatorio OptionPanel.separator.RichTextEditor=Editor de texto enriquecido OptionPanel.separator.root_node_appearance=Apariencia del nodo ra\u00EDz OptionPanel.separator.save=Guardar OptionPanel.separator.scripting=Scripting OptionPanel.separator.scrollbar=Barra de desplazamiento OptionPanel.separator.search=B\u00FAsqueda OptionPanel.separator.selection_colors=Colores de selecci\u00F3n OptionPanel.separator.selection_method=M\u00E9todo de selecci\u00F3n OptionPanel.separator.single_instance_mode=Instancia \u00FAnica de programa OptionPanel.separator.size_limits=L\u00EDmites de tama\u00F1o OptionPanel.separator.spelling=Opciones del corrector ortogr\u00E1fico OptionPanel.separator.SplitToWordsAction=Dividir nodo en palabras OptionPanel.separator.status=L\u00EDnea de estado OptionPanel.separator.surveys=Encuestas OptionPanel.separator.svg_icons=Iconos SVG OptionPanel.separator.tooltip=Informaciones de herramienta OptionPanel.separator.undo=Deshacer OptionPanel.separator.updates=Programar actualizaciones OptionPanel.set_property_text=Cambiar OptionPanel.set_property_text.tooltip=Marque para cambiar esta propiedad de estilo OptionPanel.setscript=\u00BFCambiar? OptionPanel.setscript.tooltip=Se puede asociar un script al estilo. OptionPanel.shape_horizontal_margin=Margen horizontal OptionPanel.shape_vertical_margin=Margen vertical OptionPanel.sharp_bezier=Curvado puntiagudo (bezier) OptionPanel.sharp_linear=Lineal puntiagudo OptionPanel.shouldCenterSmallMaps=Centrar mapas peque\u00F1os OptionPanel.show_connectors=Mostrar l\u00EDneas del conector OptionPanel.show_connectors.false=solo flechas OptionPanel.show_connectors.for_selection=por selecci\u00F3n OptionPanel.show_connectors.never=nunca OptionPanel.show_connectors.true=siempre OptionPanel.show_creation_modification_in_status=Mostrar fechas de modificaci\u00F3n en la l\u00EDnea de estado OptionPanel.show_creation_modification_in_tooltip=Mostrar fechas de modificaci\u00F3n en informaci\u00F3n sobre herramienta OptionPanel.show_icon_for_attributes=Mostrar Icono para atributos OptionPanel.show_icons=Mostrar iconos OptionPanel.show_less_than_N_nodes_by_default_after_load=Cargar desde mapa o desplegar algunos nodos OptionPanel.show_node_tooltips=Mostrar informaci\u00F3n sobre herramientas OptionPanel.show_note_icon_in_tooltip=Mostrar icono de notas en informaci\u00F3n sobre herramienta OptionPanel.show_note_icons=Mostrar iconos de notas OptionPanel.show_styles_in_tooltip=Mostrar estilos de nodo en informaci\u00F3n sobre herramienta OptionPanel.signed_script_are_trusted=Confiar en scripts firmados (recomendado) OptionPanel.signed_script_are_trusted.tooltip=Si los scripts los firma alguien de confianza (es decir, los autores de Freeplane o usted), se ejecutar\u00E1n sin restricciones. OptionPanel.simplyhtml.default_paste_mode=Modo de pegado predeterminado OptionPanel.single_backup_directory=Usar un \u00FAnico directorio para archivos de copia de seguridad OptionPanel.single_backup_directory.tooltip= Si los archivos de copias de seguridad y guardados autom\u00E1ticos deben ubicarse en un directorio \u00FAnico en lugar de en un subdirectorio dentro del directorio donde est\u00E1 el mapa. OptionPanel.single_backup_directory_path=Directorio de copias de seguridad (si la opci\u00F3n anterior se ha marcado) OptionPanel.single_backup_directory_path.tooltip=Anula el directorio predeterminado <freeplaneuserdir>/.backup OptionPanel.single_instance=Abrir archivos en una instancia en ejecuci\u00F3n OptionPanel.single_instance_force=Evitar una segunda instancia en cualquier caso OptionPanel.single_instance_force.tooltip=Evitar una segunda instancia incluso si no hay archivo que cargar OptionPanel.sk=eslovaco / sloven\u010Dina OptionPanel.skip_template_selection=Omitir di\u00E1logo de selecci\u00F3n de plantilla OptionPanel.sl=esloveno / sloven\u0161\u010Dina OptionPanel.slow_scroll_selected_node=Desplazar nodo seleccionado suavemente OptionPanel.spelling_opt_case_sensitive=Distinguir may\u00FAsculas/min\u00FAsculas OptionPanel.spelling_opt_ignore_all_caps_words=Ignorar todas las palabras en may\u00FAscula. OptionPanel.spelling_opt_ignore_capitalization=Ignorar letras en may\u00FAsculas al principio de palabra OptionPanel.spelling_opt_ignore_words_with_numbers=Ignorar palabras con n\u00FAmeros OptionPanel.spelling_opt_suggestions_limit_dialog=N\u00FAmero m\u00E1ximo de sugerencias en la ventana de di\u00E1logo OptionPanel.spelling_opt_suggestions_limit_menu=N\u00FAmero m\u00E1ximo de sugerencias en el men\u00FA OptionPanel.SplitToWordsAction.auxiliaryWordList=lista auxiliar de palabras OptionPanel.SplitToWordsAction.charactersAcceptedInWord=Caracteres en palabras OptionPanel.SplitToWordsAction.leaveOriginalNodeEmpty=Dejar nodo original vac\u00EDo OptionPanel.SplitToWordsAction.nodeNumbersInLine=N\u00FAmero de nodo en fila OptionPanel.SplitToWordsAction.saveOriginalTextAsDetails=guardar texto original como detalles OptionPanel.spotlight=Foco OptionPanel.spotlight_background_color=Color de fondo del foco OptionPanel.sr=serbio / \u0441\u0440\u043F\u0441\u043A\u0438 OptionPanel.standard_template=Archivo de plantilla est\u00E1ndar OptionPanel.standardbackgroundcolor=Color de fondo est\u00E1ndar OptionPanel.standardbackgroundcolor.tooltip=El color de fondo est\u00E1ndar en notaci\u00F3n html OptionPanel.standardcloudcolor=Color est\u00E1ndar de nube OptionPanel.standardcloudcolor.tooltip=El color est\u00E1ndar de nube en notaci\u00F3n html OptionPanel.standardcloudestyle=Estilo est\u00E1ndar de nube OptionPanel.standardcloudestyle.tooltip=El estilo est\u00E1ndar de nube. OptionPanel.standardcloudshape=Forma est\u00E1ndar de nube OptionPanel.standarddrawrectangleforselection=Mostrar nodos seleccionados en burbujas OptionPanel.standarddrawrectangleforselection.tooltip=Marcar los nodos seleccionados mediante una burbuja envolvente. OptionPanel.standardlinkcolor=Color de enlace est\u00E1ndar OptionPanel.standardlinkcolor.tooltip=El color est\u00E1ndar del enlace en notaci\u00F3n html OptionPanel.standardlinkestyle=Estilo de enlace est\u00E1ndar OptionPanel.standardlinkestyle.tooltip=El estilo de enlace est\u00E1ndar. Actualmente solo est\u00E1 soportado 'bezier' OptionPanel.standardselectednodecolor=Color est\u00E1ndar de nodo seleccionado OptionPanel.standardselectednodecolor.tooltip=El color est\u00E1ndar del nodo si est\u00E1 seleccionado. En notaci\u00F3n html (#RRGGBB en valores hexadecimales) OptionPanel.standardselectednoderectanglecolor=Color de la burbuja del nodo seleccionado OptionPanel.standardselectednoderectanglecolor.tooltip=El color est\u00E1ndar de la burbuja que marca los nodos seleccionados. En notaci\u00F3n html (#RRGGBB en valores hexadecimales) OptionPanel.STAR=Estrella OptionPanel.statesymbolwidth=Ancho del s\u00EDmbolo de estado OptionPanel.structured_html_import=Importar HTML como una estructura de nodos OptionPanel.structured_icon_toolbar=Barra de herramientas de iconos estructurados OptionPanel.summary=Resumen OptionPanel.sv=sueco / svenska OptionPanel.ta=T\u00E1mil / \u0BA4\u0BAE\u0BBF\u0BB4\u0BCD OptionPanel.text.use_ctrl_key=Usar 'Asignar atajo' del men\u00FA Herramientas OptionPanel.textalignment=Alineaci\u00F3n de texto OptionPanel.time_for_automatic_save=Tiempo para guardado autom\u00E1tico OptionPanel.time_for_automatic_save.tooltip= tiempo entre dos guardados autom\u00E1ticos consecutivos (en msec): para deshabilitar el guardado autom\u00E1tico, establecer este n\u00FAmero en 2000000000. OptionPanel.time_for_delayed_selection=Tiempo para selecci\u00F3n aplazada OptionPanel.time_for_delayed_selection.tooltip= Tiempo de retardo de selecci\u00F3n de nodos cuando el rat\u00F3n est\u00E1 encima (en msec). Cambie este valor a 1 si quiere selecci\u00F3n directa cuando el rat\u00F3n est\u00E9 encima. OptionPanel.toolbar_icon_height=Altura del icono de la barra de herramientas OptionPanel.toolTipManager.dismissDelay=Quitar retraso, ms OptionPanel.toolTipManager.initialDelay=Retraso inicial, ms OptionPanel.toolTipManager.max_tooltip_height=Altura m\u00E1xima del nodo de informaci\u00F3n sobre herramientas OptionPanel.toolTipManager.max_tooltip_height.tooltip=Altura m\u00E1xima del nodo de informaci\u00F3n sobre herramientas en p\u00EDxeles. OptionPanel.toolTipManager.max_tooltip_width=Ancho m\u00E1ximo de la informaci\u00F3n sobre herramientas OptionPanel.toolTipManager.max_tooltip_width.tooltip=Ancho m\u00E1xima de la informaci\u00F3n sobre herramientas en p\u00EDxeles. OptionPanel.toolTipManager.reshowDelay=Volver a mostrar el retraso, ms OptionPanel.tr=turco / T\u00FCrk\u00E7e OptionPanel.uk_UA=ucraniano / \u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=Fuente no definida OptionPanel.undo_levels=Deshacer niveles OptionPanel.undo_levels.tooltip=Determina cu\u00E1ntos pasos son almacenados que pueden ser deshechos usando "Deshacer". OptionPanel.unfold_on_navigation=Desplegar nodo usando teclas de navegaci\u00F3n OptionPanel.unfold_on_paste=Desplegar nodo al pegar OptionPanel.unfold_on_paste.tooltip=Desplegar nodo al pegar o arrastrar-y-soltar OptionPanel.uniform_shape=Uniforme OptionPanel.use_common_out_point_for_root_node=Los bordes comienzan en un punto del nodo ra\u00EDz OptionPanel.use_common_out_point_for_root_node.tooltip=Los bordes comienzan en un punto del nodo ra\u00EDz OptionPanel.use_svg_icons=Usar iconos SVG OptionPanel.use_svg_icons.tooltip=Determina la calidad de la representaci\u00F3n del icono. Los iconos SVG necesitan m\u00E1s tiempo. OptionPanel.use_tabbed_pane=Usar pesta\u00F1as OptionPanel.use_tabbed_pane.tooltip=Si se selecciona, los mapas se muestran como pesta\u00F1as (como en FireFox :-) ). OptionPanel.validate_classpath_needs_readaccess=Scripting: \u00A1Cuando establezca la ruta de clase, debe otorgar permisos de lectura a los archivos! OptionPanel.validate_invalid_date_format=Formato de fecha no v\u00E1lido OptionPanel.validate_invalid_datetime_format=Formato de fecha-hora est\u00E1ndar no v\u00E1lido OptionPanel.validate_invalid_number_format=Formato de n\u00FAmero est\u00E1ndar no v\u00E1lido OptionPanel.validate_write_without_read=Scripting: considere a\u00F1adir Lectura/Archivo a Escritura/Archivo. OptionPanel.validation_error=Error(es) de validaci\u00F3n:

{0}

Por favor, cambie las preferencias para subsanar el(los) error(es). OptionPanel.validation_warning=Advetencia(s) de validaci\u00F3n:

{0} OptionPanel.vertical_child_gap=Hueco entre hijos OptionPanel.vertical_child_gap.tooltip=Distancia vertical entre nodos hijos OptionPanel.vi=vietnamita / Ti\u1EBFng Vi\u1EC7t 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. OptionPanel.wide_hexagon=Hex\u00E1gono ancho OptionPanel.windows=Windows OptionPanel.zh_CN=chino, simplificado / \u7B80\u4F53\u5B57 OptionPanel.zh_TW=chino, tradicional / \u7E41\u9AD4\u5B57 org.freeplane.plugin.bugreport.agree=Enviar org.freeplane.plugin.bugreport.always_agree=Enviar siempre org.freeplane.plugin.bugreport.always_deny=Nunca enviar org.freeplane.plugin.bugreport.deny=No enviar org.freeplane.plugin.bugreport.dialog.title=Informar autom\u00E1ticamente de fallos org.freeplane.plugin.bugreport.freeplane_team=Mensaje para el equipo de Freeplane org.freeplane.plugin.bugreport.lastreport=Rastreo del error: org.freeplane.plugin.bugreport.never=Nunca pedirme ayuda org.freeplane.plugin.bugreport.question=Freeplane incluye un gestor autom\u00E1tico de seguimiento de fallos. org.freeplane.plugin.bugreport.report=Informe actual org.freeplane.plugin.bugreport.wanted_bug=Ocurri\u00F3 un error interno.\n\u00BFPodr\u00EDa, por favor, enviar un informe de fallo y describir lo que hizo para ayudarnos a reproducir el fallo? org.freeplane.plugin.script.NodeIdHighlighter.node_is_not_defined=El nodo {0} no est\u00E1 definido out_of_memory=Memoria sin espacio. overwrite_keyset_question=\u00BFSobrescribir la configuraci\u00F3n de teclas existente? PageAction.text=Configuraci\u00F3n de impresi\u00F3n\u2026 password_is_not_ascii=La contrase\u00F1a no es ASCII PasteAction.text=Pegar PasteAttributes.text=Pegar atributos PatternNewNameProperty=Nuevo patr\u00F3n PatternToString.backgroundColor=Color de fondo PatternToString.Child=Estilo de nodo hijo PatternToString.color=Color PatternToString.EdgeColor=Color del borde PatternToString.EdgeStyle=Estilo de borde PatternToString.EdgeWidth=Grosor de borde PatternToString.FontBold=Negrita PatternToString.FontItalic=Cursivas PatternToString.FontName=Nombre de fuente PatternToString.Icon=Icono PatternToString.NodeFontSize=Tama\u00F1o de fuente periodic_formula={0} * n + {1} PeriodUnit.DAY=d\u00EDas PeriodUnit.HOUR=horas PeriodUnit.MINUTE=minutos PeriodUnit.MONTH=meses PeriodUnit.WEEK=semanas PeriodUnit.YEAR=a\u00F1os plugins/latex/LatexNodeHook.editorTitle=Editar f\u00F3rmula de LaTeX plugins/script_filter=Filtro de script {0} plugins/script_filter_error={0} deber\u00EDa haber dado un resultado booleano en {1} pero result\u00F3 {2} plugins/script_filter_execute_error=Error ejecutando {0}\npara nodo {1}:\n{2} plugins/ScriptEditor.cancel=&Descartar cambios y salir plugins/ScriptEditor.exit=&Guardar y salir plugins/ScriptEditor.FORBIDDEN_ACTION=Los scripts groovy en Freeplane est\u00E1n restringidos. Las siguientes {0,choice,0#File|1#Network|2#Exec} operaciones est\u00E1n prohibidas: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Puede cambiarlo en los ajustes del programa. plugins/ScriptEditor.menu_actions=&Acciones plugins/ScriptEditor.new_script=Nuevo script plugins/ScriptEditor.run=&Ejecutar plugins/ScriptEditor.sign=Firmar script\u2026 plugins/ScriptEditor/window.Result=Resultado: plugins/ScriptEditor/window.title=Editor de Scripts plugins/ScriptingEngine.illegalAccessToInternalAPI=Acceso ilegal a la API interna (paquete {0}). - Por favor, contacte con el equipo de Freeplane si la API de scripting no es suficientemente capaz. preferences=Preferencias presentation=Presentaci\u00F3n presentation.combineAll=Combinar todas las presentaciones print_preview_title=Vista previa de impresi\u00F3n PrintAction.text=Imprimir mapa\u2026 PrintDirectAction.text=Imprimir printing_settings=Escalado de impresi\u00F3n PrintPreviewAction.text=Vista previa de impresi\u00F3n\u2026 program_terminates=Error interno, el programa se detiene. progress=Icono de progreso (%) QuickFilterAction.text=Filtro r\u00E1pido QuickFindAction.BACK.text=Buscar anterior QuickFindAction.FORWARD.text=Buscar siguiente QuickFindAllAction.text=Seleccionar todos los nodos coincidentes QuickHighlightAction.text=Resaltar todos los nodos coincidentes QuitAction.text=Salir de Freeplane read_only=Solo lectura ReadScriptError.text=Error al leer el script really_convert_to_current_version=Este mapa se cre\u00F3 con una versi\u00F3n anterior de Freeplane.
\u00BFQuiere convertirlo (recomendado)?
(De lo contrario, se toma como est\u00E1 sin garant\u00EDa ninguna.) really_cut_node=\u00BFDe verdad quiere cortar el/los nodo(s)? really_execute_script=\u00BFEst\u00E1 seguro de que desea ejecutar los scripts incluidos en este mapa? Es posible que da\u00F1en su ordenador. really_remove_node=\u00BFDe verdad quiere borrar el/los nodo(s)? really_remove_notes=\u00BFDe verdad quiere eliminar la(s) nota(s)? ReapplyFilterAction.text=Volver a aplicar acci\u00F3n de filtro red=Rojo RedefineStyleAction.text=Redefinir estilo RedoAction.text=Rehacer RedoFilterAction.text=Rehacer acci\u00F3n de filtro regular_expressions=Expresiones regulares reminder.appendButton=Insertar fecha en selecci\u00F3n reminder.Cancel=Cancelar reminder.cancelButton=Cancelar reminder.closeButton=Cerrar reminder.Created=Creado reminder.Details=Detalles reminder.Export=Exportar los nodos seleccionados reminder.Find=Buscar reminder.Goto=Ir a reminder.hour=Hora: reminder.Icons=Iconos reminder.Map=Mapa reminder.menu_actions=Acciones reminder.minute=Minuto: reminder.Modified=Modificado reminder.Notes=Notas reminder.Reminder=Recordatorio reminder.reminderButton=Recordarme en esta fecha reminder.reminderButton.tooltip=Cuando se presiona, se programa un temporizador en la fecha estipulada. Luego los iconos parpadeantes llaman su atenci\u00F3n.
Si usted cierra el mapa, los temporizadores ser\u00E1n reactivados la pr\u00F3xima vez que el mapa sea abierto. reminder.reminderNode.tooltip=Recordatorio programado en {0,date} {0,time}. reminder.reminderNode_onlyOneDate=Actualmente, solo puede haber un recordatorio por nodo.
El recordatorio actual est\u00E1 programado en {0,date} {0,time}, su opci\u00F3n fue {1,date} {1,time}.

\u00BFDesea cambiar el recordatorio del nodo (SI)
o desea mantener el antiguo (NO)? reminder.remindLaterButton=Recordar m\u00E1s tarde reminder.remindLaterButton.tooltip=Recordar m\u00E1s tarde reminder.Remove_All=Eliminar todos los recordatorios reminder.Remove_Selected=Eliminar recordatorios seleccionados reminder.removeReminderButton=Eliminar recordatorio reminder.removeReminderButton.tooltip=Eliminar todos los recordatorios asociados con los nodos seleccionados. reminder.Replace=Reemplazar reminder.Replace_All=Reemplazar todo reminder.Replace_Selected=Reemplazar seleccionados reminder.Run_All=Ejecutar todos los scripts reminder.Run_Selected=Ejecutar scripts seleccionados reminder.Select=Seleccionar reminder.Text=Texto reminder.todayButton=Restablecer calendario reminder.WindowTitle=Administrar recordatorios reminder.WindowTitle_All_Nodes=Buscar y reemplazar reminder.WindowTitle_pastReminders=Recordatorios pasados reminder_script_error=Error {0} en el script de recordatorio en el nodo {2} del mapa {1} ReminderHookAction.text=Eliminar recordatorio ReminderHookAction.tooltip=Elimina un recordatorio de un nodo. ReminderListAction.text=Gestionar tareas y recordatorios\u2026 ReminderListAction.tooltip=Muestra todos los recordatorios programados y los correspondientes nodos. reminderNotification=Notificaci\u00F3n de recordatorio remove_file_from_list_on_error=No se ha abierto el archivo {0}. \u00BFEliminarlo del listado de \u00FAltimos archivos abiertos? remove_shortcut_question=\u00BFReemplazar el atajo? remove_shortcut_title=\u00BFQuitar enlace directo? RemoveAllAlwaysUnfoldedNodeFlagsAction.text=Restablecer nodos desplegados RemoveAllAlwaysUnfoldedNodeFlagsAction.tooltip=Permite plegado para cada nodo RemoveAllIconsAction.text=Eliminar todos los iconos RemoveConnectorAction.text=Eliminar conector RemoveEncryption.text=Eliminar contrase\u00F1a RemoveFormatAction.text=Eliminar formato RemoveIcon_0_Action.text=Eliminar primer icono RemoveIconAction.text=Eliminar \u00FAltimo Icono RemoveNoteAction.text=Eliminar nota RemoveNoteAction.tooltip=Elimina el contenido de notas de posiblemente varias notas. rename=&Renombrar repair_link=Reparar enlace repair_link_question=No se pudo cargar el mapa enlazado. \u00BFReparar el enlace manualmente? replace=Reemplazar replace_shortcut_question=Este atajo de teclado ya est\u00E1 asignado a \n {0}.\n \u00BFReemplazar esta asignaci\u00F3n? replace_shortcut_title=\u00BFReemplazar el atajo? ReportBugAction.text=Informar de un fallo RequestFeatureAction.text=Solicitar una caracter\u00EDstica reset_to_default=Usar predefinido ResetNodeLocationAction.text=Restablecer posici\u00F3n de nodos ResetStyleAction.text=Restablecer estilo de nodo RevertAction.text=Restaurar a partir del historial local RevisionPluginAction.text=Cambiar color de fondo de las revisiones save=&Guardar save_failed=El intento de guardar el mapa {0} ha fallado. save_unsaved=\u00BFGuardar el siguiente mapa mental? save_unsaved_styles=\u00BFGuardar estilos? SaveAcceleratorPresetsAction.text=Guardar conjunto de teclas de acceso r\u00E1pido\u2026 SaveAction.text=&Guardar mapa SaveAction_readonlyMsg=Este mapa es de solo lectura. Use "Archivo" \u2192 "Guardar mapa como..." para guardar este mapa. SaveAction_readonlyTitle=Intentar guardar un mapa de s\u00F3lo lectura SaveAll.text=Guardar &todos los mapas SaveAll.tooltip=Guardar todos los mapas abiertos SaveAs_toReadonlyMsg={0} es de solo lectura. Por favor, guarde en un archivo distinto. SaveAs_toReadonlyTitle=Intento de guardar en un archivo de solo lectura SaveAsAction.text=Guardar mapa como\u2026 saved=Guardado saving_canceled=Cancelada la acci\u00F3n de guardar scanners_not_loaded=Los esc\u00E1neres no se pudieron cargar, archivo da\u00F1ado scheme_evaluate=\u00A1Evaluar! script_execution_disabled=Ejecuci\u00F3n de script deshabilitada, v\u00E9ase Herramientas/Preferencias/Extensiones ScriptEditor.text=Editar script\u2026 ScriptEditor.tooltip=Habilita escribir scripts m\u00E1s grandes en Freeplane. ScriptEditorPanel.changed_cancel=Los scripts fueron modificados. \u00BFRealmente quiere abandonar esos cambios? scripting=Scripts scripting_api_generator_legend=Leyenda scripting_api_generator_proxy=Proxy scripting_api_generator_title=API de scripting scripting_api_generator_utilities=Utilidades scripting_api_generator_web=Recursos webs ScriptsRunToggleAction.ON_SELECTED_NODE.text=Ejecutar scripts en todos los nodos seleccionados ScriptsRunToggleAction.ON_SELECTED_NODE_RECURSIVELY.text=Ejecutar scripts recursivamente en los nodos seleccionados ScriptsRunToggleAction.ON_SINGLE_NODE.text=Ejecutar scripts en el nodo seleccionado select_favorites_folder=Seleccionar la carpeta donde est\u00E1n sus favoritos select_file_export_to=Seleccionar el archivo a exportar select_folder_for_importing=Seleccionar la carpeta a importar select_icon=Seleccionar un icono select_menu_item_dialog=Seleccionar un elemento del men\u00FA select_menu_item_root_node=Men\u00FA select_template=Seleccionar plantilla SelectAllAction.text=Seleccionar todos los nodos visibles SelectBranchAction.text=Seleccionar rama visible SelectedPasteAction.text=Pegar como\u2026 SelectFilteredNodesAction.text=Seleccionar el filtro de coincidencia de nodos selection_method_by_click=Haga clic una vez para seleccionar selection_method_delayed=Selecci\u00F3n autom\u00E1tica retardada selection_method_direct=Apunta para seleccionar SelectNoteAction.text=Mostrar/Ocultar el editor de notas SelectNoteAction.tooltip=Muestra/Oculta el editor de notas set_accelerator_on_next_click_helpmessage=Para crear un nuevo atajo de teclado, haga clic en la acci\u00F3n deseada del men\u00FA. SetAccelerator.dialogTitle=Asignaci\u00F3n de teclas de acceso r\u00E1pido SetAccelerator.keystrokeDetected=La combinaci\u00F3n de teclas ''{0}'' no est\u00E1 asignada a ning\u00FAn elemento del men\u00FA. SetAcceleratorOnNextClickAction.text=Asignar tecla de acceso r\u00E1pido SetAlwaysUnfoldedNodeFlagsAction.text=Mantener nodos desplegados SetAlwaysUnfoldedNodeFlagsAction.tooltip=Evita plegado para nodos actualmente desplegados SetImageByFileChooserAction.text=Imagen por elecci\u00F3n o enlace\u2026 SetLinkAnchorAction.text=Establecer enlace a la etiqueta de ancla SetLinkAnchorAction.tooltip=establecer el nodo seleccionado como ancla para el futuro
creaci\u00F3n de enlaces globales o locales. SetLinkAnchorAction.tooltip_anchored=establecer el nodo seleccionado como ancla para el futuro
creaci\u00F3n de enlaces globales o locales. Etiqueta de ancla actual:
{0} SetLinkByFileChooserAction.text=A\u00F1adir hiperenlace (seleccionar)\u2026 SetLinkByTextFieldAction.text=A\u00F1adir o modificar hiperenlace (introducir)\u2026 SetNodeAliasAction.text=Establecer alias del nodo SetNodeLink.text=Establecer enlace del nodo\u2026 SetNoteWindowPosition.bottom.text=Abajo SetNoteWindowPosition.left.text=Izquierda SetNoteWindowPosition.right.text=Derecha SetNoteWindowPosition.top.text=Arriba SetShortenerStateAction.text=Minimizar nodo sf_login_required=Se necesita iniciar sesi\u00F3n en Source Forge. \u00BFDesea continuar? ShowAllAttributesAction.text=Mostrar todos los atributos ShowAncestorsAction.text=Mostrar ascendentes ShowAttributeDialogAction.text=Gestor de atributos\u2026 ShowDescendantsAction.text=Mostrar descendientes ShowFilterToolbarAction.text=Barra de herramientas de filtros ShowFirstSlideAction.text=Primera diapositiva ShowFirstSlideAndStartPresentationAction.text=Mostrar presentaci\u00F3n desde el inicio ShowFormatPanel.text=Panel de herramientas ShowFormatPanel.tooltip=Presenta una ventana de di\u00E1logo en el que los atributos del nodo y del borde pueden ser cambiados al mismo tiempo. ShowHideNoteAction.text=Mostrar panel de notas ShowHideNoteAction.tooltip=Permite ocultar o mostrar el panel de notas. ShowLastSlideAction.text=\u00DAltima diapositiva ShowNextChildAction.text=Mostrar siguiente hijo ShowNextSlideAction.text=Siguiente diapositiva ShowNotesInMapAction.text=Mostrar notas en el mapa ShowPreferencesAction.dialog=Preferencias ShowPreferencesAction.text=Preferencias\u2026 ShowPreviousSlideAction.text=Diapositiva anterior ShowSelectedAttributesAction.text=Mostrar atributos seleccionados ShowSelectionAsRectangleAction.text=Selecci\u00F3n rectangular simplyhtml.aboutFrameTitle=Acerca de esta aplicaci\u00F3n simplyhtml.aboutLabel=Acerca de SimplyHTML\u2026 simplyhtml.alignCenter=centrar simplyhtml.alignLabel=Alineaci\u00F3n: simplyhtml.alignLeft=izquierda simplyhtml.alignRight=derecha simplyhtml.allCellsRangeLabel=todas las celdas simplyhtml.allOccurrencesReplaced=Todas las ocurrencias reemplazadas simplyhtml.appendTableColLabel=A\u00F1adir columna simplyhtml.appendTableRowLabel=A\u00F1adir fila simplyhtml.applyCellAttrLabel=Aplicar a simplyhtml.backgroundLabel=Fondo: simplyhtml.blackFontColorLabel=Negro simplyhtml.blueFontColorLabel=Azul simplyhtml.boldItalicName=cursiva negrita simplyhtml.boldName=negrita simplyhtml.borderColorLabel=Color: simplyhtml.borderWidthLabel=Ancho simplyhtml.bottomLabel=abajo: simplyhtml.cancelBtnName=Cancelar simplyhtml.cellBorderTabLabel=Bordes simplyhtml.cellGenTabLabel=General simplyhtml.cellMarginTabLabel=Margen simplyhtml.cellPanelTitle=Formato de celda simplyhtml.clearFormatLabel=Eliminar formateo simplyhtml.clearFormatTip=Eliminar formateo simplyhtml.close=Cerrar simplyhtml.closeBtnName=Cerrar simplyhtml.colorLabel=Color simplyhtml.copyLabel=Copiar simplyhtml.copyTip=copiar simplyhtml.cTagNameHead1=Encabezado 1 simplyhtml.cTagNameHead2=Encabezado 2 simplyhtml.cTagNameHead3=Encabezado 3 simplyhtml.cTagNameHead4=Encabezado 4 simplyhtml.cTagNameHead5=Encabezado 5 simplyhtml.cTagNameHead6=Encabezado 6 simplyhtml.cTagNameLink=Enlace simplyhtml.cTagNameOL=Lista ordenada simplyhtml.cTagNamePara=P\u00E1rrafo simplyhtml.cTagNameUL=Lista no ordenada simplyhtml.cutLabel=Cortar simplyhtml.cutTip=cortar simplyhtml.decreaseFontSizeLabel=M\u00E1s peque\u00F1o simplyhtml.defaultDocName=Sin t\u00EDtulo simplyhtml.deleteTableColLabel=Borrar columna simplyhtml.deleteTableRowLabel=Borrar fila simplyhtml.docTitleQuery=Establecer t\u00EDtulo de: simplyhtml.docTitleTitle=Editar t\u00EDtulo del documento simplyhtml.editLabel=Editar simplyhtml.effectLabel=Efecto simplyhtml.familyLabel=Familia simplyhtml.findNext=Buscar siguiente\u2026 simplyhtml.findReplaceDialogTitle=Buscar y reemplazar simplyhtml.findReplaceLabel=Buscar y reemplazar simplyhtml.findReplaceTip=Buscar y reemplazar simplyhtml.fontBoldLabel=Negrita simplyhtml.fontBoldTip=conmutar activar/desactivar negrita simplyhtml.fontColorLabel=Color del texto simplyhtml.fontColorTip=Color del texto simplyhtml.fontDialogTitle=Formatear fuente simplyhtml.fontItalicLabel=Cursiva simplyhtml.fontItalicTip=conmutar activar/desactivar cursiva simplyhtml.fontLabel=Fuente\u2026 simplyhtml.fontTabLabel=Fuente simplyhtml.fontTip=Formatear fuente\u2026 simplyhtml.fontUnderlineLabel=Subrayar simplyhtml.fontUnderlineTip=conmutar activar/desactivar subrayado simplyhtml.foregroundLabel=Primer plano: simplyhtml.formatLabel=Formato simplyhtml.formatListLabel=Lista\u2026 simplyhtml.formatListTip=cambiar formato de lista simplyhtml.formatParaLabel=P\u00E1rrafo\u2026 simplyhtml.formatParaTip=Cambiar formato de p\u00E1rrafo simplyhtml.formatTableLabel=Tabla\u2026 simplyhtml.formatTableTip=Formatear tabla simplyhtml.greenFontColorLabel=Verde simplyhtml.helpLabel=Ayuda simplyhtml.htmlTabTitle=Vista de c\u00F3digo HTML simplyhtml.imageFileDesc=Archivos de imagen simplyhtml.increaseFontSizeLabel=M\u00E1s grande simplyhtml.insertTableColLabel=Insertar columna simplyhtml.insertTableLabel=Tabla\u2026 simplyhtml.insertTableMsg=\u00BFCu\u00E1ntas columnas? simplyhtml.insertTableRowLabel=Insertar fila simplyhtml.insertTableTitle=Insertar tabla simplyhtml.italicName=cursiva simplyhtml.layoutTabTitle=Vista de dise\u00F1o simplyhtml.leftLabel=izquierda: simplyhtml.listDialogTitle=Formato de lista simplyhtml.listIndentTitle=Sangr\u00EDa: simplyhtml.listPosInside=dentro simplyhtml.listPositionLabel=Posici\u00F3n: simplyhtml.listPosOutside=fuera simplyhtml.listTypeCircle=vi\u00F1eta redonda simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeDisc=s\u00EDmbolo de archivo como vi\u00F1eta simplyhtml.listTypeLabel=Tipo: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=ninguno simplyhtml.listTypeSquare=vi\u00F1eta cuadrada simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=Exterior simplyhtml.matchApproximately=Coincidencia aproximada simplyhtml.matchApproximately.tooltip=Si se permiten coincidencias aproximadas,
es decir, al buscar la palabra 'files' se puede aceptar 'flies'. simplyhtml.matchCase=Coincidencia exacta simplyhtml.matchCase.tooltip=Si se destaca el caso cuando hay coincidencia. simplyhtml.newStyleDefaultName=nuevo estilo simplyhtml.nextTableCellLabel=Celda siguiente simplyhtml.noLineLabel=ninguno simplyhtml.noMoreOccurrencesFound=no se han encontrado (m\u00E1s) ocurrencias simplyhtml.okBtnName=OK simplyhtml.paddingLabel=Interior simplyhtml.paraAlignCenterLabel=Centrado simplyhtml.paraAlignCenterTip=Establecer alineado centrado de p\u00E1rrafo simplyhtml.paraAlignLeftLabel=Alinear a la izquierda simplyhtml.paraAlignLeftTip=Establecer alineado izquierdo de p\u00E1rrafo simplyhtml.paraAlignRightLabel=Alinear a la derecha simplyhtml.paraAlignRightTip=Establecer alineado derecho de p\u00E1rrafo simplyhtml.paraStyleDialogTitle=Estilo de p\u00E1rrafo simplyhtml.paraTabLabel=P\u00E1rrafo simplyhtml.pasteHTMLLabel=Pegar HTML simplyhtml.pasteLabel=Pegar simplyhtml.pastePlainTextLabel=Pegar texto simple simplyhtml.pasteTip=pegar simplyhtml.plainName=sencillo simplyhtml.previewLabel=Vista previa simplyhtml.previewText=Vista previa del texto simplyhtml.prevTableCellLabel=Celda previa simplyhtml.printLabel=Imprimir\u2026 simplyhtml.redFontColorLabel=Rojo simplyhtml.redoLabel=Rehacer simplyhtml.redoTip=rehacer simplyhtml.removeFontColorLabel=Eliminar color simplyhtml.replace=Reemplazar\u2026 simplyhtml.replaceAll=Todo simplyhtml.replaceDone=Hecho simplyhtml.replaceNo=No simplyhtml.replaceThisQuery=Reemplazar esta ocurrencia de simplyhtml.replaceWith=Reemplazar con: simplyhtml.replaceYes=S\u00ED simplyhtml.rightLabel=derecha: simplyhtml.searchDown=Buscar hacia abajo simplyhtml.searchDown.tooltip=Buscar de arriba a abajo. simplyhtml.searchFromStart=Buscar desde el principio simplyhtml.searchFromStart.tooltip=Empezar a buscar desde el inicio en lugar de desde la posici\u00F3n del cursor. simplyhtml.searchUp=B\u00FAscar hacia arriba simplyhtml.searchUp.tooltip=Buscar de abajo a arriba. simplyhtml.selectAllLabel=Seleccionar todos simplyhtml.selectedFontColorLabel=Color de fuente seleccionado simplyhtml.sizeLabel=Tama\u00F1o simplyhtml.standardStyleName=est\u00E1ndar simplyhtml.strikeLabel=Tachar simplyhtml.styleLabel=Estilo simplyhtml.styleNameInputText=\u00BFNombre del nuevo estilo? simplyhtml.styleNameInputTitle=Guardar estilo simplyhtml.tableBgColLabel=Color de fondo: simplyhtml.tableDialogTitle=Formatear tabla simplyhtml.tableLabel=Tabla simplyhtml.tablePanelTitle=Formato de tabla simplyhtml.tableWidthLabel=Ancho: simplyhtml.textIndentLabel=Sangr\u00EDa: simplyhtml.textToFind=Texto a buscar: simplyhtml.thisCellRangeLabel=esta celda simplyhtml.thisColRangeLabel=esta columna simplyhtml.thisRowRangeLabel=esta fila simplyhtml.toggleBulletsLabel=Activar/desactivar lista de vi\u00F1etas simplyhtml.toggleBulletsTip=Activar/desactivar lista de vi\u00F1etas simplyhtml.toggleNumbersLabel=Activar/Desactivar lista numeradas simplyhtml.toggleNumbersTip=activa/desactiva lista numerada simplyhtml.topLabel=arriba: simplyhtml.uLineLabel=Subrayar simplyhtml.unableToOpenFileError=El archivo no se puede abrir simplyhtml.unableToRedoError=No es posible rehacer: simplyhtml.unableToUndoError=No es posible deshacer: simplyhtml.undoLabel=Deshacer simplyhtml.undoTip=deshacer simplyhtml.valignBaseline=L\u00EDnea base simplyhtml.valignBottom=fondo simplyhtml.valignLabel=Alineaci\u00F3n vertical: simplyhtml.valignMiddle=medio simplyhtml.valignTop=arriba simplyhtml.wholeWordsOnly=Solo palabras completas simplyhtml.wholeWordsOnly.tooltip=Restringir los resultados a palabras completas. slide.add=A\u00F1adir slide.add.tooltip=A\u00F1adir nodos seleccionados a la diapositiva slide.at_center.tooltip=al centro slide.content=Contenido de diapositiva slide.descendants=Mostrar descendientes slide.edge=al margen slide.filter=Filtro slide.first=Primero slide.last=\u00DAltimo slide.next=Siguiente slide.nofilter=Sin filtros slide.on_the_left.tooltip=a la izquierda slide.on_the_right.tooltip=a la derecha slide.placenode=Colocar el nodo seleccionado slide.placenode.tooltip=cuando se presenta la diapositiva slide.present=Presentar slide.presentation=Presentaci\u00F3n slide.presentations=Presentaciones slide.previous=Anterior slide.remove=Eliminar slide.remove.tooltip=Eliminar nodos seleccionados de la diapositiva slide.select=Seleccionar slide.select.tooltip=Seleccionar nodos de diapositiva en el mapa slide.set=Configurar slide.set.tooltip=Hacer que los nodos seleccionados actualmente sean el contenido de la diapositiva slide.setfilter=Establecer filtro slide.setfilter.tooltip=Establecer o quitar filtros que se aplican cuando se muestra la diapositiva slide.setfoldingstate=Configurar plegamiento slide.setfoldingstate.tooltip=Restaurar el plegamiento actual cuando se muestre la diapositiva slide.setzoom=Establecer zum slide.setzoom.tooltip=Establecer o quitar el zum del mapa aplicado cuando se muestra la diapositiva slide.showancestors=Mostrar ascendentes slide.showonlyselected=Muestra solo los nodos seleccionados slide.showonlyselected.tooltip=Oculta otros nodos cuando se muestra la diapositiva slide.slides=Dispositivas slide.stop=Detener SortNodes.text=Ordenar hijos SortNodes.tooltip=Ordena todos los hijos de un nodo alfab\u00E9ticamente. split=&Dividir SplitConditionAction.text=Dividir SplitNode.text=Dividir nodo SplitNode.tooltip=El nodo se divide SplitToWordsAction.text=Dividir con {0} palabras por linea STANDARD_FORMAT=Est\u00E1ndar StartPresentationAction.text=Mostrar presentaci\u00F3n StartPresentationOrShowNextSlideAction.text=Mostrar presentaci\u00F3n o siguiente diapositiva stop_processing=Detener StopPresentationAction.text=Detener la presentaci\u00F3n StrikeThroughAction.text=Tachar StringFlavorHandler=Texto simple como jerarqu\u00EDa de nodos StructuredHtmlFlavorHandler=HTML como jerarqu\u00EDa de nodos style=Estilo style_already_exists=El estilo ya existe. styledialog.cancel.text=Cancelar styledialog.ok.text=OK styles=Est&ilos styles.AutomaticLayout=Aplicar estilos de nivel styles.connection=Conexi\u00F3n styles.date=Fecha styles.definition=Definici\u00F3n styles.description=Descripci\u00F3n styles.floating_node=Nodo flotante styles.idea=Idea styles.important=Importante styles.key=Tecla styles.list=Lista styles.needs_action=Requiere acci\u00F3n styles.note=Nota styles.ok=OK styles.pending=Pendiente styles.predefined=Estilos predefinidos styles.question=Pregunta styles.quotation=Cita styles.root_node=Estilos styles.subsubtopic=Subsubtema styles.subtopic=Subtema styles.topic=Tema styles.user-defined=Estilos definidos por el usuario styles.website=Sitio web styles_background_html=\n \n \n \n \n \n \n \n \n \n
\n
\n Sobre este conjunto de estilos\n
\n
\n
\n Este est\u00E1ndar fue desarrollado despu\u00E9s de 11 a\u00F1os de estudios pedag\u00F3gicos sobre c\u00F3mo realizar procesos de memoria mas sencillos y f\u00E1ciles.\n
\n
\nSu objetivo es hacer que el proceso de asimilaci\u00F3n, procesamiento, absorci\u00F3n, comprensi\u00F3n del dominio y dominio del conocimiento, la informaci\u00F3n y las ideas sea lo m\u00E1s r\u00E1pido y f\u00E1cil posible.\n
\n
\n Ha sido desarrollado por Jonas Batista (Brasil).\n Puedes encontrar m\u00E1s informaci\u00F3n en: www.jonasbatista.com.br/ \n
\n
\n
\n \n
\n Jonas Batista
\n
\n
\n \n styles_menu=Estilos disponibles submenu_keystroke_in_use_error=La combinaci\u00F3n de teclas {0} no se puede usar para el submen\u00FA {1}. Combinaci\u00F3n eliminada. summary_nodes=Nodos sumarios summary_not_possible=No se puede crear nodo sumario para la selecci\u00F3n actual svg=SVG template_dir=Plantillas est\u00E1ndares TextAlignAction.CENTER.text=Texto centrado TextAlignAction.DEFAULT.text=Predeterminado TextAlignAction.LEFT.text=Texto alineado a la izquierda TextAlignAction.RIGHT.text=Texto alineado a la derecha textalignment=Alineaci\u00F3n de texto TextChangeHotKeyAction.text=Establecer tecla de acceso r\u00E1pido de cambio de texto TimeManagementAction.text=Gestionar el tiempo\u2026 TimeManagementAction.tooltip=Muestra el m\u00F3dulo calendario de Kai Toedter. TimePeriodUnits.days=d\u00EDas TimePeriodUnits.hours=horas TimePeriodUnits.minutes=minutos TimePeriodUnits.ms=milisegundos TimePeriodUnits.seconds=segundos TimePeriodUnits.weeks=semanas ToggleChildrenFoldedAction.text=(Des)plegar hijos ToggleDetailsAction.text=Ocultar detalles ToggleFBarAction.text=Barra de teclas de funci\u00F3n ToggleFoldedAction.text=(Des)plegar ToggleFullScreenAction.text=Modo de pantalla completa ToggleLeftToolbarAction.text=Barra de herramientas de iconos ToggleMenubarAction.text=Barra de men\u00FA ToggleScrollbarsAction.text=Barras de desplazamiento ToggleStatusAction.text=Mostrar l\u00EDnea de estado ToggleToolbarAction.text=Barra de herramientas TranslatedElement.BORDER=Texto de borde TranslatedElement.TEXT=Texto TranslatedElement.TOOLTIP=Informaci\u00F3n sobre herramientas TutorialAction.text=Tutorial uiTextChanger.originalTextIsNotDefined=Texto original no definido uiTextChanger.replaceText=Reemplazar texto del UI undefined_error=Ocurri\u00F3 un error inesperado. Por favor, trata de crear un informe de fallo. underline=Subrayar UnderlineAction.text=Subrayar underlined=Subrayado UndoAction.text=Deshacer UndoFilterAction.text=Deshacer acci\u00F3n de filtro unfold=Desplegar UnfoldAllAction.text=Desplegar todo UnfoldAllAction.tooltip=Despliega los nodos seleccionados y todos sus hijos. UnfoldOneLevelAction.text=Desplegar un nivel UnfoldOneLevelAction.tooltip=Despliega los nodos seleccionados en un nivel. unparsedLatexPatternFormat=LaTeX sin analizar up=&Arriba UpConditionAction.text=Arriba update_failed=Actualizaci\u00F3n fallida con mensaje {0} UpdateCheckAction.text=Comprobar actualizaciones updatecheckdialog=Cuadro de di\u00E1logo de verificaci\u00F3n de actualizaci\u00F3n updater.component=Componente updater.goToDownload=Ir a descarga updater.version.installed=Versi\u00F3n instalada updater.version.latest=\u00DAltima versi\u00F3n updater.version.noUpdateUrl=No hay URL de actualizaci\u00F3n o p\u00E1gina principal para este complemento. updater.version.unknown=desconocido updater.version.unreachable=Fuente inalcanzable: updater.viewChangelog=Ver registro de cambios url_error=\u00A1Esta URL est\u00E1 mal escrita! url_open_error=No se puede abrir la URL {0}. used_in_menu=No se puede usar este atajo, se usa como atajo de men\u00FA. UsePlainTextAction.text=Usar texto simple user_config_folder=Carpeta con la configuraci\u00F3n del usuario: {0} user_defined_filters=Filtros definidos por el usuario user_defined_scale=Escala definida por el &usuario user_defined_zoom=Definido por el usuario user_defined_zoom_status_bar=Cambiar el zum al valor definido por el usuario de {0}%. user_icon=Icono de usuario "{0}" user_template_dir=Plantillas del usuario user_zoom=Factor de zum de impresi\u00F3n (0.0 - 2.0): userScripts=Scripts value_format=Formato de valor version_up_to_date=Ya est\u00E1 usando la \u00FAltima versi\u00F3n del programa view=&Ver ViewLayoutTypeAction.OUTLINE.text=Vista de esquema web_resources=Recursos webs WebDocuAction.text=Documentaci\u00F3n web WhatsNewAction.text=Qu\u00E9 hay de nuevo en Freeplane 1.5.x width=Ancho wrong_regexp=Expresi\u00F3n regular err\u00F3nea "{0}", error {1} xslt_export.html=Documento HTML xslt_export.latex=Documento de Latex xslt_export.latexbook=Libro de Latex xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=Microsoft Excel 2003 XML xslt_export.ms_project=Microsoft Project 2003 XML xslt_export.ms_word=Microsoft Word 2003 XML xslt_export.text=Texto simple xslt_export_not_possible=La exportaci\u00F3n Freeplane XSLT no es posible yes=S\u00ED zoom=Zum ZoomInAction.text=Acercar ZoomOutAction.text=Alejar freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_et.properties0100644 0000000 0000000 00000152432 13432225762 027636 0ustar000000000 0000000 about_text=Freeplane - tasuta m\u00F5ttekaartide ja teadmiste kogumise tarkvara AboutAction.text=Programmist acceleratorPresets=Ettem\u00E4\u00E4ratud kiirklahvid accelerators_loading_error=Failist {0} ei saa laadida kiirklahve accessories/plugins/ApplyFormatPlugin.dialog.title=Muuda s\u00F5lmede kujundust accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Muuda mustrit accessories/plugins/EncryptNode.properties_0=Vali salas\u00F5na kr\u00FCpteeritud s\u00F5lme jaoks accessories/plugins/EncryptNode.properties_1=Salas\u00F5nad ei ole samad v\u00F5i on liiga l\u00FChikesed. accessories/plugins/EncryptNode.properties_2=Sisesta salas\u00F5na: accessories/plugins/EncryptNode.properties_3=Sisesta kontrolliks veelkord sama salas\u00F5na: accessories/plugins/EncryptNode.properties_4=Sisestage oma salas\u00F5na. accessories/plugins/EncryptNode.properties_5=Pea meeles, et kr\u00FCpteeringu tugevus
s\u00F5ltub peaaegu t\u00E4ielikult salas\u00F5na tugevusest. accessories/plugins/EncryptNode.properties_6=Sobib accessories/plugins/EncryptNode.properties_7=Loobu accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Sa v\u00F5id kr\u00FCpteerituse olekut kr\u00FCpteeritud s\u00F5lmel \u00FCmber l\u00FClitada. Palun lisa selline s\u00F5lm, kasutades t\u00F6\u00F6riistade men\u00FC\u00FCd. accessories/plugins/EncryptNode.properties_select_me=Vali mind, et j\u00E4tkata! accessories/plugins/EncryptNode.properties_wrong_password=Salas\u00F5na ei ole \u00F5ige. accessories/plugins/Export_JavaWebStart.text=Java Web Start... accessories/plugins/Export_JavaWebStart.tooltip=Kaardi eksportimine Java Web Starti. accessories/plugins/ExportWithTWiki.text=Kui TWiki... accessories/plugins/ExportWithTWiki.tooltip=Ekspordib kaardi TWiki dokumendina. accessories/plugins/ExportWithXSLT.tooltip=See on unikaalne eksportimise meetod kasutades XSLT skripte. accessories/plugins/ExportWithXSLT_Applet.text=Kui Java rakend... accessories/plugins/ExportWithXSLT_Applet.tooltip=Ekspordib kaardi kui veebilehitseja Java rakendi. accessories/plugins/ExportWithXSLT_HTML.text=Kui XHTML (JavaScript-i versioon)... accessories/plugins/ExportWithXSLT_HTML3.text=Kui XHTML (Kl\u00F5psatav kaart, pildiversioon)... accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Ressursid s\u00F5lmest RESSURSID Tegumihalduri faili... accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Ekspordib ressursid s\u00F5lmest RESSURSID Tegumihalduri moodulisse. accessories/plugins/ExportWithXSLT_TASKSTJI.text=\u00DClesanded moodulist \u00DCLESANDED Tegumihalduri faili... accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Ekspordib \u00FClesanded \u00DCLESANDED s\u00F5lmest Tegumihalduri moodulisse. add=&Lisa AddLocalLinkAction.text=Lisa kohalik h\u00FCperviide antialias_all=Pehmenda: fonte k\u00F5ikjal antialias_edges=Pehmenda: servad antialias_none=Eemalda pehmendamine apply=&Rakenda ApplyAction.text=Rakenda ApplyFormatPlugin.text=Muuda vormingut ... ApplyFormatPlugin.tooltip=N\u00E4itab dialoogi kus s\u00F5lme ja \u00FChendusjoone omadusi saab korraga muuta. ApplyNoFilteringAction.text=Ei filtreerita as_parent=Kui eelmine AssignAttributesAction.text=M\u00E4\u00E4ra omadused... attribute_delete=Kustuta k\u00F5ik v\u00E4\u00E4rtused attribute_delete_value=Kustuta see v\u00E4\u00E4rtus attribute_font_size.tooltip=Omaduste kirjasuurus attribute_list_box_label_text=Praegused v\u00E4\u00E4rtused attribute_replace=Asenda sellega attribute_top=K\u00F5ik tuntud omadused avatud m\u00F5ttekaartidele attributes_adding_empty_attribute_error=Omaduse nimena ei saa t\u00FChja v\u00E4\u00E4rtust kasutada attributes_all=K\u00F5ik omadused attributes_attribute=Omadused attributes_close=Sulge attributes_deselect_all=Mitte midagi attributes_dialog_title=Omaduste haldur attributes_edit=Redigeeri attributes_edit.tooltip=Redigeeri valikut attributes_for_selected=Valitud s\u00F5lmed attributes_for_visible=K\u00F5ik n\u00E4htavad s\u00F5lmed attributes_import=&Impordi attributes_import.tooltip=Impordi omadused teistelt avatud m\u00F5ttekaartidelt attributes_popup_delete=Kustuta attributes_popup_down=Alla attributes_popup_edit=Redigeeri attributes_popup_hide=Peida attributes_popup_new=Uus omadus attributes_popup_optimal_width=Paras laius attributes_popup_up=\u00DCles attributes_refresh=V\u00E4rskenda attributes_restricted_attributes.tooltip=Piiratud valik omadusi attributes_restricted_values.tooltip=K\u00E4esoleva omaduse piiratud valik v\u00E4\u00E4rtusi attributes_restriction=Piiratud valik attributes_select_all=K\u00F5ik attributes_select_all.tooltip=Vali / Eemalda k\u00F5ik attributes_show=N\u00E4ita attributes_skip_root=J\u00E4ta peas\u00F5lm vahele attributes_visible=Valitud n\u00E4htav attributes_visible.tooltip=Valitud n\u00E4htav automatically_save_message=Kaart salvestati automaatselt (kasutades failinime {0}) ... AutomaticLayoutAction.text=Automaatne formaat AutomaticLayoutAction.tooltip=Parandab kaardi formaati.
Esimene tase on must, teine sinine, jne. BackAction.text=Tagasi BackAction.tooltip=H\u00FCppab valitud ahelas tagasi background=Taust BlinkingNodeHookAction.text=Vilkuv s\u00F5lm BlinkingNodeHookAction.tooltip=See paneb s\u00F5lme vilkuma. Kuid ole ettevaatlik. \u00C4ra lisa seda liiga paljudele s\u00F5lmedele ja mitte koos teise automaatse efektiga samale s\u00F5lmele BoldAction.text=Rasvane boldify_branch=Tee rasvaseks branch=Haru cancel=&Loobu CancelAction.text=Loobu cannot_add_parent_diff_parents=K\u00F5ik alams\u00F5lmed peavad olema sama s\u00F5lme k\u00FCljes, et seda funktsiooni kasutada. cannot_add_parent_to_root=Peas\u00F5lme ei saa uue naabers\u00F5lme k\u00FClge lisada. cannot_delete_root=Peas\u00F5lme ei saa kustutada ega l\u00F5igata. cannot_join_nodes_with_children=S\u00F5lmi, millede all on omakorda s\u00F5lmed, ei saa liita cannot_move_to_child=Ei suuda s\u00F5lme alams\u00F5lme k\u00FClge liigutada . CenterAction.text=Keskele ChangeConnectorArrowsAction.backward.text=Tagasi ChangeConnectorArrowsAction.forward.text=Edasi ChangeNodeLevelLeftsAction.text=S\u00F5lm vasakule ChangeNodeLevelLeftsAction.tooltip=Peas\u00F5lmest vasakul on s\u00F5lm(ed) t\u00F5stetud allapoole. Need/nemad saavad olema alams\u00F5lmed nende kohal oleva peas\u00F5lme all. Peas\u00F5lmest paremal on s\u00F5lm(ed) t\u00F5stetud allapoole. Alates peas\u00F5lmest muudab(-vad) s\u00F5lm(ed) pooli. ChangeNodeLevelRightsAction.text=S\u00F5lm paremale ChangeNodeLevelRightsAction.tooltip=Peas\u00F5lmest paremal on s\u00F5lm(ed) t\u00F5stetud allapoole. Need/nemad saavad olema alams\u00F5lmed nende kohal oleva peas\u00F5lme all. Peas\u00F5lmest vasakul on s\u00F5lm(ed) t\u00F5stetud \u00FClespoole. Alates peas\u00F5lmest muudab(-vad) s\u00F5lm(ed) pooli. choose_cloud_color=Vali pilve v\u00E4rv: choose_edge_color=Vali \u00FChendusjoone v\u00E4rv choose_node_background_color=Vali s\u00F5lme taustav\u00E4rv: choose_node_color=Vali s\u00F5lme v\u00E4rv: CloseAction.text=Sulge CloudAction.text=Pilv CloudColorAction.text=Pilve v\u00E4rv... ColorProperty.ResetColor=Taasta v\u00E4rvi algv\u00E4\u00E4rtus combined=Kombineeritud confirmation=Kinnitus connector=Connector[translate me] connector_label=Connector Label[translate me] CopyAction.text=Kopeeri CopySingleAction.text=Kopeeri \u00FCksik CutAction.text=L\u00F5ika decrease_branch_font_size=V\u00E4henda haru kirja DecreaseNodeFontAction.text=V\u00E4henda haru kirja delete=&Kustuta delete_child=Kustuta s\u00F5lm DeleteAction.text=Eemalda s\u00F5lm DeleteConditionAction.text=Kustuta DocumentationAction.text=Dokumentatsioon edge=\u00DChendusjoon edge_style=\u00DChendusjoone stiil edge_width=\u00DChendusjoone laius EdgeColorAction.text=\u00DChendusjoone v\u00E4rv... EdgeStyleAction.bezier.text=Puutuja k\u00F5ver EdgeStyleAction.linear.text=Lineaarne EdgeStyleAction.sharp_bezier.text=K\u00F5ver ahenev s\u00F5lmede \u00FChendusjoon EdgeStyleAction.sharp_linear.text=Sirge ahenev s\u00F5lmede \u00FChendusjoon EdgeStyleAsParentAction.text=Kui eelmine EdgeWidthAction_width_parent.text=Naabers\u00F5lmega \u00FChendusjoon EdgeWidthAction_width_thin.text=Kitsas edit=&Redigeerimine edit.decision=HTML Redaktor edit.edit_rich_text=Kas soovid kasutada vorminduselemente nagu rasvane - ja kaldkiri? edit_link_manually=Redigeeri k\u00E4sitsi h\u00FCperviidet... EditAction.text=Redigeeri s\u00F5lme EditAttributesAction.text=Redigeeri omadusi EditFilterAction.text=Redigeeri EditLongAction.text=Redigeeri s\u00F5lme tuuma aknas EncryptedMap.text=Loo kaitstud (kr\u00FCpteeritud) kaart ... EncryptedMap.tooltip=Loo uus kr\u00FCpteeritud kaart enter_base_url=Ma lisan viited suhteliste aadressidena. Palun sisesta p\u00F5hiaadress. enter_confirms=&Enter kinnitab EnterPassword.text=L\u00FClita kr\u00FCpteeritud/kr\u00FCpteerimata error=Viga error_applying_template=XSL-mallide kehtestamisel tekkis viga. error_creating_directory=Ei suuda kataloogi luua, et sinna eksportida. ExportAction.text=Kaardi eksport... ExportBranchAction.text=S\u00F5lmede haru kui uus kaart ... ExportBranchToHTMLAction.text=Haru HTML-ina ExportPdf.text=Kui PDF... ExportSvg.text=Kui SVG... ExportToHTMLAction.text=HTML-ina ExportToImage.jpg.text=Kui JPEG... ExportToImage.png.text=Kui PNG... ExportToOoWriter.text=Kui OpenOffice.org Writer-i dokument... ExportToOoWriter.tooltip=Lahtivolditud s\u00F5lmed muudavad struktuuri, kokkuvolditud s\u00F5lmed dokumendi sisu. extension_menu=F\u00FC\u00FCsiline &Stiil extras=&T\u00F6\u00F6riistad f_button_unassigned=[translate me] FaqOpenURLAction.text=KKK file=&Fail file_already_exists=Fail nimega {0} on juba olemas. Kas soovid seda \u00FCle kirjutada? file_not_found=Faili {0} ei leitud filter=Filter[translate me] filter_add=&Lisa filter_and=&ja filter_conditions=Filtrid filter_contains=Sisaldab filter_delete=&Kustuta filter_dialog=Filtri Koostaja filter_does_not_exist=Ei ole olemas filter_edit_description=Redigeeri filtrite nimekirja filter_enter_value=Sisesta v\u00E4\u00E4rtus filter_exist=On olemas filter_icon=Ikoon filter_is_equal_to=On v\u00F5rdne filter_is_not_equal_to=Ei ole v\u00F5rdne filter_link=Hyperlink[translate me] filter_no_filtering=Ei filtreerita filter_node=S\u00F5lme tekst filter_not=&Ei ole filter_or=&v\u00F5i filter_select=&Vali filter_selected_node_view=Hetkel valitud s\u00F5lmed find_what=Mida otsida FindAction.text=&Otsi... fit_map_to_page=Mahuta \u00FChele lehek\u00FCljele FitToPage.text=Suurenda, et Mahutada lehele FitToPage.tooltip=Muuda suurendust selliselt, et kogu kaart mahub k\u00E4esolevasse aknasse. fold=Voldi FoldAllAction.text=Voldi k\u00F5ik kokku FoldAllAction.tooltip=Voldib valitud s\u00F5lmed ja nende all olevad s\u00F5lmed kokku. FoldOneLevelAction.text=Voldi \u00FChe taseme v\u00F5rra kokku FoldOneLevelAction.tooltip=Voldib valitud s\u00F5lmed \u00FChe taseme v\u00F5rra kokku. follow_graphical_link=Mine "{0}" FollowLinkAction.text=Ava h\u00FCperviide font=Kirjat\u00FC\u00FCp FontFamilyAction.text=kirja perekond FontSizeAction.text=kirja suurus format=&Vormindus format_menu_edge_styles=&\u00DChendusjoone stiilid format_menu_edge_widths=\u00DChendusjoone &Laiused FormatCopy.text=Kopeeri kujundus FormatCopy.tooltip=Kopeerib s\u00F5lme kujunduse. FormatPaste.text=Aseta kujundus FormatPaste.tooltip=Asetab s\u00F5lme kujunduse. ForwardAction.text=Edasi ForwardAction.tooltip=H\u00FCppab valitud ahelas edasi Freeplane.progress.buildScreen=Loon graafilise liidese... Freeplane.progress.createController=Loo kontroller... Freeplane.progress.createInitialMode=Loo algne re\u017Eiim... Freeplane.progress.endStartup=Programmi k\u00E4ivitamine l\u00F5petatud. Freeplane.progress.gettingPreferenceDirectories=Hangin kataloogide eelistusi... Freeplane.progress.gettingPreferences=Hangin eelistusi... Freeplane.progress.loadMaps=Laadin kaardid... Freeplane.progress.propagateLookAndFeel=Kehtesta v\u00E4limus ja tunnetus... Freeplane.progress.settingPreferences=Muudan eelistused... Freeplane.progress.startCreateController=Alusta kontrolleri loomist... Freeplane.progress.updateLookAndFeel=Uuenda v\u00E4ljan\u00E4gemist ja tunnetust... freeplane_reverted=Freeplane_Taastatud_ FreeplaneHelpStarter.text=Abi... FreeplaneHelpStarter.tooltip=Freeplane-i laiendatud abi GotoLinkNodeAction.text=Mine aadressile GrabKeyDialog.common.cancel=Loobu GrabKeyDialog.common.ok=Sobib GrabKeyDialog.grab-key.assigned-to=On m\u00E4\u00E4ratud GrabKeyDialog.grab-key.assigned-to.none=Hetkel ei ole m\u00E4\u00E4ratud GrabKeyDialog.grab-key.clear=Puhasta GrabKeyDialog.grab-key.remove=Eemalda GrabKeyDialog.grab-key.remove-ask=Oled Sa kindel, et soovid seda kiirklahvi eemaldada? GrabKeyDialog.grab-key.title=Sisesta uus klahv help=Abi HideAllAttributesAction.text=Peida k\u00F5ik omadused HierarchicalIconsAction.text=N\u00E4ita ikoone hierarhiliselt HierarchicalIconsAction.tooltip=Kui \u00FCks (suur)s\u00F5lmedest omab ikooni siis n\u00E4idatakse seda ka v\u00E4ikeses formaadis. HotKeyInfoAction.text=Key Reference[translate me] html_export_based_on_headings=HTML-i eksportimine - p\u00F5hineb p\u00E4istel html_export_fold_all=HTML-i eksportimine - voldi k\u00F5ik html_export_fold_currently_folded=HTML-i eksportimine - voldi nii nagu hetkel on volditud html_export_no_folding=HTML-i eksportimine - ei voldita icon_0%=0%[translate me] icon_100%=100%[translate me] icon_25%=25%[translate me] icon_50%=50%[translate me] icon_75%=75%[translate me] icon_attach=Vaata siia icon_back=Tagasi icon_bee=Freeplane[translate me] icon_bell=J\u00E4ta meelde icon_bookmark=Parim icon_broken-line=Katkine icon_button_cancel=Ei sobi icon_button_ok=Sobib icon_calendar=Kuup\u00E4ev icon_clanbomber=Ohtlik icon_clock=Aeg icon_closed=Sissep\u00E4\u00E4su ei ole icon_decrypted=Lahti lukustatud icon_desktop_new=\u00C4ra unusta icon_down=Alla icon_edit=Puhasta icon_encrypted=Lukustatud icon_family=Perekond icon_female1=Female1[translate me] icon_female2=Female2[translate me] icon_flag=Punane lipp icon_flag-black=Must lipp icon_flag-blue=Sinine lipp icon_flag-green=Roheline lipp icon_flag-orange=Oran\u017E lipp icon_flag-pink=Roosa lipp icon_flag-yellow=Kollane lipp icon_folder=Kataloog icon_forward=Edasi icon_freemind_butterfly=FreeMind icon_full-1=Prioriteet 1 icon_full-2=Prioriteet 2 icon_full-3=Prioriteet 3 icon_full-4=Prioriteet 4 icon_full-5=Prioriteet 5 icon_full-6=Prioriteet 6 icon_full-7=Prioriteet 7 icon_full-8=Prioriteet 8 icon_full-9=Prioriteet 9 icon_gohome=Kodu icon_group=Group[translate me] icon_help=K\u00FCsimus icon_hourglass=Ootab icon_idea=Idee icon_info=Info[translate me] icon_kaddressbook=Telefon icon_kmail=E-post icon_knotify=Muusika icon_korn=E-postkast icon_ksmiletris=Olen \u00F5nnelik icon_licq=Kena icon_Mail=E-post icon_male1=Male1[translate me] icon_male2=Male2[translate me] icon_menu=&Ikoonid icon_messagebox_warning=T\u00E4htis icon_password=V\u00F5ti icon_pencil=Rafineeritud icon_penguin=GNU/Linux icon_smiley-angry=Vihane icon_smiley-neutral=M\u00F5tet ei ole icon_smiley-oh=\u00DCllatav icon_smily_bad=Ma ei ole kaasa haaratud icon_stop=Seis icon_stop-sign=Seis icon_up=\u00DCles icon_wizard=Maagiline icon_xmag=R\u00E4\u00E4gitud icon_yes=T\u00E4htis IconGroupPopupAction.miscellaneous.text=Miscellaneous[translate me] IconGroupPopupAction.office.text=Office[translate me] IconSelectionPlugin.text=Vali ikoon... IconSelectionPlugin.tooltip=Siin saab valida ikooni, kasutades selleks alamakent. import=&Impordi import_linked_branch_no_link=Valitud s\u00F5lmel ei ole \u00FChtki viidet importida. ImportAction.text=Impordi ImportBranchAction.text=Haru... ImportExplorerFavoritesAction.text=MS Internet Explorer-i viited... ImportFolderStructureAction.text=Kaustade struktuur... ImportLinkedBranchAction.text=Viidatud haru ImportLinkedBranchWithoutRootAction.text=Viidatud haru juureta... ImportMindmanagerFiles.text=MindManager X5 kaart... increase_branch_font_size=Suurem haru kirja IncreaseNodeFontAction.text=Suurem haru kirja ItalicAction.text=Kaldkiri italicise_branch=Kaldkirjaks less_than_two_selected_nodes=Sa pead valima v\u00E4hemalt kaks s\u00F5lme, et viidet teha. link_not_available_any_more=See viide ei t\u00F6\u00F6ta enam. Nendevaheline s\u00F5lm on kustutatud. link_not_found=Viidet {0} ei leitud. load=&Laadi locking_failed_by_open={0} kaardi lukustamine eba\u00F5nnestus. Avan vaid lugemisre\u017Eiimis. locking_failed_by_save_as={0} kaardi lukustamine eba\u00F5nnestus. Tegevus Salvesta kui... katkestati. locking_old_lock_removed={0} kaart lukustati {1} kasutaja poolt. Lukustus eemaldati kuna see on vana. long_node_changed_cancel=Sa oled muutnud s\u00F5lme. Kas soovid muudatused unustada? long_node_changed_submit=Sa oled muutnud s\u00F5lme. Kas soovid muudatused salvestada? lots_of_links_warning=Sa oled samale s\u00F5lmele mitut viidet loomas. Kas t\u00F5esti soovid neid viiteid luua? map_already_exists=Kaart on juba olemas. Kas soovid seda \u00FCle kirjutada? map_corrupted=Kaart on vigane. Kas soovid detaile n\u00E4ha? map_locked_by_open={0} kaarti redigeerib juba {1} kasutaja. Avan vaid lugemisre\u017Eiimis. map_locked_by_save_as={0} kaart on parasjagu {1} kasutaja poolt redigeerimisel. Tegevus Salvesta kui katkestati. map_not_saved=Kaarti ei ole enne salvestatud. menu_attributes=&Omadused menu_insert=&Lisamine mindmap=M\u00F5ttekaart mindmaps=M\u00F5ttekaardid mindmaps_desc=M\u00F5ttekaardid (*.mm) mindmaps_filter_desc=Filtrid (*.mmfilter) mode_File=File Mode[translate me] mode_MindMap=MindMap Mode[translate me] mode_na=Re\u017Eiim ei ole saadaval mode_status=Re\u017Eiim muudeti re\u017Eiimiks {0} mode_title=Freeplane - {0} re\u017Eiim modes=Re\u017Eiimid ModesMenuAction.File.text=File Explorer[translate me] ModesMenuAction.MindMap.text=Mind Map Editor[translate me] most_recent_files=&Enimkasutatavad failid MoveToRootAction.text=Liigu algusesse navigate=&Liikumine NavigationNextMapAction.text=J\u00E4rgmine kaart NavigationPreviousMapAction.text=Eelmine kaart new_mindmap=Uus m\u00F5ttekaart new_node=Uus s\u00F5lm new_node_as_sibling_not_possible_for_the_root=Uus sama taseme s\u00F5lm ei ole peas\u00F5lmega v\u00F5imalik NewChildAction.text=Uus s\u00F5lm olemasoleva s\u00F5lme alla NewMapAction.text=Uus kaart NewParentNode.text=Uus peas\u00F5lm NewParentNode.tooltip=K\u00F5ik valitud saadeti uueks peas\u00F5lmeks. NewPreviousSiblingAction.text=Uus s\u00F5lm vasakule poole peas\u00F5lme alla NewSiblingAction.text=Uus s\u00F5lm peas\u00F5lme alla no=Ei no_format_copy_before_format_paste=Sa ei saa vormindust asetada kuni ei ole \u00FChtegi kopeeritud. no_found_from=Ei {0} leitud {1}. no_more_found_from=Rohkem {0} ei leitud "{1}". no_previous_find=Eelmist ei leitud. node=S\u00F5lm node_changed_discard_changes=Sa oled muutnud s\u00F5lme. Kas soovid muudatused unustada? node_is_write_protected=Sihtm\u00E4rk (s\u00F5lm) on kirjutuskaitstud. node_location_help=Lohistamine muudab s\u00F5lme asukohta, CTRL+lohistamine muudab kauguseid, topeltkl\u00F5ps ja CTRL+topeltkl\u00F5ps taastavad algseaded. NodeBackgroundColorAction.text=S\u00F5lme taustav\u00E4rv... NodeColorAction.text=S\u00F5lme v\u00E4rv... NodeColorBlendAction.text=Sega v\u00E4rv NodeDownAction.text=Liiguta s\u00F5lm alla NodeListAction.text=Otsi ja asenda... NodeListAction.tooltip=N\u00E4itab k\u00F5iki s\u00F5lmi otsitava nimekirjana koos filtreerimisv\u00F5imalusega. NodeShapeAction.bubble.text=Mull NodeShapeAction.fork.text=Haru NodeUpAction.text=Liiguta s\u00F5lm \u00FCles nonboldify_branch=Eemalda rasvane kiri nonitalicise_branch=Eemalda kaldkiri normal=Tavaline not_saved_for_link_error=Kaart tuleb enne failivalijale lingi m\u00E4\u00E4ramist salvestada ok=&Sobib OKAction.text=Sobib OpenAction.text=Ava salvestatud kaart... OpenFreeplaneSiteAction.text=Freeplane-i koduleht option_changes_may_require_restart=Muudetud seadistuste j\u00F5ustumiseks tuleb Freeplane taask\u00E4ivitada. OptionalDontShowMeAgainDialog.cancel=&Ei OptionalDontShowMeAgainDialog.dontShowAgain=&\u00C4ra enam uuesti k\u00FCsi. OptionalDontShowMeAgainDialog.ok=&Jah OptionalDontShowMeAgainDialog.rememberMyDescision=&J\u00E4ta minu otsus meelde. OptionPanel.absolute=Absoluutne OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Automaatne mustrite paigutus OptionPanel.antialias=Kirjakujude pehmendamine OptionPanel.antialias.tooltip=M\u00E4\u00E4ratleb kaardi kvaliteedi. Kirjakujude pehmendamise (antialias) suurendamine n\u00F5uab ka rohkem aega. OptionPanel.antialias_all=Pehmenda: fonte k\u00F5ikjal OptionPanel.antialias_edges=Pehmenda: servad OptionPanel.antialias_none=L\u00FClita kirja pehmendamine v\u00E4lja OptionPanel.Appearance=V\u00E4limus OptionPanel.ar=Araabia / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.as_parent=Kui naaber OptionPanel.ask=K\u00FCsi OptionPanel.automatic=Automaatne OptionPanel.automaticFormat_level=Automaatne stiilide paigutus OptionPanel.automaticFormat_level1=Peas\u00F5lme kujundus OptionPanel.automaticFormat_level2=1. taseme s\u00F5lme kujundus OptionPanel.Behaviour=K\u00E4itumine OptionPanel.bezier=Bezier[translate me] OptionPanel.bubble=Mull OptionPanel.Cancel=Loobu OptionPanel.childpattern=Alams\u00F5lme muster OptionPanel.childpattern.tooltip=Valitud muster m\u00E4\u00E4ratakse k\u00F5ikidele alams\u00F5lmedele. OptionPanel.clear_all_setters=L\u00FClita k\u00F5ik OptionPanel.clear_all_setters.tooltip=Lubab v\u00F5i keelab k\u00F5ik muutmise indikaatorid. OptionPanel.cloud=Cloud[translate me] OptionPanel.combined=Kombineeritud OptionPanel.convert_to_current_version=Teisenda kaardid automaatselt vanast Freeplane-i versioonist
k\u00E4esolevasse versiooni? OptionPanel.convert_to_current_version.tooltip=Ainult v\u00E4ga suurtele kaartidele, mida ei ole vaja teisendada
(see info on ekspertidele) v\u00F5id Sa avada vanemas vormingus kaarte neid k\u00E4esolevasse vormingusse teisendamata. OptionPanel.cs=T\u0161ehhi / \u010Desky OptionPanel.cut_nodes_without_question=L\u00F5igata s\u00F5lmed kinnitust k\u00FCsimata? OptionPanel.cut_nodes_without_question.tooltip=Kui see on valitud siis s\u00F5lmed l\u00F5igatakse kinnitust k\u00FCsimata. See v\u00F5ib p\u00F5hjustada informatsiooni kaotuse kui t\u00E4helepanuta kasutada. OptionPanel.da=DK (taani keel) OptionPanel.de=DE (saksa keel) OptionPanel.default=Vaikimisi OptionPanel.default_browser_command_mac=Vaikimisi veebilehitseja k\u00E4ivitamise k\u00E4sk Mac-is OptionPanel.default_browser_command_mac.tooltip= ja Mac-ile: (t\u00E4nud Nick-ile!) OptionPanel.default_browser_command_other_os=Vaikimisi veebilehitseja k\u00E4ivitamise k\u00E4sk teistes OS-ides OptionPanel.default_browser_command_other_os.tooltip= See on Linux-ile t\u00FC\u00FCpiline: OptionPanel.default_browser_command_windows_9x=Vaikimisi veebilehitseja k\u00E4ivitamise k\u00E4sk MS Windows 9x-s OptionPanel.default_browser_command_windows_9x.tooltip=Windowsi jaoks (jutum\u00E4rgid on vajalikud t\u00E4nu h\u00FCperviitele, millel on "=" m\u00E4rk viites). OptionPanel.default_browser_command_windows_nt=Vaikimisi veebilehitseja k\u00E4ivitamise k\u00E4sk MS Windows NT-s OptionPanel.default_browser_command_windows_nt.tooltip=Windowsi jaoks (jutum\u00E4rgid on vajalikud t\u00E4nu h\u00FCperviitele, millel on "=" m\u00E4rk viites). OptionPanel.Defaults=Vaikimisi seaded OptionPanel.delete_automatic_saves_at_exit=Programmist v\u00E4ljumisel kustuta automaatsalvestused OptionPanel.delete_automatic_saves_at_exit.tooltip= Kui soovid, et Freeplane kustutaks automaatselt sulgemisel failid siis m\u00E4\u00E4ra see muutuja t\u00F5eseks OptionPanel.delete_nodes_without_question=Kustutada s\u00F5lmed kinnitust k\u00FCsimata? OptionPanel.delete_nodes_without_question.tooltip=Kui siin on m\u00E4rgitud siis s\u00F5lmed kustutatakse kinnitust k\u00FCsimata. See v\u00F5ib p\u00F5hjustada informatsiooni kaotuse t\u00E4helepanuta kustutamisel. OptionPanel.disable_cursor_move_paper.tooltip=\u00C4ra n\u00E4ita tausta liigutamisel kursori kuju muutust OptionPanel.edgecolor=\u00DChendusjoone v\u00E4rv OptionPanel.edgecolor.tooltip=Naabers\u00F5lmega \u00FChendava joone omadused (kehtib samuti k\u00F5ikide teisi alams\u00F5lmi \u00FChendavate joonte kohta) OptionPanel.edgestyle=\u00DChendusjoone stiil OptionPanel.edgestyle.tooltip=Naabers\u00F5lmega \u00FChendava joone omadused (kehtib samuti k\u00F5ikide teisi alams\u00F5lmi \u00FChendavate joonte kohta) OptionPanel.edgewidth=\u00DChendusjoone laius OptionPanel.edgewidth.tooltip=Naabers\u00F5lmega \u00FChendava joone omadused (kehtib samuti k\u00F5ikide teisi alams\u00F5lmi \u00FChendavate joonte kohta) OptionPanel.el=Kreeka / \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__enter_confirms_by_default=Sisestusklahv (Enter) kinnitab vaikimisi OptionPanel.el__max_default_window_height=Suurim vaikimisi akna k\u00F5rgus OptionPanel.el__max_default_window_width=Suurim vaikimisi akna laius OptionPanel.el__min_default_window_height=V\u00E4him vaikimisi akna k\u00F5rgus OptionPanel.el__min_default_window_width=V\u00E4him vaikimisi akna laius OptionPanel.el__position_window_below_node=Asukoha aken allpool s\u00F5lme OptionPanel.en=EN (inglise keel) OptionPanel.Environment=Keskkond OptionPanel.es=ES (hispaania keel) OptionPanel.et=Et (eesti keel) OptionPanel.execute_scripts_without_asking=Skriptide k\u00E4ivitamine on lubatud OptionPanel.execute_scripts_without_asking.tooltip=Freeplane-i skriptid on p\u00F5him\u00F5tteliselt suutelised mistahes tegevust Sinu arvutis tegema.
Seet\u00F5ttu ei peaks Sa skripte k\u00E4ivitama, mille ohutuses Sa kindel ei ole. OptionPanel.execute_scripts_without_exec_restriction=Luba k\u00E4ivitada teisi rakendusi (EI ole soovitatav) OptionPanel.execute_scripts_without_exec_restriction.tooltip=Kui Sinu Lahe Skript vajab k\u00E4ivitumiseks teisi rakendusi (nt veebilehitseja) luba k\u00FCsimata(!),
siis pead Sa selle v\u00F5imaluse lubama.
Kuid ole ettevaatlik kuna t\u00E4nap\u00E4eval v\u00F5ivad kahtlased skriptid kahjustada Sinu arvutit! OptionPanel.execute_scripts_without_file_restriction=Failioperatsioonide lubamine (EI ole soovitatav) OptionPanel.execute_scripts_without_file_restriction.tooltip=Kui Sinu Lahe Skript vajab k\u00E4ivitumiseks failioperatsioone (avamine, sulgemine, lugemine, kirjutamine, kustutamine (!)),
siis pead Sa selle v\u00F5imaluse lubama.
Kuid ole ettevaatlik kuna t\u00E4nap\u00E4eval v\u00F5ivad kahtlased skriptid kahjustada Sinu arvutit! OptionPanel.execute_scripts_without_network_restriction=Luba v\u00F5rguoperatsioonid (EI ole soovitatav) OptionPanel.execute_scripts_without_network_restriction.tooltip=Kui Sinu Lahe Skript vajab k\u00E4ivitumiseks v\u00F5rguoperatsioone,
siis pead Sa selle v\u00F5imaluse lubama.
Kuid ole ettevaatlik kuna t\u00E4nap\u00E4eval v\u00F5ivad kahtlased skriptid paljastada Sinu saladused! OptionPanel.experimental_file_locking_on=Katseline faili lukustamine OptionPanel.experimental_file_locking_on.tooltip= Katsetusj\u00E4rgus olev omadus OptionPanel.export_icons_in_html=Ekspordi ikoonid HTML-i OptionPanel.export_icons_in_html.tooltip= M\u00E4\u00E4rab Freeplane-ist HTML-i eksportimisel ikoonide kaasapanemise. P\u00F5hiprobleem ikoonidega on see, et ei leita HTML-koodis viidatud aadressilt ikooni. OptionPanel.Files=Failid OptionPanel.first=Esimene OptionPanel.foldingsymbolwidth=Voltimise s\u00FCmboli laius OptionPanel.foldingsymbolwidth.tooltip=Voltimise m\u00E4rkimist v\u00F5imaldava ringikujulise s\u00FCmboli laius OptionPanel.fork=Haru OptionPanel.fr=FR (prantsuse keel) OptionPanel.gl=GL (Galicia, Hispaania) OptionPanel.gtk=Gtk OptionPanel.hr=HR (horvaadi keel) OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=P\u00F5hineb p\u00E4istel OptionPanel.html_export_fold_all=Voldi k\u00F5ik kokku OptionPanel.html_export_fold_currently_folded=Voldi hetkel volditud kokku OptionPanel.html_export_folding=Voltimine HTML-ekspordil OptionPanel.html_export_no_folding=Ei voldita OptionPanel.hu=HU (ungari keel) OptionPanel.icon=Ikoon OptionPanel.icon.tooltip=Kui kehtestada siis s\u00F5lmele tekib t\u00E4pselt samasugune ikoon. OptionPanel.id=Id[translate me] OptionPanel.it=IT (itaalia keel) OptionPanel.ja=Jaapani / \u65E5\u672C\u8A9E OptionPanel.Keystrokes=Kiirklahvid OptionPanel.ko=Korea / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_size=Kirjakuju suurus OptionPanel.language=Keel OptionPanel.language.tooltip=See on keel, mida programm kasutama peaks. 'automaatne' proovib laadida sisseloginud kasutajakeskkonna keele eelistust. OptionPanel.last=Viimane OptionPanel.last_opened_list_length=Viimati avatud nimekirja pikkus OptionPanel.linear=Linear[translate me] OptionPanel.links=Viited OptionPanel.links.tooltip=Sisesta viited kas suhteliste v\u00F5i absoluutaadressidena. OptionPanel.load_folding=On Load[translate me] OptionPanel.load_last_map=Ava automaatselt viimati avatud kaart OptionPanel.load_last_map.tooltip=Kui Freeplane k\u00E4ivitub siis avab ta automaatselt viimati avatud kaardi, kui see on valitud. OptionPanel.lookandfeel=V\u00E4limus OptionPanel.lookandfeel.tooltip=V\u00E4ljan\u00E4gemine kasutamiseks. 'metalne','windows','motif', 'gtk' on toetatud 'mac'on saadaval vaid MacOS-is. Vaikimisi t\u00E4hendab seda, et vaikimisi v\u00E4ljan\u00E4gemist kasutatakse. Kui soovid isetehtud v\u00E4limust kasutada, palun sisesta klassi nimi siia ja veendu, et vastav *.jar fail on ka olemas, mida laadida. Kui v\u00E4ljan\u00E4gemisega ilmnevad probleemid siis vali 'mitte midagi' siin. See t\u00F6\u00F6tab applet-itega. OptionPanel.lt=LT (leedu keel) OptionPanel.max_node_width=Maksimaalne s\u00F5lme laius OptionPanel.max_node_width.tooltip=Vaikimisi maksimaalne s\u00F5lme laius pikselites OptionPanel.metal=Metalne OptionPanel.motif=Motif OptionPanel.nb=NB (bokm\u00E5l, norra keel) OptionPanel.nl=NL (hollandi keel) OptionPanel.nn=NN (nynorsk, norra keel) OptionPanel.nodebackgroundcolor=S\u00F5lme tausta v\u00E4rv OptionPanel.nodebackgroundcolor.tooltip=S\u00F5lme taust kui s\u00F5lm ei ole valitud. OptionPanel.nodecolor=S\u00F5lme v\u00E4rv OptionPanel.nodecolor.tooltip=S\u00F5lmede esiplaani v\u00E4rv kui ei ole valitud. OptionPanel.nodefontbold=Rasvane kiri OptionPanel.nodefontitalic=Kaldkiri OptionPanel.nodefontname=S\u00F5lme kirjakuju nimi OptionPanel.nodefontsize=S\u00F5lme kirjakuju suurus OptionPanel.nodetext=S\u00F5lme tekst OptionPanel.nodetext.tooltip=Siin saab sisestada s\u00F5lme teksti. Eelmine tekst unustatakse kui selline muster lisatakse. OptionPanel.nothing=Mitte midagi OptionPanel.number_of_different_files_for_automatic_save=Automaatsalvestamisel erinevate failide arv OptionPanel.number_of_different_files_for_automatic_save.tooltip= kaartide salvestuste erinevate failide arv n. Esimene automaatne salvestus kirjutatakse esimesse faili, jne kuni n+1 salvestuseni, mis salvestatakse taas esimese failina (ts\u00FCklina) OptionPanel.OK=Salvesta OptionPanel.patternname=Nimi OptionPanel.patternname.tooltip=Unikaalne mustri nimi OptionPanel.pl=PL (poola keel) OptionPanel.placenewbranches=Aseta uued harud OptionPanel.placenewbranches.tooltip=Kuhu asetada s\u00F5lmede uued harud. Kehtivad v\u00E4\u00E4rtused on 'esimeseks' ja 'viimaseks' OptionPanel.printonwhitebackground=Valge taust printimise ajaks OptionPanel.printonwhitebackground.tooltip=Kasuta printimisel alati valget tausta OptionPanel.pt_BR=PT BR (brasiilia portugali keel) OptionPanel.pt_PT=PT PT (portugali keel) OptionPanel.relative=Suhteline OptionPanel.remove_notes_without_question=Eemaldada m\u00E4rkmed kinnitust k\u00FCsimata? OptionPanel.remove_notes_without_question.tooltip=Kui see m\u00E4rkeruut on m\u00E4rgitud siis valitud s\u00F5lmede m\u00E4rkused eemaldatakse kinnitust k\u00FCsimata. See v\u00F5ib lohaka kasutuse tagaj\u00E4rjel tuua kaasa informatsiooni kaotuse. OptionPanel.ru=Vene / \u0420\u0443\u0441\u0441\u043A\u0438\u0439 OptionPanel.script_user_key_name_for_signing=V\u00F5imalik kiirklahv allkirjastamiseks OptionPanel.script_user_key_name_for_signing.tooltip=Kui soovid oma skripte allkirjastada, sisesta v\u00F5tme analoog siia.
See v\u00F5ti j\u00E4\u00E4b vaikimisi kiirklahvide hulka.
Salastatud v\u00F5tmete salas\u00F5na peab langema kokku kiirklahvide salas\u00F5naga (see on vaikimisi nii). OptionPanel.selection_method=Valiku meetod OptionPanel.selection_method.tooltip= j\u00E4rgneva v\u00F5tme abil saab lubada/keelata viivitusega valiku skeemi. Automaatseadistus. \u00C4ra muuda neid kuna need salvestatakse faili auto.properties nagunii. OptionPanel.selection_method_by_click=Kl\u00F5psamisel OptionPanel.selection_method_delayed=Viivitusega OptionPanel.selection_method_direct=Otse OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Mustrid OptionPanel.separator.anti_alias=Kirjakujude pehmendamine OptionPanel.separator.attributes=Omadused OptionPanel.separator.automatic_save=Automaatne salvestamine OptionPanel.separator.behaviour=K\u00E4itumine OptionPanel.separator.browser=Lehitseja OptionPanel.separator.commands_for_the_program=Programmik\u00E4sud OptionPanel.separator.connectors=Connectors[translate me] OptionPanel.separator.default_colors=Vaikimisi v\u00E4rvid OptionPanel.separator.default_fonts=Vaikimisi kirjat\u00FC\u00FCbid OptionPanel.separator.default_styles=Vaikimisi stiilid OptionPanel.separator.EdgeControls=\u00DChendusjooned OptionPanel.separator.edit_long_node_window=Redigeeri s\u00F5lme h\u00FCpikaknas OptionPanel.separator.files=Failid OptionPanel.separator.General=\u00DCldine OptionPanel.separator.html_export=HTML-eksport OptionPanel.separator.html_import=Html Import[translate me] OptionPanel.separator.hyperlink_types=H\u00FCperviite t\u00FC\u00FCbid OptionPanel.separator.icon_properties=Ikoonid OptionPanel.separator.icons=Ikoonid valikus "Vali ikoon..." OptionPanel.separator.initial_map_size=Esialgne kaardi suurus OptionPanel.separator.key_typing=Kiirklahvid OptionPanel.separator.language=Keel OptionPanel.separator.look_and_feel=V\u00E4limus OptionPanel.separator.mouse_wheel=Hiireratas OptionPanel.separator.new_node_commands=Uue s\u00F5lme k\u00E4sud OptionPanel.separator.node_editing_commands=S\u00F5lme redigeerimise k\u00E4sud OptionPanel.separator.node_navigation_commands=S\u00F5lme liigutamise k\u00E4sud OptionPanel.separator.NodeColors=S\u00F5lmede v\u00E4rvid OptionPanel.separator.NodeFont=S\u00F5lme kirjakuju OptionPanel.separator.notifications=Kinnitused OptionPanel.separator.other_defaults=Teised vaikimisi seaded OptionPanel.separator.others=Teised kiirklahvid OptionPanel.separator.patterns=Mustrid OptionPanel.separator.root_node_appearance=Peas\u00F5lme v\u00E4limus OptionPanel.separator.save=Salvesta OptionPanel.separator.selection_colors=V\u00E4rvivalik OptionPanel.separator.selection_method=Valiku meetod OptionPanel.separator.undo=V\u00F5ta tagasi OptionPanel.separator.updates=Program Updates[translate me] OptionPanel.set_property_text=Muuda OptionPanel.set_property_text.tooltip=T\u00FChi: \u00C4ra puutu; Miinus=Eemalda omadused (kehtestab vaikimisi v\u00E4\u00E4rtused); Pluss=Muuda omadust OptionPanel.setscript=Muudame? OptionPanel.setscript.tooltip=Skripti v\u00F5ib ka stiiliga siduda. OptionPanel.sharp_bezier=j\u00E4rsud kurvid OptionPanel.sharp_linear=terav serv OptionPanel.show_creation_modification_in_tooltip=N\u00E4ita Muutmise aegu OptionPanel.show_icon_for_attributes=N\u00E4ita omaduste ikooni OptionPanel.signed_script_are_trusted=Usalda allkirjastatud skripte (soovitatav). OptionPanel.signed_script_are_trusted.tooltip=Kui skriptid on allkirjastatud usaldusv\u00E4\u00E4rsete partnerite poolt (nt Freeplane-i autori v\u00F5i Sinu enda poolt), siis see k\u00E4ivitatakse ilma piiranguteta. OptionPanel.sk=Slovaki / sloven\u010Dina OptionPanel.sl=Sloveenia / sloven\u0161\u010Dina OptionPanel.standardbackgroundcolor=Standardne taustav\u00E4rv OptionPanel.standardbackgroundcolor.tooltip=Standardne taustav\u00E4rv HTML-viidetes OptionPanel.standardcloudcolor=Standardne pilve v\u00E4rv OptionPanel.standardcloudcolor.tooltip=Standardne pilve v\u00E4rv HTML-m\u00E4rgendis OptionPanel.standardcloudestyle=Standardne pilvestiil OptionPanel.standardcloudestyle.tooltip=Standardne pilvestiil. Hetkel vaid 'puutujak\u00F5ver' on toetatud OptionPanel.standarddrawrectangleforselection=N\u00E4ita valitud s\u00F5lmi mullides OptionPanel.standarddrawrectangleforselection.tooltip=Joonista valitud s\u00F5lmedele mullid \u00FCmber. OptionPanel.standardlinkcolor=Standardne viite v\u00E4rv OptionPanel.standardlinkcolor.tooltip=Standardne viite v\u00E4rv HTML-m\u00E4rgendis OptionPanel.standardlinkestyle=Standardne viite stiil OptionPanel.standardlinkestyle.tooltip=Standardne viite stiil. Hetkel vaid 'puutujak\u00F5ver' on toetatud OptionPanel.standardselectednodecolor=Standardne valitud s\u00F5lme v\u00E4rv OptionPanel.standardselectednodecolor.tooltip=Standardne s\u00F5lme v\u00E4rv kui see on valitud (aktiivne). HTML-is #RRGGBB (16nd-koodis) OptionPanel.standardselectednoderectanglecolor=Valitud s\u00F5lme mulli v\u00E4rv OptionPanel.standardselectednoderectanglecolor.tooltip=Valitud s\u00F5lmede mulli v\u00E4rv. HTML-is #RRGGBB (16nd-koodis) OptionPanel.sv=SE (p\u00F5hja-saami, rootsi keel) OptionPanel.time_for_automatic_save=Automaatsalvestuse aeg OptionPanel.time_for_automatic_save.tooltip= aeg kahe j\u00E4rjestiku salvestamise vahel (millisekundites, ms) : Et automaatsalvestamist keelata, m\u00E4\u00E4ra selleks numbriks 2000000000. OptionPanel.time_for_delayed_selection=Aeg viivitusega valikuks OptionPanel.time_for_delayed_selection.tooltip= S\u00F5lmede valiku viivitus hiire \u00FCleliikumisel (millisekundites). Muuda selle v\u00E4\u00E4rtus 1 peale kui soovid kohest (viivituseta) valikut hiire \u00FCle s\u00F5lme liikumisel. OptionPanel.toolTipManager.max_tooltip_width=Kohtspikri maksimaalne laius OptionPanel.toolTipManager.max_tooltip_width.tooltip=Maksimaalne kohtsprikri laius pikselites. OptionPanel.tr=TR (t\u00FCrgi keel) OptionPanel.uk_UA=Ukrainia / \u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=M\u00E4\u00E4ramata kirjakuju OptionPanel.undo_levels=V\u00F5ta tasemed tagasi OptionPanel.undo_levels.tooltip=M\u00E4\u00E4rab selle, kui mitu sammu tagasiv\u00F5tmiseks salvestatakse. OptionPanel.unfold_on_paste=Asetamisel voldi s\u00F5lm lahti OptionPanel.unfold_on_paste.tooltip=Voldi s\u00F5lm asetamisel lahti v\u00F5i lohista-ning-kukuta OptionPanel.use_common_out_point_for_root_node=\u00DChendusjooned peas\u00F5lmega algavad \u00FChest punktist OptionPanel.use_common_out_point_for_root_node.tooltip=\u00DChendusjooned peas\u00F5lmega algavad \u00FChest punktist OptionPanel.use_tabbed_pane=Kasuta kaarte OptionPanel.use_tabbed_pane.tooltip=Kui valitud siis kaarte n\u00E4idatakse sakkidena (nagu Firefoxis :-) ). OptionPanel.vi=Vietnami / Ti\u1EBFng Vi\u1EC7t OptionPanel.wheel_velocity=Kiirus OptionPanel.wheel_velocity.tooltip=Kaarti saab hiire rattaga kiiremini liigutada kui siia panna suurem v\u00E4\u00E4rtus. OptionPanel.windows=Windows OptionPanel.zh_CN=Hiina, lihtsustatud / \u7B80\u4F53\u5B57 OptionPanel.zh_TW=Hiina, traditsiooniline / \u7E41\u9AD4\u5B57 out_of_memory=Kogu m\u00E4lu on kasutusel. PageAction.text=Lehek\u00FClje seaded... PasteAction.text=Aseta PatternNewNameProperty=Uus muster PatternToString.backgroundColor=Taustav\u00E4rv PatternToString.Child=Alams\u00F5lme stiil PatternToString.color=V\u00E4rv PatternToString.EdgeColor=\u00DChendusjoone v\u00E4rv PatternToString.EdgeStyle=\u00DChendusjoone stiil PatternToString.EdgeWidth=\u00DChendusjoone laius PatternToString.FontBold=Rasvane PatternToString.FontItalic=Kaldu PatternToString.FontName=Kirjakuju nimi PatternToString.Icon=Ikoon PatternToString.NodeFontSize=Kirjakuju suurus plugins/ScriptEditor.cancel=&T\u00FChista muudatused ja v\u00E4lju plugins/ScriptEditor.exit=&Salvesta ja v\u00E4lju plugins/ScriptEditor.FORBIDDEN_ACTION=Freeplane-i lahedad skriptid on piiratud. J\u00E4rgnev {0,choice,0#File|1#Network|2#Exec} operatsioon on keelatud: {1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write}. Sa saad seda muuta programmi seadistustes. plugins/ScriptEditor.menu_actions=&Tegevused plugins/ScriptEditor.new_script=Uus skript plugins/ScriptEditor.run=&K\u00E4ivita plugins/ScriptEditor.sign=Allkirjasta skript... plugins/ScriptEditor/window.Result=Tulemus: plugins/ScriptEditor/window.title=Skripti redaktor preferences=Eelistused print_preview_title=Tr\u00FCkkimise eelvaatlus PrintAction.text=Tr\u00FCki... PrintDirectAction.text=Tr\u00FCki printing_settings=Tr\u00FCkkimise skaleerimine PrintPreviewAction.text=Tr\u00FCkkimise eelvaatlus... QuitAction.text=Sulge Freeplane read_only=Ainult lugemiseks really_convert_to_current_version=See kaart on vanema Freeplane-i abil loodud.
Kas teisendame uuemasse vormingusse (soovitatav)?
(Muidu v\u00F5etakse seda nagu see on ja ilma garantiita.) really_cut_node=Kas t\u00F5esti l\u00F5igata s\u00F5lm(ed)? really_execute_script=Kas t\u00F5esti soovid k\u00E4ivitada selle kaardiga kaasasolevaid olevaid skripte? On v\u00F5imalik, et need kahjustavad Sinu arvutit. really_remove_node=Kas t\u00F5esti kustutada need s\u00F5lmed? really_remove_notes=Kas t\u00F5esti eemaldada need m\u00E4rkmed? RedoAction.text=Tee uuesti RedoFilterAction.text=Tee uuesti reminder.appendButton=Lisa kuup\u00E4ev valitud s\u00F5lmedele reminder.Cancel=Loobu reminder.cancelButton=Loobu reminder.closeButton=Sulge reminder.Created=Loodud reminder.Export=Ekspordi valitud s\u00F5lmed reminder.Find=Otsi reminder.Goto=Mine reminder.hour=Tund: reminder.Icons=Ikoonid reminder.Map=M\u00F5ttekaart reminder.menu_actions=Tegevused reminder.minute=Minut: reminder.Modified=Muudetud reminder.Notes=M\u00E4rkmed reminder.reminderButton=J\u00E4ta mind selle kuup\u00E4evaga meelde reminder.reminderButton.tooltip=Kui ajaarvestajale kl\u00F5psatud siis m\u00E4rgitakse k\u00E4esolev aeg \u00FCles. Vilkuvad ikoonid p\u00FC\u00FCavad siis Sinu t\u00E4helepanu.
Kui kaardi sulged siis \u00FClesm\u00E4rgitud ajad aktiveeruvad j\u00E4rgmine kord kui kaart avatakse. reminder.reminderNode.tooltip=Meeldetuletaja m\u00E4rgitud {0,date} {0,time}. reminder.reminderNode_onlyOneDate=Hetkel saab olla vaid \u00FCks meeldetuletaja s\u00F5lme kohta.
K\u00E4esolev meeldetuletaja on m\u00E4\u00E4ratud {0,date} {0,time}, Sinu valik oli {1,date} {1,time}.

Kas soovid s\u00F5lme meeldetuletajat muuta (JAH)
v\u00F5i soovid vana alles hoida (EI)? reminder.removeReminderButton=Eemalda meeldetuletaja reminder.removeReminderButton.tooltip=Eemalda k\u00F5ik meeldetuletajad, mis on seotud valitud s\u00F5lmedega. reminder.Replace=Asenda reminder.Replace_All=Asenda k\u00F5ik reminder.Replace_Selected=Asenda valitud reminder.Select=M\u00E4rgi reminder.Text=Tekst reminder.todayButton=T\u00E4na reminder.WindowTitle=Ajahaldus reminder.WindowTitle_All_Nodes=Otsi & Asenda ReminderHookAction.text=Eemalda meeldetuletaja ReminderHookAction.tooltip=Eemaldab s\u00F5lmelt meeldetuletuse. ReminderListAction.text=N\u00E4ita ajastatud toiminguid ja &Nimekirja ... ReminderListAction.tooltip=N\u00E4itab k\u00F5iki m\u00E4rgitud aegu ja seotud s\u00F5lmi. RemoveAllIconsAction.text=Eemalda k\u00F5ik ikoonid RemoveIconAction.text=Eemalda viimane ikoon RemoveNoteAction.text=Eemalda m\u00E4rkmed RemoveNoteAction.tooltip=Eemaldab m\u00E4rkuse sisu ja v\u00F5imalik, et mitmelt m\u00E4rkmelt. rename=&Nimeta \u00FCmber repair_link=Paranda viide repair_link_question=Ei suutnud viidatud kaarti laadida. Kas soovid k\u00E4sitsi viidet parandada? replace=Asenda ResetNodeLocationAction.text=Taasta esialgne Paigutus save_failed={0} katse kaarti salvestada eba\u00F5nnestus. save_unsaved=Kas salvestada see m\u00F5ttekaart? SaveAction.text=&Salvesta SaveAll.text=Salvesta &k\u00F5ik kaardid SaveAll.tooltip=Salvestab k\u00F5ik avatud kaardid SaveAsAction.text=Salvesta kaart k&ui... saved=Salvestatud scheme_evaluate=Hinda! ScriptEditor.text=Skripti redaktor... ScriptEditor.tooltip=V\u00F5imaldab suuri skripte Freeplane-i sees kirjutada. ScriptEditorPanel.changed_cancel=Skripte on muudetud. Kas t\u00F5esti soovid loobuda neist muudatustest? select_favorites_folder=Vali kataloog kus asuvad Sinu j\u00E4rjehoidjad select_folder_for_importing=Vali kataloog, mida importida SelectAllAction.text=Vali k\u00F5ik n\u00E4htavad s\u00F5lmed SelectBranchAction.text=Vali n\u00E4htav haru selection_method_by_click=\u00DCks kl\u00F5ps m\u00E4rkimiseks selection_method_delayed=Viivitusega automaatvalik selection_method_direct=Osuta, et valida SelectNoteAction.text=S\u00F5lme muutmise l\u00FCliti SelectNoteAction.tooltip=L\u00FClitu m\u00E4rkme loomise aknasse SetImageByFileChooserAction.text=Pilt (faililehitseja v\u00F5i viide)... SetLinkByFileChooserAction.text=H\u00FCperviide (faililehitseja)... SetLinkByTextFieldAction.text=H\u00FCperviide (tekstiv\u00E4li)... ShowAllAttributesAction.text=N\u00E4ita k\u00F5iki omadusi ShowAncestorsAction.text=N\u00E4ita eellasi ShowAttributeDialogAction.text=Omaduste haldur... ShowDescendantsAction.text=N\u00E4ita j\u00E4rglasi ShowHideNoteAction.text=M\u00E4rkuste aken ShowHideNoteAction.tooltip=Lubab viisakalt m\u00E4rkuste aknal ilmuda v\u00F5i kaduda. ShowPreferencesAction.text=Eelistused ... ShowSelectedAttributesAction.text=N\u00E4ita valitud omadusi ShowSelectionAsRectangleAction.text=Ristk\u00FClikukujuline valik simplyhtml.aboutFrameTitle=Sellest programmist l\u00E4hemalt simplyhtml.aboutLabel=SimplyHTML-ist l\u00E4hemalt... simplyhtml.alignCenter=keskele simplyhtml.alignLabel=Joondus: simplyhtml.alignLeft=vasakule simplyhtml.alignRight=paremale simplyhtml.allCellsRangeLabel=k\u00F5ik lahtrid simplyhtml.allOccurrencesReplaced=K\u00F5ik kokkulangevused asendatud simplyhtml.appendTableColLabel=Lisa veerg simplyhtml.appendTableRowLabel=Lisa rida simplyhtml.applyCellAttrLabel=Rakenda simplyhtml.backgroundLabel=Taust: simplyhtml.boldItalicName=rasvane kaldkiri simplyhtml.boldName=rasvane simplyhtml.borderColorLabel=V\u00E4rv: simplyhtml.borderWidthLabel=Laius simplyhtml.bottomLabel=all: simplyhtml.cancelBtnName=Loobu simplyhtml.cellBorderTabLabel=Piirded simplyhtml.cellGenTabLabel=\u00DCldine simplyhtml.cellMarginTabLabel=Veeris simplyhtml.cellPanelTitle=Lahtri vormindus simplyhtml.clearFormatLabel=Eemalda vormindus simplyhtml.clearFormatTip=Eemalda vormindus simplyhtml.close=Sulge simplyhtml.closeBtnName=Sulge simplyhtml.colorLabel=V\u00E4rv simplyhtml.copyLabel=Kopeeri simplyhtml.copyTip=kopeeri simplyhtml.cTagNameHead1=Pealkiri 1 simplyhtml.cTagNameHead2=Pealkiri 2 simplyhtml.cTagNameHead3=Pealkiri 3 simplyhtml.cTagNameHead4=Pealkiri 4 simplyhtml.cTagNameHead5=Pealkiri 5 simplyhtml.cTagNameHead6=Pealkiri 6 simplyhtml.cTagNameLink=Viide simplyhtml.cTagNameOL=Sorteeritud nimekiri simplyhtml.cTagNamePara=L\u00F5ik simplyhtml.cTagNameUL=Sorteerimata nimekiri simplyhtml.cutLabel=L\u00F5ika simplyhtml.cutTip=l\u00F5ika simplyhtml.defaultDocName=Nimetu simplyhtml.deleteTableColLabel=Kustuta veerg simplyhtml.deleteTableRowLabel=Kustuta rida simplyhtml.docTitleQuery=M\u00E4\u00E4ra pealkiri: simplyhtml.docTitleTitle=Muuda dokumendi pealkirja simplyhtml.editLabel=Redigeeri simplyhtml.effectLabel=Efekt simplyhtml.familyLabel=Perekond simplyhtml.findNext=Otsi j\u00E4rgmine... simplyhtml.findReplaceDialogTitle=Otsi & Asenda simplyhtml.findReplaceLabel=Otsi & Asenda simplyhtml.findReplaceTip=otsi & asenda simplyhtml.fontBoldLabel=Rasvane simplyhtml.fontBoldTip=l\u00FClita rasvane kiri sisse/v\u00E4lja simplyhtml.fontDialogTitle=Muuda kirjakuju simplyhtml.fontItalicLabel=Kaldkiri simplyhtml.fontItalicTip=l\u00FClita kaldkiri sisse/v\u00E4lja simplyhtml.fontLabel=Kirjakuju... simplyhtml.fontTabLabel=Kirjat\u00FC\u00FCp simplyhtml.fontTip=Muuda kirjakuju... simplyhtml.fontUnderlineLabel=Jooni alla simplyhtml.fontUnderlineTip=l\u00FClita allajoonimine sisse/v\u00E4lja simplyhtml.foregroundLabel=Esiplaan: simplyhtml.formatLabel=Vormindus simplyhtml.formatListLabel=Loetelu... simplyhtml.formatListTip=muuda loetelu kujundust simplyhtml.formatParaLabel=L\u00F5ik... simplyhtml.formatParaTip=Muuda l\u00F5igu kujundust simplyhtml.formatTableLabel=Tabel... simplyhtml.formatTableTip=Vorminda tabelit simplyhtml.helpLabel=Abi simplyhtml.htmlTabTitle=HTML-koodi vaade simplyhtml.imageFileDesc=Pildifailid simplyhtml.insertTableColLabel=Sisesta veerg simplyhtml.insertTableLabel=Tabel... simplyhtml.insertTableMsg=Mitu veergu? simplyhtml.insertTableRowLabel=Sisesta rida simplyhtml.insertTableTitle=Sisesta tabel simplyhtml.italicName=kaldkiri simplyhtml.layoutTabTitle=Paigutuse vaade simplyhtml.leftLabel=vasak: simplyhtml.listDialogTitle=Nimekirja kujundamine simplyhtml.listIndentTitle=Taane: simplyhtml.listPosInside=sees simplyhtml.listPositionLabel=Asukoht: simplyhtml.listPosOutside=v\u00E4ljas simplyhtml.listTypeCircle=\u00FCmart\u00E4pp simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeDisc=faili s\u00FCmbol kui t\u00E4pp simplyhtml.listTypeLabel=T\u00FC\u00FCp: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=puudub simplyhtml.listTypeSquare=ruudukujuline t\u00E4pp simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=V\u00E4line simplyhtml.matchCase=T\u00F5stutundlik simplyhtml.newStyleDefaultName=uus stiil simplyhtml.nextTableCellLabel=J\u00E4rgmine lahter simplyhtml.noLineLabel=puudub simplyhtml.noMoreOccurrencesFound=rohkem kokkulangevusi ei leitud simplyhtml.okBtnName=Sobib simplyhtml.paddingLabel=Sisemine simplyhtml.paraAlignCenterLabel=Joonda keskele simplyhtml.paraAlignCenterTip=Joonda l\u00F5ik keskele simplyhtml.paraAlignLeftLabel=Joonda vasakule simplyhtml.paraAlignLeftTip=Joonda l\u00F5ik vasakule simplyhtml.paraAlignRightLabel=Joonda paremale simplyhtml.paraAlignRightTip=Joonda l\u00F5ik paremale simplyhtml.paraStyleDialogTitle=L\u00F5igustiil simplyhtml.paraTabLabel=L\u00F5ik simplyhtml.pasteLabel=Aseta simplyhtml.pasteTip=aseta simplyhtml.plainName=paljas simplyhtml.previewLabel=Eelvaade simplyhtml.previewText=Teksti eelvaade simplyhtml.prevTableCellLabel=Eelmine lahter simplyhtml.redoLabel=Tee uuesti simplyhtml.redoTip=tee uuesti simplyhtml.replace=Asenda... simplyhtml.replaceAll=K\u00F5ik simplyhtml.replaceDone=Tehtud simplyhtml.replaceNo=Ei simplyhtml.replaceThisQuery=asenda see kokkulangevus simplyhtml.replaceWith=Asendada millega: simplyhtml.replaceYes=Jah simplyhtml.rightLabel=parem: simplyhtml.searchDown=Otsi allapoole simplyhtml.searchFromStart=Otsi algusest simplyhtml.searchUp=Otsi \u00FClespoole simplyhtml.selectAllLabel=Vali k\u00F5ik simplyhtml.sizeLabel=Suurus simplyhtml.standardStyleName=standard simplyhtml.strikeLabel=L\u00E4bikriipsutus simplyhtml.styleLabel=Stiil simplyhtml.styleNameInputText=Uue stiili nimi? simplyhtml.styleNameInputTitle=Salvesta stiil simplyhtml.tableBgColLabel=Taustav\u00E4rv: simplyhtml.tableDialogTitle=Vorminda tabelit simplyhtml.tableLabel=Tabel simplyhtml.tablePanelTitle=Tabeli vormindus simplyhtml.tableWidthLabel=Laius: simplyhtml.textIndentLabel=Taane: simplyhtml.textToFind=Tekst, mida otsida: simplyhtml.thisCellRangeLabel=see lahter simplyhtml.thisColRangeLabel=see veerg simplyhtml.thisRowRangeLabel=see rida simplyhtml.toggleBulletsLabel=T\u00E4pploetelu sisse/v\u00E4lja simplyhtml.toggleBulletsTip=t\u00E4pploetelu sisse/v\u00E4lja simplyhtml.toggleNumbersLabel=Numberloetelu sisse/v\u00E4lja simplyhtml.toggleNumbersTip=numberloetelu sisse/v\u00E4lja simplyhtml.topLabel=\u00FCleval: simplyhtml.uLineLabel=Jooni alla simplyhtml.unableToOpenFileError=Faili ei saa avada simplyhtml.unableToRedoError=Ei saa uuesti teha: simplyhtml.unableToUndoError=Ei saa tagasi v\u00F5tta: simplyhtml.undoLabel=V\u00F5ta tagasi simplyhtml.undoTip=v\u00F5ta tagasi simplyhtml.valignBaseline=alusjoon simplyhtml.valignBottom=alla simplyhtml.valignLabel=P\u00FCstine joondus: simplyhtml.valignMiddle=keskele simplyhtml.valignTop=\u00FCles simplyhtml.wholeWordsOnly=Ainult terved s\u00F5nad SortNodes.text=Sorteeri alams\u00F5lmed SortNodes.tooltip=Sorteerib k\u00F5ik alams\u00F5lmed t\u00E4hestiku j\u00E4rjekorras. split=&Poolita SplitNode.text=Poolita s\u00F5lm SplitNode.tooltip=S\u00F5lm on poolitatud style=Stiil svg=SVG[translate me] TimeManagementAction.text=N\u00E4ita kalendrit... TimeManagementAction.tooltip=N\u00E4itab kalendrimoodulit (autor: Kai Toedter). ToggleChildrenFoldedAction.text=Voldi s\u00F5lmed kokku/lahti ToggleFBarAction.text=F-Bar[translate me] ToggleFoldedAction.text=L\u00FClita voltimist \u00FCmber ToggleLeftToolbarAction.text=Teine t\u00F6\u00F6riistariba ToggleMenubarAction.text=Men\u00FC\u00FCriba ToggleToolbarAction.text=T\u00F6\u00F6riistariba undefined_error=Ootamatu viga tekkis. Palun proovi raporteerida sellest. underline=Jooni alla underlined=Allajoonitud UndoAction.text=V\u00F5ta tagasi UndoFilterAction.text=V\u00F5ta tagasi unfold=Voldi lahti UnfoldAllAction.text=Voldi k\u00F5ik lahti UnfoldAllAction.tooltip=Voldib k\u00E4esoleva s\u00F5lme koos selle all olevate s\u00F5lmedega lahti. UnfoldOneLevelAction.text=Voldi \u00FChe taseme v\u00F5rra lahti UnfoldOneLevelAction.tooltip=Voldib valitud s\u00F5lme \u00FChe taseme v\u00F5rra lahti. UpdateCheckAction.text=Check for Updates[translate me] updatecheckdialog=Update Check Dialog[translate me] url_error=See internetiviide on valesti kirjutatud! url_load_error=Ei suutnud siit aadressilt kaarti laadida: UsePlainTextAction.text=Kasuta paljast teksti user_defined_zoom=Kasutaja m\u00E4\u00E4ratud user_defined_zoom_status_bar=Suurenduse muutmine kasutaja poolt m\u00E4\u00E4ratud v\u00E4\u00E4rtusele {0}%. user_zoom=Tr\u00FCkkimise suurendus (0.0 - 2.0): view=&Vaade WebDocuAction.text=Dokumentatsioon internetis width=Laius yes=Jah ZoomInAction.text=Suurenda ZoomOutAction.text=V\u00E4henda freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_eu.properties0100644 0000000 0000000 00000346606 13526060557 027652 0ustar000000000 0000000 about_text=Freeplane buru-mapak sortzeko eta jakintza eraikitzeko software librea AboutAction.text=Honi buruz acceleratorPresets=Aurrezarritako laster-teklak accelerators_loading_error=Ezin {0}-tik azeleratzaileak kargatu accessories/plugins/ApplyFormatPlugin.dialog.title=Aldatu nodoen formatua accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Aldatu txantiloia accessories/plugins/EncryptNode.properties_0=Aukeratu pasahitza babestutako (zifratutako) nodoentzat accessories/plugins/EncryptNode.properties_1=Pasahitz ezberdinak edo laburregia. accessories/plugins/EncryptNode.properties_2=Sartu pasahitza: accessories/plugins/EncryptNode.properties_3=Sartu pasahitza berriro: accessories/plugins/EncryptNode.properties_4=Sartu zure pasahitza. accessories/plugins/EncryptNode.properties_5=Gogoratu zifraketaren sendotasuna
ia osorik pasahitzaren kalitatearen araberakoa dela. accessories/plugins/EncryptNode.properties_6=Ados accessories/plugins/EncryptNode.properties_7=Utzi accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Pasahitzez babestutako (zifratutako) egoera aurretik zifratutako nodo batean bakarrik alda zenezake. Txertatu horrelako nodo bat trenen menuaren bidez. accessories/plugins/EncryptNode.properties_select_me=Aukera nazazu jarraitzeko! accessories/plugins/EncryptNode.properties_wrong_password=Pasahitza ez da zuzena. accessories/plugins/Export_JavaWebStart.text=Java Web abiarazi\u2026 accessories/plugins/Export_JavaWebStart.tooltip=Mapa Java Web-en abiarazteko esportatzen du. accessories/plugins/ExportWithTWiki.text=Twiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Mapa TWiki dokumentu eran esportatzen du. accessories/plugins/ExportWithXSLT.tooltip=Hau esportazio metodo uniformea da. accessories/plugins/ExportWithXSLT_Applet.text=Java Appleta\u2026 accessories/plugins/ExportWithXSLT_Applet.tooltip=Mapa Java Applet baten moduan esportatzen du. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (JavaScript bertsioa)\u2026 accessories/plugins/ExportWithXSLT_HTML3.text=XHTML (mapa-irudi bertsio klikagarria)\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=RESOURCES nodotik baliabideak TaskJuggler fitxategira\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=RESOURCES nodotik baliabideak Taskjuggler modulura esportatzen ditu. accessories/plugins/ExportWithXSLT_TASKSTJI.text=Zereginak ZEREGINAK nodotik TaskJuggler fitxategira\u2026 accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Zereginak ZEREGINAK nodotik TaskJuggler modulura esportatzen ditu. action_keystroke_in_use_error={1} ekintzarako eskatutako {0} tekla dagoeneko {2} ekintzari esleiturik dago active=Aktibo actual_map_styles=Maparen estilo baldintzatuak nodoari ezarrita actual_node_styles=Nodoaren estilo baldintzatuak nodoari ezarrita add=&Gehitu AddConnectorAction.text=Lotu AddElementaryConditionAction.text=Gehitu AddExecutionLinkAction.text=Gehitu esteka bat Sistema Eragileko komando bat abiarazteko\u2026 AddLocalLinkAction.text=Gehitu esteka lokala AddMenuItemLinkAction.text=Gehitu esteka menuko elementu bati\u2026 AddOnDetailsPanel.authored.by={0}-k egina AddOnDetailsPanel.header.function=Funtzioa AddOnDetailsPanel.header.menu=Menuaren kokapena AddOnDetailsPanel.header.shortcut=Lasterbidea AddOnDetailsPanel.homepage=Hasiera orria: addons.installer.canceled=Instalazioa bertan behera geratu da addons.installer.confirm.licence=

Lizentzia

{0}

Lizentzia hau onartzen al duzu?

\n Copy \u2192\u21B5\u2026"""" addons.installer.failed=Instalazioak huts egin du: {0} addons.installer.freeplaneversion.format.error=Formatu errorea {0}-n (balioa:{1}) addons.installer.html.script=Baliteke script-aren edukiak HTML erako formaturik ez izatea addons.installer.install=Instalatu addons.installer.invalid.keyboard.shortcut={0} lasterbide baliogabea. addons.installer.licence.unchanged=Lizentzia ez da aldatu addons.installer.map.structure=Maparen egituraren errorea: {0} addons.installer.missing.child.nodes=Nodoaren haurrak falta dira: {0} addons.installer.missing.permission.attribute={0} scripta: {1} baimenen ezaugarriak falta dira addons.installer.missing.properties=Falta diren propietateak: {0} addons.installer.missing.translation={1} lokalaren {0} itzulpena falta da addons.installer.no.scripts=Ez da scriptik aurkitu addons.installer.no.zipdata=Ez da zip daturik aurkitu addons.installer.nonstandard.permissions=Scriptak oraingoz baliogabetuta dauden ondorengo baimenak eskatzen ditu: {0}.\nOhiko baimenei gehitu? addons.installer.one.child.expected={0}-ko haur bat espero zen baina {1} lortu da. addons.installer.script.name.suffix={0} izeneko scriptak ez du ".groovy" moduko luzapenik addons.installer.script.no.execution_mode=Ez dago "execution_mode" edo exekuzio erako ezaugarririk {0}rentzat addons.installer.script.no.menulocation={0}-rentzat ez da "menuLocation" ezaugarririk zehaztu addons.installer.script.no.menutitle={0}-rentzat ez da "menuTitleKey" ezaugarririk zehaztu addons.installer.script.no.permissions={0}-rentzat ez da baimenik zehaztu addons.installer.success=Instalazioa ongi burutu da.\nGehigarri berria Freeplane berrabiarazi ondoren funtzionatuko du. addons.installer.success.update={0}-tik {1}-rako eguneraketa ongi burutu da.\nFuntzio batzuk programa berrabiaraztean soilik izango dira erabilgarri. addons.installer.title=Gehigarrien instalatzailea addons.installer.too.new=Oraingo Freeplane {0} bertsioa berriegia da. Gehigarri honek gehienez {1} bertsioa onartzen du addons.installer.too.old=Oraingo Freeplane {0} bertsioa zaharregia da. Gehigarri honek gutxienez {1} bertsioa behar du addons.installer.unknown.deinstallation.rules=Desinstalatzeko {0} araua(k) ez da/dira ezagutzen addons.installer.update={0} bertsiotik eguneratu addons.installer.warning=Soilik jatorri ezaguneko gehigarriak instalatu beharko zenituzke. Software gaizto edo kaltegarriak zure informazioa kaltetu edota zure pribatutasuna bortxa dezake. addons.site=https://www.freeplane.org/addons/ AddStyleAttributes.text=Estiloaren atributuak AddStyleAttributes.tooltip=Gehitu atributuak nodoaren estilotik AllMapsNodeListAction.text=Bilatu eta ordeztu mapa guztietan always=Beti AlwaysUnfoldedNodeAction.text=Beti nodo hedatua (ezarri/berrezarri) antialias_all=Antialliasa aplikatu guztiei antialias_edges=Antialiasdun ertzak antialias_none=Bat ere ez antialiasarekin apply=&Aplikatu ApplyAction.text=Aplikatu ApplyFormatPlugin.text=Aldatu formatua\u2026 ApplyFormatPlugin.tooltip=Nodoaren eta lerroaren ezaugarriak batera alda daitezkeen elkarrizketa-koadro bat aurkezten du. ApplyNoFilteringAction.text=Ez iragazi ApplySelectedViewConditionAction.text=Iragazi hautatutako nodoak ApplyToVisibleAction.text=Iragazitako nodoei ezartzen zaie as_parent=Guraso gisa AskForHelp.text=Eskatu laguntza foroan AssignAttributesAction.text=Bilatu eta aldatu ezaugarriak\u2026 attribute_delete=Ezabatu balio guztiak attribute_delete_value=Ezabatu balio hau attribute_font_size.tooltip=Letra motaren tamaina attribute_list_box_label_text=Existitzen diren balioak attribute_name=Atributuaren izena attribute_name_or_value=Atributuaren izena edo balioa attribute_replace=Ordeztu honekin attribute_top=Kargatutako mapen atributu ezagun guztiak attribute_value=Atributuaren balioa attributes_AddAttributeAction.text=Gehitu atributua elkarrizketa-koadroan\u2026 attributes_adding_empty_attribute_error=Ezin da kate huts bat atributuaren izen gisa erabili attributes_all=Atributu guztiak attributes_assign_dialog=Atributuen editore aurreratua attributes_attribute=Atributuak attributes_close=Itxi attributes_deselect_all=Ezer ez attributes_dialog_title=Atributuen kudeatzailea attributes_edit=Editatu attributes_edit.tooltip=Editatu multzoa attributes_for_selected=Hautatutako nodoak attributes_for_visible=Ikusgarri dauden nodo guztiak attributes_import=&Inportatu attributes_import.tooltip=Inportatu atributuak kargatutako beste mapetatik attributes_no_import_candidates_found=Ez da atributu berririk aurkitu attributes_popup_delete=Ezabatu attributes_popup_down=Behera attributes_popup_edit=Editatu attributes_popup_hide=Ezkutatu attributes_popup_new=Atributu berria attributes_popup_optimal_width=Zabalera egokiena attributes_popup_up=Gora attributes_refresh=Berritu attributes_RemoveAllAttributesAction.text=Ezabatu atributu guztiak attributes_RemoveFirstAttributeAction.text=Ezabatu lehenengo atributua attributes_RemoveLastAttributeAction.text=Ezabatu azken atributua attributes_restricted_attributes.tooltip=Mugatu atributu multzoa attributes_restricted_values.tooltip=Mugatu uneko atributurako balio multzoa attributes_restriction=Mugatutako multzoa attributes_select_all=Dena attributes_select_all.tooltip=Hautatu/desautatu dena attributes_show=Bistaratu attributes_skip_root=Ezkutatu erroa nodoa attributes_visible=Hautapena ikusgai attributes_visible.tooltip=Hautapena ikusgai automatic_layout=Diseinu automatikoa automatic_layout_disabled=ezeztatuta automatically_save_message=Mapa automatikoki gorde da ({0} fitxategi izena erabiliaz)\u2026 AutomaticEdgeColor.FOR_BRANCHES=adarrentzat AutomaticEdgeColor.FOR_COLUMNS=zutabeentzat AutomaticEdgeColor.FOR_LEVELS=mailentzat AutomaticEdgeColor.ON_BRANCH_CREATION=adarra sortzean AutomaticEdgeColorHookAction.text=Lerroaren kolore automatikoa AutomaticLayout.ALL=nodo guztientzat AutomaticLayout.HEADINGS=utzi gabeko nodoentzat AutomaticLayout.level={0} maila AutomaticLayout.level.root=Erroa AutomaticLayoutAction.text=Ezarri mailako estiloak AutomaticLayoutAction.tooltip=Maparen diseinua ezartzen du
Lehenengo maila beltza, bigarrena urdina, etab. AutomaticLayoutControllerAction.ALL.text=nodo guztientzat AutomaticLayoutControllerAction.COLUMNS.text=zutabeentzat AutomaticLayoutControllerAction.HEADINGS.text=utzi gabeko nodoentzat AutomaticLayoutControllerAction.null.text=ezeztatuta BackAction.text=Atzera BackAction.tooltip=Aukeratutako katean atzera jauzi egin background=Atzeko planoa bitmaps=Bitmapak black=Beltza BlinkingNodeHookAction.text=Nodo keinukaria BlinkingNodeHookAction.tooltip=Honek nodoa keinuka jartzen du. Baina argi ibili. Ez ezarri nodo gehiegiri, eta inolaz ez ezarri formatu automatikorik nodo berdinean blue=Urdina BoldAction.text=Lodia boldify_branch=Loditu branch=Adarra browse=Arakatu\u2026 calendar_attributes_panel=Egutegia eta atributuak calendar_panel=Egutegia can_not_clone_encrypted_node=Ezin dira zifratutako nodoak klonatu can_not_connect_to_info_server=Ezin da informazio zerbitzarira konektatu can_not_delete_predefined_style=Aurretik definitutako estiloa ezin da ezabatu can_not_delete_root_style=Ezin da erroaren estiloa ezabatu can_not_delete_style_group=Ezin da estilo taldea ezabatu can_not_encrypt_cloned_node=Ezin dira klonatutako nodoak zifratu can_not_save_key_set=Ezin da gorde laster-teklen multzoa cancel=&Ezabatu CancelAction.text=Utzi cannot_add_parent_diff_parents=Funtzio hau erabiltzeko, nodo guztiek guraso bera izan behar dute. cannot_add_parent_to_root=Erro nodoa ezin da guraso berri bati gehitu. cannot_delete_root=Erro nodoa ezin da ezabatu edota ebaki. cannot_join_nodes_with_children=Haurrak dituzten nodoak ezin dira bateratu cannot_move_into_child_node=Ezin da haur-nodora mugitu cannot_move_to_child=Ezin da nodo bat bere haur batetara mugitu. CenterAction.text=Erdiratu ChangeConnectorArrowsAction.backward.text=Marraztu gezia atzerantz ChangeConnectorArrowsAction.both.text=Marraztu gezia aurrerantz eta atzerantz ChangeConnectorArrowsAction.forward.text=Marraztu gezia aurrerantz ChangeConnectorArrowsAction.none.text=Ezer ez ChangeConnectorArrowsAction.text=Aldatu konektorearen geziak ChangeConnectorShapeAction.CUBIC_CURVE.text=Kurba ChangeConnectorShapeAction.EDGE_LIKE.text=Simulatu lerroa ChangeConnectorShapeAction.LINE.text=Lerroa ChangeConnectorShapeAction.LINEAR_PATH.text=Bide lineala ChangeNodeLevelLeftsAction.text=Mugitu nodoa (Gurasoak anai-arrebak) ChangeNodeLevelLeftsAction.tooltip=Erroaren ezker aldean nodoa(k) behera mugitzen da/dira. Beren aurreko senidearen haur bihurtzen da/dira. Erroaren eskuin aldean nodoa(k) gora mugitzen dira. Erroan bertan, nodoa(k) aldez aldatzen da/dira. ChangeNodeLevelRightsAction.text=Mugitu nodoa (haurra) ChangeNodeLevelRightsAction.tooltip=Erroaren eskuin aldean nodoa(k) behera mugitzen da/dira. Beren aurreko senidearen haurra bihurtzen da/dira. Erroaren ezker aldean nodoa(k) gora mugitzen dira. Erroan bertan, nodoak(k) aldez aldatzen da/dira. choose_cloud_color=Aukeratu hodeiaren kolorea: choose_edge_color=Aukeratu lerroaren kolorea choose_map_background_color=Aukeratu maparen atzeko planoaren kolorea choose_node_background_color=Aukeratu nodoaren atzeko planoaren kolorea: choose_node_color=Aukeratu nodoaren kolorea: ClearLinkAnchorAction.text=Garbitu lotura-aingura ClearLinkAnchorAction.tooltip=Ezabatu aurrez ezarritako nodoaren aingura CloneAction.text=Itsatsi klona close_btn=&Itxi CloseAction.text=Itxi uneko mapa CloseAllMapsAction.text=Itxi mapa guztiak CloseAllOtherMapsAction.text=Itxi beste mapa guztiak cloud_shapes=Hodei formak CloudAction.text=Gehitu/ezabatu hodeia (berez) CloudColorAction.text=Hodeiaren kolorea\u2026 CloudShapeAction.ARC.text=Uztaia CloudShapeAction.RECT.text=Laukizuzena CloudShapeAction.ROUND_RECT.text=Laukizuzen borobildua CloudShapeAction.STAR.text=Izarra collection.copy.presentation=Kopiatu aurkezpena collection.copy.slide=Kopiatu diapositiba collection.delete=Ezabatu collection.down=Behera collection.move=Mugitu collection.moveTo=Mugitu kokapenera collection.new.presentation=Aurkezpen berria collection.new.slide=Diapositiba berria collection.up=Gora ColorProperty.ResetColor=Berrezarri kolorea combined=Konbinatua condition=Baldintza confirmation=Berrespena connector=Lotura connector_arrows=Loturaren geziak connector_label=Loturaren etiketa connector_lines=Loturaren lerroak connector_shapes=Loturaren formak ConnectorColorAction.text=Loturaren kolorea\u2026 controls=Kontrolak ConvertCloneToIndependentNodeAction.text=Desklonatu copy_name={0} (kopia) CopyAction.text=Kopiatu CopyAction.tooltip=Kopiatu aukeratutako adarra CopyAttributes.text=Kopiatu atributuak CopyIDAction.text=Kopiatu nodoaren IDa CopyMapStylesAction.text=Kopiatu maparen estiloa hemendik\u2026 CopyNodeURIAction.text=Kopiatu nodoaren URLa copyright=Copyright \u00A9 2000-2019 Freeplane taldea eta besteak CopySingleAction.text=Kopiatu nodoa (bakarra) CopySingleAction.tooltip=Kopiatu bakarrik hautatutako nodoa CopyStyleExtensionsAction.text=Kopiatu luzapenak estilo nodotik CopySuggestedReferenceAction.text=Kopiatu nodoaren erreferentzia corrupt_map=Maparen edukia hondatuta dago CreateConjunctConditionAction.text=Eta CreateDisjunctConditionAction.text=Edo CreateNotSatisfiedConditionAction.text=Ez current_dir=Mapak CutAction.text=Ebaki decrease_branch_font_size=Letra mota txikiagoa DecreaseNodeFontAction.text=Letra mota txikiagoa default=Lehenetsia defaultAuxiliaryWordList=-ren DefaultColorAction.text=Berezko kolorea defaultstyle.attributes=Atributuak defaultstyle.details=Xehetasunak defaultstyle.floating=Nodo mugikorra defaultstyle.note=Oharra delete=&Ezabatu delete_child=Ezabatu nodoa DeleteAction.text=Ezabatu nodoa DeleteConditionAction.text=Ezabatu DeleteDetailsAction.text=Ezabatu nodoaren xehetasunak DeleteLevelStyleAction.text=Ezabatu mailako estiloa DeleteStyleAction.text=Ezabatu estiloa DeleteUserStyleAction.text=Ezabatu erabiltzaileak zehaztutako estiloa dialect_info.app={0} buru-mapa fitxategia {1} programarekin sortu da. dialect_info.later_version={0} buru-mapa fitxategia programa honen bertsio berriago batekin sortua izan da. dialect_info.unknownApp={0} buru-mapa programa ezezagun batek sortua izan da. dialect_info.unknownURL=Ez da bere web lekua ezagutzen. dialect_info.url=Informazio gehiago lortzeko programaren {0} web orrira joan. dialect_info.warning=Freeplanek oker ireki, erakutsi edo gorde lezake. DirectHtmlFlavorHandler=HTML nodo soila moduan DocumentationAction.text=Dokumentazioa down=&Behera DownConditionAction.text=Behera download=Deskargatu dropped_file_error=Ezin da/dira jaregindako fitxategia(k) ireki. Arrazoia {0} edge=Lerroa edge_is_formatted_by_style=Lerroaren formatua estiloak kontrolatzen du. Editatu dagokion estiloa behar izanez gero. edge_style=Lerroaren estiloa edge_width=Lerroaren zabalera edge_widths=Lerroaren zabalerak EdgeColorAction.text=Lerroaren kolorea\u2026 EdgeProperties=Lerroaren ezaugarriak EdgeStyleAction.bezier.text=Leunki kurbatuta (bezier) EdgeStyleAction.bezier.tooltip=Lerroa kurba leun moduan erakutsi. EdgeStyleAction.hide_edge.text=Ezkutatu lerroa EdgeStyleAction.hide_edge.tooltip=Aukeratutako nodoen gurasoekiko lerroak
marra puntukatua moduan bistaratu. Bestela ezkutatu lerroa . EdgeStyleAction.horizontal.text=Horizontala EdgeStyleAction.horizontal.tooltip=Erabili lerro zuzen elkarzutak ertzentzat. EdgeStyleAction.linear.text=Lineala EdgeStyleAction.linear.tooltip=Bistaratu lerroa zuzenki moduan. EdgeStyleAction.sharp_bezier.text=Zorrozki kurbatuta (bezier) EdgeStyleAction.sharp_bezier.tooltip=Bistaratu lerroa zorroztutako muturrak dituen kurba leun moduan. EdgeStyleAction.sharp_linear.text=Lerro zorrotza EdgeStyleAction.sharp_linear.tooltip=Bistaratu lerroa mutur zorrotzeko zuzenki moduan. EdgeStyleAsParentAction.text=Guraso moduan EdgeStyleAsParentAction.tooltip=Gurasoen nodoaren lerroaren estiloa erabili.[zaharkitua] EdgeWidthAction_width_parent.text=Gurasoa EdgeWidthAction_width_thin.text=Fina edit=&Editatu edit.decision=HTML Editorea edit.edit_rich_text=Letra lodi eta etzana moduko formatuak erabili nahi al dituzu? edit_details=Editatu nodoaren xehetasunak edit_end_label=Loturaren
etiketa edit_label_font_family=Letra mota edit_label_font_size=Letra tamaina edit_link_manually=Editatu esteka eskuz\u2026 edit_long_node=Editatu nodoaren edukia elkarrizketa-koadroan edit_middle_label=Erdiko
etiketa edit_note=Editatu oharra edit_source_label=Iturburuaren
etiketa edit_target_label=Helburuaren
etiketa edit_transparency_label=Opakutasuna edit_width_label=Zabalera EditAction.text=Editatu nodoaren edukia bertan EditAttributesAction.text=Editatu atributuak bertan EditDetailsAction.text=Editatu nodoaren xehetasunak bertan EditDetailsInDialogAction.text=Editatu nodoaren xehetasunak elkarrizketa-koadroan editEdgeColors=Editatu lerroaren koloreak EditFilterAction.text=Sortu iragazkia EditLongAction.text=Editatu nodoaren edukia elkarrizketa-koadroan EditNoteInDialogAction.text=Editatu oharra elkarrizketa-koadroan EditScript=Editatu scripta \u2026 EditStylesAction.text=Editatu estiloak EncryptedMap.text=Babestutako (zifratutako) mapa berria\u2026 EncryptedMap.tooltip=Babestutako mapa berria encryption=Zifratua enter_base_url=Lotura erlatiboak itsastera noa. Sartu URLa. enter_command=Sartu komandoa enter_condition_name=Sartu baldintza berriaren izena enter_confirms=&Sartu-k baieztatzen du enter_keyset_name=Sartu laster-teklen multzoaren izena enter_map_url=Sartu maparen URLa enter_new_style_name=Sartu estilo berriaren izena enter_node_id_or_reference=Sartu nodoaren IDa edo erreferentzia enter_zoom=Sartu zooma EnterPassword.text=Sartu pasahitza error=Errorea error_applying_template=Errorea XSL txantiloia aplikatzean. error_creating_directory=Ezin da esportatzeko direktorioa sortu. error_in_template=Erroreak {0} berezko maparen txantiloian. Saiatu fitxategi hau ezabatzen. errornumber={0} errore ExecuteScript.available_modes.tooltip={0} eskura dago ExecuteScript.script=Scripta ExecuteScriptError.text=Errorea scripta abiaraztean:\n{0} ExecuteScriptForAllNodes.text=Script guztiak exekutatu ExecuteScriptForSelectionAction.text=Exekutatu hautatutako nodoaren scriptak ExecuteScriptOnSelectedNode.text=Exekutatu {0} hautatutako nodo guztietan ExecuteScriptOnSelectedNodeRecursively.text=Exekutatu {0} hautatutako nodoetan, era errekurtsiboan ExecuteScriptOnSingleNode.text=Exekutatu {0} hautatutako nodo batean ExecuteScripts.noScriptsAvailable=Bat ere ez eskuragarri ExecuteScripts.text=Scriptak ExecuteScriptSecurityError.text=Scriptaren exekuzioan errore bat gertatu da: {0} export_failed=Esportazioak huts egin du export_pdf_text=Portable Document Format (PDF) export_svg_text=Scalable Vector Graphic (SVG) ExportAction.text=Esportatu mapa\u2026 ExportAllPresentationsAction.text=Esportatu aurkezpen guztiak PNG irudi formatura ExportBranchAction.text=Mugitu adarra mapa berri batera\u2026 ExportBranchesAction.text=Esportatu adarrak\u2026 ExportBranchToHTMLAction.text=Adarra HTML eran exported_file={0} fitxategia ExportPdf.text=PDF ExportPresentationAction.text=Esportatu aurkezpen hau PNG irudi formatura ExportSvg.text=SVG ExportToHTMLAction.text=HTML ExportToImage.jpg.text=JPEG ExportToImage.png.text=PNG ExportToOoWriter.text=Open Office Writer dokumentua\u2026 extension_menu=Estilo fisikoa ExternalImage_popupMenu_Change=Aldatu\u2026 ExternalImage_popupMenu_Open=Ireki ikustailean ExternalImage_popupMenu_Remove=Ezabatu ExternalImage_popupMenu_ResetZoom=Berrezarri zooma ExternalImageAddAction.text=Gehitu Irudia\u2026 ExternalImageChangeAction.text=Aldatu Irudia\u2026 ExternalImageRemoveAction.text=Ezabatu irudia ExtractLinkFromTextAction.text=Bihurtu esteka testutik ExtractLinkFromTextAction.tooltip=Ezarri esteka hiperestekaren helbide nodoaren testuan extras=&Tresnak f_button_unassigned= FaqOpenURLAction.text=Ohiko galderak file=&Fitxategia file_already_exists={0} fitxategia existitzen da dagoeneko. Gainean berridatzi nahi? file_not_accessible={0} fitxategia ezin da atzitu file_not_found={0} fitxategia ez da aurkitu FileListFlavorHandler=Fitxategietara loturak FileProperties_BranchLeafCount=Hosto nodoen kopurua aukeratutako adarre(t)an: FileProperties_BranchNodeCount=Hautatutako adarren nodo kopurua: FileProperties_ChangesSinceLastSave=Azkeneko gordetzetik egindako aldaketak: FileProperties_FileName=Fitxategi izena: FileProperties_FileSaved=Fitxategia gordeta: FileProperties_FileSize=Fitxategi tamaina: FileProperties_MainBranchCount=Adar nagusi kopurua: FileProperties_NeverSaved=Oraindik gorde gabe FileProperties_NodeChildCount=Hautatutako nodoen haur kopurua: FileProperties_NodeSelectionCount=Hautatutako nodoen kopurua: FileProperties_TotalFilteredCount=Iragazki araua betetzen duten nodoen kopurua: FileProperties_TotalLeafCount=Hosto nodoen kopuru osoa: FileProperties_TotalNodeCount=Nodoen kopurua: FilePropertiesAction.text=Maparen estatistikak\u2026 FileRevisionsDialog.cancel=&Utzi FileRevisionsDialog.file_last_modified=Denbora marka FileRevisionsDialog.file_name=Fitxategia FileRevisionsDialog.file_size=Byteak FileRevisionsDialog.open=&Ireki FileRevisionsDialog.open.tooltip=Ireki fitxategia zaharkitua egon arren FileRevisionsDialog.question={0}-ren berrikuspen aurkitu dira FileRevisionsDialog.restore=Leheneratu FileRevisionsDialog.restore.tooltip={0}ren ordez {1} jarri FileRevisionsDialog.title=Fitxategi berrikuspenak filter=Iragazi filter_add=&Gehitu filter_alias=Ezizena filter_and=E&ta filter_any_text=Nukleoa, oharraren xehetasunak filter_clone_snapshot=Hautapenaren klon gordeta filter_clones=Hautapenaren klonak filter_conditions=Iragazkiak filter_contains=dauka filter_created_after=Ondoren sortua filter_created_before=Aurretik sortua filter_delete=&Ezabatu filter_deny=&Ukatu filter_deny.tooltip=Alderantzikatu iragazkiaren baldintza filter_details=Xehetasunak filter_dialog=Fitxategi konposatzailea filter_does_not_exist=Ez da existitzen filter_edit_description=Editatu iragazkien zerrenda filter_enter_value=Sartu balioa filter_even_level=Maila bakoitiko nodoa filter_exist=Existitzen da filter_global=Nodo osorik eskuragarria filter_icon=Ikonoa filter_is_equal_to=-ren berdina da filter_is_not_equal_to=-ren ezberdina da filter_leaf=Hosto nodoa filter_link=Esteka filter_match_approximately=&Hurbildu filter_match_approximately.tooltip=Baldin eta antzekotasunez parekatzeko,
adib: "fitxategi" hitza bilatzean "flitxategi" ere aurkituko luke. filter_match_case=Bereizi maiuskula/minuskula filter_match_case.tooltip=Maiuskula eta minuskula den kontutan izan konparaketa egiterakoan. filter_modified_after=Ondoren aldatua filter_modified_before=Aurretik aldatua filter_no_filtering=Iragazi gabe (ezabatu) filter_node=Testuaren nukleoa filter_node_level=Nodoaren maila filter_not=&Ez filter_note=Oharra filter_odd_level=Maila bikoitiko nodoa filter_or=Edo filter_parent=Guraso testua filter_periodic_level=Aldizkakoa filter_priority=Lehentasuna filter_regexp_matches=Erregistroa betetzen du filter_reminder=Abisua filter_reminder_after=ondoren planifikatua filter_reminder_before=aurretik planifikatua filter_reminder_executed=dagoeneko abiatua filter_reminder_later=geroagorako planifikatua filter_root=Erro nodoa filter_script=Script iragazkia filter_select=&Hautatu filter_selected_node_view=Hautatutako nodoak filter_selected_node_view_snapshot=Gordetako hautapena filter_starts_with=Honekin hasten da filter_style=Estiloa filter_time=Data iragazkia FilterCondition=Baldintzak iragazi filterConditions=Erabiltzaileak definitutako iragazkiak filterConditions.noActions=Izenik gabeko iragazkiak filters_not_loaded=Ezin izan da iragazkia kargatu, fitxategia hondatua find=Bilatu find_what=Zer bilatu FindAction.text=&Bilatu\u2026 FindNextAction.text=Hurrengoa bilatu FindPreviousAction.text=Aurrekoa bilatu fit_background_to_page=Atzeko planoko irudia orrira egokitu fit_map_to_page=&Orri batera egokitu fit_map_to_page_height=Egokitu orriaren altuerara fit_map_to_page_width=Egokitu orriaren zabalerara FitToPage.text=Zoom-a orrira egokitu FitToPage.tooltip=Mapa osoa oraingo leihora egokitzen du zoom-a. fold=Tolestu FoldAllAction.text=Tolestu guztiak FoldAllAction.tooltip=Hautatutako nodoak eta haien haurrak tolesten ditu FoldOneLevelAction.text=Tolestu maila bat FoldOneLevelAction.tooltip=Hautatutako nodoak maila batean tolesten ditu. follow_clone="{0}" barruan follow_graphical_link="{0}"-ra joan FollowLinkAction.text=Jarraitu esteka font=Letra mota FontFamilyAction.text=Letra moten familia FontSizeAction.text=Letra motaren tamaina format=F&ormatua format_invalid_pattern=Txantiloia ez da baliozkoa format_menu_cloud_shapes=Gehitu hodeia edo aldatu estiloa format_menu_edge_styles=&Lerroaren estiloak format_menu_edge_widths=Lerroaren &zabalerak format_panel=Formatua FormatCopy.text=Kopiatu formatua FormatCopy.tooltip=Nodoaren formatua kopiatzen du. FormatPaste.text=Itsatsi formatua FormatPaste.tooltip=Nodoaren formatua itsasten du. formats_not_loaded=Formatuak ezin izan dira kargatu, fitxategia hondatua formula.ClearDependenciesAction.text=Garbitu menpekotasunak formula.error.attributeValueIsNull="{0}" atributuaren balioa ebaluatu ondoren hutsik dago. formula.error.circularReference=Erreferentzi zirkularra. {0} ''{1}'' nodoaren formulak bere buruari egiten dio erreferentzia. formula.EvaluateAllAction.text=Ebaluatu guztiak formula.EvaluateAllAction.tooltip=Mapa honetako formula guztiak ebaluatu formula.menuname=Formulak formula.TraceDependentsAction.text=Mendekoen aztarnari jarraitu formula.TracePrecedentsAction.text=Aurrekoen aztarnari jarraitu formula_editor=Editatu formula ForwardAction.text=Aurrera ForwardAction.tooltip=Aurrera egiten du hautatutako katean FreeNodeAction.text=Aske kokatutako nodoa (ezarri/berrezarri) Freeplane.progress.buildScreen=Eraiki pantaila\u2026 Freeplane.progress.createController=Sortu kontrolatzailea\u2026 Freeplane.progress.createInitialMode=Sortu hasierako modua\u2026 Freeplane.progress.endStartup=Bukatu abiaraztea. Freeplane.progress.gettingPreferenceDirectories=Hobetsitako direktorioak eskuratzen \u2026 Freeplane.progress.gettingPreferences=Hobespenak eskuratzen\u2026 Freeplane.progress.loadMaps=Kargatu mapak\u2026 Freeplane.progress.propagateLookAndFeel=Hedatu itxura \u2026 Freeplane.progress.settingPreferences=Hobespenak ezartzen\u2026 Freeplane.progress.startCreateController=Hasi sortzen kontrolatzailea\u2026 Freeplane.progress.updateLookAndFeel=Eguneratu Itxura\u2026 freeplane_reverted=Freeplane_berera_itzulita_ FreeplaneHandbook.text=Freeplane-ren eskuliburua FreeplaneHelpStarter.text=Laguntza\u2026 FreeplaneHelpStarter.tooltip=Freeplane-ren laguntza aurreratua globally_accessible=Osorik eskuragarri goto=Joan goto.noActions=Helburu nodorik ez GotoLinkNodeAction.text=Joan estekara GotoNodeAction.text=Joan nodora\u2026 GrabKeyDialog.common.cancel=Utzi GrabKeyDialog.common.ok=Ados GrabKeyDialog.grab-key.assigned-to=-ri esleitua GrabKeyDialog.grab-key.assigned-to.none=Oraindik esleitu gabe GrabKeyDialog.grab-key.clear=Garbitu GrabKeyDialog.grab-key.remove=Kendu GrabKeyDialog.grab-key.remove-ask=Tekla sakatze hau ezabatzeaz ziur al zaude? GrabKeyDialog.grab-key.title=Sartu tekla berria green=Berdea help=&Laguntza HideableAction.tooltip=Aldatutako nodo bakoitzaren atzeko planoa markatzen du. HideAllAttributesAction.text=Ezkutatu atributu guztiak HierarchicalIcons2Action.text=Erakutsi haur ikonoen elkargunea HierarchicalIconsAction.text=Bistaratu Ikonoak hierarkian HierarchicalIconsAction.tooltip=Nire haur edo bilobaren batek ikono bat baldin badu, ikono hori ere formatu txikian bistaratuko dut. hot_keys=Laster-teklak hot_keys_table=Laster-teklen taula HotKeyInfoAction.text=Teklaren erreferentzia html_export_based_on_headings=HTML Esportazioa - Goiburuak oinarritzat hartuz html_export_fold_all=HTML esportazioa - Tolestu guztia html_export_fold_currently_folded=HTML esportazioa - Tolestu unean tolestuak html_export_no_folding=HTML esportazioa - Ez tolestu html_problem=Ezin da html sortu

{0} icon_0%=%0 icon_100%=%100 icon_25%=%25 icon_50%=%50 icon_75%=%75 icon_addition=Batuketa icon_attach=Begiratu hemen icon_audio=Audioa icon_back=Atzera icon_bee=Freeplane icon_bell=Gogoan izan icon_bookmark=Ederki icon_broken-line=Hautsita icon_button_cancel=Ez dago ondo icon_button_ok=Ados icon_calendar=Data icon_checked=Markatua icon_clanbomber=Arriskutsua icon_clock=Ordua icon_clock2=Abisua icon_closed=Sarrerarik ez icon_decrypted=Askatuta icon_desktop_new=Ez ahaztu icon_division=Zatiketa icon_down=Behera icon_edit=Findu icon_encrypted=Blokeatuta icon_executable=Exekutagarria icon_family=Familia icon_fema=Gizonezko eta emakumezko icon_female1=Emakumezkoa1 icon_female2=Emakumezkoa2 icon_females=Emakumezkoak icon_flag=Bandera gorria icon_flag-black=Bandera beltza icon_flag-blue=Bandera urdina icon_flag-green=Bandera berdea icon_flag-orange=Bandera laranja icon_flag-pink=Bandera arrosa icon_flag-yellow=Bandera horia icon_folder=Karpeta icon_forward=Aurrera icon_freemind_butterfly=FreeMind icon_full-0=Lehentasuna 0 icon_full-1=Lehentasuna 1 icon_full-2=Lehentasuna 2 icon_full-3=Lehentasuna 3 icon_full-4=Lehentasuna 4 icon_full-5=Lehentasuna 5 icon_full-6=Lehentasuna 6 icon_full-7=Lehentasuna 7 icon_full-8=Lehentasuna 8 icon_full-9=Lehentasuna 9 icon_go=Semaforo berdea icon_gohome=Etxea icon_group=Taldea icon_help=Galdera icon_hourglass=Itxaroten icon_icon_not_found=Ikonoa aurkitu ez icon_idea=Ideia icon_image=Irudia icon_info=Informazioa icon_internet=Internet icon_internet_warning=Interneteko jakinarazpena icon_kaddressbook=Telefonoa icon_kmail=E-Posta icon_knotify=Musika icon_korn=Postontzia icon_ksmiletris=Pozik nago icon_launch=Bazkaria icon_licq=Atsegina icon_list=Zerrenda icon_Mail=Posta icon_male1=Gizonezkoa1 icon_male2=Gizonezkoa2 icon_males=Gizonezkoak icon_menu=I&konoa icon_messagebox_warning=Garrantzitsua icon_mindmap=Buru-mapa icon_multiplication=Biderketa icon_narrative=Narratiba icon_negative=Negatiboa icon_neutral=Neutrala icon_password=Tekla icon_pencil=Fintzeko icon_penguin=Linux icon_positive=Positiboa icon_prepare=Semaforo horia icon_revision=Berrikuspena icon_revision-green=Berrikuspena (berdea) icon_revision-pink=Berrikuspena (arrosa) icon_revision-red=Berrikuspena (gorria) icon_smiley-angry=Smiley (haserre) icon_smiley-neutral=Smiley (ez du axola) icon_smiley-oh=Smiley (ezustekoa) icon_smily_bad=Smiley (ez nago pozik) icon_stop=Semaforoa (gorria) icon_stop-sign=Seinalea (stop) icon_subtraction=Matematika (kenketa) icon_unchecked=Gainbegiratu gabe icon_up=Gora icon_user_icon=Erabiltzailearen ikonoak icon_very_negative=Oso Negatiboa icon_very_positive=Oso positiboa icon_video=Bideoa icon_wizard=Magia icon_xmag=Eztabaidatzeko icon_yes=Garrantzitsua IconGroupPopupAction.arrows.text=Geziak IconGroupPopupAction.docs_folders.text=Dokumentuak eta Karpetak IconGroupPopupAction.flags.text=Banderak IconGroupPopupAction.math.text=Matematika IconGroupPopupAction.media.text=Media IconGroupPopupAction.miscellaneous.text=Denetik pixka bat IconGroupPopupAction.nature.text=Natura IconGroupPopupAction.numbers.text=Zenbakiak IconGroupPopupAction.office.text=Bulegoa IconGroupPopupAction.people.text=Jendea IconGroupPopupAction.rating.text=Sailkapena IconGroupPopupAction.signs.text=Ikurrak IconGroupPopupAction.smiley.text=Irribarrea IconGroupPopupAction.time.text=Denbora IconGroupPopupAction.user.text=Erabiltzaileen ikonoak IconProgressExtended10Action.text=Hedatutako aurrerabidea %10 IconProgressExtended10Action.tooltip=Aurrerabide ikurra %10 igotzen du ezker klik bikoitza egitean.
Control + ezker klik bikoitzak jaitsi/kendu egiten du. IconProgressExtended25Action.text=Hedatutako aurrerabidea %25 IconProgressExtended25Action.tooltip=Aurrerabide ikurra %25 igotzen du ezker klik bikoitza egitean.
Control + ezker klik bikoitzak jaitsi/kendu egiten du. IconProgressIconDownAction.text=Aurrerapena behera IconProgressIconDownAction.tooltip=Aurrerapen ikonoak, jaitsi/sartu/kentzen ditu (%100 -> %75 -> %50 -> %25 -> %0 -> ezabatu). IconProgressIconUpAction.text=Aurrerapena gora IconProgressIconUpAction.tooltip=Aurrerapen ikonoak igo/sartzen ditu (%0 -> %25 -> %50 -> %75 -> %100 + OK). IconProgressRemoveAction.text=Aurrerapena kendu IconProgressRemoveAction.tooltip=Aurrerapen eta hedatutako aurrerapen ikonoak kentzen ditu. icons=Ikonoak IconSelectionPlugin.text=Ikonoa taulatik\u2026 IconSelectionPlugin.tooltip=Hemen azpi-leiho bat erabiliz ikono bat aukera zenezake. image_covertLink=Bihurtu esteka irudi ImageFlavorHandler=Irudia (beste fitxategi bat erabili) import=I&nportatu import_linked_branch_no_link=Hautatutako nodoak ez du nondik inportatzeko estekarik. ImportAction.text=Inportatu mapa ImportBranchAction.text=Adarra\u2026 ImportExplorerFavoritesAction.text=Gogokoenen esploratzailea\u2026 ImportFolderStructureAction.text=Karpeta-egitura\u2026 ImportLinkedBranchAction.text=Lotutako adarra ImportLinkedBranchWithoutRootAction.text=Errorik gabeko estekatutako adarra\u2026 ImportMindmanagerFiles.text=MindManager X5 mapa\u2026 ImportXmlFile.text=Inportatu XML fitxategia increase_branch_font_size=Letra mota handiagoa IncreaseNodeFontAction.text=Letra mota handiagoa internal_error.tooltip=Barne erroreak gertatu dira. Egin klik azken erregistro fitxategia irekitzeko. invalid_export_file=Esportatzeko fitxategi-izen baliogabea invalid_file_msg=Ezin fitxategirik aurkitu {0}rentzat invalid_or_ambiguous_reference=Erreferentzia baliogabea edo anbiguoa "{0}" invalid_uri={0} URI okerra invalid_url=Ezin da baliozko URL-rik sortu invalid_url_msg={0}-rentzat ezin da baliozko URL-rik sortu ItalicAction.text=Etzana italicise_branch=Etzan java_version=Java bertsioa: {0} JoinNodesAction.separator.format=Elkartu nodoak "{0}"rekin lastOpenedMaps=Azken mapak lastOpenedMaps.noActions=Maparik ez historian latex_editor=Editatu LaTeX formula LatexDeleteLatexAction.text=Ezabatu LaTeX formula LatexEditLatexAction.text=Editatu LaTeX formula\u2026 LatexInsertLatexAction.msg1=Era zaharkitu batean ari zara LaTeX formula sartzen saiatzen.
Orri honetan daukazu LaTeX formula(k) idazteko era berria: LatexInsertLatexAction.msg2=Labur:
  • "\\latex " aurrizkia erabili nodoaren testuan edo
  • Ikusi->Tresnak panela, orduan Eduki testua->Formatua->Latex
LatexInsertLatexAction.text=Gehitu LaTeX formula\u2026 latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=hazbete LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px less_than_two_selected_nodes=Gutxienez bi nodo aukeratu behar dituzu loturak ezartzeko. license=Lizentzia: GPL 2 edo geroagokoa license_text=Programa hau software librea da; zabaldu edo
aldatu egin zenezake beti ere GNU General Public License-ek
aipatzen dituen balditzen pean Free Software Foundation-ek azaltzen duen moduan; Bere 2. bertsioa edo berriago baten arabera (zeure aukeran).

Programa hau erabilgarria izateko banatzen da,
BAINA INONGO BERMERIK GABE; ezta MERKANTAL edota HELBURU ZEHATZ BATETARAKO EGOKITZEAren ustean ere. Ikus
GNU General Public License xehetasun gehiagorako.

Programa honekin batera GNU General Public License-en
kopia bat jaso beharko zenuke. Hala ez bada, idatzi helbide honetara: Free software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. link_error="{0}" esteka okerra, ez da kargatu link_not_available_any_more=Esteka honek ez du gehiago balio. {0} nodoaren artean ezabatu da. link_not_found={0} esteka ez da aurkitu. links=Esteka load=&Kargatu load_accelerator_presets=Kargatu load_accelerator_presets.noActions=Aurre-ezarpenik ez LoadAcceleratorPresetsAction.textPatterns.text=Testu txantiloiak locking_failed_by_open=Errorea {0} mapa blokeatzean. Soilik irakurtzeko moduan irekitzen. locking_failed_by_save_as=Errorea {0} mapa blokeatzean. Gorde honela bertan behera geratu da. locking_old_lock_removed={0} mapa {1} erabiltzaileak blokeatuta dauka. Blokeoa zaharra delako kendu da. long_node_changed_cancel=Nodoa aldatu duzu. Aldaketak gorde gabe utzi nahi al dituzu? long_node_changed_submit=Nodoa aldatu duzu. Aldaketak gorde nahi al dituzu? lots_of_links_warning=Nodo berdinera lotura asko sortzera zoaz. Benetan nahi al dituzu lotura horiek sortu? main_menu=Menua main_resource_directory=Instalazio baliabideak: {0} MainView.errorUpdateText=Errorea ondoko sarreraren testua ezartzean: {0}:{1}. MakeLinkFromAnchorAction.text=Egin esteka ainguratik MakeLinkFromAnchorAction.tooltip=sortu esteka lokala edo globala
aingura nodotik hautatutako nodora MakeLinkToAnchorAction.text=Egin esteka aingurara MakeLinkToAnchorAction.tooltip=sortu esteka lokala edo globala
hautatutako nodotik ainguratutako nodora ManageAddOnsAction.text=Gehigarriak ManageAddOnsDialog.activate=Aktibatu ManageAddOnsDialog.activation.success={0} Freeplane berrabiarazi ondoren aktibatuko da. ManageAddOnsDialog.authored.by={0}-k egina ManageAddOnsDialog.cannot.activate=Ezin aktibatu: {0} aktibatuta dago dagoeneko. ManageAddOnsDialog.cannot.configure=Ezin da {0} konfiguratu. ManageAddOnsDialog.cannot.deactivate=Ezin da desaktibatu: {0} ez dago aktibo. ManageAddOnsDialog.cannot.deinstall=Ezin da {0} desinstalatu. ManageAddOnsDialog.configure=Konfiguratu ManageAddOnsDialog.deactivate=Desaktibatu ManageAddOnsDialog.deactivation.success={0} Freeplane berrabiaraztean desaktibatuko da. ManageAddOnsDialog.deinstall=Desinstalatu ManageAddOnsDialog.deinstallation.success={0} berrabiaraztean desinstalatuko da. ManageAddOnsDialog.error=Errorea instalazioan: {0}. ManageAddOnsDialog.install=&Instalatu ManageAddOnsDialog.install.from.known.location=Gehigarria leku ezagun batetik instalatu ManageAddOnsDialog.install.tooltip=Gehigarria instalatzeko fitxategiaren URL-a hemen sartu ManageAddOnsDialog.map.not.opened=Badirudi {0} mapa ez dela ireki. ManageAddOnsDialog.really.deinstall=Benetan {0} desinstalatu? ManageAddOnsDialog.search=Gehigarriak bilatu ManageAddOnsDialog.search.file=Bilatu ManageAddOnsDialog.select.tooltip=Hautatu fitxategia ManageAddOnsDialog.status.downloading=Fitxategia deskargatzen\u2026 ManageAddOnsDialog.status.installing=Gehigarria instalatzen\u2026 ManageAddOnsDialog.status.success={0} behar bezala instalatu da. ManageAddOnsDialog.tab.install=Bilatu eta instalatu ManageAddOnsDialog.tab.install.tooltip=Gehigarri berriak bilatu eta instalatu ManageAddOnsDialog.tab.manage=Gehigarriak ManageAddOnsDialog.tab.manage.themes=Gaiak ManageAddOnsDialog.tab.manage.themes.tooltip=Kudeatu instalatutako gaiak ManageAddOnsDialog.tab.manage.tooltip=Kudeatu instalatutako gehigarriak ManageAddOnsDialog.visit.addon.page=Bisitatu gehigarrien orria\u2026 ManageConditionalStylesAction.text=Kudeatu mapen baldintzatutako estiloak ManageNodeConditionalStylesAction.text=Kudeatu mapen baldintzatutako estiloak map_already_exists=Mapa existitzen da dagoeneko. Berridatzi nahi? map_background=Maparen atzeko planoa map_background_image=Atzeko planoko irudia map_corrupted=Mapa hondatua dago. Xehetasunak ikusi nahi dituzu? map_load_error=Ezin da {0} mapa kargatu map_locked_by_open={0} mapa dagoeneko {1} erabiltzailea ari da editatzen. Irakurtzeko moduan soilik irekitzen. map_locked_by_save_as={0} mapa {1} erabiltzailea ari da editatzen. Gorde honela bertan behera geratu da. map_not_saved=Mapa ez da aurretik gordea izan. MapBackgroundClearAction.text=Garbitu MapBackgroundColorAction.text=Atzeko planoaren kolorea MapBackgroundImageAction.text=Atzeko planoko irudia\u2026 maps=Mapak MaxNodeWidth.text=Ezarri nodoen zabalera maximoa menu_applyStyle=Aplikatu estiloa menu_attributes=&Atributua menu_clouds=Hodeiak menu_copy=Kopiatu menu_coreFormat=Nodo nukleoa menu_details=Xehetasunak menu_displayAttributes=Nodoaren atributuak menu_encryption=Pasahitzaren babesa menu_error=Errorea erabiltzaileak definitutako {0} egituran:\n{1}\nBertan behera uzten menu_extensions=Nodoaren propietateak menu_group=Nodo taldea menu_hoverView=Tresna aholkuak menu_iconByCategory=Ikonoa kategoriaz\u2026 menu_iconView=Ikonoak menu_image=Irudia menu_insert=&Txertatu menu_latex_formula=LaTeX formula menu_manageStyles=Kudeatu estiloak menu_moveNode=Mugitu eta ordenatu menu_newNode=Nodo berria menu_node=Nodoa menu_node_features=Nodo eginbideak menu_nodes=&Nodoak menu_nodeView=Nodo nukleoa menu_noteView=Oharrak menu_openmaps=Mapak menu_remove_icons=Kendu ikonoak menu_removeAttribute=Kendu atributua menu_select=Hautatu menu_time=Denboraren kudeaketa menu_title=Nodo nukleoa menu_viewmode=Ikusi ezarpenak MenuUtils.invalid_menuitem={0} ez da baliozko menu elementu-tekla. mindmap=Mapa MindMapNodesFlavorHandler=Nodoen hierarkia mindmaps=&Mapak mindmaps_desc=Mapak (*.mm) mindmaps_filter_desc=Iragazkiak (*.mmfilter) MinNodeWidth.text=Ezarri nodoen gutxieneko zabalera mode_Browse=Arakatze modua mode_File=Iragazki modua mode_MindMap=Buru-mapa modua mode_na=Modua ez dago eskuragarri mode_status=Modua {0}-ra aldatu da mode_StyleMap=Estiloa editatzen mode_title=Freeplane - {0} modes=Moduak ModesMenuAction.Browse.text=Mapa nabigatzailea ModesMenuAction.File.text=Fitxategi arakatzailea ModesMenuAction.MindMap.text=Buru-mapen editorea most_recent_files=Azken mapak MoveAction.text=Mugitu MoveSelectedNodeAction.CENTER.text=Erdiratu hautatutako nodoa MoveSelectedNodeAction.EAST.text=Mugitu eskuinera hautatutako nodoa MoveSelectedNodeAction.WEST.text=Mugitu ezkerrera hautatutako nodoa MoveToRootAction.text=Joan errora NameConditionAction.text=Ezarri izena navigate=&Nabigatu NavigationNextMapAction.text=Hurrengo mapa NavigationPreviousMapAction.text=Aurreko mapa new=&Berria new_map_from_user_templates.text=Txantiloian oinarrituz mapa berria\u2026 new_mindmap=Buru-mapa berria new_node=Nodo berria new_node_as_sibling_not_possible_for_the_root=Errotik ezin da anai-arreba erako nodorik sortu new_version_available="{0}" bertsio berria eskuragarri NewChildAction.text=Haur nodo berria NewerFileRevisionsFoundDialog.cancel=&Saltatu NewerFileRevisionsFoundDialog.cancel.tooltip=Ez ireki fitxategi hau NewerFileRevisionsFoundDialog.file_last_modified=Denbora marka NewerFileRevisionsFoundDialog.file_name=Fitxategia NewerFileRevisionsFoundDialog.file_size=Byte-ak NewerFileRevisionsFoundDialog.open=&Ireki NewerFileRevisionsFoundDialog.open.tooltip=Ireki fitxategia nahiz zaharkituta egon NewerFileRevisionsFoundDialog.question={0}-ren berrikuspen berriagoak aurkitu dira! NewerFileRevisionsFoundDialog.restore=Leheng&oratu NewerFileRevisionsFoundDialog.restore.tooltip={0}-ren ordez {1} jarri NewerFileRevisionsFoundDialog.title=Fitxategiaren berrikuspen berriagoak aurkitu dira! NewFreeNodeAction.text=Nodo mugikor berria NewLevelStyleAction.text=Gehitu mailako estiloa newmap.install.addon.question={0}-k gehigarri paketea dirudi\nInstalatu nahi al duzu?\n(Aukeratu "Ez" normal irekitzeko.) newmap.install.addon.title=Gehigarria instalatu? NewMapAction.text=Mapa berria NewMapViewAction.text=Maparen ikuspegi berria NewParentNode.text=Guraso nodo berria NewParentNode.tooltip=Hautatutako guztiak guraso berri batetara bidaliko dira. NewPreviousSiblingAction.text=Aurreko anai-arreba nodo berria NewSiblingAction.text=Anai-arreba nodo berria NewSummaryAction.text=Laburpen nodo berria (hautatutako nodoak) NewUserStyleAction.text=Hautapenetik estilo berria NextNodeAction.BACK.text=Joan aurreko nodora NextNodeAction.BACK_N_FOLD.text=Joan aurreko nodora (tolestu) NextNodeAction.FORWARD.text=Joan hurrengo nodora NextNodeAction.FORWARD_N_FOLD.text=Joan hurrengo nodora (tolestu) NextPresentationItemAction.text=Hedatu hurrengo aurkezpen elementua (tolestu) no=Ez no_copy_attributes_before_paste_attributes=Ezin dituzu atributuak itsatsi lehendik batzuk kopiatu ez badituzu. NO_FORMAT=Testua no_format_copy_before_format_paste=Ezin duzu formatua itsatsi aurretik bat kopiatu ez baduzu. no_found_from= {0} ez da "{1}"-n aurkitu. no_more_found_from= Ez da {0} gehiagorik "{1}"-n aurkitu. no_previous_find=Aurreko bilaketarik ez. no_styles_found_in_map=Mapan ez da estilorik aurkitu no_translation_strings_found=Itzuli ezineko hizki kateak aurkitu dira node=Nodoa node_alias=Nodoaren ezizena: node_changed_discard_changes=Nodoa aldatu duzu. Aldaketak ezeztatu egin nahi al dituzu? node_is_write_protected=Helburutzat jotako nodoak idazteko babesa du. node_location_help=Aldaketen nodoaren lekua herrestan eramanez, ctrl+herrestatzeak distantziak aldatzen ditu. Klik bikoitzak eta ctrl+klik bikoitzak lehengora eramaten ditu. node_popup_scripting=Scriptak node_selector=Nodo hautapena node_selector_message=Nodoa hautatzeko klik bikoitza egin gainean node_styles=Nodoen estiloak NodeBackgroundColorAction.text=Nodoaren atzeko planoaren kolorea\u2026 NodeColorAction.text=Nodoaren kolorea\u2026 NodeColorBlendAction.text=Nahasketa kolorea NodeDownAction.text=Mugitu nodoa (anai-arreba behera) NodeEnumerationAction.NodeVisibility.HIDDEN.text=Ezkutuko nodoa NodeEnumerationAction.NodeVisibilityConfiguration.SHOW_HIDDEN_NODES.text=Erakutsi ezkutuko nodoak NodeExtensions.EditNodeExtensions=Editatu nodoaren hedadurak NodeExtensions.RemoveNodeExtensions=Kendu nodoaren hedadurak NodeListAction.text=Bilatu eta ordeztu\u2026 NodeListAction.tooltip=Nodo guztiak iragazki-propietateak bilagarriak diren zerrenda gisa erakusten ditu. NodeShapeAction.bubble.text=Markoa NodeShapeAction.fork.text=Sardetu NodeShapeAction.narrow_hexagon.text=Hexagono mehea NodeShapeAction.oval.text=Obaloa NodeShapeAction.rectangle.text=Laukizuzena NodeShapeAction.wide_hexagon.text=Hexagono zabala NodeUpAction.text=Mugitu nodoa (anai-arreba gora) nonboldify_branch=Mehetu nonitalicise_branch=Kendu etzana normal=Arrunta not_saved_for_image_error=Fitxategi aukeratzailearen bitartez irudi bat ezarri aurretik mapa gorde beharra dago not_saved_for_link_error=Esteka bat fitxategi aukeratzailearen bitartez ezarri aurretik mapa gorde beharra dago note_window_location=Ohar panelaren kokapena notes=Oharra NotFoldingNextPresentationItemAction.text=Hedatu hurrengo aurkezpen elementua NotificationOptions.CLOSE=Itxi NotificationOptions.REMIND_ME_LATER=Gogorarazi beranduago NotificationOptions.REMOVE_REMINDER=Kendu abisua NotificationOptions.SELECT_NODE=Joan abisura ok=&Ados OKAction.text=Ados OldReminderListAction.text=Erakutsi iragan abisuak\u2026 OldReminderListAction.tooltip=Iragan abisuak erakusten ditu eta dagozkien nodoak irekitako mapetan. OnlineReference.text=Dokumentazio Mapak Online open_asMindMap=Buru-mapa OpenAction.text=Ireki gordetako mapa\u2026 OpenApiDocumentationAction.text=Freeplane API\u2026 OpenFreeplaneSiteAction.text=Freeplane-ren jatorrizko web orria OpenMapsAddLocation.text=Gehitu OpenMaps-en kokapena\u2026 OpenMapsRemoveLocation.text=Kendu OpenMaps-en kokapena OpenMapsViewLocation.text=Ikusi OpenMaps-en kokapena\u2026 OpenPathAction.text=Ireki fitxategia OpenURLMapAction.text=Ireki mapa URL-tik\u2026 OpenUserDirAction.text=Ireki erabiltzailearen direktorioa option_changes_may_require_restart=Egindako aldaketen eragina ikusteko, Freeplane berrabiarazi beharko zenuke seguruenik. OptionalDontShowMeAgainDialog.cancel=&Ez OptionalDontShowMeAgainDialog.dontShowAgain=&Ez niri berriz galdetu. OptionalDontShowMeAgainDialog.ok=&Bai OptionalDontShowMeAgainDialog.rememberMyDescision=&Gogoratu nire erabakia. OptionPanel.absolute=Absolutua OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Mailako estiloen txantiloiak OptionPanel.ADD_CHILD=Gehitu haur nodoa OptionPanel.ADD_SIBLING=Gehitu anai-arreba nodoa OptionPanel.addons=Gehigarriak OptionPanel.af=Afrikaans OptionPanel.always_fold_all_after_load=Tolestu dena OptionPanel.always_load_last_maps=Kargatu azken mapak mapa berriei gehituz OptionPanel.always_load_last_maps.tooltip=Ireki aurreko aukerak ezarritako azken fitxategiak, edo hasi Freeplane argumentu gisa emandako maparekin. OptionPanel.always_save_folding=Beti OptionPanel.always_save_folding_state=Gorde beti tolestatze egoeraren aldaketak OptionPanel.always_save_folding_state.tooltip=Markatuta badago, toleste ekintza bakoitzak mapa zikintzen du eta gordetzeko gogorarazten dizu. OptionPanel.always_show_less_than_N_nodes_after_load=Hedatu nodo batzuk OptionPanel.always_unfold_all_after_load=Hedatu guztiak OptionPanel.antialias=Antialias OptionPanel.antialias.tooltip=Maparen kalitatea baldintzatzen du. Antialias gehiagok denbora gehiago behar du. OptionPanel.antialias_all=Ezarri antialiasa guztiei OptionPanel.antialias_edges=Ezarri antialiasa ertzei OptionPanel.antialias_none=Antialiasik ez OptionPanel.antialias_svg=Ezarri SVG-ei antialiasa OptionPanel.antialias_svg.tooltip=SVG-en errendatze kalitatea baldintzatzen du. Antialias gehiago denbora gehiago behar du. OptionPanel.Appearance=Itxura OptionPanel.approximate_search_threshold=Gutxi gorabeherako alderaketaren atalasea OptionPanel.approximate_search_threshold.tooltip=Antzeko parekatzerako ataria (threshold)g
ikus http://freeplane.sf.net/wiki/index.php/Approximate_search
(zenbat eta altuago orduan eta aldaketa gutxiago
aurkituko dira egindako bilaketaren inguruan) OptionPanel.ar=Arabiera / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Uztaia OptionPanel.as_parent=Guraso eran OptionPanel.ask=Galdetu OptionPanel.automatic=Automatiko OptionPanel.automaticFormat_level=Aplikatu mailako estiloak OptionPanel.automaticFormat_level1=Erroa nodoaren formatua OptionPanel.automaticFormat_level2=1. mailako nodoaren formatua OptionPanel.backup_file_number=Gordetako babeskopia fitxategien kopurua OptionPanel.Behaviour=Jokaera OptionPanel.bezier=Emeki kurbatuta (bezier) OptionPanel.bg=Bulgariera / \u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 OptionPanel.border_color=Kolorea OptionPanel.border_color_matches_edge_color=Erabili lerroaren kolorea OptionPanel.border_dash=Ertzaren marra mota OptionPanel.border_dash_matches_edge_dash=Erabili lerroaren marra mota OptionPanel.border_width=Lerroaren zabalera OptionPanel.border_width_matches_edge_width=Erabili lerroaren zabalera OptionPanel.bubble=Markoa OptionPanel.ca=Katalanera, valentziera/Catal\u00E1 OptionPanel.Cancel=Utzi OptionPanel.center_selected_node=Erdiratu automatikoki hautatutako nodoa OptionPanel.check_updates_automatically=Programa hastean eguneratzerik dagoen begiratu OptionPanel.childpattern=Haur txantiloia OptionPanel.childpattern.tooltip=Aukeratutako txantiloia ondorengo guztiei ezartzen zaie. OptionPanel.clear_all_setters=Aldatu guztiak OptionPanel.clear_all_setters.tooltip=Aldaketa adierazle guztiak aktibatu edo desaktibatzen ditu. OptionPanel.cloud=Hodeia OptionPanel.cloudcolor=Hodeiaren kolorea OptionPanel.cloudshape=Hodeiaren forma OptionPanel.combined=Konbinatuta OptionPanel.compare_as_number=Zenbaki bezala alderatzen ditu OptionPanel.compile_only_changed_script_files=Konpilatu bakarrik aldatutako fitxategiak OptionPanel.compile_only_changed_script_files.tooltip=Mantendu dagoeneko konpilatutako klase fitxategiak iturburu fitxategia aldaketak izan arte OptionPanel.compiled_script_cache_size=Konpilatutako scripta eta formularen cachearen tamaina OptionPanel.connector_arrows=Konektore-geziak OptionPanel.connector_dash=Marra mota OptionPanel.convert_to_current_version=Freeplane-ren bertsio zaharragoak oraingo bertsiora
automatikoki eguneratu? OptionPanel.convert_to_current_version.tooltip=Bakarrik aldatuak izan behar ez duten mapa oso handientzat
(adituentzat soilik) mapak aldaketarik gabe ireki zenitzake. OptionPanel.copyFormatToNewSibling=Kopiatu formatua beste anai-arrebei OptionPanel.copyFormatToNewSiblingIncludesIcons=Kopiatu formatua ikono eta guzti OptionPanel.cs=Txekiera / \u010Desky OptionPanel.cut_nodes_without_question=Nodoak baieztapenik gabe moztu? OptionPanel.cut_nodes_without_question.tooltip=Kutxatxo hau aukeratuta egonez gero nodo guztiak baieztapenik gabe moztuko dira. Honek nahi gabeko informazio galera eragin lezake. OptionPanel.cut_out_pictures_when_pasting_html=Ezabatu irudiak HTML-tik OptionPanel.da=Daniera / danks OptionPanel.date_format=Data formatu estandarra OptionPanel.date_format.tooltip=SHORT (labur), MEDIUM (ertain), LONG (luze) edo FULL (oso), edota "HH/ee/uuuu" (Hilabete, egun, urte) erako txantiloia OptionPanel.datetime_format=Data-ordu formatu estandarra OptionPanel.datetime_format.tooltip=Baldin eta , (SHORT (motz), MEDIUM (ertain), LONG (luze) edo FULL (oso) estilo eran) edota "HH/ee/uuuu oo:mm" (Hilabete, egun, urte, ordu:minutu)erako txantiloi osoa OptionPanel.de=Alemana/Deutsch OptionPanel.default=Lehenetsi OptionPanel.default_attribute_key_column_width=Atributu giltzaren zabalera estandarra OptionPanel.default_attribute_value_column_width=Atributuaren balioaren zabalera estandarra OptionPanel.default_browser_command_mac=Nabigatzailearen berezko Mac komandoa OptionPanel.default_browser_command_mac.tooltip= eta MAC: (Nick-i eskerrak!) OptionPanel.default_browser_command_other_os=Beste sistema eragile bat, defektuzko nabigatzaile komandoa OptionPanel.default_browser_command_other_os.tooltip= Hau normalki Linux da: OptionPanel.default_browser_command_windows_9x=Lehenetsitako nabigatzaile komandoa Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=Windows-entzat ("" ikurrak beharrezkoak dira URLtan "=" ikurra duten loturak direla eta). OptionPanel.default_browser_command_windows_nt=Lehenetsitako nabigatzaile komandoa Windows NT OptionPanel.default_browser_command_windows_nt.tooltip=Windows-entzat ("" ikurrak beharrezkoak dira URLtan "=" ikurra duten loturak direla eta). OptionPanel.default_charset=Karaktere multzoa OptionPanel.default_save_dir=Gordetzeko direktorio lehenetsia OptionPanel.Defaults=Lehenetsiak OptionPanel.delete_automatic_saves_at_exit=Ezabatu kopia automatikoak irtetean OptionPanel.delete_automatic_saves_at_exit.tooltip= Fitxategiak Freeplane normalki itzaltzean ezabatzeko ondorengo aldagaia TRUE-ra pasa OptionPanel.delete_nodes_without_question=Nodoak baieztapenik gabe ezabatu? OptionPanel.delete_nodes_without_question.tooltip=Kutxatxo hau aukeratzen baduzu nodoak baieztapenik gabe ezabatuko dira. Honek nahi gabean informazio galera sor lezake. OptionPanel.disable_cursor_move_paper.tooltip=Ez erakutsi 'mugitu" kurtsorea papera mugitzerakoan OptionPanel.display_inline_editor_for_all_new_nodes=Inline editorea erakutsi nodo berri guztientzat OptionPanel.display_node_id=Erakutsi nodoaren IDa OptionPanel.edgecolor=Lerroaren kolorea OptionPanel.edgecolor.tooltip=Lerroaren jabetza bere gurasoari eman (bere haur nodo guztiei ere ezartzen zaie) OptionPanel.edgedash=Lerroaren marra mota OptionPanel.edgestyle=Lerroaren estiloa OptionPanel.edgestyle.tooltip=Lerroaren jabetza bere gurasoari eman (bere haur nodo guztiei ere ezartzen zaie) OptionPanel.edgewidth=Lerroaren zabalera OptionPanel.edgewidth.tooltip=Lerroaren jabetza bere gurasoari eman (bere haur nodo guztiei ere ezartzen zaie) OptionPanel.EDIT_CURRENT=Gainidatzi edukia OptionPanel.edit_on_double_click=Editatu klik bikoitza egitean OptionPanel.editor_extra_width=Zabalera estrako pausua OptionPanel.editor_extra_width.tooltip=Testuak nodoaren oraingo zabalera gainditzen baldin badu, nodo hori zenbat pixel zabaldu behar den kalkulatzen du. OptionPanel.el=Greziera/ \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Botoiak goiko aldean OptionPanel.el__enter_confirms_by_default=Sartu-k berez baieztatzen du OptionPanel.el__max_default_window_height=Leihoaren berezko altuera maximoa OptionPanel.el__max_default_window_width=Leihoaren berezko zabalera maximoa OptionPanel.el__min_default_window_height=Leihoaren berezko altuera minimoa OptionPanel.el__min_default_window_width=Leihoaren berezko zabalera minimoa OptionPanel.el__position_window_below_node=Leihoa nodoaren azpian kokatu OptionPanel.en=Ingelesa / English OptionPanel.Environment=Ingurunea OptionPanel.es=Gaztelera / espa\u00F1ol, castellano OptionPanel.et=Estoniera / eesti, eesti keel OptionPanel.eu=Euskara OptionPanel.execute_scripts_without_asking=Scriptaren abiaraztea aktibatuta OptionPanel.execute_scripts_without_asking.tooltip=Freeplane scriptak oro har edozein ekintza egiteko gai dira ordenagaiuan
Beraz, segurua dela garbi izan ezean ez zenuke script-ik abiarazi behar. OptionPanel.execute_scripts_without_exec_restriction=Baimendu beste aplikazioak abiarazten (EZ da gomendagarria) OptionPanel.execute_scripts_without_exec_restriction.tooltip=Zure Groovy Script-ek beste aplikazio batzuek galdetu gabe (!) abiaraztea behar badute (adib. nabigatzailea) ,
aukera hau aktibatu behar duzu.
Baina kontuz erabili, script gaiztoek zure konputagailua kaltetu bailezakete! OptionPanel.execute_scripts_without_file_restriction=Baimendu fitxategiak irakurtze eragiketak (EZ da gomendagarria) OptionPanel.execute_scripts_without_file_restriction.tooltip=Zure Groovy Script-ek irakurketa baimenak behar izanez gero (ireki, itxi, irakurri),
aukera hori baimendu behar duzu.
Baina kontuz erabili, script gaiztoek zure konputagailua kaltetu bailezakete! OptionPanel.execute_scripts_without_network_restriction=Baimendu sareko eragiketak (EZ da gomendagarria) OptionPanel.execute_scripts_without_network_restriction.tooltip=Zure Groovy Script-ek sare eragiketak egin behar badituzte,
aukera hori baimendu behar duzu.
Baina kontuz erabili, script gaiztoek zure konputagailua kaltetu bailezakete!Zure Groovy Script-ek idazte baimenak behar izanez gero (idatzi, ezabatu(!)),
aukera hori baimendu behar duzu.
Normalki irakurketa baimenekin batera erabiltzen da.
Baina kontuz erabili, script gaiztoek zure konputagailua kaltetu bailezakete! Eginbide esperimentala OptionPanel.export_icons_in_html=Esportatu Ikonoak HTMLn OptionPanel.export_icons_in_html.tooltip= Freeplan HTMLra esportatzean ikonoak izan beharko lituzken esan. Nahiko sarritan ikonoetara loturak ezin izaten dira esportatutako HTMLan aurkitu. OptionPanel.exported_image_resolution_dpi=Esportatzeko irudien erresoluzioa (DPI edota hazbeteko puntu kopurua) OptionPanel.Files=Fitxategiak OptionPanel.first=Lehenengoa OptionPanel.fit_to_viewport=Egokitu atzeko planoko irudia leihora OptionPanel.fold_on_click_inside=Tolestu barruan klikatzean OptionPanel.foldingsymbolwidth=Tolesteko ikurraren zabalera OptionPanel.foldingsymbolwidth.tooltip=Tolesteko zirkuluaren zabalera OptionPanel.fork=Banatu. OptionPanel.format_locale=Formatuentzat "locale"ak OptionPanel.format_locale.tooltip=Kokapen berezitasunak datuak parseatu eta formatua emateko OptionPanel.formula_disable_caching=Desaktibatu formula ebaluatzeko cache-a OptionPanel.formula_disable_plugin=Desaktibatu formulen ebaluazioa OptionPanel.fr=Frantsesa/Fran\u00E7ais OptionPanel.gl=Galiziera / Galego OptionPanel.goto_note_end_on_edit=Eraman kurtsorera amaierara OptionPanel.grid_size=Sareta hutsunearen tamaina OptionPanel.groovy_editor_font=Groovy Editorearen Syntaxi Erakuslearen letra mota OptionPanel.groovy_editor_font.tooltip=Erabili 'Dialog' edo 'Monospaced' unicode letra mota behar izanez gero! OptionPanel.groovy_editor_font_size=Groovy Editorearen Syntaxi Erakuslearen letra mota OptionPanel.gtk=Gtk OptionPanel.hi=Hindi OptionPanel.hide_edge=Ezkutatu lerroa OptionPanel.hide_single_end_connectors=Ezkutatu amaiera bakarreko loturak OptionPanel.highlight_formulas=Nabarmendu formulak OptionPanel.horizontal=Horizontala OptionPanel.hr=Kroaziera / hrvatski OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=Izenburuetan oinarritua OptionPanel.html_export_fold_all=Tolestu dena OptionPanel.html_export_fold_currently_folded=Tolestu orain artean tolestuak OptionPanel.html_export_folding=Esportatu HTML tolestuta OptionPanel.html_export_no_folding=Ez tolestu OptionPanel.hu=Hungariera, magyarrera / Magyar OptionPanel.ic_disable=Desaktibatu OptionPanel.ic_file=Erabili diskoa OptionPanel.ic_ram=RAMean OptionPanel.icon=Ikonoa OptionPanel.icon.tooltip=Aplikatuz gero, adabegiak zehazki ikono hau izango du. OptionPanel.icon_size=Ikonoen neurria OptionPanel.icons.list=Azaldutako Ikono Estandarren zerrenda OptionPanel.icons.list.tooltip=Hemen ikono estandarrak ordenatu edo desaktibatu zenitzake. Ikonoak ';' ikurraz bereizi behar dira. OptionPanel.id=Indonesiera / Bahasa Indonesia OptionPanel.IGNORE=Ez egin ezer OptionPanel.ignore_unassigned_f_keys=Ezikusi esleitu gabeko F-teklak OptionPanel.il__enter_confirms_by_default=Sartu-k berez baieztatzen du OptionPanel.image_cache=irudientzat OptionPanel.indentationUsesTabsInTextOutput=Erabili tab-ak testu irteeran OptionPanel.it=Italiera / Italiano OptionPanel.ja=Japoniera / \u65E5\u672C\u8A9E OptionPanel.JoinNodesAction.textSeparators=Testu banatzailea OptionPanel.key_type_action=Tekla zapaltzean OptionPanel.Keystrokes=Tekla kolpeak OptionPanel.kn=Kannada OptionPanel.ko=Korearra / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Letra mota familia OptionPanel.label_font_size=Letra motaren tamaina OptionPanel.language=Hizkuntza OptionPanel.language.tooltip=Hau programan erabil beharko litzatekeen hizkuntza da. 'Automatiko' aukera erabiltzailearen uneko hizkuntza kargatzen saiatuko da. OptionPanel.last=Azkena OptionPanel.last_opened_list_length=Irekitako azkenen zerrendaren luzera OptionPanel.latex_disable_editor=Desgaitu LaTeX sintaxia nabarmentzeko editorea OptionPanel.latex_disable_editor.tooltip=Egiaztatu ea LaTeX editorearekin arazorik izaten ari zaren OptionPanel.latex_editor_font=LaTex editorearen letra mota OptionPanel.latex_editor_font.tooltip=Erabili 'Dialog' edo 'Monospaced' unicode karaktereak behar izanez gero! OptionPanel.latex_editor_font_size=LaTeX editorearen letraren tamaina OptionPanel.latex_macros=Ohiko LaTeX makroak OptionPanel.layout_map_on_text_change=Mapa diseinatu editatzean OptionPanel.layout_map_on_text_change.tooltip=Desgaitu errendimendua hobetzeko OptionPanel.linear=Lineala OptionPanel.links=Estekak OptionPanel.links.tooltip=Ezarri estekak, era erlatibo edo absolutuan OptionPanel.load_folding=Kargatzerakoan OptionPanel.load_folding_from_map_default_fold_all=Mapatik kargatu edo dena tolestu OptionPanel.load_folding_from_map_default_unfold_all=Mapatik kargatu edo dena zabaldu OptionPanel.load_last_map=Ireki automatikoki azken mapa OptionPanel.load_last_map.tooltip=Aukera hau aktibatuz gero, Freeplane hasten denean ireki zen azken mapa kargatuko da OptionPanel.load_last_maps=Kargatu azken mapa guztiak OptionPanel.lookandfeel=Itxura OptionPanel.lookandfeel.scaleuifonts=Aldatu erabiltzaile Interfazearen (UI) letren tamaina OptionPanel.lookandfeel.scaleuifonts.tooltip=Erabilgarria dentsitate altuko monitoreetan OptionPanel.lookandfeel.tooltip=Erabiltzeko itxura. 'metal','windows','motif' eta 'gtk' onartzen ditu, 'mac' soilik MacOS-en. Berezkoa esan nahi du, berezko itxura hori erabiliko dela. Zure gustuko itxura ezarri nahi baduzu, klase izena eman hemen eta ziurtatu dago(z)kion JAR fitxategia(k) kargatuta daudela. Arazorik izanez gero 'bat ere ez' aukeratu. Applet-entzat baliagarria. OptionPanel.lt=Lithuaniera / kalba OptionPanel.markClones=Margotu klonatutako markak OptionPanel.markSelectedClones=Margotu aukeratzeko klonatutako markak OptionPanel.max_displayed_node_count=Erakusgarri izango den nodoen kopuru maximoa OptionPanel.max_image_width=Hasierako irudiaren zabalera maximoa OptionPanel.max_image_width.tooltip=Irudi berriak zabalera honetara egokituko dira OptionPanel.max_menu_item_count=Menu elementuen kopuru maximoa OptionPanel.max_menu_item_count.tooltip=Azpimenu baten elementuen kopurua mugatzen du, gutxienez 10 OptionPanel.max_node_width=Nodoen zabalera maximoa OptionPanel.max_shortened_text_length=Moztutako testuaren zabalera maximoa OptionPanel.menuItemFontSize=Menuko elementuen letren tamaina OptionPanel.metal=Metal OptionPanel.min_node_width=Nodoen zabalera minimoa OptionPanel.monitor_size_inches=Monitorearen neurria (hazbetetan) OptionPanel.motif=Motif OptionPanel.narrow_hexagon=Hexagono estua OptionPanel.nb=Bokm\u00E5l Norvegiera / Norsk bokm\u00E5l OptionPanel.never_save_folding=Inoiz ez OptionPanel.neverShowSurvey=Ez erakutsi inoiz ez galdera, inkesta edo aholkurik OptionPanel.nl=Nederlandera, flandriera / Nederlands, Vlaams OptionPanel.nn=Nynorsk norvegiera / Norsk nynorsk OptionPanel.nodebackgroundcolor=Atzeko planoa OptionPanel.nodebackgroundcolor.tooltip=Nodoaren atzeko planoa, hautatuta ez dagoenean. OptionPanel.nodecolor=Testua OptionPanel.nodecolor.tooltip=Nodoaren testuaren kolorea, hautatuta ez dagoenean. OptionPanel.nodefontbold=Lodia OptionPanel.nodefonthyperlink=Esteka OptionPanel.nodefontitalic=Etzana OptionPanel.nodefontname=Letra moten familia OptionPanel.nodefontsize=Letraren tamaina OptionPanel.nodefontstrikethrough=Marratua OptionPanel.nodeformat=Formatua OptionPanel.nodeformat.tooltip=Testu ordezkapen eta/edo formatu ematea:
  • Txantilloi hedapena(%s jatorrizko testua da), adib.ADI: %s
  • Zenbaki eta daten formatua - ikus adibideak aukera kutxatxoan
OptionPanel.nodenumbering=Nodoen zenbakitzea OptionPanel.nodenumbering.tooltip=Serie zenbakia gehitzen dio nodoaren testuari (Ad. 1.3.1). OptionPanel.nodeshape=Nodoaren forma OptionPanel.nodetext=Muineko testua OptionPanel.nodetext.tooltip=Hemen nodoaren testua defini zenezake. Aurreko testua ezabatu egiten da halako txantiloia aplikatzean. OptionPanel.nothing=Ezer ez OptionPanel.number_format=Zenbaki formatu estandarra OptionPanel.number_format.tooltip='#' daraman txantiloia hautazko zenbakientzat edo '0' derrigorrezkoentzat. Adibideak; "0.00", "0.0%", "$#.00", "#0" OptionPanel.number_of_different_files_for_automatic_save=Automatikoki gordetzeko fitxategi ezberdinen kopurua OptionPanel.number_of_different_files_for_automatic_save.tooltip= Bertan mapak gordetzeko n fitxategi ezberdinen kopurua. Lehenengo gordetze automatikoa lehen fitxategian egiten da, eta eta horrela jarraitzen da n+1era iritsi arte, hau berriz ere lehen fitxategian gordetzen delarik (ziklikoki) OptionPanel.oc=Okzitaniera OptionPanel.OK=Gorde OptionPanel.org.freeplane.plugin.bugreport=Gidalerroak OptionPanel.org.freeplane.plugin.bugreport.allowed=Bidali beti OptionPanel.org.freeplane.plugin.bugreport.ask=Bistaratu txostenaren elkarrizketa-koadroa OptionPanel.org.freeplane.plugin.bugreport.denied=Ez bidali inoiz OptionPanel.org.freeplane.plugin.bugreport.userid=Aukerazko identifikatzailea bidaltzeko OptionPanel.org.freeplane.plugin.svg.export.pdf.convert_text_to_shapes=Bihurtu testuak formatan esportatutako PDFetan OptionPanel.org.freeplane.plugin.svg.export.svg.embed_fonts=Kapsulatu letra motak svg-etan OptionPanel.outline_hgap=Tarte horizontala OptionPanel.outline_vgap=Tarte bertikala OptionPanel.outline_view_fits_window_width=Eskema-ikuspegia leihoaren zabalera egokitzen da OptionPanel.oval=Obaloa OptionPanel.paint_connectors_behind=Margotu nodoen atzeko loturak OptionPanel.parse_data=Antzeman zenbakien eta ordu-daten sarrera OptionPanel.parse_data.tooltip=Data aztertzen saiatu, data-ordu eta zenbaki sarrerak eta formatu estandarrak aplikatu. Adibideak: 100,000.00, 12/31, 12/31/99, 1999-12-31 and 1999-12-31 23:59 OptionPanel.parse_formulas=Identifikatu formulak OptionPanel.parse_formulas.tooltip='='-rekin hasten diren nodoen formulak aztertu: See http://www.freeplane.org/wiki/index.php/Formulas. OptionPanel.parse_latex=Antzeman LaTeX OptionPanel.parse_latex.tooltip=LaTeX formulak formatu edo aurrizkiz antzeman: See http://www.freeplane.org/wiki/index.php/LaTeX_in_Freeplane. OptionPanel.PASTE_HTML=Itsatsi HTML moduan OptionPanel.PASTE_PLAIN_TEXT=Itsatsi formaturik gabeko testu moduan OptionPanel.pasteImagesFromFiles=Itsatsi irudiak fitxategietatik OptionPanel.pasteImagesFromFiles.tooltip=Txertatu irudia irudi fitxategia mapara isuria jaregiten bada OptionPanel.path_property_may_not_be_empty=Baliteke helbidea hutsik ez egotea! Aldaketa bere horretan utzi da. OptionPanel.patternname=Izena OptionPanel.patternname.tooltip=Txantiloi izen bakarra OptionPanel.pl=Poloniera / polski OptionPanel.placenewbranches=Ipini adar berriak OptionPanel.placenewbranches.tooltip=Adar berriak non kokatu. Balio duten sarrerak 'lehenengoa' eta 'azkena' dira OptionPanel.plugin.tooltip=Oinarrizkoak ez diren pluginak. OptionPanel.plugins=Pluginak OptionPanel.Presentation=Aurkezpena OptionPanel.presentation.combineAll=Aurkezpen guztiak bateratu OptionPanel.presentation.exportDirectory=Esportatutako aurkezpenaren direktorioaren izena OptionPanel.presentation.maxDropBoxRowCount=Jaregindako kutxaren gehienezko lerro kopurua OptionPanel.presentation.maxDropBoxRowCount.tooltip=Aplikatu aurkezpenean eta diapositiben hautatzaileetan OptionPanel.presentation.processesEscapeKey=ESCAPE teklak aurkezpena amaitzen du OptionPanel.presentation.processesNavigationKeys=Nabigazio teklek aurkezpena kontrolatzen dute OptionPanel.presentation.slideDisplaysAllNodes=Hedatu aurkezpen nodo guztiak automatikoki OptionPanel.presentation.slowMotion=Mugimendu geldoko aurkezpena OptionPanel.presentation.switchToFullScreen=Pantaila osoa OptionPanel.presentation.switchToSpotlight=Aktibatu argia OptionPanel.presentation.zoom=Erabili maparen zooma OptionPanel.printonwhitebackground=Inprimatzeko atzeko plano zuria OptionPanel.printonwhitebackground.tooltip=Inprimatzeko beti atzeko plano zuria erabili OptionPanel.pt_BR=Portugesera (Brasil)/ Portugu\u00EAs (Brasil) OptionPanel.pt_PT=Portugesera (Portugal) / Portugu\u00EAs (Portugal) OptionPanel.RECT=Laukizuzena OptionPanel.rectangle=Laukizuzena OptionPanel.relative=Erlatiboa OptionPanel.remind_type_of_new_nodes.tooltip="Galdetu" aukerak galdetu egingo dizu (zalantza izanez gero erabili).
"Bai" aukeratzeak editore aberastua erakusten du.
"Ez" aukeratzeak editore xumea aurkezten du. OptionPanel.remind_use_rich_text_in_new_nodes=Erabili formatu aberatseko testua itsatsitako nodoetan OptionPanel.reminder.showPastRemindersOnStart=Erakutsi iraganeko abisuak OptionPanel.remindersBlink=Abisu keinukariak OptionPanel.remindersShowNotifications=Abisuak jakinarazpen leihoetan erakusten dira OptionPanel.remindersStandardDelay=Abisuaren atzerapena OptionPanel.remove_notes_without_question=Oharrak galdetu gabe kendu? OptionPanel.remove_notes_without_question.tooltip=Hau aukeratuta baldin badago, dagozkion nodoak baieztapenik eskatu gabe ezabatzen dira. Honek nahi gabe informazioa galtzea ekar lezake. OptionPanel.resources_use_default_font_for_notes_too=Erabili berezko letra mota oharrentzat ere OptionPanel.resources_use_margin_top_zero_for_notes=Kendu oharretako goiko margina OptionPanel.revision_color=Kolore berrikuspena OptionPanel.revision_color.tooltip=Aldatu diren nodoen atzeko planoaren kolorea. OptionPanel.ROUND_RECT=Laukizuzen ertza borobilduna OptionPanel.ru=Errusiera / \u0420\u0443\u0441\u0441\u043A\u0438\u0439 OptionPanel.save_folding=Gorde tolestea OptionPanel.save_folding_if_map_is_changed=Mapa aldatzen bada OptionPanel.save_last_visited_node=Gorde Mapako azken kokapena OptionPanel.save_modification_times=Gorde aldaketen denborak OptionPanel.script_classpath=Scriptaren "classpath"-a: JAR fitxategiak eta/edo klaseak gordetzen dituzten direktorio gehigarriak (Ikusi oharra) OptionPanel.script_classpath.tooltip=JAR fitxategien eta/edo direktorioen zerrenda script eta formulen classpath-ean gehitzeko.
;(Windows) edota : (Linux, Mac) erabili sarrerak bereizteko.
Direktorioak JAR eta .class fitxategiak aurkitzeko eskaneatuko dira.
Absolutuak ez diren helbideak Freeplane erabiltzaile direktorioarekiko erlatibotzat joko dira.
Classpath bat ezartzen baduzu bertara irakurtze baimenak ere eman behar dituzu! OptionPanel.script_compilation_disabled_extensions=Konpilatu behar ez diren fitxategi-luzapenak (oharra ikusi) OptionPanel.script_compilation_disabled_extensions.tooltip=Instalatutako hizkuntza gehigarri bakoitzaren script guztiek (
groovy eta JavaScript ezik) konpilazio arazo orokor bat baldin badute
saiatu hemen fitxategi luzapena gehitzen (komaz banatutako zerrenda). OptionPanel.script_directories=Scriptak bilatzeko helbidea (ikusi oharra) OptionPanel.script_directories.tooltip=Direktorioen zerrenda ("script"ez gain).
;(Windows) edo : (Linux, Mac) erabili sarrerak banatzeko.
Absolutuak ez diren helbideak Freeplane erabiltzailearen direktorioarekiko erlatibotzat joko dira. OptionPanel.script_user_key_name_for_signing=Hautazko erabiltzailearen giltza aliasa sinadurarako OptionPanel.script_user_key_name_for_signing.tooltip=Zure script-a sinatu nahi baldin baduzu, sartu hemen giltzaren aliasa.
Giltza defektuzko tokian gordeta izatea espero da.
Giltza sekretuaren pasahitzak gordetakoarekin bat egin behar du (hau da berezkoa). OptionPanel.scrollbar_increment=Abiadura OptionPanel.scrolling_speed=Maparen korritze automatikoaren abiadura OptionPanel.scrollOnUnfold=Korritu mapa nodoa hedatu ondoren OptionPanel.selection_method=Hautapen metodoa OptionPanel.selection_method.tooltip= Ondorengo etengailuarekin atzeratutako aukeratuta eskema aktibatu/desaktibatu zenezake. Aukera automatikoak. Edozein eratan "auto.properties"-en gordeko direnez ez aldatu. OptionPanel.selection_method_by_click=Klik bidez OptionPanel.selection_method_delayed=Atzeratua OptionPanel.selection_method_direct=Zuzena OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=Txantiloiak OptionPanel.separator.anti_alias=Antialias OptionPanel.separator.attributes=Atributuak OptionPanel.separator.automatic_save=Gorde automatikoki OptionPanel.separator.behaviour=Jokaera OptionPanel.separator.browser=Nabigatzailea OptionPanel.separator.cache=Cache-a OptionPanel.separator.clones=Klonak OptionPanel.separator.cloud=Hodeia OptionPanel.separator.CloudControls=Hodeiak OptionPanel.separator.commands_for_the_program=Programarako komandoak OptionPanel.separator.connectors=Loturak OptionPanel.separator.data_formats=Datuen formatua eta azterketa OptionPanel.separator.default_colors=Berezko koloreak OptionPanel.separator.default_fonts=Berezko letra motak OptionPanel.separator.default_styles=Berezko estiloak OptionPanel.separator.EdgeControls=Ertzak OptionPanel.separator.edit_long_node_window=Editatu elkarrizketa-koadroan OptionPanel.separator.editing=Editorearen ezarpenak OptionPanel.separator.export=Esportatu OptionPanel.separator.files=Fitxategiak OptionPanel.separator.formula=Formulak OptionPanel.separator.General=Orokorra OptionPanel.separator.html_export=Esportatu HTML OptionPanel.separator.html_import=Inportatu HTML OptionPanel.separator.hyperlink_types=Esteka motak OptionPanel.separator.icon_properties=Ikonoak OptionPanel.separator.IconControls=Ikonoak OptionPanel.separator.icons="Ikonoa hautatu..."ko ikonoak OptionPanel.separator.Icons=Ikonoak OptionPanel.separator.initial_map_size=Maparen hasierako tamaina OptionPanel.separator.inline_editor=Nodoaren bertako editorea OptionPanel.separator.JoinNodesAction=Nodoak uztartzen OptionPanel.separator.key_typing=Teklak zapaltzean OptionPanel.separator.language=Hizkuntza OptionPanel.separator.latex=LaTeX OptionPanel.separator.load=Kargatu OptionPanel.separator.look_and_feel=Itxura OptionPanel.separator.mouse_wheel=Saguaren gurpila OptionPanel.separator.new_node_commands=Nodo komando berriak OptionPanel.separator.node_editing_commands=Nodoak editatzeko komandoak OptionPanel.separator.node_navigation_commands=Nodoetan nabigatzeko komandoak OptionPanel.separator.NodeBorder=Nodoaren ertza OptionPanel.separator.NodeColors=Muin osoaren kolorea OptionPanel.separator.NodeFont=Muin osoaren letra mota OptionPanel.separator.NodeShape=Nodoaren forma OptionPanel.separator.NodeStyle=Nodoaren estiloa OptionPanel.separator.NodeText=Muinaren testua OptionPanel.separator.notifications=Baieztapenak OptionPanel.separator.org.freeplane.plugin.bugreport=Erroreen txosten automatikoa OptionPanel.separator.other_defaults=Bestelako berezkoak OptionPanel.separator.others=Bestelako laster-teklak OptionPanel.separator.outline_view=Eskema ikuspegia OptionPanel.separator.patterns=Txantiloiak OptionPanel.separator.presentation=Aurkezpena OptionPanel.separator.reminderOptions=Abisuen aukerak OptionPanel.separator.RichTextEditor=Testu editore aberastua OptionPanel.separator.root_node_appearance=Erroa nodoaren itxura OptionPanel.separator.save=Gorde OptionPanel.separator.scripting=Scripting-a OptionPanel.separator.scrollbar=Korritze barra OptionPanel.separator.search=Bilatu OptionPanel.separator.selection_colors=Aukeraketa koloreak OptionPanel.separator.selection_method=Aukeraketa metodoa OptionPanel.separator.single_instance_mode=Programa instantzia bakarra OptionPanel.separator.size_limits=Tamainaren mugak OptionPanel.separator.spelling=Ortografia zuzentzailearen aukerak OptionPanel.separator.SplitToWordsAction=Nodoa hitzetan banatu OptionPanel.separator.status=Egoera barra OptionPanel.separator.surveys=Galdeketak OptionPanel.separator.svg_icons=SVG ikonoak OptionPanel.separator.tooltip=Argibideak OptionPanel.separator.undo=Desegin OptionPanel.separator.updates=Programaren eguneraketak OptionPanel.set_property_text=Aldatu OptionPanel.set_property_text.tooltip=Aktibatu estilo propietateak aldatzeko OptionPanel.setscript=Aldatu? OptionPanel.setscript.tooltip=Estilo honi script bat lotu dakioke. OptionPanel.shape_horizontal_margin=Margen horizontala OptionPanel.shape_vertical_margin=Margen bertikala OptionPanel.sharp_bezier=Zorrozki kurbatuta (bezier) OptionPanel.sharp_linear=Zorrozki zuzena OptionPanel.shouldCenterSmallMaps=Erdiratu mapa txikiak OptionPanel.show_connectors=Bistaratu loturen lerroak OptionPanel.show_connectors.false=geziak bakarrik OptionPanel.show_connectors.for_selection=hautapenerako OptionPanel.show_connectors.never=inoiz ez OptionPanel.show_connectors.true=beti OptionPanel.show_creation_modification_in_status=Erakutsi aldaketako denborak egoera barran OptionPanel.show_creation_modification_in_tooltip=Erakutsi aldaketa denborak argibideetan OptionPanel.show_icon_for_attributes=Erakutsi atributuen Ikonoak OptionPanel.show_icons=Erakutsi Ikonoak OptionPanel.show_less_than_N_nodes_by_default_after_load=Kargatu mapatik edo hedatu zenbait nodo OptionPanel.show_node_tooltips=Erakutsi argibideak OptionPanel.show_note_icon_in_tooltip=Erakutsi ohar ikonoa argibideetan OptionPanel.show_note_icons=Erakutsi oharren ikonoak OptionPanel.show_styles_in_tooltip=Erakutsi nodoen estiloak argibideetan OptionPanel.signed_script_are_trusted=Fidatu sinatutako scriptekin (gomendatua) OptionPanel.signed_script_are_trusted.tooltip=Scripta konfidantzako norbaitek firmatu badu (e.b. zuk zeuk edo Freeplane'ren egileren batek), mugarik gabe exekutatu. OptionPanel.simplyhtml.default_paste_mode=Berezko itsaste modua OptionPanel.single_backup_directory=Erabili direktorio bakarra babeskopietarako OptionPanel.single_backup_directory.tooltip=Babeskopiak eta automatikoki gordetako fitxategiak direktorio bakar batean gorde maparen direktorioaren azpidirektorio batean gorde ordez OptionPanel.single_backup_directory_path=Egin direktorioaren babeskopia (goiko aukera onartua izan bada) OptionPanel.single_backup_directory_path.tooltip= Berez <freeplaneuserdir>/.babeskopiak gainean idazten du OptionPanel.single_instance=Ireki fitxategiak martxan dagoen instantzia batean OptionPanel.single_instance_force=Saihestu edozein modutan bigarren instantzia bat OptionPanel.single_instance_force.tooltip=Saihestu bigarren instantzia kargatzeko fitxategirik ez badago ere OptionPanel.sk=Slovakiera / sloven\u010Dina OptionPanel.skip_template_selection=Saltatu txantiloi aukeraketa elkarrizketa OptionPanel.sl=Sloveniera / sloven\u010Dina OptionPanel.slow_scroll_selected_node=Hautatutako nodoa poliki korritu OptionPanel.spelling_opt_case_sensitive=Hizki larriak txikietatik bereizi OptionPanel.spelling_opt_ignore_all_caps_words=Hizki larritan idatzitako hitzak ez kontutan izan. OptionPanel.spelling_opt_ignore_capitalization=Ez ikusi letrak kapitalak hitzaren hasieran OptionPanel.spelling_opt_ignore_words_with_numbers=Zenbakiak dituzten hitzak ez kontutan izan OptionPanel.spelling_opt_suggestions_limit_dialog=Elkarrizketako iradokizunen maximoa OptionPanel.spelling_opt_suggestions_limit_menu=Menuko iradokizun kopuru maximoa OptionPanel.SplitToWordsAction.auxiliaryWordList=Hitz laguntzaileen zerrenda OptionPanel.SplitToWordsAction.charactersAcceptedInWord=Hitzetako karaktereak OptionPanel.SplitToWordsAction.leaveOriginalNodeEmpty=Jatorrizko nodoa hutsik utzi OptionPanel.SplitToWordsAction.nodeNumbersInLine=nodo kopurua lerroan OptionPanel.SplitToWordsAction.saveOriginalTextAsDetails=Jatorrizko testua xehetasun bezala gorde OptionPanel.spotlight=Argi-puntua OptionPanel.spotlight_background_color=Argi-puntuaren atzeko planoaren kolorea OptionPanel.sr=Serbiera / \u0441\u0440\u043F\u0441\u043A\u0438 OptionPanel.standard_template=Txantiloi fitxategi estandarra OptionPanel.standardbackgroundcolor=Atzeko planoaren kolore estandarra OptionPanel.standardbackgroundcolor.tooltip=Atzeko planoaren kolore estandarra html kodean OptionPanel.standardcloudcolor=Hodei kolore estandarra OptionPanel.standardcloudcolor.tooltip=Hodei kolore estandarra html kodetan OptionPanel.standardcloudestyle=Hodei estilo estandarra OptionPanel.standardcloudestyle.tooltip=Hodei estilo estandarra. OptionPanel.standardcloudshape=Hodeiaren forma estandarra OptionPanel.standarddrawrectangleforselection=Aukeratutako adabegiak burbuiletan erakutsi OptionPanel.standarddrawrectangleforselection.tooltip=Aukeratutako nodoak marko batez inguratu. OptionPanel.standardlinkcolor=Esteken kolore estandarra OptionPanel.standardlinkcolor.tooltip=Esteka kolore estandarra html kodean OptionPanel.standardlinkestyle=Esteka estilo estandarra OptionPanel.standardlinkestyle.tooltip=Esteka estilo estandarra OptionPanel.standardselectednodecolor=Aukeratutako adabegi kolore estandarra OptionPanel.standardselectednodecolor.tooltip=Aukeratuz gero, nodoen kolore estandarra. HTML kodeak erabili (#RRGGBB balio hexadezimaletan) OptionPanel.standardselectednoderectanglecolor=Hautatutako nodoaren markoaren kolorea OptionPanel.standardselectednoderectanglecolor.tooltip=Aukeratutako nodoa markatzen duen burbuila kolorea. HTML notazioan (#RRGGBB balio hexadezimaletan) OptionPanel.STAR=Izarra OptionPanel.statesymbolwidth=Ezarri ikurren zabalera OptionPanel.structured_html_import=Inportatu HTMLa nodoaren egitura bezala OptionPanel.structured_icon_toolbar=Egituratutako ikonoen tresna-barra OptionPanel.summary=Laburpena OptionPanel.sv=Suediera / svenska OptionPanel.ta=Tamila OptionPanel.text.use_ctrl_key=Erabili 'Lastermarka esleitu' Tresnen menutik OptionPanel.textalignment=Testu lerrokatzea OptionPanel.time_for_automatic_save=Gordetze automatikoaren denbora OptionPanel.time_for_automatic_save.tooltip=Bi gordetze automatikoren arteko denbora (milisegundotan): Gordetze automatikoa ezerezteko 2000000000 zenbakia ipini. OptionPanel.time_for_delayed_selection=Atzerapenerakodenbora OptionPanel.time_for_delayed_selection.tooltip=Sagua nodoaren gainetik pasatzen aukeraketa denbora (milisegundotan) ezarri. Aukeraketa zuzen nahi izanez gero 1 balioa ezarri. OptionPanel.toolbar_icon_height=Tresna barraren ikonoaren altuera OptionPanel.toolTipManager.dismissDelay=Baztertu atzerapena, ms OptionPanel.toolTipManager.initialDelay=Hasierako atzerapena, ms OptionPanel.toolTipManager.max_tooltip_height=Nodoen argibideen gehienezko altuera OptionPanel.toolTipManager.max_tooltip_height.tooltip=Nodoen argibideen gehienezko altuera pixeletan. OptionPanel.toolTipManager.max_tooltip_width=Nodoen argibideen gehienezko zabalera OptionPanel.toolTipManager.max_tooltip_width.tooltip=Nodoen argibideen gehienezko zabalera pixeletan. OptionPanel.toolTipManager.reshowDelay=Berrerakutsi atzerapena, ms OptionPanel.tr=Turkiera / T\u00FCrk\u00E7e OptionPanel.uk_UA=Ukraniera / \u0423\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430 OptionPanel.undefined_font=Definitu gabeko letra mota OptionPanel.undo_levels=Desegin mailak OptionPanel.undo_levels.tooltip=Desegin aukera erabiliz (Undo), zenbat urrats ezezta daitezkeen ezartzen du. OptionPanel.unfold_on_navigation=Hedatu nodoa nabigazio gezien bidez OptionPanel.unfold_on_paste=Hedatu nodoa itsastean OptionPanel.unfold_on_paste.tooltip=Hedatu nodoa itsastean edo arrastatu eta jaregitean OptionPanel.uniform_shape=Uniformea OptionPanel.use_common_out_point_for_root_node=Ertzak erroa nodoaren puntu batetik hasten dira OptionPanel.use_common_out_point_for_root_node.tooltip=Ertzak erroa nodoaren puntu batetik hasten dira OptionPanel.use_svg_icons=Erabili SVG ikonoak OptionPanel.use_svg_icons.tooltip=Ikonoen errendatze kalitatea zehazten du, SVG ikonoek denbora gehiago behar dute. OptionPanel.use_tabbed_pane=Erabili fitxak OptionPanel.use_tabbed_pane.tooltip=Aukeratuz gero mapak fitxetan erakusten dira (Firefoxen bezala :-) ). OptionPanel.validate_classpath_needs_readaccess=Scripting-a: Classpath-a ezartzean fitxategi horietara irakurtzeko baimena eman behar duzu! OptionPanel.validate_invalid_date_format=Data formatu baliogabea OptionPanel.validate_invalid_datetime_format=Data-ordu formatu baliogabea OptionPanel.validate_invalid_number_format=Zenbaki formatu baliogabea OptionPanel.validate_write_without_read=Scripting-a: Kontutan izan aldatzeko irakurtzeko fitxategitik idazteko fitxategira. OptionPanel.validation_error=Egiaztatze akatsa(k):

{0}

Mesedez aldatu aukerak akatsa(k) zuzentzeko. OptionPanel.validation_warning=Egiaztatze oharra(k):

{0} OptionPanel.vertical_child_gap=Haurrekiko tartea OptionPanel.vertical_child_gap.tooltip=Haur nodoen arteko tarte bertikala OptionPanel.vi=Vietnamera / Ti\u1EBFng Vi\u1EC7t OptionPanel.wheel_velocity=Abiadura OptionPanel.wheel_velocity.tooltip=Balio altuagoak saguaren gurpilaren mugitze efektua azkartzen du. OptionPanel.wide_hexagon=Hexagono zabala OptionPanel.windows=Leihoak OptionPanel.zh_CN=Txinera, sinplifikatua / \u7B80\u4F53\u5B57 OptionPanel.zh_TW=Txinera, tradizionala / \u7E41\u9AD4\u5B57 org.freeplane.plugin.bugreport.agree=Bidali org.freeplane.plugin.bugreport.always_agree=Bidali beti org.freeplane.plugin.bugreport.always_deny=Ez bidali inoiz org.freeplane.plugin.bugreport.deny=Ez bidali org.freeplane.plugin.bugreport.dialog.title=Erroreen txosten bidaltze automatikoa org.freeplane.plugin.bugreport.freeplane_team=Freeplan taldearen mezua org.freeplane.plugin.bugreport.lastreport=Erroreen aztarna: org.freeplane.plugin.bugreport.never=Ez eskatu inoiz laguntzarik org.freeplane.plugin.bugreport.question=Freeplane-k erroreak automatikoki jarraitzeko modulua du. org.freeplane.plugin.bugreport.report=Uneko txostena org.freeplane.plugin.bugreport.wanted_bug=Barruko errore bat gertatu da.
Bidaltzen ahal duzu errore-txosten bat eta deskribatu zer egin duzun guk errorea erreproduzitzen laguntzeko? org.freeplane.plugin.script.NodeIdHighlighter.node_is_not_defined={0} nodoa ez dago definituta out_of_memory=Memoriak gainezka egin du. overwrite_keyset_question=Oraingo tekla multzoa gainidatzi? PageAction.text=Inprimatzeko ezarpenak\u2026 password_is_not_ascii=Pasahitza ez da ASCII PasteAction.text=Itsatsi PasteAttributes.text=Atributuak itsatsi PatternNewNameProperty=Txantiloi berria PatternToString.backgroundColor=Atzeko planoaren kolorea PatternToString.Child=Haur nodoaren estiloa PatternToString.color=Kolorea PatternToString.EdgeColor=Lerroaren kolorea PatternToString.EdgeStyle=Lerroaren estiloa PatternToString.EdgeWidth=Lerroaren zabalera PatternToString.FontBold=Lodia PatternToString.FontItalic=Etzana PatternToString.FontName=Letra motaren izena PatternToString.Icon=Ikonoa PatternToString.NodeFontSize=Letraren tamaina periodic_formula={0} * n + {1} PeriodUnit.DAY=egun PeriodUnit.HOUR=ordu PeriodUnit.MINUTE=minutu PeriodUnit.MONTH=hilabete PeriodUnit.WEEK=aste PeriodUnit.YEAR=urte plugins/latex/LatexNodeHook.editorTitle=Editatu LaTeX formula plugins/script_filter=Script iragazkia [0} plugins/script_filter_error={0}k emaitza boolearra eman behar du {1}ean baina {2} itzuli du plugins/script_filter_execute_error={1}-entzat {0} \nexekutatzeak errorea:\n{2} plugins/ScriptEditor.cancel=Al&daketak ahaztu eta irten plugins/ScriptEditor.exit=&Gorde eta irten plugins/ScriptEditor.FORBIDDEN_ACTION=Freeplane-en Groovy skript-ak mugatuta daude. Ondorengo {0,choice,0#File|1#Network|2#Exec} eragiketa debekatuta dago:\n{1,choice,0#Accept|1#Connect|2#Listen|3#Multicast|4#SetFactory|5#Exec|6#Link|7#Delete|8#Read|9#Write} {2}. Hau programaren konfigurazioan alda zenezake. plugins/ScriptEditor.menu_actions=Ekintz&ak plugins/ScriptEditor.new_script=Script berria plugins/ScriptEditor.run=Abia&razi plugins/ScriptEditor.sign=Sinatu script-a\u2026 plugins/ScriptEditor/window.Result=Emaitza: plugins/ScriptEditor/window.title=Editatu scripta plugins/ScriptingEngine.illegalAccessToInternalAPI=Barne APIra sarrera debekatua ({0} paketea). - APIa behar bezain ahaltsua ez baldin bada, Mesedez Freeplane taldearekin jarri kontaktuan. preferences=Hobespenak presentation=Aurkezpena presentation.combineAll=Bateratu aurkezpen guztiak print_preview_title=Inprimatzeko aurre-ikuspena PrintAction.text=Inprimatu mapa\u2026 PrintDirectAction.text=Inprimatu printing_settings=Inprimatzeko eskala PrintPreviewAction.text=Inprimatzeko aurrebista\u2026 program_terminates=Barne errorea, programa amaitzera doa. progress=Aurrerapen ikonoa (%) QuickFilterAction.text=Iragazki azkarra QuickFindAction.BACK.text=Aurrekoa aurkitu QuickFindAction.FORWARD.text=Bilatu hurrengoa QuickFindAllAction.text=Hautatu bat datozen nodo guztiak QuickHighlightAction.text=Naabarmendu bat datozen nodo guztiak QuitAction.text=Itxi Freeplane read_only=Irakurtzeko soilik ReadScriptError.text=Scripta irakurtzean errorea really_convert_to_current_version=Mapa hau Freeplane-ren aurreko bertsio batekin sortua izan da.
Oraingo formatura bihurtu (gomendatua)?
(Bestela bermerik gabe erabilia izango da.) really_cut_node=Benetan nodoa(k) moztu? really_execute_script=Benetan nahi al dituzu mapa honetako scriptak abiarazi? Zure ordenagailua kaltetu lezakete. really_remove_node=Benetan nodoa(k) ezabatu? really_remove_notes=Benetan oharra(k) ezabatu? ReapplyFilterAction.text=Filtroaren ekintza berrezarri red=Gorria RedefineStyleAction.text=Estiloa berdefinitiu RedoAction.text=Berregin RedoFilterAction.text=Filtroaren ekintza berregin regular_expressions=Espresio erregularrak reminder.appendButton=Aukeraketan data sartu reminder.Cancel=Utzi reminder.cancelButton=Utzi reminder.closeButton=Itxi reminder.Created=Sortua reminder.Details=Xehetasunak reminder.Export=Esportatu aukeratutako nodoak reminder.Find=Bilatu reminder.Goto=Joan reminder.hour=Ordua: reminder.Icons=Ikonoak reminder.Map=Mapa reminder.menu_actions=Ekintzak reminder.minute=Minutua: reminder.Modified=Aldatua reminder.Notes=Oharrak reminder.Reminder=Gogoratzeko reminder.reminderButton=Data honetan gogorarazi reminder.reminderButton.tooltip=Sakatuta dagoenean kronometroa ezarritako datara egokitzen da. Dirdirka dauden ikonoek orduan zure arreta deituko dute.
Mapa isten baldin baduzu, koronometroak mapa irekitzen den hurrengo aldian berriz aktibatuko dira. reminder.reminderNode.tooltip=Abisu programatua ondorengo datan dago ezarria: {0,date} {0,time}. reminder.reminderNode_onlyOneDate=Oraingoz nodoan abisu bakarra jarri liteke.
Oraingo oroigailua {0,date}{0,time}en dago jarria, zure aukera berriz {1,date}{1,time} izan da.

Orioitzailearen unea aldatu nahi al duzu (BAI)
ala nahiago duzu lehengoa gorde (EZ)? reminder.remindLaterButton=Gogorarazi geroago reminder.remindLaterButton.tooltip=Geroxeago gogorarazi reminder.Remove_All=Kendu abisu guztiak reminder.Remove_Selected=Kendu hautatutako abisuak reminder.removeReminderButton=Kendu abisua reminder.removeReminderButton.tooltip=Hautatutako nodoeii dagokien abisu guztiak ezabatu. reminder.Replace=Ordeztu reminder.Replace_All=Guztiak Ordeztu reminder.Replace_Selected=Aukeratuak ordeztu reminder.Run_All=Exekutatu script guztiak reminder.Run_Selected=Exekutatu hautatutako scriptak reminder.Select=Hautatu reminder.Text=Testua reminder.todayButton=Egutegia berrezarri reminder.WindowTitle=Kudeatu abisuak reminder.WindowTitle_All_Nodes=Bilatu eta ordeztu reminder.WindowTitle_pastReminders=Itsatsi abisuak reminder_script_error={0} errorea {1}maparen {2} nodoko abisu scriptean ReminderHookAction.text=Ezabatu abisua ReminderHookAction.tooltip=Nodo batetik abisua ezabatzen du. ReminderListAction.text=Kudeatu zereginak eta abisuak\u2026 ReminderListAction.tooltip=Plangintzan dauden denbora guztiak eta dagozkien nodoak erakusten ditu. reminderNotification=Abisu jakinarazpena remove_file_from_list_on_error=Ezin izan da {0} fitxategia ireki. Azkena irekitako fitxategien zerrendatik ezabatu? remove_shortcut_question=Lasterbidea ordeztu? RemoveAllAlwaysUnfoldedNodeFlagsAction.text=Berrezarri hedatutako nodoak RemoveAllAlwaysUnfoldedNodeFlagsAction.tooltip=Nodo guztien tolestea baimentzen du RemoveAllIconsAction.text=Ezabatu ikono guztiak RemoveConnectorAction.text=Ezabatu lotura RemoveEncryption.text=Ezabatu pasahitza RemoveFormatAction.text=Ezabatu formatua RemoveIcon_0_Action.text=Ezabatu lehenengo ikonoa RemoveIconAction.text=Ezabatu azken ikonoa RemoveNoteAction.text=Ezabatu oharra RemoveNoteAction.tooltip=Oharraren edukia ezabatzen du rename=Be&rrizendatu repair_link=Konpondu esteka repair_link_question=Ezin izan da estekatutako mapa kargatu. Esteka eskuz konpondu? replace=Ordeztu replace_shortcut_question=Laster tekla {0} ri esleitu zaio. Esleipena ordeztu? replace_shortcut_title=Lasterbidea ordeztu? ReportBugAction.text=Software errorea jakinarazi RequestFeatureAction.text=Eskatu eginbide bat reset_to_default=Lehenetsitakoa erabili ResetNodeLocationAction.text=Berrezarri nodoaren kokapena ResetStyleAction.text=Berrezarri nodoaren estiloa RevertAction.text=Bertako historiatik berreskuratu RevisionPluginAction.text=Berrikuspenen atzeko planoaren kolorea aldatu save=&Gorde save_failed={0} maparen gordetze ahaleginak huts egin du. save_unsaved=Ondoko buru-mapa gorde? save_unsaved_styles=Estiloak gorde? SaveAcceleratorPresetsAction.text=Gorde laster-teklen multzoa\u2026 SaveAction.text=&Gorde mapa SaveAction_readonlyMsg=Mapa hau irakurtzeko soilik da. "Fitxategia" \u2192 "Gorde honela...' erabili mapa hau gordetzeko. SaveAction_readonlyTitle=Irakurtzeko soilik den mapa baten gordetze saiakera SaveAll.text=Gorde mapa guztiak SaveAll.tooltip=Irekita dauden mapa guztiak gordetzen ditu SaveAs_toReadonlyMsg={0} irakurtzeko soilik da. Mesedez beste fitxategi batean gorde. SaveAs_toReadonlyTitle=Irakurtzeko soilik den mapa baten gordetze saiakera SaveAsAction.text=Gorde mapa honela\u2026 saved=Gordea saving_canceled=Gordetzea bertan behera scanners_not_loaded=Eskanerrak ezin izan dira kargatu, fitxategi hondatua scheme_evaluate=Ebaluatu! script_execution_disabled=Script-en abiaraztea ezeztatuta, ikus -> Tresnak/Hobespenak/Pluginak ScriptEditor.text=Editatu scripta\u2026 ScriptEditor.tooltip=Freeplane barruan script luzeagoak idaztea ahalbideratzen du. ScriptEditorPanel.changed_cancel=Script hauek aldatu egin dira. Egindako aldaketak bertan behera utzi nahi al dituzu? scripting=Scriptak scripting_api_generator_legend=Legenda scripting_api_generator_proxy=Proxya scripting_api_generator_title=Scriptingerako APIa scripting_api_generator_utilities=Erabilgarriak scripting_api_generator_web=Web baliabideak ScriptsRunToggleAction.ON_SELECTED_NODE.text=Exekutatu hautatutako nodoen scriptak ScriptsRunToggleAction.ON_SELECTED_NODE_RECURSIVELY.text=Exekutatu hautatutako nodoen scriptak, errekurtsiboki ScriptsRunToggleAction.ON_SINGLE_NODE.text=Exekutatu scriptak hautatutako nodo batean select_favorites_folder=Hautatu zure gogokoak gordetzeko karpeta select_file_export_to=Hautatu esportatu nahi duzun fitxategiaren izena select_folder_for_importing=Hautatu inportatzeko karpeta select_icon=Hautatu Ikonoa select_menu_item_dialog=Hautatu menuko elementu bat select_menu_item_root_node=Menua select_template=Hautatu txantiloia SelectAllAction.text=Hautatu nodo ikusgarri guztiak SelectBranchAction.text=Hautatu ikusgarri dagoen adarra SelectedPasteAction.text=Itsatsi honela\u2026 selection_method_by_click=Klik bakarra egin aukeratzeko selection_method_delayed=Hautapen automatikoa atzeratua selection_method_direct=Apuntatu hautatzeko SelectNoteAction.text=Oharra Editatu Aldatu SelectNoteAction.tooltip=Aldatu ohar paneletik erantzuteko set_accelerator_on_next_click_helpmessage=Laster-tekla berri bat sortzeko, aukeratu menuan nahi duzun komandoa. SetAccelerator.dialogTitle=Laster-teklen esleipena SetAccelerator.keystrokeDetected="{0}" tekla ez zaio menuko inongo elementuri esleitu. SetAcceleratorOnNextClickAction.text=Laster-tekla esleitu SetAlwaysUnfoldedNodeFlagsAction.text=Hedatutako adarrak mantendu SetAlwaysUnfoldedNodeFlagsAction.tooltip=Unean hedatutako nodoen tolestea eragozten du SetImageByFileChooserAction.text=Irudia aukeratuta edo estekatuta\u2026 SetLinkAnchorAction.text=Ezarri estekaren aingura SetLinkAnchorAction.tooltip=Aukeratutako adabegia etorkizunerako
tokiko esteken sorrerarako aingura izateko ezarri. SetLinkAnchorAction.tooltip_anchored=Aukeratutako nodoa etorkizunerako
esteka globalen sorrerarako aingura moduan ezarri. Oraingo aingura:
{0} SetLinkByFileChooserAction.text=Gehitu esteka (aukeratu)\u2026 SetLinkByTextFieldAction.text=Gehitu edo aldatu esteka (idatzi)\u2026 SetNodeAliasAction.text=Ezarri nodoaren ezizena SetNodeLink.text=Ezarri nodoaren esteka\u2026 SetNoteWindowPosition.bottom.text=Azpian SetNoteWindowPosition.left.text=Ezkerrean SetNoteWindowPosition.right.text=Eskuinean SetNoteWindowPosition.top.text=Goian SetShortenerStateAction.text=Minimizatu nodoa sf_login_required=Source Forge-n izen ematea beharrezkoa. Jarraitu? ShowAllAttributesAction.text=Erakutsi atributu guztiak ShowAncestorsAction.text=Erakutsi arbasoak ShowAttributeDialogAction.text=Atributuen kudeatzailea\u2026 ShowDescendantsAction.text=Erakutsi ondorengoak ShowFilterToolbarAction.text=Iragazkien tresna-barra ShowFirstSlideAction.text=Lehengo iragazkia ShowFirstSlideAndStartPresentationAction.text=Aurkezpena hasieratik abiarazi ShowFormatPanel.text=Tresnen panela ShowFormatPanel.tooltip=Nodo eta lerroaren atributuak batera aldatzea ahalbideratzen duen elkarrizketa-koadroa aurkezten du. ShowHideNoteAction.text=Erakutsi oharren panela ShowHideNoteAction.tooltip=Oharren panela azaldu eta ezkutatzen du. ShowLastSlideAction.text=Azken iragazkia ShowNextChildAction.text=Hurrengo haurra erakutsi ShowNextSlideAction.text=Hurrengo iragazkia ShowNotesInMapAction.text=Erakutsi oharrak mapan ShowPreferencesAction.dialog=Hobespenak ShowPreferencesAction.text=Hobespenak\u2026 ShowPreviousSlideAction.text=Aurreko diapositiba ShowSelectedAttributesAction.text=Erakutsi hautatutako atributuak ShowSelectionAsRectangleAction.text=Laukizuzen hautaketa simplyhtml.aboutFrameTitle=Aplikazio honi buruz simplyhtml.aboutLabel=SimplyHTML-ri buruz\u2026 simplyhtml.alignCenter=erdian simplyhtml.alignLabel=Lerrokapena: simplyhtml.alignLeft=ezkerrean simplyhtml.alignRight=eskuinean simplyhtml.allCellsRangeLabel=gelaxka guztiak simplyhtml.allOccurrencesReplaced=Agerraldi guztiak ordezkatu dira simplyhtml.appendTableColLabel=Zutabea gehitu simplyhtml.appendTableRowLabel=Gehitu lerroa simplyhtml.applyCellAttrLabel=Honi aplikatu simplyhtml.backgroundLabel=Atzeko planoa: simplyhtml.blackFontColorLabel=Beltza simplyhtml.blueFontColorLabel=Urdina simplyhtml.boldItalicName=lodi etzana simplyhtml.boldName=lodi simplyhtml.borderColorLabel=Kolorea: simplyhtml.borderWidthLabel=Zabalera simplyhtml.bottomLabel=Azpian: simplyhtml.cancelBtnName=Ezabatu simplyhtml.cellBorderTabLabel=Ertzak simplyhtml.cellGenTabLabel=Ororkorra simplyhtml.cellMarginTabLabel=Margena simplyhtml.cellPanelTitle=Gelaxkaren formatua simplyhtml.clearFormatLabel=Kendu formatua simplyhtml.clearFormatTip=Kentzen formatua simplyhtml.close=Itxi simplyhtml.closeBtnName=Itxi simplyhtml.colorLabel=Kolorea simplyhtml.copyLabel=Kopiatu simplyhtml.copyTip=Kopiatu simplyhtml.cTagNameHead1=1. Izenburua simplyhtml.cTagNameHead2=2. Izenburua simplyhtml.cTagNameHead3=3. Izenburua simplyhtml.cTagNameHead4=4. Izenburua simplyhtml.cTagNameHead5=5. Izenburua simplyhtml.cTagNameHead6=6. Izenburua simplyhtml.cTagNameLink=Esteka simplyhtml.cTagNameOL=Ordenatutako zerrenda simplyhtml.cTagNamePara=Paragrafoa simplyhtml.cTagNameUL=Ordenarik gabeko zerrenda simplyhtml.cutLabel=Ebaki simplyhtml.cutTip=Ebaki simplyhtml.decreaseFontSizeLabel=Txikiago simplyhtml.defaultDocName=Izenik gabe simplyhtml.deleteTableColLabel=Ezabatu zutabea simplyhtml.deleteTableRowLabel=Ezabatu lerroa simplyhtml.docTitleQuery=Izenburua ezarri: simplyhtml.docTitleTitle=Dokumentuaren izenburua editatu simplyhtml.editLabel=Editatu simplyhtml.effectLabel=Efektua simplyhtml.familyLabel=Familia simplyhtml.findNext=Bilatu hurrengoa\u2026 simplyhtml.findReplaceDialogTitle=Bilatu eta ordeztu simplyhtml.findReplaceLabel=Bilatu eta ordeztu simplyhtml.findReplaceTip=Bilatu eta ordeztu simplyhtml.fontBoldLabel=Lodia simplyhtml.fontBoldTip=Lodia bai/ez simplyhtml.fontColorLabel=Testuaren kolorea simplyhtml.fontColorTip=Testuaren kolorea simplyhtml.fontDialogTitle=Formaturako letra mota simplyhtml.fontItalicLabel=Etzana simplyhtml.fontItalicTip=Etzana bai/ez simplyhtml.fontLabel=Letra mota\u2026 simplyhtml.fontTabLabel=Letra mota simplyhtml.fontTip=Letra motaren formatua\u2026 simplyhtml.fontUnderlineLabel=Azpimarra simplyhtml.fontUnderlineTip=Azpimarra bai/ez simplyhtml.foregroundLabel=Aurreko planoa: simplyhtml.formatLabel=Formatua simplyhtml.formatListLabel=Zerrendatu\u2026 simplyhtml.formatListTip=aldatu zerrendaren formatua simplyhtml.formatParaLabel=Paragrafoa\u2026 simplyhtml.formatParaTip=Aldatu paragrafoaren formatua simplyhtml.formatTableLabel=Taula\u2026 simplyhtml.formatTableTip=Taulari formatua eman simplyhtml.greenFontColorLabel=Berdea simplyhtml.helpLabel=Laguntza simplyhtml.htmlTabTitle=HTML kode ikuskera simplyhtml.imageFileDesc=Irudi fitxategiak simplyhtml.increaseFontSizeLabel=Handiago simplyhtml.insertTableColLabel=Txertatu zutabea simplyhtml.insertTableLabel=Taula\u2026 simplyhtml.insertTableMsg=Zenbat zutabe? simplyhtml.insertTableRowLabel=Txertatu lerroa simplyhtml.insertTableTitle=Txertatu taula simplyhtml.italicName=Etzana simplyhtml.layoutTabTitle=Diseinu ikuspegia simplyhtml.leftLabel=Ezkerra: simplyhtml.listDialogTitle=Zerrendari formatua eman simplyhtml.listIndentTitle=Koskatzea: simplyhtml.listPosInside=barruan simplyhtml.listPositionLabel=Kokapena: simplyhtml.listPosOutside=kanpoan simplyhtml.listTypeCircle=borobildutako ohar puntua simplyhtml.listTypeDecimal=1.,2.,3.,4. simplyhtml.listTypeDisc=fitxategi ikurra buleta gisa simplyhtml.listTypeLabel=Mota: simplyhtml.listTypeLowerAlpha=a.,b.,c.,d. simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv. simplyhtml.listTypeNone=bat ere ez simplyhtml.listTypeSquare=buleta karratua simplyhtml.listTypeUpperAlpha=A.,B.,C.,D. simplyhtml.listTypeUpperRoman=I.,II.,III.,IV. simplyhtml.marginLabel=Kanpoko aldeko simplyhtml.matchApproximately=Gutxigorabehera parekatu simplyhtml.matchApproximately.tooltip=Gutxi gora beherako parekaketak baimendu
adib. 'iznea' bilatzerakoan 'izena' aurkitzen saiatuko da. simplyhtml.matchCase=Hizki neurria kontutan izan parekatzerakoan simplyhtml.matchCase.tooltip=Hizki neurria kontutan hartu ala ez parekatzerakoan. simplyhtml.newStyleDefaultName=Estillo berria simplyhtml.nextTableCellLabel=Hurrengo gelaxka simplyhtml.noLineLabel=bat ere ez simplyhtml.noMoreOccurrencesFound=ez da halako gehiagorik aurkitu simplyhtml.okBtnName=Ados simplyhtml.paddingLabel=Barruko aldea simplyhtml.paraAlignCenterLabel=Erdian lerrokatu simplyhtml.paraAlignCenterTip=Ezarri paragrafoa erdian lerrotzea simplyhtml.paraAlignLeftLabel=Ezkerretik lerrokatu simplyhtml.paraAlignLeftTip=Ezarri pragrafoa ezkerretik lerrokatzea simplyhtml.paraAlignRightLabel=Eskuinetik lerrokatu simplyhtml.paraAlignRightTip=Ezarri paragrafoa eskuinetik lerrokatzea simplyhtml.paraStyleDialogTitle=Paragrafoaren estiloa simplyhtml.paraTabLabel=Paragrafoa simplyhtml.pasteHTMLLabel=HTML itsatsi simplyhtml.pasteLabel=Itsatsi simplyhtml.pastePlainTextLabel=Testu lau eran itsatsi simplyhtml.pasteTip=itsatsi simplyhtml.plainName=laua simplyhtml.previewLabel=Aurre-ikusi simplyhtml.previewText=Testua aurre-ikusi simplyhtml.prevTableCellLabel=Aurreko gelaxka simplyhtml.printLabel=Inprimatu\u2026 simplyhtml.redFontColorLabel=Gorria simplyhtml.redoLabel=Berregin simplyhtml.redoTip=berregin simplyhtml.removeFontColorLabel=Ezabatu kolorea simplyhtml.replace=Ordeztu\u2026 simplyhtml.replaceAll=Guztiak simplyhtml.replaceDone=Egina simplyhtml.replaceNo=Ez simplyhtml.replaceThisQuery=ordeztu agerpen hau simplyhtml.replaceWith=Honekin ordeztu: simplyhtml.replaceYes=Bai simplyhtml.rightLabel=eskuina: simplyhtml.searchDown=Behera bilatu simplyhtml.searchDown.tooltip=Goitik behera bilatu. simplyhtml.searchFromStart=Hasieratik bilatu simplyhtml.searchFromStart.tooltip=Kurtsoretik hasi beharrean hasieratik hasi bilatzen. simplyhtml.searchUp=Gora bilatu simplyhtml.searchUp.tooltip=Behetik gora bilatu. simplyhtml.selectAllLabel=Hautatu dena simplyhtml.selectedFontColorLabel=Letra kolorea aukeratuta simplyhtml.sizeLabel=Neurria simplyhtml.standardStyleName=estandarra simplyhtml.strikeLabel=Marratua simplyhtml.styleLabel=Estiloa simplyhtml.styleNameInputText=Estilo berriaren izena? simplyhtml.styleNameInputTitle=Gorde estiloa simplyhtml.tableBgColLabel=Atzeko planoaren kolorea: simplyhtml.tableDialogTitle=Taula formatua simplyhtml.tableLabel=Taula simplyhtml.tablePanelTitle=Taula formatua simplyhtml.tableWidthLabel=Zabalera: simplyhtml.textIndentLabel=Koska: simplyhtml.textToFind=Bilatu beharreko testua: simplyhtml.thisCellRangeLabel=gelaxka hau simplyhtml.thisColRangeLabel=zutabe hau simplyhtml.thisRowRangeLabel=lerro hau simplyhtml.toggleBulletsLabel=Buletak bai/ez simplyhtml.toggleBulletsTip=Buletdun zerrenda bai/ez simplyhtml.toggleNumbersLabel=Zenbakitutako zerrenda bai/ez simplyhtml.toggleNumbersTip=zenbakitutako zerrenda bai/ez simplyhtml.topLabel=goian: simplyhtml.uLineLabel=Azpimarra simplyhtml.unableToOpenFileError=Ezin izan da fitxategia ireki simplyhtml.unableToRedoError=Ezin berregin: simplyhtml.unableToUndoError=Ezin desegin: simplyhtml.undoLabel=Desegin simplyhtml.undoTip=desegin simplyhtml.valignBaseline=oinarri lerroa simplyhtml.valignBottom=azpiko aldea simplyhtml.valignLabel=Lerrokapen bertikala: simplyhtml.valignMiddle=erdia simplyhtml.valignTop=goian simplyhtml.wholeWordsOnly=Hitz osoak soilik simplyhtml.wholeWordsOnly.tooltip=Parekaketa hitz osoetara mugatu. slide.add=Gehitu slide.add.tooltip=Gehitu unean hautatutako nodoak diapositibara slide.at_center.tooltip=erdian slide.content=Diapositibaren edukia slide.descendants=Erakutsi ondorengoak slide.edge=margenean slide.filter=Irakazkia slide.first=Lehenengoa slide.last=Azkena slide.next=Hurrengoa slide.nofilter=Iragazkirik ez slide.on_the_left.tooltip=ezkerraldean slide.on_the_right.tooltip=eskuinean slide.placenode=Kokatu hautatutako nodoa slide.placenode.tooltip=Diapositiba aurkeztean slide.present=Bertan slide.presentation=Aurkezpena slide.presentations=Aurkezpenak slide.previous=Aurrekoa slide.remove=Ezabatu slide.remove.tooltip=Kendu hautatutako nodoak diapositibatik slide.select=Hautatu slide.select.tooltip=Hautatu diapositibaren nodoak mapan slide.set=Ezarri slide.set.tooltip=Egin unean hautatutako nodoak diapositibaren edukia slide.setfilter=Ezarri iragazkia slide.setfilter.tooltip=Ezarri edo kendu aplikatu behar den iragazkiak diapositibak aurkeztean slide.setfoldingstate=Ezarri toleste egoera slide.setfoldingstate.tooltip=Leheneratu uneko tolestura egoera diapositiba aurkeztean slide.setzoom=Ezarri zooma slide.setzoom.tooltip=Ezarri edo kendu maparen zooma diapositibaren aurkezpenean slide.showancestors=Erakutsi arbasoak slide.showonlyselected=Erakutsi soilik hautatutako nodoak slide.showonlyselected.tooltip=Ezkutatzen ditu beste nodoak diapositiba aurkeztean slide.slides=Diapositibak slide.stop=Gelditu SortNodes.text=Ordenatu haurrak SortNodes.tooltip=Nodo baten ondorengoak alfabetikoki ordenatzen ditu. split=&Banandu SplitConditionAction.text=Banandu SplitNode.text=Banandu nodoa SplitNode.tooltip=Nodoa zatitzen da SplitToWordsAction.text=Lerroko {0} hitzekin banandu STANDARD_FORMAT=Estandarra StartPresentationAction.text=Aurkezpena abiarazi StartPresentationOrShowNextSlideAction.text=Aurkezpena abiarazi/Hurrengo gardenkia stop_processing=Gelditu StopPresentationAction.text=Gelditu aAurkezpena StrikeThroughAction.text=Marratua StringFlavorHandler=Testu laua nodoen hierarkia bezala StructuredHtmlFlavorHandler=HTML nodoen hierarkia bezala style=Estiloa style_already_exists=Estiloa dagoeneko existitzen da. styledialog.cancel.text=Utzi styledialog.ok.text=Ados styles=Est&iloak styles.AutomaticLayout=Aplikatu mailako estiloak styles.connection=Konexioak styles.date=Data styles.definition=Definizioa styles.description=Deskribapena styles.floating_node=Nodo mugikorra styles.idea=Ideia styles.important=Garrantzitsua styles.key=Tekla styles.list=Zerrenda styles.needs_action=Ekintza behar du styles.note=Oharra styles.ok=Ados styles.pending=Egiteko styles.predefined=Aurrez definitutako estiloak styles.question=Galdera styles.quotation=Aipua styles.root_node=Estiloak styles.subsubtopic=Azpiazpigaia styles.subtopic=Azpigaia styles.topic=Gaia styles.user-defined=Erabiltzaileak definitutako estiloak styles.website=Webgunea styles_background_html=\n \n \n \n \n \n \n \n \n \n
\n
\nEstilo multzo honi buruz\n
\n
\n
\nEstandar hau jakintza prozesua erraztu eta azkartzeko 11 urtez garatutako pedagogi ikerkuntza baten ondorioz egina da\nThis standard was developed after 11 years pedagogy research about how to make the process of knowledge easier and faster.\n
\n
\nBere xedea bereganatze, prozesamendu, domeinu ulertze, jakintza, informazioa eta ideiak bikaintzeko prozesua ahal bezain azkar eta errez egitea da.\n It aims to make the process of assimilating, processing, absorbing, understanding domain and mastering knowledge, information and ideas as fast and easy as possible.\n
\n
\nJonas Batistak (Brasil) garatua izan da.\n Hemen informazio gehiago aurki zenezake: www.jonasbatista.com.br/ \n
\n
\n
\n \n
\n Jonas Batista
\n
\n
\n \n styles_menu=Eskuragarri dauden estiloak submenu_keystroke_in_use_error={0} tekla zapaltzea ezin da {1} azpimenuan erabili. Tekla zapaltzea ezabatuta. summary_nodes=Laburpen nodoak summary_not_possible=Aukeraketa honentzat ezin da laburpen nodorik sortu svg=SVG template_dir=Txantiloi estandarrak TextAlignAction.CENTER.text=Testua erdiratuta TextAlignAction.DEFAULT.text=Lehenetsia TextAlignAction.LEFT.text=Testua ezkerrera lerrokatuta TextAlignAction.RIGHT.text=Testua eskuinera lerrokatuta textalignment=Testu lerrokatzea TextChangeHotKeyAction.text=Ezarri testua aldatzeko laster-tekla TimeManagementAction.text=Kudeatu denbora\u2026 TimeManagementAction.tooltip=Kay Toedter-en egutegi modulua azaltzen du TimePeriodUnits.days=egun TimePeriodUnits.hours=ordu TimePeriodUnits.minutes=minutu TimePeriodUnits.ms=milisegundo TimePeriodUnits.seconds=segundo TimePeriodUnits.weeks=aste ToggleChildrenFoldedAction.text=Haurrak hedatu/tolestu ToggleDetailsAction.text=Ezkutatu xehetasunak ToggleFBarAction.text=F-barra ToggleFoldedAction.text=(Des)tolestu ToggleFullScreenAction.text=Pantaila osoa ToggleLeftToolbarAction.text=Ikonoen tresna-barra ToggleMenubarAction.text=Menu barra ToggleScrollbarsAction.text=Korritze-barra ToggleStatusAction.text=Erakutsi egoera-barra ToggleToolbarAction.text=Tresna-barra TranslatedElement.BORDER=Ertzaren testua TranslatedElement.TEXT=Testua TranslatedElement.TOOLTIP=Argibidea TutorialAction.text=Tutoriala uiTextChanger.originalTextIsNotDefined=Jatorrizko testu ez da definitu uiTextChanger.replaceText=Interfazeko testua ordeztu undefined_error=Ezusteko errore bat gertatu da. Errorearen txosten bat egiten saiatu. underline=Azpimarra UnderlineAction.text=Azpimarra underlined=Azpimarratuta UndoAction.text=Desegin UndoFilterAction.text=Iragazki ekintza desegin unfold=Hedatu UnfoldAllAction.text=Hedatu guztia UnfoldAllAction.tooltip=Hautatutako nodoak eta haien ondorengoak hedatzen ditu. UnfoldOneLevelAction.text=Hedatu maila bat UnfoldOneLevelAction.tooltip=Hautatutako nodoak maila batean hedatzen ditu. unparsedLatexPatternFormat=Aztertu gabeko LaTeX up=&Gora UpConditionAction.text=Gora update_failed=Eguneratzeak huts egin du {0} mezuarekin UpdateCheckAction.text=Begiratu eguneratzeak dauden updatecheckdialog=Eguneratze elkarrizketa updater.component=Osagaia updater.goToDownload=Joan Deskargetara updater.version.installed=Instalatutako bertsioa updater.version.latest=Azken bertsioa updater.version.noUpdateUrl=Ez dago gehigarri honentzat eguneratze orririk edo URLrik. updater.version.unknown=ezezaguna updater.version.unreachable=Iturri irakurtezina: updater.viewChangelog=Ikusi aldaketaren erregistroa url_error=URL hau ez dago ongi taxututa! url_open_error=Ezin {0} URLa ireki. used_in_menu=Lasterbide hau ezin da ezarri, menuko laburdura baita. UsePlainTextAction.text=Testu laua erabili user_config_folder=Erabiltzailearen konfigurazioen karpeta: {0} user_defined_filters=Erabiltzaileak definitutako iragazkiak user_defined_scale=&Erabiltzaileak definitutako eskala user_defined_zoom=Erabiltzaileak definitua user_defined_zoom_status_bar=Zooma erabiltzaileak ezarritako %{0}ra aldatzen. user_icon=Erabiltzaile ikonoa "{0}" user_template_dir=Erabiltzailearen txantiloiak user_zoom=Inprimatzeko zoom faktorea (0.0 - 2.0): userScripts=Scriptak value_format=Balio formatua version_up_to_date=Dagoeneko azken bertsioa ari zara erabiltzen view=&Ikusi ViewLayoutTypeAction.OUTLINE.text=Kanpoko ikuspegia web_resources=Web baliabideak WebDocuAction.text=Web dokumentazioa WhatsNewAction.text=Zer berri Freeplane 1.5.x-en width=Zabalera wrong_regexp="{0}" espresio okerra, {1} akatsa xslt_export.html=Html dokumentua xslt_export.latex=Latex dokumentua xslt_export.latexbook=Latex liburua xslt_export.mediawiki=Mediawiki xslt_export.ms_excel=Microsoft Excel 2003 XML xslt_export.ms_project=Microsoft Project 2003 XML xslt_export.ms_word=Microsoft Word 2003 XML xslt_export.text=Testu laua xslt_export_not_possible=Freeplane XSLT esportazioa ezinezkoa yes=Bai zoom=Zooma ZoomInAction.text=Handiagotu ZoomOutAction.text=Txikiagotu freeplane-1.7.10/freeplane/src/editor/resources/translations/Resources_fr.properties0100644 0000000 0000000 00000372607 13552535625 027652 0ustar000000000 0000000 about_text=Freeplane - Logiciel libre de conception de cartes mentales AboutAction.text=\u00C0 propos... acceleratorPresets=Raccourcis pr\u00E9d\u00E9finis accelerators_loading_error=Impossible de charger les touches de fonction depuis {0} accessories/plugins/ApplyFormatPlugin.dialog.title=Editeur de mise en forme accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=Editeur de mise en forme accessories/plugins/EncryptNode.properties_0=Saisie du mot de passe accessories/plugins/EncryptNode.properties_1=Les mots de passe ne sont pas identiques ou sont trop courts. accessories/plugins/EncryptNode.properties_2=Entrez le mot de passe : accessories/plugins/EncryptNode.properties_3=Confirmez le mot de passe : accessories/plugins/EncryptNode.properties_4=Entrez votre mot de passe. accessories/plugins/EncryptNode.properties_5=Rappel : le niveau de protection repose sur la qualit\u00E9 de votre mot de passe. accessories/plugins/EncryptNode.properties_6=Valider accessories/plugins/EncryptNode.properties_7=Annuler accessories/plugins/EncryptNode.properties_insert_encrypted_node_first=Vous pouvez uniquement basculer le status de protection d'un n\u0153ud. Pour cr\u00E9er une carte prot\u00E9g\u00E9e utilisez le menu "Fichier". accessories/plugins/EncryptNode.properties_select_me=Continuer ! accessories/plugins/EncryptNode.properties_wrong_password=Le mot de passe est incorrect. accessories/plugins/Export_JavaWebStart.text=D\u00E9marrage de Java Web\u2026 accessories/plugins/Export_JavaWebStart.tooltip=Exporte la carte pour Java Web Start. accessories/plugins/ExportWithTWiki.text=TWiki\u2026 accessories/plugins/ExportWithTWiki.tooltip=Exporte la carte en document TWiki. accessories/plugins/ExportWithXSLT.tooltip=Il s'agit d'une m\u00E9thode d'exportation utilisant des scripts XSLT. accessories/plugins/ExportWithXSLT_Applet.text=Applet Java\u2026 accessories/plugins/ExportWithXSLT_Applet.tooltip=Exporte la carte en applet Java pour navigateur Web. accessories/plugins/ExportWithXSLT_HTML.text=XHTML (version JavaScript)\u2026 accessories/plugins/ExportWithXSLT_HTML3.text=XHTML (image cliquable)\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.text=Ressources depuis le n\u0153ud RESOURCES vers un fichier TaskJuggler\u2026 accessories/plugins/ExportWithXSLT_RESOURCESTJI.tooltip=Exporte les ressources depuis le n\u0153ud Ressources vers l'outil TaskJuggler. accessories/plugins/ExportWithXSLT_TASKSTJI.text=T\u00E2ches depuis le n\u0153ud TASKS vers un fichier TaskJuggler\u2026 accessories/plugins/ExportWithXSLT_TASKSTJI.tooltip=Exporte les t\u00E2ches depuis le n\u0153ud T\u00E2ches vers l'outil TaskJuggler action_keystroke_in_use_error=Le raccourci ''{0}'' demand\u00E9 pour l''action ''{1}'' est d\u00E9j\u00E0 associ\u00E9 \u00E0 l''action ''{2}''. active=Activer actual_map_styles=Styles conditionnels appliqu\u00E9s \u00E0 la carte actual_node_styles=Styles conditionnels appliqu\u00E9s au n\u0153ud add=Ajouter AddConnectorAction.text=Connecteur AddElementaryConditionAction.text=Ajouter AddExecutionLinkAction.text=Ajouter un lien ex\u00E9cutant une commande de l'OS\u2026 AddLocalLinkAction.text=Lien vers un n\u0153ud AddMenuItemLinkAction.text=Ajouter un lien vers une entr\u00E9e du menu\u2026 AddOnDetailsPanel.authored.by=Par {0} AddOnDetailsPanel.header.function=Description AddOnDetailsPanel.header.menu=Emplacement dans le menu AddOnDetailsPanel.header.shortcut=Raccourci AddOnDetailsPanel.homepage=Accueil : addons.installer.canceled=Installation annul\u00E9e addons.installer.confirm.licence=

Licence

{0}

Acceptez-vous les termes de cette licence ?

addons.installer.failed=L''installation a \u00E9chou\u00E9 en raison de l''erreur : {0}. addons.installer.freeplaneversion.format.error=Erreur de format pour {0} (valeur erronn\u00E9e : {1}) addons.installer.html.script=Le contenu d'un script ne peut pas \u00EAtre du HTML addons.installer.install=Installer addons.installer.invalid.keyboard.shortcut=Raccourci {0} invalide. addons.installer.licence.unchanged=Licence non modifi\u00E9e addons.installer.map.structure=Erreur de structure dans la carte : {0} addons.installer.missing.child.nodes=N\u0153ud fils manquant : {0} addons.installer.missing.permission.attribute=Script {0} : autorisation {1} manquante addons.installer.missing.properties=Propri\u00E9t\u00E9 manquante : {0} addons.installer.missing.translation=Traduction {0} manquante pour la langue {1} addons.installer.no.scripts=Script non trouv\u00E9 addons.installer.no.zipdata=Aucune donn\u00E9e compress\u00E9e retrouv\u00E9e addons.installer.nonstandard.permissions=Le script n\u00E9cessite les droits suivants qui sont actuellement d\u00E9sactiv\u00E9s : {0}.\nVoulez-vous activer ces droits ? addons.installer.one.child.expected=Le n\u0153ud {0} devrait poss\u00E9der un fils, il en poss\u00E8de {1}. addons.installer.script.name.suffix=Le script nomm\u00E9 {0} ne poss\u00E8de pas le suffixe "*.groovy" addons.installer.script.no.execution_mode=Le param\u00E8tre "execution_mode" est manquant pour {0} addons.installer.script.no.menulocation=Le param\u00E8tre "menuLocation" est manquant pour {0} addons.installer.script.no.menutitle=Le param\u00E8tre "menuTitleKey" est manquant pour {0} addons.installer.script.no.permissions=Aucune permission n''est d\u00E9fini pour {0} addons.installer.success=Installation termin\u00E9e.\nLe nouvel add-on sera disponible apr\u00E8s re-d\u00E9marrage. addons.installer.success.update=Mise \u00E0 jour de {0} en {1} effectu\u00E9e.\nPour que les modications prennent effet vous devriez re-d\u00E9marrer. addons.installer.title=Installation d'un add-on addons.installer.too.new=La version de Freeplane {0} est trop r\u00E9cente. Cet add-on fonctionne avec une version plus ancienne de Freeplane {1}. addons.installer.too.old=La version Freeplane {0} est trop ancienne. Cet add-on n\u00E9cessite une version {1} ou sup\u00E9rieure. addons.installer.unknown.deinstallation.rules=D\u00E9sinstallation impossible, {0} addons.installer.update=Mise \u00E0 jour de la version {0} addons.installer.warning=Attention : vous ne devez installer que des add-ons de sources v\u00E9rifi\u00E9es. Certains codes peuvent causer des dommages voire conduire \u00E0 la perte de vos donn\u00E9es. addons.site=https://www.freeplane.org/addons/ AddStyleAttributes.text=Ajouter des attributs par style AddStyleAttributes.tooltip=Ajouter des attributs bas\u00E9s sur le style du n\u0153ud AllMapsNodeListAction.text=Rechercher et remplacer dans toutes les cartes... always=Toujours AlwaysUnfoldedNodeAction.text=N\u0153ud toujours d\u00E9pli\u00E9 antialias_all=Tout lisser antialias_edges=Lisser les lignes antialias_none=Ne rien lisser apply=Appliquer ApplyAction.text=Appliquer ApplyFormatPlugin.text=Modifier la mise en forme\u2026 ApplyFormatPlugin.tooltip=Modifiez tous les param\u00E8tres de mise en forme des n\u0153uds s\u00E9lectionn\u00E9s ApplyNoFilteringAction.text=Effacer le filtre ApplySelectedViewConditionAction.text=Filtrer les n\u0153uds s\u00E9lectionn\u00E9s ApplyToVisibleAction.text=Cumuler les filtres as_parent=Comme le p\u00E8re AskForHelp.text=Obtenir de l'aide gr\u00E2ce au Forum AssignAttributesAction.text=Rechercher et remplacer des attributs\u2026 attribute_delete=Supprimer toutes les valeurs attribute_delete_value=Supprimer cette valeur attribute_font_size.tooltip=Taille de police d'attribut attribute_list_box_label_text=Valeurs existantes attribute_name=Nom attribute_name_or_value=Nom ou valeur de l'attribut attribute_replace=Remplacer par attribute_top=Tous les attributs connus de la carte courante attribute_value=Valeur attributes_AddAttributeAction.text=Ajouter un attribut dans une nouvelle fen\u00EAtre\u2026 attributes_adding_empty_attribute_error=Ne peut pas utiliser une chaine vide comme nom d'attribut attributes_all=Tous les attributs attributes_assign_dialog=Modifier les attributs attributes_attribute=Attributs attributes_close=Fermer attributes_deselect_all=Rien attributes_dialog_title=Gestionnaire d'attributs attributes_edit=Modifier attributes_edit.tooltip=Modifier la s\u00E9lection attributes_for_selected=N\u0153uds s\u00E9lectionn\u00E9s attributes_for_visible=Tous les n\u0153uds visibles attributes_import=Importer attributes_import.tooltip=Importer des attributs depuis les autres cartes charg\u00E9es attributes_no_import_candidates_found=Aucun nouvel attribut trouv\u00E9 attributes_popup_delete=Supprimer attributes_popup_down=Descendre attributes_popup_edit=Modifier attributes_popup_hide=Masquer attributes_popup_new=Nouvel attribut attributes_popup_optimal_width=Ajuster la largeur attributes_popup_up=Monter attributes_refresh=Actualiser attributes_RemoveAllAttributesAction.text=Supprimer tous les attributs attributes_RemoveFirstAttributeAction.text=Supprimer le premier attribut attributes_RemoveLastAttributeAction.text=Supprimer le dernier attribut attributes_restricted_attributes.tooltip=Restreindre la s\u00E9lection d'attributs attributes_restricted_values.tooltip=Restreindre la s\u00E9lection de valeurs pour les attributs courants attributes_restriction=S\u00E9lection r\u00E9duite attributes_select_all=Tout attributes_select_all.tooltip=Tout s\u00E9lectionner / d\u00E9s\u00E9lectionner attributes_show=Afficher attributes_skip_root=Ignorer le n\u0153ud racine attributes_visible=S\u00E9lectionner ce qui est visible attributes_visible.tooltip=S\u00E9lectionner ce qui est visible automatic_layout=Style automatique automatic_layout_disabled=D\u00E9sactiv\u00E9 automatically_save_message=Carte enregistr\u00E9e automatiquement (sous le nom {0})\u2026 AutomaticEdgeColor.FOR_BRANCHES=pour les branches AutomaticEdgeColor.FOR_COLUMN=pour colonne AutomaticEdgeColor.FOR_COLUMNS=pour les colonnes AutomaticEdgeColor.FOR_LEVELS=pour les niveaux AutomaticEdgeColor.ON_BRANCH_CREATION=lors de la cr\u00E9ation d'une branche AutomaticEdgeColorHookAction.text=Couleur de ligne automatique AutomaticLayout.ALL=Pour tous les niveaux AutomaticLayout.COLUMNS=pour les colonnes AutomaticLayout.HEADINGS=Sauf pour les derniers niveaux AutomaticLayout.level=Niveau {0} AutomaticLayout.level.root=Racine AutomaticLayoutAction.text=Styles automatiques par niveau AutomaticLayoutAction.tooltip=Applique \u00E0 toute la carte une mise en forme des n\u0153uds en fonction de leur niveau AutomaticLayoutControllerAction.ALL.text=Pour tous les niveaux AutomaticLayoutControllerAction.COLUMNS.text=pour les colonnes AutomaticLayoutControllerAction.HEADINGS.text=Sauf pour les derniers niveaux AutomaticLayoutControllerAction.null.text=D\u00E9sactiv\u00E9 BackAction.text=N\u0153ud pr\u00E9c\u00E9dent dans l'historique BackAction.tooltip=Aller au n\u0153ud pr\u00E9c\u00E9dent dans l'historique de navigation background=Fond bitmaps=Images black=Noir BlinkingNodeHookAction.text=N\u0153ud clignotant BlinkingNodeHookAction.tooltip=N\u0153ud clignotant. Note : cette mise en forme est prioritaire sur les autres mises en forme de couleur. blue=Bleu BoldAction.text=Gras boldify_branch=Branche en gras branch=Branche browse=Parcourir\u2026 calendar_attributes_panel=Calendrier et attributs calendar_panel=Calendrier can_not_clone_encrypted_node=Impossible de cloner des n\u0153uds crypt\u00E9s can_not_connect_to_info_server=Impossible de se connecter au serveur can_not_delete_predefined_style=Impossible de supprimer un style syst\u00E8me. can_not_delete_root_style=Impossible de supprimer le style du n\u0153ud racine can_not_delete_style_group=Impossible de supprimer ce type de style can_not_encrypt_cloned_node=Impossible de crypter des n\u0153uds clon\u00E9s can_not_save_key_set=Impossible d'enregistrer les touches de fonction cancel=Annuler CancelAction.text=Annuler cannot_add_parent_diff_parents=Pour utiliser cette fonction, tous les n\u0153uds doivent avoir le m\u00EAme p\u00E8re. cannot_add_parent_to_root=Le n\u0153ud racine ne peut \u00EAtre ajout\u00E9 comme n\u0153ud fils. cannot_delete_root=Le n\u0153ud racine ne peut \u00EAtre ni coup\u00E9, ni supprim\u00E9. cannot_join_nodes_with_children=Impossible de fusionner des n\u0153uds ayant des fils. cannot_move_into_child_node=Impossible de d\u00E9placer dans le fils cannot_move_to_child=Impossible de d\u00E9placer un n\u0153ud dans l'un de ses fils. CenterAction.text=Centrer ChangeConnectorArrowsAction.backward.text=Fl\u00E8che au d\u00E9part ChangeConnectorArrowsAction.both.text=Double fl\u00E8ches ChangeConnectorArrowsAction.forward.text=Fl\u00E8che \u00E0 l'arriv\u00E9e ChangeConnectorArrowsAction.none.text=Aucune fl\u00E8che ChangeConnectorArrowsAction.text=Modifier les fl\u00E8ches du connecteur ChangeConnectorShapeAction.CUBIC_CURVE.text=Courbe ChangeConnectorShapeAction.EDGE_LIKE.text=Comme le n\u0153ud d'arriv\u00E9e ChangeConnectorShapeAction.LINE.text=Droit ChangeConnectorShapeAction.LINEAR_PATH.text=Rectiligne ChangeNodeLevelLeftsAction.text=D\u00E9placer le n\u0153ud vers la gauche ChangeNodeLevelLeftsAction.tooltip=Le n\u0153ud est d\u00E9plac\u00E9 dans la hi\u00E9rarchie. A droite du n\u0153ud racine, le n\u0153ud monte dans la hi\u00E9rarchie; \u00E0 gauche du n\u0153ud racine, le n\u0153ud descend dans la hi\u00E9rarchie. A la racine, le n\u0153ud bascule \u00E0 gauche. ChangeNodeLevelRightsAction.text=D\u00E9placer le n\u0153ud vers la droite ChangeNodeLevelRightsAction.tooltip=Le n\u0153ud est d\u00E9plac\u00E9 dans la hi\u00E9rarchie. A droite du n\u0153ud racine, le n\u0153ud descend dans la hi\u00E9rarchie; \u00E0 gauche du n\u0153ud racine, le n\u0153ud monte dans la hi\u00E9rarchie. A la racine, le n\u0153ud bascule \u00E0 droite. choose_cloud_color=Couleur du nuage choose_edge_color=Couleur de la ligne choose_map_background_color=Couleur de fond de la carte choose_node_background_color=Couleur de fond du n\u0153ud choose_node_color=Couleur du texte pour le n\u0153ud ClearLinkAnchorAction.text=Ne plus m\u00E9moriser le n\u0153ud ClearLinkAnchorAction.tooltip=Efface la m\u00E9morisation du n\u0153ud CloneAction.text=Coller comme Clone close_btn=Fermer CloseAction.text=Fermer la carte CloseAllMapsAction.text=Fermer toutes les cartes CloseAllOtherMapsAction.text=Fermer toutes les autres cartes cloud_shapes=Formes de nuage CloudAction.text=Ajouter un nuage CloudColorAction.text=Ajouter un nuage ou modifier sa couleur\u2026 CloudShapeAction.ARC.text=Arc CloudShapeAction.RECT.text=Rectangle CloudShapeAction.ROUND_RECT.text=Rectangle arrondi CloudShapeAction.STAR.text=Etoile collection.copy.presentation=Copier la pr\u00E9sentation collection.copy.slide=Copier la diapositive collection.delete=Supprimer collection.down=Descendre collection.move=D\u00E9placer collection.moveTo=D\u00E9placer vers collection.new.presentation=Nouvelle pr\u00E9sentation collection.new.slide=Nouvelle diapositive collection.up=Monter ColorProperty.ResetColor=Mise \u00E0 z\u00E9ro des couleurs combined=Mixte condition=Condition confirmation=Confirmation connector=Connecteur connector_arrows=Extr\u00E9mit\u00E9s du connecteur connector_label=Libell\u00E9 du connecteur connector_lines=Trait du connecteur connector_shapes=Forme du connecteur ConnectorColorAction.text=Couleur du connecteur\u2026 controls=Contr\u00F4les ConvertCloneToIndependentNodeAction.text=Ne plus cloner copy_name={0} (copie) CopyAction.text=Copier CopyAction.tooltip=Copie la branche s\u00E9lectionn\u00E9e CopyAttributes.text=Copier les attributs CopyIDAction.text=Copier l'identifiant du n\u0153ud CopyMapStylesAction.text=Copier le style de carte depuis\u2026 CopyNodeURIAction.text=Copier l'identifiant du n\u0153ud et chemin de la carte copyright=Copyright \u00A9 2000-2019 \u00E9quipe Freeplane et autres contributeurs CopySingleAction.text=Copier le n\u0153ud seul (sans fils) CopySingleAction.tooltip=Copie uniquement le n\u0153ud s\u00E9lectionn\u00E9 CopyStyleExtensionsAction.text=Appliquer les d\u00E9tails et attributs du style CopySuggestedReferenceAction.text=Copier la r\u00E9f\u00E9rence du n\u0153ud corrupt_map=Le contenu de la carte est corrompu CreateConjunctConditionAction.text=Et CreateDisjunctConditionAction.text=Ou CreateNotSatisfiedConditionAction.text=Non current_dir=Cartes CutAction.text=Couper decrease_branch_font_size=R\u00E9duire la taille du texte de la branche DecreaseNodeFontAction.text=R\u00E9duire la taille du texte default=Par d\u00E9faut defaultAuxiliaryWordList=un, une, des, le, la, les ... DefaultColorAction.text=Couleur par d\u00E9faut defaultstyle.attributes=Attributs defaultstyle.details=D\u00E9tails defaultstyle.floating=N\u0153ud libre defaultstyle.note=Note delete=Supprimer delete_child=Supprimer le n\u0153ud DeleteAction.text=Supprimer le n\u0153ud DeleteConditionAction.text=Supprimer DeleteDetailsAction.text=Supprimer les d\u00E9tails DeleteLevelStyleAction.text=Supprimer le dernier style automatique de niveau DeleteStyleAction.text=Supprimer le style DeleteUserStyleAction.text=Supprimer le style utilisateur dialect_info.app=Le fichier {0} a \u00E9t\u00E9 cr\u00E9\u00E9e avec le logiciel {1}. dialect_info.later_version=La carte {0} a \u00E9t\u00E9 cr\u00E9\u00E9e avec une version plus r\u00E9cente du programme. dialect_info.unknownApp=Le format du fichier "{0}" n''est pas connu de Freeplane. dialect_info.unknownURL=Aucune aide n'est disponible sur Internet. dialect_info.url=Pour plus d''information, visitez le site web {0}. dialect_info.warning=Freeplane ne parvient pas \u00E0 ouvrir, afficher ou enregistrer la carte. DirectHtmlFlavorHandler=Coller en HTML comme un seul n\u0153ud DocumentationAction.text=Documentation down=Descendre DownConditionAction.text=Descendre download=T\u00E9l\u00E9charger dropped_file_error=Impossible d''ouvrir le fichier. Motif : {0}. edge=Ligne edge_is_formatted_by_style=Le format des lignes des n\u0153uds est d\u00E9finit gr\u00E2ce aux styles. Si besoin, modifiez les styles. edge_style=Style de ligne edge_width=\u00C9paisseur de ligne edge_widths=Largeur de ligne EdgeColorAction.text=Couleur de ligne\u2026 EdgeProperties=Propri\u00E9t\u00E9s de la ligne EdgeStyleAction.bezier.text=Courbe EdgeStyleAction.bezier.tooltip=Le style de ligne est une courbe EdgeStyleAction.hide_edge.text=Invisible EdgeStyleAction.hide_edge.tooltip=La ligne est invisible (n\u0153ud flottant) sauf si
le n\u0153ud est s\u00E9lectionn\u00E9 : la ligne est alors une courbe pointill\u00E9e EdgeStyleAction.horizontal.text=Rectiligne EdgeStyleAction.horizontal.tooltip=Le style de ligne est une ligne bris\u00E9e EdgeStyleAction.linear.text=Droit EdgeStyleAction.linear.tooltip=Le style de ligne est une droite EdgeStyleAction.sharp_bezier.text=Courbe effil\u00E9 EdgeStyleAction.sharp_bezier.tooltip=Le style de ligne est une courbe s'affinant \u00E0 son extr\u00E9mit\u00E9 EdgeStyleAction.sharp_linear.text=Droit effil\u00E9 EdgeStyleAction.sharp_linear.tooltip=Le style de ligne est une droite s'affinant \u00E0 son extr\u00E9mit\u00E9 EdgeStyleAsParentAction.text=Comme le p\u00E8re EdgeStyleAsParentAction.tooltip=Le style de ligne est h\u00E9rit\u00E9 du n\u0153ud p\u00E8re EdgeWidthAction_width_parent.text=Comme le p\u00E8re EdgeWidthAction_width_thin.text=Fine edit=\u00C9&dition edit.decision=\u00C9diteur HTML edit.edit_rich_text=Souhaitez-vous cr\u00E9er le n\u0153ud en texte riche ? edit_details=D\u00E9tails edit_end_label=Connecteur
libell\u00E9 edit_label_font_family=Police edit_label_font_size=Taille du texte edit_link_manually=Modifier le lien\u2026 edit_long_node=Editeur texte riche edit_middle_label=Libell\u00E9 du connecteur edit_note=\u00C9diteur de notes edit_source_label=Libell\u00E9 au d\u00E9part edit_target_label=Libell\u00E9 \u00E0 l'arriv\u00E9e edit_transparency_label=Transparence edit_width_label=\u00C9paisseur EditAction.text=Modifier le n\u0153ud EditAttributesAction.text=Modifier les attributs EditDetailsAction.text=Modifier les d\u00E9tails EditDetailsInDialogAction.text=Modifier les d\u00E9tails dans une nouvelle fen\u00EAtre... editEdgeColors=Modifier la couleur de ligne EditFilterAction.text=G\u00E9rer les filtres... EditLongAction.text=Modifier le n\u0153ud en texte riche... EditNoteInDialogAction.text=Modifier les notes... EditScript=Modifier le script\u2026 EditStylesAction.text=G\u00E9rer les styles... EncryptedMap.text=Nouvelle carte prot\u00E9g\u00E9e\u2026 EncryptedMap.tooltip=Cr\u00E9er une nouvelle carte prot\u00E9g\u00E9e par mot de passe encryption=Encryptage enter_base_url=Je vais coller les liens associ\u00E9s. Merci de saisir l'URL de base. enter_command=Entrez la commande enter_condition_name=Nom du filtre : enter_confirms=La touche "Entr\u00E9e" valide la saisie enter_keyset_name=Nom de l'enregistrement pour les touches de fonction : enter_map_url=Adresse de la carte : enter_new_style_name=Nom du nouveau style : enter_node_id_or_reference=Saisissez l'ID ou la r\u00E9f\u00E9rence du n\u0153ud enter_zoom=Entrez le niveau de zoom EnterPassword.text=Prot\u00E9ger / d\u00E9prot\u00E9ger la branche error=Erreur error_applying_template=Erreur d'application du mod\u00E8le XSL. error_creating_directory=Impossible de cr\u00E9er un dossier pour l'exportation. error_in_template=Erreurs dans le mod\u00E8le par d\u00E9faut {0}. Essayez de supprimer ce fichier. errornumber={0} erreur(s) ExecuteScript.available_modes.tooltip={0} \u00EAtre disponible pour ExecuteScript.script=Script ExecuteScriptError.text=Erreur \u00E0 l''ex\u00E9cution du script :\n{0} ExecuteScriptForAllNodes.text=Ex\u00E9cuter tous les scripts ExecuteScriptForSelectionAction.text=Ex\u00E9cuter les scripts des n\u0153uds s\u00E9lectionn\u00E9s ExecuteScriptOnSelectedNode.text=Ex\u00E9cuter {0} sur tous les n\u0153uds s\u00E9lectionn\u00E9s ExecuteScriptOnSelectedNodeRecursively.text=Ex\u00E9cuter {0} r\u00E9cursivement sur tous les n\u0153uds s\u00E9lectionn\u00E9s ExecuteScriptOnSingleNode.text=Ex\u00E9cuter {0} sur le n\u0153ud s\u00E9lectionn\u00E9 ExecuteScripts.noScriptsAvailable=Aucun script ExecuteScripts.text=Scripts ExecuteScriptSecurityError.text=Une erreur s''est produite pendant l''ex\u00E9cution du script : {0} export_failed=L'export a \u00E9chou\u00E9 export_pdf_text=Fichier PDF (PDF) export_svg_text=Fichier image SVG (SVG) ExportAction.text=Exporter la carte\u2026 ExportAllPresentationsAction.text=Exporter toutes les pr\u00E9sentations en images PNG ExportBranchAction.text=Exporter la branche comme nouvelle carte\u2026 ExportBranchesAction.text=Exporter les branches\u2026 ExportBranchToHTMLAction.text=Branche en HTML texte exported_file={0} fichier ExportPdf.text=En PDF... ExportPresentationAction.text=Exporter la pr\u00E9sentation courante en images PNG ExportSvg.text=En SVG... ExportToHTMLAction.text=HTML texte ExportToImage.jpg.text=En JPEG... ExportToImage.png.text=En PNG... ExportToOoWriter.text=Document Open Office Writer\u2026 extension_menu=Styles ExternalImage_popupMenu_Change=Remplacer\u2026 ExternalImage_popupMenu_Open=Ouvrir... ExternalImage_popupMenu_Remove=Supprimer ExternalImage_popupMenu_ResetZoom=Restaurer la taille initiale ExternalImageAddAction.text=Ajouter une image\u2026 ExternalImageChangeAction.text=Modifier l'image\u2026 ExternalImageRemoveAction.text=Supprimer l'image ExtractLinkFromTextAction.text=Cr\u00E9er un lien hypertexte \u00E0 partir du n\u0153ud ExtractLinkFromTextAction.tooltip=Cr\u00E9er un lien hypertexte \u00E0 partir du texte pr\u00E9sent dans le n\u0153ud extras=&Outils f_button_unassigned= FaqOpenURLAction.text=Foire aux questions (FAQ) file=&Fichier file_already_exists=Le fichier {0} existe d\u00E9j\u00E0. Souhaitez-vous le remplacer ? file_not_accessible=Le fichier {0} n''est pas accessible file_not_found=Le fichier {0} n''a pas \u00E9t\u00E9 trouv\u00E9 FileListFlavorHandler=Liens vers des fichiers FileProperties_BranchLeafCount=Nombre de n\u0153uds de dernier niveau dans les branches s\u00E9lectionn\u00E9es : FileProperties_BranchNodeCount=Nombre de n\u0153uds dans les branches s\u00E9lectionn\u00E9es : FileProperties_ChangesSinceLastSave=Nombre de modifications depuis le dernier enregistrement : FileProperties_FileName=Nom et emplacement du fichier : FileProperties_FileSaved=Dernier enregistrement : FileProperties_FileSize=Taille du fichier : FileProperties_MainBranchCount=Nombre de branches partant du n\u0153ud racine : FileProperties_NeverSaved=Carte non enregistr\u00E9e FileProperties_NodeChildCount=Nombre de n\u0153uds fils des n\u0153uds s\u00E9lectionn\u00E9s : FileProperties_NodeSelectionCount=Nombre de n\u0153uds s\u00E9lectionn\u00E9s : FileProperties_TotalFilteredCount=Nombre de n\u0153uds r\u00E9pondant au filtre : FileProperties_TotalLeafCount=Nombre de n\u0153uds de dernier niveau : FileProperties_TotalNodeCount=Nombre total de n\u0153uds : FilePropertiesAction.text=Propri\u00E9t\u00E9s de la carte\u2026 FileRevisionsDialog.cancel=Annuler FileRevisionsDialog.file_last_modified=Horodatage FileRevisionsDialog.file_name=Fichier FileRevisionsDialog.file_size=Bytes FileRevisionsDialog.open=Ouvrir FileRevisionsDialog.open.tooltip=Ouvrir le fichier m\u00EAme s'il est obsol\u00E8te FileRevisionsDialog.question=Modifications trouv\u00E9es pour {0} FileRevisionsDialog.restore=R\u00E9tablir FileRevisionsDialog.restore.tooltip=Remplacer {0} par {1} FileRevisionsDialog.title=R\u00E9visions du fichier filter=F&iltres filter_add=Ajouter filter_alias=Alias filter_and=Et filter_any_text=Toutes les zones de texte filter_clone_snapshot=S\u00E9lection clon\u00E9e filter_clones=Clones de la s\u00E9lection filter_conditions=Filtres filter_contains=contient filter_created_after=cr\u00E9\u00E9 apr\u00E8s filter_created_before=cr\u00E9\u00E9 avant filter_delete=Supprimer filter_deny=Refuser filter_deny.tooltip=Inverser la condition du filtre filter_details=D\u00E9tails filter_dialog=Editeur de filtre filter_does_not_exist=Inexistant filter_edit_description=Modifier la liste des filtres filter_enter_value=Entrez une valeur filter_even_level=N\u0153ud de niveau impair filter_exist=existe filter_global=N\u0153ud accessible globalement filter_icon=Ic\u00F4ne filter_is_equal_to=est \u00E9gal \u00E0 filter_is_not_equal_to=est diff\u00E9rent de filter_leaf=N\u0153uds de dernier niveau filter_link=Lien filter_match_approximately=Accepter les variantes filter_match_approximately.tooltip=Rechercher les variantes des mots,
par exemple : rechercher 'ifchier' trouvera 'fichier'. filter_match_case=Respecter la casse filter_match_case.tooltip=Respecter la casse (majuscules, minuscules). filter_modified_after=modifi\u00E9 apr\u00E8s filter_modified_before=modifi\u00E9 avant filter_no_filtering=Aucun filtre filter_node=Texte du n\u0153ud filter_node_level=Niveau de n\u0153ud filter_not=Non filter_note=Note filter_odd_level=N\u0153ud de niveau pair filter_or=Ou filter_parent=Texte du p\u00E8re filter_periodic_level=Formule de niveau filter_priority=Priorit\u00E9 filter_regexp_matches=Expression r\u00E9guli\u00E8re filter_reminder=Rappel filter_reminder_after=apr\u00E8s le filter_reminder_before=avant le filter_reminder_executed=pass\u00E9e filter_reminder_later=\u00E0 venir filter_root=N\u0153ud racine filter_script=Script filter_select=S\u00E9lectionner filter_selected_node_view=N\u0153uds s\u00E9lectionn\u00E9s filter_selected_node_view_snapshot=N\u0153uds de la s\u00E9lection filter_starts_with=Commence par filter_style=Style filter_time=Date FilterCondition=Conditions de filtrage filterConditions=Filtres personnalis\u00E9s filterConditions.noActions=Aucun filtre nomm\u00E9 filters_not_loaded=Les filtres n'ont pas pu \u00EAtre charg\u00E9s, le fichier est corrompu find=Rechercher find_what=Que rechercher ? FindAction.text=Rechercher\u2026 FindNextAction.text=R\u00E9sultat suivant FindPreviousAction.text=R\u00E9sultat pr\u00E9c\u00E9dent fit_background_to_page=Ajuster l'image d'arri\u00E8re-plan fit_map_to_page=Ajuster \u00E0 une seule page fit_map_to_page_height=Ajuster la hauteur \u00E0 une page fit_map_to_page_width=Ajuster la largeur \u00E0 une page FitToPage.text=Ajuster \u00E0 la page FitToPage.tooltip=Ajuste le zoom pour que la carte tienne sur la page fold=Plier FoldAllAction.text=Tout plier FoldAllAction.tooltip=Plie les n\u0153uds s\u00E9lectionn\u00E9s ainsi que leurs fils FoldOneLevelAction.text=Plier un niveau FoldOneLevelAction.tooltip=Plie un niveau des n\u0153uds s\u00E9lectionn\u00E9s follow_clone=dans ''{0}'' follow_graphical_link=Aller \u00E0 ''{0}'' FollowLinkAction.text=Suivre le lien font=Police FontFamilyAction.text=Famille de police FontSizeAction.text=Taille de police format=&Mise en forme format_invalid_pattern=Le format d\u00E9finit n'est pas valide. format_menu_cloud_shapes=Type de nuage format_menu_edge_styles=Style de ligne format_menu_edge_widths=\u00C9paisseur de ligne format_panel=Mise en forme FormatCopy.text=Copier la mise en forme FormatCopy.tooltip=Copie la mise en forme du n\u0153ud FormatPaste.text=Coller la mise en forme FormatPaste.tooltip=Colle la mise en forme m\u00E9moris\u00E9e formats_not_loaded=Impossible de charger les mises en forme. formula.ClearDependenciesAction.text=Effacer les d\u00E9pendances formula.error.attributeValueIsNull=L''attribut ''{0}'' est nul. formula.error.circularReference=R\u00E9f\u00E9rence circulaire : la formule du n\u0153ud {0} ''{1}'' se r\u00E9f\u00E9rence elle-m\u00EAme. formula.EvaluateAllAction.text=Evaluer tout formula.EvaluateAllAction.tooltip=Evaluer toutes les formules de la carte courante formula.menuname=Formules formula.TraceDependentsAction.text=Suivre les d\u00E9pendances formula.TracePrecedentsAction.text=Suivre les ant\u00E9c\u00E9dents formula_editor=Modifier formule ForwardAction.text=N\u0153ud suivant dans l'historique ForwardAction.tooltip=Aller au n\u0153ud suivant dans l'historique de navigation FreeNodeAction.text=N\u0153ud libre Freeplane.progress.buildScreen=Cr\u00E9ation de l'\u00E9cran\u2026 Freeplane.progress.createController=Cr\u00E9ation du contr\u00F4leur\u2026 Freeplane.progress.createInitialMode=Cr\u00E9ation du mode initial\u2026 Freeplane.progress.endStartup=Termine le d\u00E9marrage. Freeplane.progress.gettingPreferenceDirectories=R\u00E9cup\u00E9ration des dossiers de pr\u00E9f\u00E9rence\u2026 Freeplane.progress.gettingPreferences=R\u00E9cup\u00E9ration des pr\u00E9f\u00E9rences\u2026 Freeplane.progress.loadMaps=Chargement des cartes\u2026 Freeplane.progress.propagateLookAndFeel=Chargement de l'apparence\u2026 Freeplane.progress.settingPreferences=Mise en place des pr\u00E9f\u00E9rences\u2026 Freeplane.progress.startCreateController=D\u00E9marrage de la cr\u00E9ation du contr\u00F4leur\u2026 Freeplane.progress.updateLookAndFeel=Mise \u00E0 jour de l'apparence\u2026 freeplane_reverted=Freeplane_r\u00E9cup\u00E9r\u00E9_ FreeplaneHandbook.text=Guide d'utilisation Freeplane FreeplaneHelpStarter.text=Aide\u2026 FreeplaneHelpStarter.tooltip=Aide \u00E9tendue de Freeplane globally_accessible=Accessible globalement goto=Aller \u00E0 goto.noActions=Aucun n\u0153ud cible GotoLinkNodeAction.text=Aller au lien GotoNodeAction.text=Aller au n\u0153ud\u2026 GrabKeyDialog.common.cancel=Annuler GrabKeyDialog.common.ok=Valider GrabKeyDialog.grab-key.assigned-to=Assign\u00E9e \u00E0 GrabKeyDialog.grab-key.assigned-to.none=Non assign\u00E9 GrabKeyDialog.grab-key.clear=Effacer GrabKeyDialog.grab-key.remove=Retirer GrabKeyDialog.grab-key.remove-ask=Voulez-vous vraiment effacer ce raccourci clavier ? GrabKeyDialog.grab-key.title=Combinaison de touches pour ce raccourci green=Vert help=Aide HideableAction.tooltip=Modifie l'arri\u00E8re-plan de chaque n\u0153ud modifi\u00E9 HideAllAttributesAction.text=Masquer tous les attributs HierarchicalIcons2Action.text=Afficher les ic\u00F4nes communs dans le p\u00E8re HierarchicalIconsAction.text=Afficher les ic\u00F4nes dans les p\u00E8res HierarchicalIconsAction.tooltip=Affiche dans un p\u00E8re l'ensemble des ic\u00F4nes pr\u00E9sents dans ses n\u0153uds fils hot_keys=Raccourcis hot_keys_table=Liste des raccourcis clavier HotKeyInfoAction.text=Liste des raccourcis clavier... html_export_based_on_headings=Export HTML - Bas\u00E9 sur les titres html_export_fold_all=Export HTML - Tout pli\u00E9 html_export_fold_currently_folded=Export HTML - Respecte les pliages actuels html_export_no_folding=Export HTML - Tout d\u00E9pli\u00E9 html_problem=ne peut pas g\u00E9n\u00E9rer de fichier html

{0} icon_0%=0% icon_100%=100% icon_25%=25% icon_50%=50% icon_75%=75% icon_addition=Addition icon_attach=Pi\u00E8ce jointe icon_audio=Son icon_back=A gauche icon_bee=FreePlane icon_bell=Se souvenir icon_bookmark=Excellent icon_broken-line=Cass\u00E9 icon_button_cancel=Faux icon_button_ok=Vrai icon_calendar=Date icon_checked=Coch\u00E9 icon_clanbomber=Danger icon_clock=Heure icon_clock2=Rappel icon_closed=Interdit icon_decrypted=D\u00E9verrouill\u00E9 icon_desktop_new=Bureau icon_division=Division icon_down=En bas icon_edit=Document icon_encrypted=Verrouill\u00E9 icon_executable=Programme icon_family=Famille icon_fema=Couple icon_female1=Femme1 icon_female2=Femme2 icon_females=Femmes icon_flag=Drapeau rouge icon_flag-black=Drapeau noir icon_flag-blue=Drapeau bleu icon_flag-green=Drapeau vert icon_flag-orange=Drapeau orange icon_flag-pink=Drapeau violet icon_flag-yellow=Drapeau jaune icon_folder=Dossier icon_forward=A droite icon_freemind_butterfly=FreeMind icon_full-0=Priorit\u00E9 0 icon_full-1=Priorit\u00E9 1 icon_full-2=Priorit\u00E9 2 icon_full-3=Priorit\u00E9 3 icon_full-4=Priorit\u00E9 4 icon_full-5=Priorit\u00E9 5 icon_full-6=Priorit\u00E9 6 icon_full-7=Priorit\u00E9 7 icon_full-8=Priorit\u00E9 8 icon_full-9=Priorit\u00E9 9 icon_go=Feu vert icon_gohome=Accueil icon_group=Groupe icon_help=Question icon_hourglass=En cours icon_icon_not_found=Ic\u00F4ne non trouv\u00E9e icon_idea=Id\u00E9e icon_image=Image icon_info=Information icon_internet=Internet icon_internet_warning=Internet dangereux icon_kaddressbook=T\u00E9l\u00E9phone icon_kmail=Courriel icon_knotify=Musique icon_korn=Bo\u00EEte \u00E0 lettres icon_ksmiletris=Je suis content icon_launch=Lancer icon_licq=Fleur icon_list=Liste icon_Mail=Message icon_male1=Homme1 icon_male2=Homme2 icon_males=Hommes icon_menu=Ic\u00F4ne icon_messagebox_warning=Attention icon_mindmap=Carte mentale icon_multiplication=Multiplication icon_narrative=R\u00E9cit icon_negative=Mauvais icon_neutral=Moyen icon_password=Clef icon_pencil=\u00C0 modifier icon_penguin=Linux icon_positive=Bien icon_prepare=Feu orange icon_revision=R\u00E9vis\u00E9 icon_revision-green=R\u00E9vision (vert) icon_revision-pink=R\u00E9vision (rose) icon_revision-red=R\u00E9vision (rouge) icon_smiley-angry=\u00C9moticone (en col\u00E8re) icon_smiley-neutral=\u00C9moticone (neutre) icon_smiley-oh=\u00C9moticone (surpris) icon_smily_bad=\u00C9moticone (m\u00E9content) icon_stop=Feu rouge icon_stop-sign=Stop icon_subtraction=Soustraction icon_unchecked=D\u00E9coch\u00E9 icon_up=En haut icon_user_icon=Ic\u00F4nes utilisateur icon_very_negative=Tr\u00E8s mauvais icon_very_positive=Tr\u00E8s bien icon_video=Vid\u00E9o icon_wizard=Magique icon_xmag=\u00C0 discuter icon_yes=Important IconGroupPopupAction.arrows.text=Fl\u00E8ches IconGroupPopupAction.docs_folders.text=Documents et Fichiers IconGroupPopupAction.flags.text=Drapeaux IconGroupPopupAction.math.text=Calcul IconGroupPopupAction.media.text=M\u00E9dia IconGroupPopupAction.miscellaneous.text=Autre IconGroupPopupAction.nature.text=Nature IconGroupPopupAction.numbers.text=Num\u00E9ros IconGroupPopupAction.office.text=Bureau IconGroupPopupAction.people.text=Personnes IconGroupPopupAction.rating.text=\u00C9valuation IconGroupPopupAction.signs.text=Symboles IconGroupPopupAction.smiley.text=\u00C9motic\u00F4nes IconGroupPopupAction.time.text=Heure IconGroupPopupAction.user.text=Ic\u00F4nes utilisateur IconProgressExtended10Action.text=Ajouter une image cliquable d'avancement par 10% IconProgressExtended10Action.tooltip=Ajoute une image d'avancement redimensionnable qui augmente de 10% \u00E0 chaque double-clic sur l'image.
Pour r\u00E9duire l'avancement faire Ctrl + double-clic sur l'image IconProgressExtended25Action.text=Ajouter une image cliquable d'avancement par 25% IconProgressExtended25Action.tooltip=Ajoute une image d'avancement redimensionnable qui augmente de 25% \u00E0 chaque double-clic sur l'image.
Pour r\u00E9duire l'avancement faire Ctrl + double-clic sur l'image IconProgressIconDownAction.text=R\u00E9duire l'ic\u00F4ne d'avancement IconProgressIconDownAction.tooltip=Modifie l'ic\u00F4ne d'avancement en d\u00E9croissant : 100% -> 75% -> 50% -> 25% -> 0% -> Suppression IconProgressIconUpAction.text=Ajouter l'ic\u00F4ne / Augmenter l'avancement IconProgressIconUpAction.tooltip=Cr\u00E9e ou modifie l'ic\u00F4ne d'avancement en croissant : 0% -> 25% -> 50% -> 75% -> 100% + ic\u00F4ne OK IconProgressRemoveAction.text=Retirer les indicateurs d'avancement IconProgressRemoveAction.tooltip=Retire l'ic\u00F4ne d'avancement et l'image cliquable d'avancement icons=Ic\u00F4nes IconSelectionPlugin.text=Ajouter une ic\u00F4ne\u2026 IconSelectionPlugin.tooltip=Ajoute une ic\u00F4ne gr\u00E2ce \u00E0 la biblioth\u00E8que d'ic\u00F4nes image_covertLink=Convertir le lien en image ImageFlavorHandler=Image (utilise un fichier s\u00E9par\u00E9) import=I&mporter import_linked_branch_no_link=Le n\u0153ud s\u00E9lectionn\u00E9 n'a pas de lien exploitable comme source d'import. ImportAction.text=Importer une carte ImportBranchAction.text=Branche\u2026 ImportExplorerFavoritesAction.text=Favoris d'Internet Explorer\u2026 ImportFolderStructureAction.text=Arborescence de dossiers\u2026 ImportLinkedBranchAction.text=La carte li\u00E9e ImportLinkedBranchWithoutRootAction.text=Branche li\u00E9e sans la racine\u2026 ImportMindmanagerFiles.text=Carte MindManager X5\u2026 ImportXmlFile.text=Importer un fichier XML increase_branch_font_size=Augmenter la taille du texte de la branche IncreaseNodeFontAction.text=Augmenter la taille du texte internal_error.tooltip=Freeplane a rencontr\u00E9 des erreurs. Pour consulter le dernier fichier log stock\u00E9 dans {0}, cliquez. invalid_export_file=Nom du fichier d'export incorrect invalid_file_msg=Impossible de trouver le fichier pour {0} invalid_or_ambiguous_reference=R\u00E9f\u00E9rence "{0}" ambigu\u00EB ou non valide invalid_uri=URI invalide : {0} invalid_url=impossible de cr\u00E9er une URL valide invalid_url_msg=Impossible de cr\u00E9er une URL valide pour {0} ItalicAction.text=Italique italicise_branch=Branche en italique java_version=Version Java : {0} JoinNodesAction.separator.format=Fusionner les n\u0153uds avec "{0}" lastOpenedMaps=Fichiers r\u00E9cents lastOpenedMaps.noActions=Aucune carte dans l'historique latex_editor=Modifier la formule LaTeX LatexDeleteLatexAction.text=Supprimer la formule LaTeX LatexEditLatexAction.text=Modifier la formule LaTeX\u2026 LatexInsertLatexAction.msg1=Vous tentez d'ins\u00E9rer une formule LaTeX native.
La nouvelle mani\u00E8re d'ins\u00E9rer une chaine ou une formule LaTeX est d\u00E9crite sur cette page : LatexInsertLatexAction.msg2=En r\u00E9sum\u00E9 :
    \n
  • utilisez un pr\u00E9fixe "\\LaTex " dans le texte du n\u0153ud ou
  • \n
  • \u00AB \u00C9dition\u00BB \u2192 \u00AB Propri\u00E9t\u00E9s du n\u0153ud \u00BB, ensuite \u00AB Ajouter une formule LaTex \u00BB
  • \n
LatexInsertLatexAction.text=Ajouter une formule LaTeX\u2026 latexPatternFormat=LaTeX LengthUnits.cm=cm LengthUnits.in=in LengthUnits.mm=mm LengthUnits.pt=pt LengthUnits.px=px less_than_two_selected_nodes=Vous devez s\u00E9lectionner au moins deux n\u0153uds pour les lier. license=Licence license_text=Le pr\u00E9sent programme est un logiciel libre\u00A0; vous pouvez le redistribuer et/ou
le modifier conform\u00E9ment aux conditions de la Licence G\u00E9n\u00E9rale Publique GNU (GNU General Public License)
telle qu'elle est publi\u00E9e par la Free Software Foundation\u00A0; que ce soit la
version\u00A02 de la licence, ou (\u00E0 votre choix) toute version ult\u00E9rieure.

Le pr\u00E9sent programme est distribu\u00E9 aux fins d'\u00EAtre utile,
mais SANS AUCUNE GARANTIE\u00A0; sans m\u00EAme la garantie implicite de
COMMERCIABILIT\u00C9 ou D'AD\u00C9QUATION \u00C0 UN USAGE SP\u00C9CIFIQUE. Reportez-vous
\u00E0 la Licence G\u00E9n\u00E9rale Publique GNU (GNU General Public License) pour plus de d\u00E9tails.

Vous devriez avoir re\u00E7u une copie de la Licence G\u00E9n\u00E9rale Publique
GNU (GNU General Public License) avec le pr\u00E9sent programme\u00A0;
dans le cas contraire, \u00E9crivez \u00E0 la Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. link_error=Le lien "{0}" est incorrect, il n''a pas \u00E9t\u00E9 charg\u00E9 link_not_available_any_more=Ce lien n''est plus valide car le n\u0153ud {0} a \u00E9t\u00E9 supprim\u00E9. link_not_found=Lien {0} non trouv\u00E9. links=Lien load=Ouvrir... load_accelerator_presets=Ouvrir load_accelerator_presets.noActions=Aucun raccourci LoadAcceleratorPresetsAction.textPatterns.text=Touches de fonction par d\u00E9faut locking_failed_by_open=Impossible de verrouiller la carte {0}. Ouverture en lecture-seule. locking_failed_by_save_as=La carte {0} est verrouill\u00E9e. Enregistrement impossible. locking_old_lock_removed=La carte {0} est verrouill\u00E9e par l''utilisateur {1}. Le verrou a \u00E9t\u00E9 supprim\u00E9 car il est ancien. long_node_changed_cancel=Vous avez chang\u00E9 le n\u0153ud. Voulez-vous annuler les changements ? long_node_changed_submit=Vous avez changez le n\u0153ud. Voulez-vous enregistrer les changements ? lots_of_links_warning=Vous allez cr\u00E9er un nombre important de liens vers le m\u00EAme n\u0153ud. Voulez-vous vraiment cr\u00E9er ces liens ? main_menu=Menu main_resource_directory=Dossier d''installation du programme : {0} MainView.errorUpdateText=Impossible de calculer {0}:{1}.\nD\u00E9tails de l''erreur : {1}. MakeLinkFromAnchorAction.text=Cr\u00E9er un lien dans le n\u0153ud m\u00E9moris\u00E9 MakeLinkFromAnchorAction.tooltip=Ajoute, dans le n\u0153ud m\u00E9moris\u00E9, un lien vers le n\u0153ud courant MakeLinkToAnchorAction.text=Cr\u00E9er un lien dans le n\u0153ud courant MakeLinkToAnchorAction.tooltip=Ajoute, dans le n\u0153ud courant, un lien vers le n\u0153ud m\u00E9moris\u00E9 ManageAddOnsAction.text=Add-ons ManageAddOnsDialog.activate=Activer ManageAddOnsDialog.activation.success={0} sera activ\u00E9 au prochain d\u00E9marrage. ManageAddOnsDialog.authored.by=par {0} ManageAddOnsDialog.cannot.activate=Impossible d''activer {0} : {0} est d\u00E9j\u00E0 actif. ManageAddOnsDialog.cannot.configure=Impossible de configurer {0}. ManageAddOnsDialog.cannot.deactivate=Impossible de d\u00E9sactiver {0} : {0} n''est pas activ\u00E9. ManageAddOnsDialog.cannot.deinstall=Impossible de d\u00E9sinstaller {0}. ManageAddOnsDialog.configure=Configurer ManageAddOnsDialog.deactivate=D\u00E9sactiver ManageAddOnsDialog.deactivation.success={0} sera automatiquement d\u00E9sactiv\u00E9 au prochain d\u00E9marrage. ManageAddOnsDialog.deinstall=D\u00E9sinstaller ManageAddOnsDialog.deinstallation.success={0} sera d\u00E9sinstall\u00E9 au prochain d\u00E9marrage. ManageAddOnsDialog.error=L''installation a \u00E9chou\u00E9. Erreur : {0}. ManageAddOnsDialog.install=Installer... ManageAddOnsDialog.install.from.known.location=Installer un add-on depuis un fichier ManageAddOnsDialog.install.tooltip=Entrez l'URL d'installation de l'add-on ManageAddOnsDialog.map.not.opened=La carte {0} n''est pas ouverte. ManageAddOnsDialog.really.deinstall=Confirmez-vous la d\u00E9sinstallation de {0} ? ManageAddOnsDialog.search=Rechercher des add-ons ManageAddOnsDialog.search.file=Parcourir... ManageAddOnsDialog.select.tooltip=S\u00E9lectionnez le fichier... ManageAddOnsDialog.status.downloading=T\u00E9l\u00E9chargement en cours\u2026 ManageAddOnsDialog.status.installing=Installation de l'add-on en cours\u2026 ManageAddOnsDialog.status.success={0} install\u00E9 avec succ\u00E8s. ManageAddOnsDialog.tab.install=Rechercher et installer ManageAddOnsDialog.tab.install.tooltip=Rechercher et installer de nouveaux add-ons ManageAddOnsDialog.tab.manage=Add-ons ManageAddOnsDialog.tab.manage.themes=Th\u00E8mes ManageAddOnsDialog.tab.manage.themes.tooltip=G\u00E9rer les th\u00E8mes ManageAddOnsDialog.tab.manage.tooltip=G\u00E9rer les add-ons ManageAddOnsDialog.visit.addon.page=Ouvrir la page web des add-ons\u2026 ManageConditionalStylesAction.text=Styles conditionnels de carte... ManageNodeConditionalStylesAction.text=Styles conditionnels de n\u0153ud... map_already_exists=Le fichier existe d\u00E9j\u00E0. Souhaitez-vous le remplacer ? map_background=Arri\u00E8re-plan de la carte map_background_image=Image d'arri\u00E8re-plan map_corrupted=Carte corrompue. Afficher d'avantage ? map_load_error=Impossible d''ouvrir le fichier {0} map_locked_by_open=La carte {0} est en cours d''utilisation par l''utilisateur {1}. Ouverture en lecture-seule. map_locked_by_save_as=La carte {0} est en cours d''utilisation par l''utilisateur {1}. L''op\u00E9ration d''enregistrement a \u00E9chou\u00E9e. map_not_saved=Vous devez enregistrer la carte pour r\u00E9aliser cette op\u00E9ration. MapBackgroundClearAction.text=Effacer MapBackgroundColorAction.text=Couleur d'arri\u00E8re-plan MapBackgroundImageAction.text=Image d'arri\u00E8re-plan\u2026 maps=Cartes MaxNodeWidth.text=Largeur maximale du n\u0153ud menu_applyStyle=Appliquer un style menu_attributes=Attributs menu_clouds=Nuage menu_copy=Copier menu_coreFormat=N\u0153ud menu_details=D\u00E9tails menu_displayAttributes=Attributs menu_encryption=Protection menu_error=Erreur dans la structure de menu personnalis\u00E9e {0} :\n{1}\nAnnulation menu_extensions=Propri\u00E9t\u00E9s du n\u0153ud menu_group=Regroupement de n\u0153uds menu_hoverView=Info bulles sur les n\u0153uds menu_iconByCategory=Ic\u00F4nes par cat\u00E9gories\u2026 menu_iconView=Ic\u00F4nes menu_image=Image menu_insert=Ins\u00E9rer menu_latex_formula=Formule LaTex menu_manageStyles=Styles menu_moveNode=D\u00E9placement menu_newNode=Nouveau n\u0153ud menu_node=N\u0153ud menu_node_features=N\u0153ud avanc\u00E9 menu_nodes=N\u0153ud menu_nodeView=N\u0153ud menu_noteView=Notes menu_openmaps=Cartes menu_remove_icons=Supprimer les ic\u00F4nes menu_removeAttribute=Supprimer les attributs menu_select=S\u00E9lection menu_time=Calendrier menu_title=N\u0153ud menu_viewmode=Param\u00E8tres d'affichage MenuUtils.invalid_menuitem={0} n''est pas valide. mindmap=Carte MindMapNodesFlavorHandler=Avec mise en forme mindmaps=Cartes mindmaps_desc=Cartes (*.mm) mindmaps_filter_desc=Filtre (*.mmfilter) MinNodeWidth.text=Largeur minimale du n\u0153ud mode_Browse=Visionneuse mode_File=Explorateur de fichiers mode_MindMap=Concepteur mode_na=Mode indisponible mode_status=Bascul\u00E9 en mode {0} mode_StyleMap=Modification du style mode_title=Freeplane - {0} modes=Modes ModesMenuAction.Browse.text=Visionneuse de cartes ModesMenuAction.File.text=Explorateur de fichiers ModesMenuAction.MindMap.text=Concepteur de cartes most_recent_files=Fichiers r\u00E9cents MoveAction.text=D\u00E9placer MoveSelectedNodeAction.CENTER.text=Centrer le n\u0153ud s\u00E9lectionn\u00E9 MoveSelectedNodeAction.EAST.text=D\u00E9placer le n\u0153ud s\u00E9lectionn\u00E9 vers la droite MoveSelectedNodeAction.WEST.text=D\u00E9placer le n\u0153ud s\u00E9lectionn\u00E9 vers la gauche MoveToRootAction.text=Aller \u00E0 la racine NameConditionAction.text=Nommer le filtre... navigate=&Navigation NavigationNextMapAction.text=Carte suivante NavigationPreviousMapAction.text=Carte pr\u00E9c\u00E9dente new=Nouveau... new_map_from_user_templates.text=Nouvelle carte \u00E0 partir d'une carte existante\u2026 new_mindmap=Nouvelle carte new_node=Nouveau n\u0153ud new_node_as_sibling_not_possible_for_the_root=Impossible de cr\u00E9er un n\u0153ud fr\u00E8re pour la racine new_version_available=Une nouvelle version '{0}' est disponible NewChildAction.text=N\u0153ud fils NewerFileRevisionsFoundDialog.cancel=Abandonner NewerFileRevisionsFoundDialog.cancel.tooltip=Ne pas ouvrir ce fichier NewerFileRevisionsFoundDialog.file_last_modified=Date et heure NewerFileRevisionsFoundDialog.file_name=Fichier NewerFileRevisionsFoundDialog.file_size=Octets NewerFileRevisionsFoundDialog.open=Ouvrir NewerFileRevisionsFoundDialog.open.tooltip=Ouvrir le fichier m\u00EAme si ce n'est pas le plus r\u00E9cent NewerFileRevisionsFoundDialog.question=Il existe des versions plus r\u00E9centes de {0} ! NewerFileRevisionsFoundDialog.restore=Restaurer NewerFileRevisionsFoundDialog.restore.tooltip=Remplacer {0} par {1} NewerFileRevisionsFoundDialog.title=Une version plus r\u00E9cente du fichier a \u00E9t\u00E9 trouv\u00E9e ! NewFreeNodeAction.text=Nouveau n\u0153ud flottant NewLevelStyleAction.text=Cr\u00E9er un style automatique de niveau newmap.install.addon.question={0} semble \u00EAtre un add-on.\nSouhaitez-vous l''installer ?\n(R\u00E9pondez "Non" pour ouvrir le fichier normalement) newmap.install.addon.title=Installer l'add-on ? NewMapAction.text=Nouvelle carte NewMapViewAction.text=Ouvrir la carte dans un nouvel onglet NewParentNode.text=N\u0153ud p\u00E8re NewParentNode.tooltip=La s\u00E9lection est envoy\u00E9e vers un nouveau parent NewPreviousSiblingAction.text=N\u0153ud fr\u00E8re en haut NewSiblingAction.text=N\u0153ud fr\u00E8re en bas NewSummaryAction.text=Cr\u00E9er un n\u0153ud synth\u00E8se des n\u0153uds s\u00E9lectionn\u00E9s NewUserStyleAction.text=Cr\u00E9er un style \u00E0 partir de ce n\u0153ud... NextNodeAction.BACK.text=N\u0153ud pr\u00E9c\u00E9dent de la carte NextNodeAction.BACK_N_FOLD.text=N\u0153ud pr\u00E9c\u00E9dent de la carte (avec pliage automatique) NextNodeAction.FORWARD.text=N\u0153ud suivant de la carte NextNodeAction.FORWARD_N_FOLD.text=N\u0153ud suivant de la carte (avec pliage automatique) NextPresentationItemAction.text=D\u00E9plier l'\u00E9l\u00E9ment de pr\u00E9sentation suivant (pli\u00E9) no=Non no_copy_attributes_before_paste_attributes=Pour coller des attributs, veuillez d'abord les copier. NO_FORMAT=Texte no_format_copy_before_format_paste=Pour coller un format, veuillez d'abord le copier. no_found_from=Aucun {0} n''a \u00E9t\u00E9 trouv\u00E9 \u00E0 partir du n\u0153ud "{1}". no_more_found_from=Recherche termin\u00E9e :
plus aucun {0} n''a \u00E9t\u00E9 trouv\u00E9 \u00E0 partir du n\u0153ud "{1}". no_previous_find=Aucune recherche n'est en cours. no_styles_found_in_map=Aucun style trouv\u00E9 sur la carte no_translation_strings_found=Aucune chaine traduisible trouv\u00E9e node=n\u0153ud node_alias=Alias du n\u0153ud : node_changed_discard_changes=Vous avez modifi\u00E9 le n\u0153ud. Voulez-vous ignorer ces changements ? node_is_write_protected=Le n\u0153ud cible est prot\u00E9g\u00E9 contre l'\u00E9criture. node_location_help=Le glisser/d\u00E9poser change l'emplacement des n\u0153uds, ctrl+glisser/d\u00E9poser change les distances, les doubles clics et ctrl+doubles clics les remettent \u00E0 z\u00E9ro. node_popup_scripting=Scripts node_selector=S\u00E9lection du n\u0153ud node_selector_message=Veuillez choisir le n\u0153ud par double clic.
Cette fen\u00EAtre se fermera automatiquement apr\u00E8s s\u00E9lection. node_styles=Style NodeBackgroundColorAction.text=Couleur de fond du n\u0153ud\u2026 NodeColorAction.text=Couleur du texte\u2026 NodeColorBlendAction.text=Assortir le texte \u00E0 l'arri\u00E8re-plan NodeDownAction.text=D\u00E9placer le n\u0153ud vers le bas NodeEnumerationAction.NodeVisibility.HIDDEN.text=N\u0153ud masqu\u00E9 NodeEnumerationAction.NodeVisibilityConfiguration.SHOW_HIDDEN_NODES.text=Afficher les noeuds masqu\u00E9s NodeExtensions.EditNodeExtensions=Modifier les extensions du n\u0153ud NodeExtensions.RemoveNodeExtensions=Supprimer les extensions du n\u0153ud NodeListAction.text=Rechercher et remplacer\u2026 NodeListAction.tooltip=Rechercher et remplacer le texte des n\u0153uds (les n\u0153uds sont affich\u00E9s dans un tableau) NodeShapeAction.bubble.text=Bulle NodeShapeAction.fork.text=Fourche NodeShapeAction.narrow_hexagon.text=Hexagone ajust\u00E9 NodeShapeAction.oval.text=Ovale NodeShapeAction.rectangle.text=Rectangle NodeShapeAction.small_bubble.text=Petite bulle NodeShapeAction.small_wide_hexagon.text=Petit hexagone NodeShapeAction.wide_hexagon.text=Grand hexagone NodeUpAction.text=D\u00E9placer le n\u0153ud vers le haut nonboldify_branch=Supprimer le gras pour la branche nonitalicise_branch=Supprimer l'italique pour la branche normal=Normal not_saved_for_image_error=Vous devez enregistrer la carte avant d'ajouter une image not_saved_for_link_error=La carte doit avoir \u00E9t\u00E9 enregistr\u00E9e avant de pouvoir d\u00E9finir un lien vers un fichier. note_window_location=Position de l'\u00E9diteur de notes notes=Note NotFoldingNextPresentationItemAction.text=D\u00E9plier le prochain n\u0153ud pr\u00E9sent\u00E9 NotificationOptions.CLOSE=Fermer NotificationOptions.REMIND_ME_LATER=Me le demander plus tard NotificationOptions.REMOVE_REMINDER=Supprimer le rappel NotificationOptions.SELECT_NODE=Aller au rappel ok=Valider OKAction.text=Valider OldReminderListAction.text=Afficher les rappels expir\u00E9s\u2026 OldReminderListAction.tooltip=Afficher les rappels pass\u00E9s et les n\u0153uds associ\u00E9s dans toutes les cartes ouvertes. OnlineReference.text=Documentation en ligne open_asMindMap=Carte OpenAction.text=Ouvrir\u2026 OpenApiDocumentationAction.text=API Freeplane\u2026 OpenFreeplaneSiteAction.text=Site Web Freeplane OpenMapsAddLocation.text=Ajouter un emplacement OpenMaps\u2026 OpenMapsRemoveLocation.text=Supprimer un emplacement OpenMaps OpenMapsViewLocation.text=Afficher un emplacement OpenMaps\u2026 OpenPathAction.text=Ouvrir fichier OpenURLMapAction.text=Ouvrir une carte depuis une adresse URL\u2026 OpenUserDirAction.text=Ouvrir le dossier utilisateur option_changes_may_require_restart=Pour prendre en compte vos nouvelles pr\u00E9f\u00E9rences, vous devriez red\u00E9marrer Freeplane. OptionalDontShowMeAgainDialog.cancel=Non OptionalDontShowMeAgainDialog.dontShowAgain=A l'avenir, ex\u00E9cuter sans confirmation OptionalDontShowMeAgainDialog.ok=Oui OptionalDontShowMeAgainDialog.rememberMyDescision=M\u00E9moriser ce choix OptionPanel.absolute=Absolu OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=Styles automatiques par niveau OptionPanel.ADD_CHILD=Ajouter un n\u0153ud fils OptionPanel.ADD_SIBLING=Ajouter un n\u0153ud fr\u00E8re OptionPanel.addons=Add-ons OptionPanel.af=Afrikaans OptionPanel.always_fold_all_after_load=Tout plier OptionPanel.always_load_last_maps=Ouvrir les derni\u00E8res cartes en plus des nouvelles cartes OptionPanel.always_load_last_maps.tooltip=Ouvre Freeplane avec les derniers fichiers d\u00E9finis ci-dessus et une carte suppl\u00E9mentaire indiqu\u00E9e en argument. OptionPanel.always_save_folding=Toujours OptionPanel.always_save_folding_state=Toujours enregistrer les changements d'\u00E9tat du pliage OptionPanel.always_save_folding_state.tooltip=Toute action de pliage est consid\u00E9r\u00E9e comme une modification de la carte. Lors de la fermeture de la carte vous vous verrez proposer d'enregistrer vos modifications alors que vous n'avez fait que des actions de pliage OptionPanel.always_show_less_than_N_nodes_after_load=D\u00E9plier quelques n\u0153uds OptionPanel.always_unfold_all_after_load=Tout d\u00E9plier OptionPanel.antialias=Lissage OptionPanel.antialias.tooltip=D\u00E9finit la qualit\u00E9 graphique de la carte. Les op\u00E9rations de lissage peuvent prendre du temps. OptionPanel.antialias_all=Tout lisser OptionPanel.antialias_edges=Lisser les lignes OptionPanel.antialias_none=Sans lissage OptionPanel.antialias_svg=Anticr\u00E9nelage SVG OptionPanel.antialias_svg.tooltip=D\u00E9finissez la qualit\u00E9 d\u2019affichage des ic\u00F4nes SVG. Avec l'anticr\u00E9nelage les ic\u00F4nes SVG sont de meilleure qualit\u00E9 mais mettent plus longtemps \u00E0 s'afficher. OptionPanel.Appearance=Apparence OptionPanel.approximate_search_threshold=Seuil pour la recherche par variantes OptionPanel.approximate_search_threshold.tooltip=Seuil pour les variantes de mot.
Plus de d\u00E9tails sur : http://freeplane.sf.net/wiki/index.php/Approximate_search
(plus le nombre est \u00E9lev\u00E9 moins il y aura de variantes des mots recherch\u00E9es et donc de r\u00E9sultats). OptionPanel.ar=Arabe / \u0627\u0644\u0639\u0631\u0628\u064A\u0629 OptionPanel.ARC=Arc OptionPanel.as_parent=Comme le p\u00E8re OptionPanel.ask=Demander OptionPanel.automatic=Automatique OptionPanel.automaticFormat_level=Styles automatiques par niveau OptionPanel.automaticFormat_level1=Mise en forme du n\u0153ud racine OptionPanel.automaticFormat_level2=Mise en forme des n\u0153uds de niveau 1 OptionPanel.backup_file_number=Nombre de fichiers de sauvegarde conserv\u00E9s OptionPanel.Behaviour=Comportement OptionPanel.bezier=Courbe OptionPanel.bg=Bulgare / \u0431\u044A\u043B\u0433\u0430\u0440\u0441\u043A\u0438 OptionPanel.border_color=Couleur OptionPanel.border_color_matches_edge_color=Utiliser la couleur de ligne OptionPanel.border_dash=Type ligne pour le contour OptionPanel.border_dash_matches_edge_dash=Utiliser le type de ligne OptionPanel.border_width=Largeur de ligne OptionPanel.border_width_matches_edge_width=Utiliser une largeur de bords OptionPanel.bubble=Bulle OptionPanel.ca=Catalan OptionPanel.Cancel=Annuler OptionPanel.center_selected_node=Centrer automatiquement la carte sur la s\u00E9lection OptionPanel.check_updates_automatically=V\u00E9rifier les mises \u00E0 jour au d\u00E9marrage OptionPanel.childpattern=Mod\u00E8le fils OptionPanel.childpattern.tooltip=Le mod\u00E8le s\u00E9lectionn\u00E9 est appliqu\u00E9 \u00E0 tous les fils OptionPanel.clear_all_setters=Modification g\u00E9n\u00E9rale OptionPanel.clear_all_setters.tooltip=Pilote l'ensemble des modifications. OptionPanel.cloud=Nuage OptionPanel.cloudcolor=Couleur du nuage OptionPanel.cloudshape=Forme du nuage OptionPanel.combined=Mixte OptionPanel.compare_as_number=Comparer comme nombres OptionPanel.compile_only_changed_script_files=Compiler uniquement les fichiers modifi\u00E9s OptionPanel.compile_only_changed_script_files.tooltip=Conserver les fichiers compil\u00E9s jusqu'\u00E0 ce que leurs sources soient modifi\u00E9es OptionPanel.compiled_script_cache_size=Taille du cache pour les scripts compil\u00E9s et les formules OptionPanel.connector_arrows=Pointes des connecteurs OptionPanel.connector_dash=Type de ligne OptionPanel.convert_to_current_version=Convertir automatiquement les cartes des versions ant\u00E9rieures
de Freeplane \u00E0 la version courante ? OptionPanel.convert_to_current_version.tooltip=Seulement pour les tr\u00E8s grandes cartes qui n'ont pas besoin d'\u00EAtre converties
(seulement si vous savez ce que vous faites) vous pouvez ouvrir les cartes sans conversion. OptionPanel.copyFormatToNewSibling=Appliquer la mise en forme aux n\u0153uds fr\u00E8res OptionPanel.copyFormatToNewSiblingIncludesIcons=Copier la mise en forme avec les ic\u00F4nes OptionPanel.cs=Tch\u00E8que / \u010Desky OptionPanel.cut_nodes_without_question=Couper les n\u0153uds sans confirmation OptionPanel.cut_nodes_without_question.tooltip=Coupe imm\u00E9diatement les n\u0153uds, sans confirmation OptionPanel.cut_out_pictures_when_pasting_html=Retirer les images du code HTML OptionPanel.da=Danois OptionPanel.date_format=Format des dates OptionPanel.date_format.tooltip=Saisissez SHORT, MEDIUM, LONG, FULL ou un motif pr\u00E9cis comme "MM/dd/yyyy" OptionPanel.datetime_format=Format date-heure OptionPanel.datetime_format.tooltip=Saisissez , (valeurs possibles : SHORT, MEDIUM, LONG ou FULL)
ou saisissez un motif pr\u00E9cis comme "M/d/yyyy hh:mm" OptionPanel.de=Allemand OptionPanel.default=Par d\u00E9faut OptionPanel.default_attribute_key_column_width=Largeur par d\u00E9faut de la colonne Nom des attributs OptionPanel.default_attribute_value_column_width=Largeur par d\u00E9faut de la colonne Valeurs des attributs OptionPanel.default_browser_command_mac=Commande pour le navigateur par d\u00E9faut pour Mac OptionPanel.default_browser_command_mac.tooltip= et le Mac : (grace \u00E0 Nick !) OptionPanel.default_browser_command_other_os=Commande pour le navigateur par d\u00E9faut pour d'autres syst\u00E8mes OptionPanel.default_browser_command_other_os.tooltip=Cela correspond typiquement \u00E0 Linux. OptionPanel.default_browser_command_windows_9x=Commande pour le navigateur par d\u00E9faut pour Windows 9x OptionPanel.default_browser_command_windows_9x.tooltip=Pour Windows (les signes "" sont n\u00E9cessaires \u00E0 cause des liens qui contiennent un caract\u00E8re "=" dans leur URL). OptionPanel.default_browser_command_windows_nt=Commande pour le navigateur par d\u00E9faut pour Windows NT OptionPanel.default_browser_command_windows_nt.tooltip=Pour Windows (les signes "" sont n\u00E9cessaires \u00E0 cause des liens qui contiennent un caract\u00E8re "=" dans leur URL). OptionPanel.default_charset=Jeu de caract\u00E8res OptionPanel.default_save_dir=Dossier par d\u00E9faut des enregistrements OptionPanel.Defaults=R\u00E9glages par d\u00E9faut OptionPanel.delete_automatic_saves_at_exit=Supprimer les sauvegardes automatiques en quittant OptionPanel.delete_automatic_saves_at_exit.tooltip=Si vous souhaitez supprimer les fichiers cr\u00E9\u00E9s automatiquement lorsque Freeplane se termine normalement, cochez cette option. OptionPanel.delete_nodes_without_question=Supprimer les n\u0153uds sans confirmation OptionPanel.delete_nodes_without_question.tooltip=Supprime imm\u00E9diatement les n\u0153uds, sans confirmation OptionPanel.disable_cursor_move_paper.tooltip=Ne pas modifier l'apparence du pointeur de la souris lors du d\u00E9placement de la carte OptionPanel.display_inline_editor_for_all_new_nodes=Activer la saisie dans la carte pour les formules OptionPanel.display_node_id=Afficher l'identifiant du n\u0153ud OptionPanel.edgecolor=Couleur de ligne OptionPanel.edgecolor.tooltip=Couleur de ligne du n\u0153ud (s'applique aussi aux n\u0153uds fils) OptionPanel.edgedash=Type de ligne OptionPanel.edgestyle=Style de ligne OptionPanel.edgestyle.tooltip=Style de ligne du n\u0153ud (s'applique aussi aux n\u0153uds fils) OptionPanel.edgewidth=\u00C9paisseur de ligne OptionPanel.edgewidth.tooltip=\u00C9paisseur de ligne du n\u0153ud (s'applique aussi aux n\u0153uds fils) OptionPanel.EDIT_CURRENT=Effacer le contenu OptionPanel.edit_on_double_click=Le double clic permet de modifier le texte du n\u0153ud OptionPanel.editor_extra_width=Agrandissement automatique de la zone de saisie (en pixels) OptionPanel.editor_extra_width.tooltip=D\u00E9finit la taille suppl\u00E9mentaire dont s'agrandit la zone de saisie lorsque le texte du n\u0153ud d\u00E9passe la taille courante du n\u0153ud OptionPanel.el=Grecque / \u0395\u03BB\u03BB\u03B7\u03BD\u03B9\u03BA\u03AC OptionPanel.el__buttons_above=Afficher les boutons en haut OptionPanel.el__enter_confirms_by_default=La touche "Entr\u00E9e" valide le n\u0153ud OptionPanel.el__max_default_window_height=Hauteur maximum par d\u00E9faut de la fen\u00EAtre OptionPanel.el__max_default_window_width=Largeur maximum par d\u00E9faut de la fen\u00EAtre OptionPanel.el__min_default_window_height=Hauteur minimum par d\u00E9faut de la fen\u00EAtre OptionPanel.el__min_default_window_width=Largeur minimum par d\u00E9faut de la fen\u00EAtre OptionPanel.el__position_window_below_node=Afficher l'\u00E9diteur sous le n\u0153ud OptionPanel.en=Anglais OptionPanel.Environment=Environnement OptionPanel.es=Espagnol OptionPanel.et=\u00C9thipien OptionPanel.eu=Basque OptionPanel.execute_scripts_without_asking=Activer l'ex\u00E9cution des scripts OptionPanel.execute_scripts_without_asking.tooltip=ATTENTION : l'ex\u00E9cution de scripts inconnus peut endommager votre ordinateur. OptionPanel.execute_scripts_without_exec_restriction=Autoriser l'ex\u00E9cution des commandes externes OptionPanel.execute_scripts_without_exec_restriction.tooltip=Autorise les scripts \u00E0 ex\u00E9cuter des commandes externes comme le lancement d'autres applications (exemple : lancement d'un navigateur Web). OptionPanel.execute_scripts_without_file_restriction=Autoriser les op\u00E9rations de lecture sur les fichiers OptionPanel.execute_scripts_without_file_restriction.tooltip=Autorise les scripts \u00E0 ouvrir et lire les fichiers de votre ordinateur. OptionPanel.execute_scripts_without_network_restriction=Autoriser les op\u00E9rations r\u00E9seau OptionPanel.execute_scripts_without_network_restriction.tooltip=Autorise les scripts \u00E0 utiliser les communications r\u00E9seau. OptionPanel.execute_scripts_without_write_restriction=Autoriser les op\u00E9ration d'\u00E9criture sur les fichiers OptionPanel.execute_scripts_without_write_restriction.tooltip=Autorise les scripts \u00E0 modifier les fichiers de votre ordinateur. OptionPanel.experimental_file_locking_on=Verrouiller les cartes ouvertes (exp\u00E9rimental) OptionPanel.experimental_file_locking_on.tooltip=Cette fonctionnalit\u00E9 exp\u00E9rimentale permet de verrouiller une carte partag\u00E9e (fonctionnement collaboratif en r\u00E9seau) OptionPanel.export_icons_in_html=Exporter les ic\u00F4nes OptionPanel.export_icons_in_html.tooltip=Indique que l'HTML export\u00E9 doit int\u00E9grer les ic\u00F4nes OptionPanel.exported_image_resolution_dpi=R\u00E9solution de l'image export\u00E9e (en DPI) OptionPanel.Files=Fichiers OptionPanel.first=En haut OptionPanel.fit_to_viewport=Ajuster l'image de fond \u00E0 la taille de la fen\u00EAtre OptionPanel.fold_on_click_inside=Cliquer sur un n\u0153ud plie ou d\u00E9plie la branche OptionPanel.foldingsymbolwidth=Taille du symbole de pliage OptionPanel.foldingsymbolwidth.tooltip=Taille du cercle indiquant une branche pli\u00E9e OptionPanel.fork=Fourche OptionPanel.format_locale=Param\u00E8tres r\u00E9gionaux OptionPanel.format_locale.tooltip=Param\u00E8tres d'affichage et de d\u00E9tection des nombres et des dates OptionPanel.formula_disable_caching=D\u00E9sactiver la mise en cache des formules OptionPanel.formula_disable_plugin=D\u00E9sactiver les formules OptionPanel.fr=Fran\u00E7ais OptionPanel.gl=Gl OptionPanel.goto_note_end_on_edit=Placer le curseur en fin de note OptionPanel.grid_size=Pas pour la grille d'alignement des n\u0153uds (1 = aucune grille) OptionPanel.groovy_editor_font=Police identifiant la syntaxe Groovy OptionPanel.groovy_editor_font.tooltip=S\u00E9lectionnez les polices 'Dialog' ou 'Monospace' si vous souhaitez utiliser des caract\u00E8res unicode ! OptionPanel.groovy_editor_font_size=Taille de police pour la syntaxe Groovy OptionPanel.gtk=Gtk OptionPanel.hi=Hindi / \u0939\u093F\u0928\u094D\u0926\u0940 OptionPanel.hide_edge=Invisible OptionPanel.hide_single_end_connectors=Masquer les connecteurs simple fl\u00E8che OptionPanel.highlight_formulas=Entourer les formules OptionPanel.horizontal=Rectiligne OptionPanel.hr=Croate OptionPanel.HTML=HTML OptionPanel.html_export_based_on_headings=\u00C0 partir des titres OptionPanel.html_export_fold_all=Tout pli\u00E9 OptionPanel.html_export_fold_currently_folded=Pliage actuel OptionPanel.html_export_folding=Exporter le pliage OptionPanel.html_export_no_folding=Tout d\u00E9pli\u00E9 OptionPanel.hu=Hongrois OptionPanel.ic_disable=Inactif OptionPanel.ic_file=Utiliser le disque OptionPanel.ic_ram=Utiliser la m\u00E9moire vive (RAM) OptionPanel.icon=Ic\u00F4ne OptionPanel.icon.tooltip=Si appliqu\u00E9, le n\u0153ud aura exactement cette ic\u00F4ne. OptionPanel.icon_size=Taille d'ic\u00F4ne OptionPanel.icons.list=Liste des ic\u00F4nes standard affich\u00E9es OptionPanel.icons.list.tooltip=Vous pouvez ordonner ou d\u00E9sactiver les ic\u00F4nes standard. Les ic\u00F4nes doivent \u00EAtre s\u00E9p\u00E9es par ';'. OptionPanel.id=Indon\u00E9sien OptionPanel.IGNORE=Ne rien faire OptionPanel.ignore_unassigned_f_keys=Ignorer les touches de fonction sans raccourci OptionPanel.il__enter_confirms_by_default=La touche "Entr\u00E9e" valide le n\u0153ud OptionPanel.image_cache=Pour les images OptionPanel.indentationUsesTabsInTextOutput=Utiliser les tabulations dans les zones de saisie OptionPanel.it=Italien OptionPanel.ja=Japonais / \u65E5\u672C\u8A9E OptionPanel.JoinNodesAction.textSeparators=S\u00E9parateur de texte OptionPanel.key_type_action=Saisie clavier hors d'un n\u0153ud OptionPanel.Keystrokes=Raccourcis clavier OptionPanel.kn=Kannada / \u0C95\u0CA8\u0CCD\u0CA8\u0CA1 OptionPanel.ko=Cor\u00E9en / \uD55C\uAD6D\uC5B4 (\u97D3\u570B\u8A9E), \uC870\uC120\uB9D0 (\u671D\u9BAE\u8A9E) OptionPanel.label_font_family=Police OptionPanel.label_font_size=Taille du texte OptionPanel.language=Langue de l'utilisateur OptionPanel.language.tooltip=Langue de l'application. S\u00E9lectionnez 'Automatique' pour utiliser la langue du syst\u00E8me. OptionPanel.last=En bas OptionPanel.last_opened_list_length=Nombre de fichiers dans la liste des fichiers r\u00E9cents OptionPanel.latex_disable_editor=D\u00E9sactiver la mise en valeur de la syntaxe LaTeX OptionPanel.latex_disable_editor.tooltip=Cochez cette case si vous avez des difficult\u00E9s avec l'\u00E9diteur LaTeX OptionPanel.latex_editor_font=Police identifiant la syntaxe LaTeX OptionPanel.latex_editor_font.tooltip=S\u00E9lectionnez les polices 'Dialog' ou 'Monospace' si vous souhaitez utiliser des caract\u00E8res unicode ! OptionPanel.latex_editor_font_size=Taille de police pour la syntaxe LaTeX OptionPanel.latex_macros=Macros LaTeX communes OptionPanel.layout_map_on_text_change=Rafra\u00EEchir la position des n\u0153uds pendant la saisie OptionPanel.layout_map_on_text_change.tooltip=Sur un ordinaiteur peu performant, il est recommand\u00E9 de d\u00E9sactiver cette option OptionPanel.linear=Droit OptionPanel.links=Type des liens OptionPanel.links.tooltip=Le chemin des liens hypertextes peut \u00EAtre soit d\u00E9fini en relatif par rapport \u00E0 la carte courante, soit \u00EAtre un chemin absolu. OptionPanel.load_folding=\u00C9tat du pliage OptionPanel.load_folding_from_map_default_fold_all=Pliage de la carte ou tout plier OptionPanel.load_folding_from_map_default_unfold_all=Pliage de la carte ou tout d\u00E9plier OptionPanel.load_last_map=D\u00E9marrer en affichant la derni\u00E8re carte utilis\u00E9e OptionPanel.load_last_map.tooltip=Au d\u00E9marrage ouvrir automatiquement la derni\u00E8re carte utilis\u00E9e OptionPanel.load_last_maps=D\u00E9marrer en affichant toutes les cartes ouvertes lors de l'arr\u00EAt OptionPanel.lookandfeel=Th\u00E8me OptionPanel.lookandfeel.scaleuifonts=\u00C9chelle pour les polices de caract\u00E8res OptionPanel.lookandfeel.scaleuifonts.tooltip=Utile pour les \u00E9crans haute densit\u00E9 OptionPanel.lookandfeel.tooltip=Les th\u00E8mes disponibles.
\n"M\u00E9tal", "Windows", "Motif" "GTk" sont support\u00E9s, "Mac" n'est disponible que sur syst\u00E8me Mac OS.
\n"D\u00E9faut" indique d'utiliser le th\u00E8me par d\u00E9faut pour la machine virtuelle.
\nPour utiliser votre propre th\u00E8me, merci de saisir le nom de la classe et assurez-vous que le fichier JAR est correctement charg\u00E9.
\nS'il y a un probl\u00E8me de th\u00E8me, choisissez "Par d\u00E9faut".\n OptionPanel.lt=Lituanien OptionPanel.markClones=Colorier les marques de clonage OptionPanel.markSelectedClones=Colorier les marques de clonage des n\u0153ud s\u00E9lectionn\u00E9s OptionPanel.max_displayed_node_count=Nombre maximum de n\u0153uds affich\u00E9s OptionPanel.max_image_width=Largeur par d\u00E9faut des images OptionPanel.max_image_width.tooltip=Les nouvelles images sont retaill\u00E9es \u00E0 cette largeur OptionPanel.max_menu_item_count=Nombre de commandes affich\u00E9es dans les menus OptionPanel.max_menu_item_count.tooltip=(10 minimum). Au-del\u00E0 de ce nombre les commandes apparaissent en sous-menu. OptionPanel.max_node_width=Largeur maximale des n\u0153uds OptionPanel.max_shortened_text_length=Largeur utilis\u00E9e pour r\u00E9sumer les n\u0153uds OptionPanel.menuItemFontSize=Taille de la police pour le menu OptionPanel.metal=M\u00E9tal OptionPanel.min_node_width=Largeur minimale des n\u0153uds OptionPanel.monitor_size_inches=Taille de l'\u00E9cran (en pouces) OptionPanel.motif=Motif OptionPanel.narrow_hexagon=Hexagone ajust\u00E9 OptionPanel.nb=Norv\u00E9gien OptionPanel.never_save_folding=Jamais OptionPanel.neverShowSurvey=Ne jamais afficher de sondages ou d'astuces OptionPanel.nl=N\u00E9erlandais OptionPanel.nn=Nn OptionPanel.nodebackgroundcolor=Couleur du fond OptionPanel.nodebackgroundcolor.tooltip=Couleur du fond du n\u0153ud OptionPanel.nodecolor=Couleur du texte OptionPanel.nodecolor.tooltip=Couleur du texte dans le n\u0153ud OptionPanel.nodefontbold=Gras OptionPanel.nodefonthyperlink=Lien hypertexte OptionPanel.nodefontitalic=Italique OptionPanel.nodefontname=Type de police OptionPanel.nodefontsize=Taille du texte OptionPanel.nodefontstrikethrough=Barr\u00E9 OptionPanel.nodeformat=Format OptionPanel.nodeformat.tooltip=Formule de conversion du texte du n\u0153ud.%s repr\u00E9sente le texte initial.