From ec2e11af55d3d31e126508ceafbe2f5fe0696cab Mon Sep 17 00:00:00 2001 From: Sven Hoexter Date: Thu, 22 Jan 2026 11:55:58 +0100 Subject: [PATCH] New upstream version 2.9.604 --- CMakeLists.txt | 166 +- config/io.github.insilmaril.vym.appdata.xml | 4 +- config/vym.desktop | 87 +- forms/url-dialog.ui | 101 + lang/{vym.cs_CZ.ts => vym_cs_CZ.ts} | 1977 ++++++---- lang/{vym.de.ts => vym_de.ts} | 1864 ++++++---- lang/{vym.el.ts => vym_el.ts} | 0 lang/{vym.en.ts => vym_en.ts} | 3611 ++++++++++--------- lang/{vym.es.ts => vym_es.ts} | 1936 ++++++---- lang/{vym.fr.ts => vym_fr.ts} | 1933 ++++++---- lang/{vym.hr_HR.ts => vym_hr_HR.ts} | 1845 ++++++---- lang/{vym.ia.ts => vym_ia.ts} | 1893 ++++++---- lang/{vym.it.ts => vym_it.ts} | 1969 ++++++---- lang/{vym.ja.ts => vym_ja.ts} | 1962 ++++++---- lang/{vym.pt_BR.ts => vym_pt_BR.ts} | 2024 ++++++----- lang/{vym.ru.ts => vym_ru.ts} | 1937 ++++++---- lang/{vym.sv.ts => vym_sv.ts} | 1926 ++++++---- lang/{vym.zh_CN.ts => vym_zh_CN.ts} | 1916 ++++++---- lang/{vym.zh_TW.ts => vym_zh_TW.ts} | 2084 ++++++----- macros/macros.vys | 202 +- src/branch-container.cpp | 18 +- src/branch-container.h | 2 +- src/branchpropeditor.cpp | 16 +- src/branchpropeditor.h | 3 + src/container.cpp | 13 +- src/dockeditor.cpp | 6 - src/dockeditor.h | 3 - src/findcontrolswidget.cpp | 2 + src/findresulttreeview.cpp | 3 +- src/findresultwidget.cpp | 21 +- src/findresultwidget.h | 6 + src/heading-container.cpp | 5 +- src/headingeditor.cpp | 4 +- src/headingeditor.h | 2 +- src/historywindow.cpp | 5 + src/historywindow.h | 1 + src/image-container.cpp | 2 +- src/imageitem.cpp | 2 +- src/imports.cpp | 7 +- src/log.cpp | 22 + src/log.h | 12 + src/main.cpp | 47 +- src/mainwindow.cpp | 394 +- src/mainwindow.h | 60 +- src/mapeditor.cpp | 31 +- src/my-textedit.cpp | 82 + src/my-textedit.h | 34 + src/noteeditor.cpp | 8 +- src/noteeditor.h | 2 +- src/scripteditor.cpp | 38 + src/scripteditor.h | 2 + src/scriptoutput.cpp | 7 +- src/scriptoutput.h | 1 + src/shortcuts.cpp | 8 +- src/slideeditor.cpp | 9 +- src/slideeditor.h | 1 + src/taskeditor.cpp | 29 +- src/taskeditor.h | 8 + src/taskmodel.cpp | 2 +- src/texteditor.cpp | 304 +- src/texteditor.h | 38 +- src/treeeditor.cpp | 8 +- src/treeeditor.h | 1 - src/treemodel.cpp | 4 +- src/url-dialog.cpp | 37 + src/url-dialog.h | 29 + src/version.h | 5 +- src/vymmodel.cpp | 124 +- src/vymmodel.h | 1 + src/vymtext.cpp | 10 +- src/vymtext.h | 6 +- src/vymview.cpp | 21 +- src/vymview.h | 3 + src/xml-vym.cpp | 2 +- 74 files changed, 19045 insertions(+), 11903 deletions(-) create mode 100644 forms/url-dialog.ui rename lang/{vym.cs_CZ.ts => vym_cs_CZ.ts} (77%) rename lang/{vym.de.ts => vym_de.ts} (78%) rename lang/{vym.el.ts => vym_el.ts} (100%) rename lang/{vym.en.ts => vym_en.ts} (60%) rename lang/{vym.es.ts => vym_es.ts} (82%) rename lang/{vym.fr.ts => vym_fr.ts} (81%) rename lang/{vym.hr_HR.ts => vym_hr_HR.ts} (80%) rename lang/{vym.ia.ts => vym_ia.ts} (79%) rename lang/{vym.it.ts => vym_it.ts} (77%) rename lang/{vym.ja.ts => vym_ja.ts} (80%) rename lang/{vym.pt_BR.ts => vym_pt_BR.ts} (81%) rename lang/{vym.ru.ts => vym_ru.ts} (81%) rename lang/{vym.sv.ts => vym_sv.ts} (81%) rename lang/{vym.zh_CN.ts => vym_zh_CN.ts} (81%) rename lang/{vym.zh_TW.ts => vym_zh_TW.ts} (80%) create mode 100644 src/log.cpp create mode 100644 src/log.h create mode 100644 src/my-textedit.cpp create mode 100644 src/my-textedit.h create mode 100644 src/url-dialog.cpp create mode 100644 src/url-dialog.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d23a2a..f87dd74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) if (CMAKE_SYSTEM_NAME STREQUAL Linux) - message(STATUS "using UNIX in cmake") # FIXME-0 still required? + message(STATUS "vym: using UNIX in cmake") # FIXME-0 still required? endif() set(QtComponents @@ -38,7 +38,7 @@ set(QtLibraries # or uncomment here: # set(CMAKE_BUILD_TYPE Debug) -# No longer needed with qt_standard_project_setup() below... +# Should no longer needed with qt_standard_project_setup() below... set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) @@ -50,7 +50,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL Linux) find_package(DBus1) if(DBus1_FOUND) - message(STATUS "Deteced Linux and DBUS1, adding DBUS interfaces") + message(STATUS "vym: Deteced Linux and DBUS1, adding DBUS interfaces") LIST(APPEND QtComponents DBus) LIST(APPEND QtLibraries Qt6::DBus) @@ -64,22 +64,21 @@ if(WIN32) if( OPENSSL_FOUND ) include_directories(${OPENSSL_INCLUDE_DIRS}) link_directories(${OPENSSL_LIBRARIES}) - message(STATUS "Using OpenSSL version: ${OPENSSL_VERSION}") + message(STATUS "vym: Using OpenSSL version: ${OPENSSL_VERSION}") else() - message(STATUS "No openSSL found?!") + message(STATUS "vym: No openSSL found?!") # Error; with REQUIRED, pkg_search_module() will throw an error by it's own endif() - #target_link_libraries(${YOUR_TARGET_HERE} ${OPENSSL_LIBRARIES}) - #target_link_libraries(project_name /path/of/libssl.so /path/of/libcrypto.so) - set(CMAKE_INSTALL_DATAROOTDIR ".") endif() # https://doc.qt.io/qt-6/qt-standard-project-setup.html find_package(Qt6 REQUIRED COMPONENTS Core) -qt_standard_project_setup() +qt_standard_project_setup( I18N_TRANSLATED_LANGUAGES + el cs_CZ de en es fr hr_HR ia it ja pt_BR ru sv zh_CN zh_TW +) # FIXME add missing translations include(GNUInstallDirs) @@ -90,7 +89,7 @@ list(APPEND CMAKE_AUTOUIC_SEARCH_PATHS "${CMAKE_SOURCE_DIR}/forms") get_target_property(QtLibraryType Qt6::Widgets TYPE) if(QtLibraryType STREQUAL STATIC_LIBRARY) - message(STATUS "Static Qt linkage") + message(STATUS "vym: Static Qt linkage") list(APPEND QtLibraries Qt6::QSvgPlugin) endif() @@ -116,45 +115,52 @@ if(DBus1_FOUND) ADD_COMPILE_DEFINITIONS(VYM_DBUS) endif() -# Translations (release) - - # To update the translation files based on source code changes - # first call manually - # lupdate-qt5 src/ -ts lang/*.ts - # - # Qt6 will have a dedicated macro: - # https://doc.qt.io/qt-6/qtlinguist-cmake-qt-add-lrelease.html +# Translations +# +# To update the translation files based on source code changes +# add the targest update_translations and release_translations +# +# See also (for Qt 6): +# https://doc.qt.io/qt-6/qtlinguist-cmake-qt-add-lrelease.html -#file(GLOB ts_files ABSOLUTE ${CMAKE_BINARY_DIR} "lang/*.ts") file(GLOB ts_files RELATIVE ${CMAKE_SOURCE_DIR} "lang/*.ts") -message(STATUS "Creating ${CMAKE_BINARY_DIR}/translations") -file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/translations") +#message(STATUS "vym: Creating ${CMAKE_BINARY_DIR}/translations") + +#file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/translations") set_source_files_properties(${ts_files} PROPERTIES OUTPUT_LOCATION ${CMAKE_BINARY_DIR}/translations) -#set_source_files_properties(${ts_files} PROPERTIES OUTPUT_LOCATION ${CMAKE_SOURCE_DIR}/translations) -#QT5_create_translation(qm_files ${CMAKE_SOURCE_DIR} ${ts_files}) -#QT5_create_translation(qm_files ${CMAKE_BINARY_DIR} ${ts_files}) -#QT5_create_translation(qm_files ${CMAKE_SOURCE_DIR}/src) +qt_add_translations(TARGETS vym + TS_FILE_DIR ${CMAKE_SOURCE_DIR}/lang # TS_OUTPUT_DIRECTORY in Qt 6.9 + RESOURCE_PREFIX ${CMAKE_BINARY_DIR}/translations + #QM_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/translations # Only in Qt 6.9 +) + +#qt_add_lrelease(target TS_FILES ${ts_files} QM_FILES_OUTPUT_VARIABLE ${CMAKE_BINARY_DIR}/translations) -QT6_add_translation(qm_files ${ts_files}) add_compile_definitions(CMAKE_SOURCE_DIR) -message(STATUS "CMAKE_BINARY_DIR: ${CMAKE_BINARY_DIR}") -message(STATUS "ts_files: ${ts_files}") -message(STATUS "qm_files: ${qm_files}") +message(STATUS "vym: CMAKE_BINARY_DIR: ${CMAKE_BINARY_DIR}") +message(STATUS "vym: ts_files: ${ts_files}") +message(STATUS "vym: qm_files: ${qm_files}") -# Collection of files for later installation -file(GLOB vymDemos RELATIVE ${CMAKE_SOURCE_DIR} "demos/*.*") -file(GLOB vymMacros RELATIVE ${CMAKE_SOURCE_DIR} "macros/*.vys") -file(GLOB vymScripts RELATIVE ${CMAKE_SOURCE_DIR} "demos/scripts/*.*") -message(STATUS " vymDemos: ${vymDemos}") -message(STATUS " vymMacros: ${vymMacros}") -message(STATUS "vymScripts: ${vymScripts}") -ADD_COMPILE_DEFINITIONS(VYMBASEDIR="${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}") +# On Unix-like systems, place app data under a dedicated subdir +# so runtime looks in .../share/vym for resources. +set(VYM_SHARE_SUBDIR "vym") +ADD_COMPILE_DEFINITIONS(VYMBASEDIR="${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}/${VYM_SHARE_SUBDIR}") -add_executable(vym ${VymSources} vym.qrc ${qm_files}) -target_link_libraries(vym ${QtLibraries}) + +# FIXME qm_files needed? +#add_executable(vym ${VymSources} vym.qrc ${qm_files}) +qt_add_executable(vym MACOSX_BUNDLE ${VymSources} vym.qrc ${qm_files} ) # FIXME Icon missing? + # FIXME Move add_executable to end? +target_link_libraries(vym PRIVATE ${QtLibraries}) + +#FIXME shoud translations/ really be in CMAKE_BINARY_DIR? Or better e.g. in Contents? +# +add_custom_target(make-translations-directory ALL + COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/translations) +add_dependencies(vym make-translations-directory) if(WIN32) set_target_properties(vym PROPERTIES WIN32_EXECUTABLE TRUE) @@ -164,58 +170,82 @@ else() endif() if(APPLE) - message(STATUS "Detected APPLE") + message(STATUS "vym: Detected APPLE") set(MACOSX_BUNDLE_EXECUTABLE_NAME ${PROJECT_NAME}) # Prepare Info.plist set_target_properties(${PROJECT_NAME} PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "${PROJECT_NAME}" - MACOSX_BUNDLE_BUNDLE_VERSION "${PROJECT_VERSION}" + MACOSX_BUNDLE_BUNDLE_VERSION "2.9.5xx" #"${PROJECT_VERSION}" # FIXME Version missing^ MACOSX_BUNDLE_SHORT_VERSION_STRING "${PROJECT_VERSION}" MACOSX_BUNDLE_GUI_IDENTIFIER "org.insilmaril.vym" - MACOSX_BUNDLE_ICON_FILE "vym.icns" + MACOSX_BUNDLE_ICON_FILE "icons/vym.icns" MACOSX_BUNDLE TRUE ) - set(vymIconMac ${CMAKE_CURRENT_SOURCE_DIR}/icons/vym.icns) - target_sources(vym PRIVATE ${vymIconMac}) - set_source_files_properties(${vymIconMac} PROPERTIES - MACOSX_PACKAGE_LOCATION "Resources") + # Root paths to be copied to vym.app bundle (adjust if needed) + set(DIRLIST demos doc exports flags icons macros styles) - target_sources(vym PRIVATE ${vymDemos}) - set_source_files_properties(${vymDemos} PROPERTIES - MACOSX_PACKAGE_LOCATION "Resources/demos" - ) - target_sources(vym PRIVATE ${vymScripts}) - set_source_files_properties(${vymScripts} PROPERTIES - MACOSX_PACKAGE_LOCATION "Resources/demos/scripts" - ) + foreach(CURRENT_DIR ${DIRLIST}) + set(SOURCE_DIR "${CMAKE_SOURCE_DIR}/${CURRENT_DIR}") + set(RESOURCE_DIR "${CMAKE_BINARY_DIR}/vym.app/Contents/Resources/${CURRENT_DIR}") - target_sources(vym PRIVATE ${vymMacros}) - set_source_files_properties(${vymMacros} PROPERTIES - MACOSX_PACKAGE_LOCATION "Resources/macros" - ) - #add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD - # COMMAND codesign -f -s - "${CMAKE_CURRENT_SOURC_DIR}/${PROJECT_NAME}.app" - # COMMENT "Signing the .app bundle" - #) + # --- 1. Add all subdirectories of SOURCE to the include path --- + + # Get all subdirectories recursively + file(GLOB_RECURSE SOURCE_SUBDIRS LIST_DIRECTORIES true RELATIVE ${SOURCE_DIR} "${SOURCE_DIR}/*") + + set(INCLUDE_DIRS "") + foreach(path ${SOURCE_SUBDIRS}) + if(IS_DIRECTORY "${SOURCE_DIR}/${path}") + list(APPEND INCLUDE_DIRS "${SOURCE_DIR}/${path}") + endif() + endforeach() + + # Add SOURCE itself too + list(APPEND INCLUDE_DIRS "${SOURCE_DIR}") + + # Add them to your target + target_include_directories(vym PRIVATE ${INCLUDE_DIRS}) + + message(STATUS "CURRENT_DIR=${CURRENT_DIR} includeDirs=${INCLUDE_DIRS}") + # --- 2. Copy SOURCE_DIR -> RESOURCE_DIR at build time --- + + add_custom_command( + TARGET vym POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + "${SOURCE_DIR}" + "${RESOURCE_DIR}" + COMMENT "Copying SOURCE directory ${SOURCE_DIR} to RESOURCE directory ${RESOURCE_DIR}..." + ) + endforeach() + + # Finally copy generated translations to bundle + add_custom_command( + TARGET vym POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + "${CMAKE_BINARY_DIR}/translations" + "${RESOURCE_DIR}" + COMMENT "Copying translations directory to RESOURCE directory ${RESOURCE_DIR}..." + ) endif() -add_custom_target(make-translations-directory ALL - COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/translations) -add_dependencies(vym make-translations-directory) +message(STATUS "vym: CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR}") +message(STATUS "vym: CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}") +message(STATUS "vym: CMAKE_INSTALL_DATAROOTDIR=${CMAKE_INSTALL_DATAROOTDIR}") + -install(DIRECTORY demos DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}) +install(DIRECTORY demos DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${VYM_SHARE_SUBDIR}) install(DIRECTORY doc DESTINATION ${CMAKE_INSTALL_DOCDIR} FILES_MATCHING PATTERN "*.pdf") install(FILES doc/vym.1.gz DESTINATION ${CMAKE_INSTALL_MANDIR}) install(FILES README.md LICENSE.txt DESTINATION ${CMAKE_INSTALL_DOCDIR}) -install(DIRECTORY exports flags icons macros ${CMAKE_BINARY_DIR}/translations scripts styles DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}) +install(DIRECTORY exports flags icons macros ${CMAKE_BINARY_DIR}/translations scripts styles DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${VYM_SHARE_SUBDIR}) if(UNIX) install(FILES icons/vym.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/apps) - # Disabling PR #109 for now: + # Disabling PR #109 for now: # FIXME # file(CREATE_LINK ../apps/vym.png application-x-vym.png SYMBOLIC) # install(FILES ${CMAKE_BINARY_DIR}/application-x-vym.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/48x48/mimetypes) install(FILES config/vym.xml DESTINATION ${CMAKE_INSTALL_PREFIX}/share/mime/packages) diff --git a/config/io.github.insilmaril.vym.appdata.xml b/config/io.github.insilmaril.vym.appdata.xml index 5d9a24e..2c217a2 100644 --- a/config/io.github.insilmaril.vym.appdata.xml +++ b/config/io.github.insilmaril.vym.appdata.xml @@ -25,7 +25,7 @@ Office https://github.com/insilmaril/vym/issues - http://www.insilmaril.de/vym/ + https://www.insilmaril.de/vym/ Uwe Drechsel @@ -38,7 +38,7 @@ vym - vym + vym/translations mild diff --git a/config/vym.desktop b/config/vym.desktop index 5427e45..3aa6d49 100644 --- a/config/vym.desktop +++ b/config/vym.desktop @@ -2,39 +2,116 @@ Type=Application Exec=vym %F Name=VYM - View Your Mind +Name[ar]=VYM - شاهد عقلك +Name[ca]=VYM - Visualitza la ment +Name[cs]=VYM - View Your Mind +Name[da]=VYM - View Your Mind Name[de]=VYM - View Your Mind +Name[el]=VYM - View Your Mind +Name[es]=VYM - Vea su mente +Name[fi]=VYM - ohjelma miellekarttojen (MindMap) tekemiseksi +Name[fr]=VYM - View Your Mind +Name[hu]=VYM - Gondolatmegjelenítő +Name[id]=VYM - Lihat Pikiran Anda +Name[it]=VYM - View Your Mind +Name[ja]=VYM - あなたの心を写す +Name[km]=VYM - View Your Mind +Name[ko]=VYM - 당신의 마음을 봅니다 +Name[lt]=VYM - Matykite savo mintis +Name[nb]=VYM - Vis tankene dine +Name[nl]=VYM - View Your Mind +Name[pa]=VYM - ਵਿਊ ਯੂਅਰ ਮਾਈਡ +Name[pl]=VYM - View Your Mind +Name[pt]=VYM - View Your Mind +Name[pt_BR]=VYM - View Your Mind (Veja Sua Mente) +Name[ro]=VYM - View Your Mind +Name[ru]=VYM — загляни в себя +Name[sk]=VYM - View Your Mind +Name[th]=VYM - ผังความคิด +Name[tr]=VYM - Belleğini Göster +Name[uk]=VYM - Перегляд вашого розуму +Name[wa]=VYM - View Your Mind +Name[zh_CN]=VYM - 绘制你的思维 Name[zh_TW]=心智檢視 GenericName=Planning and Brainstorming Tool +GenericName[ar]=أداة التخطيط وإدارة الأفكار +GenericName[ca]=Eina de planificació i pluja d'idees +GenericName[cs]=Plánovací nástroj +GenericName[da]=Planlægnings- og brainstormværktøj +GenericName[de]=Planungs- und Brainstorming-Tool +GenericName[el]=Σχεδιαστικό και Brainstorming Εργαλείο +GenericName[es]=Herramienta para la planificación y lluvia de ideas (brainstorming) +GenericName[fi]=Suunnittelu- ja aivoriihityökalu +GenericName[fr]=Outil de Planning et de Brainstorming +GenericName[gl]=Ferramenta para a planificación e brainstorming +GenericName[hu]=Tervező- és ötletgyűjtési eszköz +GenericName[id]=Perkakas perencanaan dan brainstorming +GenericName[it]=Strumento di pianificazione e brainstorming +GenericName[ja]=計画とブレーンストーミングツール +GenericName[km]=ឧបករណ៍​ធ្វើ​ផែនការ និង​បំផុស​គំនិត +GenericName[ko]=계획과 브레인스토밍 도구 +GenericName[lt]=Planavimo ir „minčių lietaus“ įrankis +GenericName[nb]=Planleggings- og idéverktøy +GenericName[nl]=Programma voor plannen en brainstormen +GenericName[pl]=Planowanie i burze mózgów +GenericName[pt]=Ferramenta de Planeamento e Tempestades de Ideias +GenericName[pt_BR]=Ferramenta de planejamento e brainstorming +GenericName[ro]=Unealtă de planificare și lucru în comun +GenericName[ru]=Средство для планирования и проведения "мозгового штурма" +GenericName[sk]=Nástroj plánovania a nápadov +GenericName[th]=เครื่องมือด้านการวางแผนและระดมสมอง +GenericName[uk]=Засіб планування і занотовування ідей +GenericName[wa]=Usteye di planifiaedje eyet d' brainstorming +GenericName[zh_CN]=规划及头脑风暴工具 +GenericName[zh_TW]=規劃與腦力激盪工具 Icon=vym MimeType=application/x-vym; Comment=Planning and brainstorming Comment[af]=View Your Mind (Besigitig jou verstand) -Comment[sq]=View Your Mind (Shfaq Mendjen Tënde) +Comment[ar]=التخطيط وإدارة الأفكار Comment[ast]=View Your Mind (Ve la to miente) Comment[bn]=View Your Mind (আপনার উদ্দেশ্য প্রদর্শন করুন) Comment[bs]=View Your Mind (Pogledajte svoje misli) -Comment[ca@valencia]=View Your Mind (Visualitzeu la vostra ment) Comment[ca]=View Your Mind (Visualitzeu la vostra ment) -Comment[zh_CN]=View Your Mind (浏览您的思维) +Comment[ca@valencia]=View Your Mind (Visualitzeu la vostra ment) +Comment[cs]=Plánování a brainstorming Comment[da]=View Your Mind (Vis dit sind) +Comment[de]=Planungs- und Brainstorming-Tool +Comment[el]=Σχεδιασμός και Brainstorming +Comment[es]=View Your Mind (Vea su mente) Comment[et]=View Your Mind (Vaata oma mõtteid) Comment[fi]=View Your Mind (Näytä mielesi) Comment[fr]=View Your Mind (Cartographier vos idées) Comment[gl]=View Your Mind (Vexa a súa mente) +Comment[hu]=Tervezés és ötletelés +Comment[id]=Perencanaan dan brainstorming +Comment[it]=Strumento di pianificazione e brainstorming +Comment[ja]=計画とブレーンストーミング +Comment[km]=កា​រក​សាង​ផែនការ និង​បំផុស​គំនិត +Comment[ko]=계획 및 브레인스토밍 Comment[ky]=View Your Mind (Акылыңды иштетип көр) +Comment[lt]=Planavimas ir „minčių lietus“ +Comment[nb]=Planleggings- og idéverktøy +Comment[nl]=Plannen en brainstormen Comment[oc]=View Your Mind (Cartografiar vòstras idèas) Comment[pl]=View Your Mind (Uzewnętrznia myśli) +Comment[pt_BR]=Planejamento e brainstorming Comment[ro]=View Your Mind (Hărți mentale) Comment[ru]=View Your Mind (Просмотр ваших мыслей) +Comment[sk]=Plánovanie a nápady Comment[sl]=View Your Mind (Oglejte si svoje misli) -Comment[es]=View Your Mind (Vea su mente) +Comment[sq]=View Your Mind (Shfaq Mendjen Tënde) +Comment[uk]=Засіб планування і занотовування ідей Comment[vi]=View Your Mind (Xem tư duy cá»§a bạn) +Comment[wa]=Planifiaedje eyet brainstorming +Comment[zh_CN]=View Your Mind (浏览您的思维) Comment[zh_TW]=VYM 腦力激盪工具 X-AppInstall-Package=vym X-AppInstall-Popcon=430 X-AppInstall-Section=universe X-Ubuntu-Gettext-Domain=app-install-data -Categories=Qt;KDE;Office; +Categories=Qt;KDE;Office;ProjectManagement; Keywords=mindmap;taskmanager;brainstorming; + diff --git a/forms/url-dialog.ui b/forms/url-dialog.ui new file mode 100644 index 0000000..5222fc0 --- /dev/null +++ b/forms/url-dialog.ui @@ -0,0 +1,101 @@ + + + UrlDialog + + + + 0 + 0 + 736 + 168 + + + + Dialog + + + + + + + + Url: + + + + + + + + + + Text: + + + + + + + + + + Qt::Orientation::Horizontal + + + QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok + + + + + + + Qt::Orientation::Vertical + + + + 20 + 40 + + + + + + + + + + + + buttonBox + accepted() + UrlDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + UrlDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/lang/vym.cs_CZ.ts b/lang/vym_cs_CZ.ts similarity index 77% rename from lang/vym.cs_CZ.ts rename to lang/vym_cs_CZ.ts index 2f75743..c2b6f8e 100644 --- a/lang/vym.cs_CZ.ts +++ b/lang/vym_cs_CZ.ts @@ -4,7 +4,7 @@ AboutDialog - + Ok Ok Button OK @@ -49,6 +49,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -60,6 +79,26 @@ Zavřít + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Nahrát obrázek pozadí + + BranchPropertyEditor @@ -155,7 +194,7 @@ Šířka dělicí čáry - + Property Editor Window caption Editor vlastností @@ -165,7 +204,7 @@ Úkol - + %1 days ago task related times @@ -184,7 +223,19 @@ - + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + + + Name Branchprop window: Attribute name @@ -205,7 +256,13 @@ ConfluenceAgent - + + + Update existing confluence page + + + + @@ -538,22 +595,29 @@ ve svém systému povolit! Autor: + + FindControlsWidget + + + Find: + FindControlsWidget + Hledat: + + FindWidget - Find: FindWidget - Hledat: + Hledat: HeadingEditor - Heading Editor Name of editor shown as window title - Editor popisů + Editor popisů @@ -571,7 +635,7 @@ ve svém systému povolit! Zpět - + Comment Table with actions Poznámka @@ -585,19 +649,19 @@ ve svém systému povolit! Poznámka - + Action Table with actions Činnost - + Undo action Table with actions Krok zpět - + Current state Current bar in history hwindow Nynější stav @@ -606,12 +670,14 @@ ve svém systému povolit! JiraAgent - + + Warning Varování - + + Authentication problem when contacting JIRA @@ -631,11 +697,21 @@ ve svém systému povolit! Odstranit - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -678,49 +754,47 @@ ve svém systému povolit! Main - + Add Přidat - + Test ZkouÅ¡ka - + &View &Pohled - + Add branch (insert) Edit menu Přidat novou větev - + Allow Povolit - Discard changes - Zahodit změny + Zahodit změny - Couldn't save - Nepodařilo se uložit + Nepodařilo se uložit - + Use hide flags Settings action Používat během vyvádění příznak "Skrýt" - + Select branch after adding it Settings action Vybrat větev po jejím přidání @@ -732,142 +806,139 @@ ve svém systému povolit! Nastavit program pro otevírání vnějších odkazů - + Delete vym link Edit menu Smazat spojení VYMu - + Exclusive flags Settings action Výhradní příznaky - Set &Background Color - Nastavit barvu &pozadí + Nastavit barvu &pozadí - + Autosave time Settings action Čas automatického ukládání - Set &Background image - Nastavit &obrázek pozadí + Nastavit &obrázek pozadí - + Scroll branch Edit menu Svinout větev - + Linkstyle Line Styl spojení čára - + Script Editor ScriptEditor Editor skriptů - + VYM -Information: Informace VYMu: - + Linkstyle Curve Styl spojení křivka - + Color &branch Edit menu Obarvit vě&tev - + Add branch as child Edit menu Přidat novou větev jako vedlejší větev - + Hide link if object is not selected Branch attribute Skrýt spojení, není-li vybrán předmět - + &Print &Tisk - + Do not allow Nepovolit - + Main window Shortcut scope Hlavní okno - + Open linked map Edit menu Otevřít spojenou mapu - + About VYM Help action O programu VYM - Select existing heading Settings action - Vybrat stávající popis + Vybrat stávající popis - + Set author for new maps (used in lockfile) Zadat autora nových map (k použití v uzamykacím souboru) - + &Open... File menu &Otevřít... - + The map %1 has been modified but not saved yet. Do you want to Mapa %1 byla změněna, ale jeÅ¡tě nebyla uložena. Chcete - + Link to another vym map Odkaz na jinou mapu programu VYM - + Animation Settings action Pohyblivé obrázky - + Open VYM Documentation (pdf) Help action Otevřít dokumentaci k VYM (pdf) @@ -879,95 +950,96 @@ ale jeÅ¡tě nebyla uložena. Chcete &Nápověda - + Autosave Settings action Automaticky uložit - + F&ormat Format menu F&ormát - - - - + + + Cancel ZruÅ¡it - + Create Vytvořit - + Use modifier to draw xLinks Mode modifier Použít upravovač pro založení xLinks - + Critcal error Vážná chyba - Images - Obrázky + Obrázky - - + + Import Importovat - + Import File menu Importovat - + Export File menu Exportovat - + Remove Context menu name Odstranit - - + + The file %1 exists already. Do you want to Soubor %1 již existuje. Chcete jej přepsat? - + Open URL Edit menu Otevřít adresu (URL) - - + Delete Selection Edit menu Smazat výběr - - + + + + + + @@ -975,250 +1047,246 @@ Chcete jej přepsat? - - - + (still experimental) (stále pokusné) - Couldn't find configuration for export to LibreOffice - Nepodařilo se najít žádná nastavení pro export do programu LibreOffice + Nepodařilo se najít žádná nastavení pro export do programu LibreOffice - + Open anyway Přesto otevřít - - + + + Couldn't find a viewer to open %1. Nepodařilo se nalézt žádný program pro otevření %1. - + Set number of undo levels Settings action Nastavit počet kroků zpět - Properties - Vlastnosti + Vlastnosti - + Thank you for enabling downloads! Poděkování za povolení stahování! - + Move branch down Edit menu Posunout větev dolů - - + + Set application to open PDF files Nastavit program pro otevírání souborů PDF - Repeat last export (%1) - Zopakovat poslední export (%1) + Zopakovat poslední export (%1) - - - - - + + + - + + + Critical Error Vážná chyba - + Save map as Uložit mapu jako - + About QT Help action O Qt - - Export to - Exportovat jako + Exportovat jako - + Couldn't open map %1 Mapu %1 se nepodařilo otevřít - Open URL in new tab Edit menu - Otevřít adresy (URL) v nové kartě + Otevřít adresy (URL) v nové kartě - + (readonly) (pouze pro čtení) - + Use heading for URL Edit menu Převzít popis jako adresu (URL) - + &Restore last session Edit menu &Obnovit poslední sezení - - + + + Please use Settings-> Použijte, prosím, nastavení -> - + Tasks Context menu Úkoly - + Load vym map Nahrát mapu VYMu - + + &Paste Edit menu &Vložit - + Spreadsheet Filedialog Tabulkový dokument - + &Redo Edit menu &Znovu - + Import: Replace selection with vym map Import: Nahradit výběr mapou - + Couldn't find the documentation %1 in: %2 Dokumentaci %1 se v: %2 nepodařilo najít - + Add map (insert) Edit menu Vložit mapu (přidat do výběru) - + Save image Context action Uložit obrázek - + Number of seconds before autosave: Počet sekund před automatickým uložením: - + Please allow vym to download release notes! Povolte, prosím, VYMu přístup k poznámkám o vydání! - + Set application to open pdf files Settings action Nastavit program pro otevírání souborů PDF - + + &Copy Edit menu &Kopírovat - + Hide in exports Edit menu Neukazovat v exportu - + + Cu&t Edit menu Vyj&mout - + &Save... File menu &Uložit... - Export as CSV - Exportovat jako CSV + Exportovat jako CSV - + Number of parents shown in find results: Počet viditelných rodičovských větví v okně s výsledky hledání: - + Import: Add vym map to selection Importo: Přidat mapu k výběru - + Antialiasing View action Vyhlazování - - + + Add branch above Edit menu Přidat novou větev nahoře - + This map does not exist: %1 Do you want to create a new one? @@ -1227,8 +1295,8 @@ Do you want to create a new one? Chcete vytvořit novou? - - + + Couldn't save %1, because of existing lockfile: @@ -1239,52 +1307,51 @@ protože se nepodařilo vytvořit uzamykací soubor: %2 - Save modified map before closing it - Uložit upravenou mapu před jejím zavřením + Uložit upravenou mapu před jejím zavřením - + Set path for macros Settings action Nastavit cestu pro makra - + Set &Link Color Nastavit barvu &spojení - + Zoom out View action Oddálit - + Open VYM example maps Help action Otevřít příkladové mapy programu VYM - + reset Zoom View action Žádné zvětÅ¡ení - + Update information Informace o aktualizaci - + Follow XLink Context menu name Sledovat xLink - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -1294,277 +1361,270 @@ při ukončení práce s programem VYM vést ke zmatení. Chcete - - + + Add branch below Edit menu Přidat novou větev dole - + Set URL to a local file Nastavit adresu (URL) k místnímu souboru - + Pic&k color Edit menu Pře&vzít barvu - + Linkstyle Thick Line Styl spojení silná čára - + Info Standardflag Informace - Add attribute - Přidat vlastnost + Přidat vlastnost - + + &Undo Edit menu &Zpět - + Settings have been changed. The next map opened will have "%1" undo/redo levels Nastavení byla změněna. Následující otevřená mapa bude mít "%1" kroků zpět/znovu - Enter URL: - Nová adresa (URL): + Nová adresa (URL): - + Open all URLs in subtree Edit menu Otevřít vÅ¡echny adresy (URL) ve vedlejším stromu - + Zoom in View action Přiblížit - + Firefox Bookmarks Import filters Záložky Firefoxu - + Overwrite Přepsat - + Save &As... File menu Uložit &jako... - Saved %1 - %1 uloženo + %1 uloženo - + Settings Nastavení - + Move branch up Edit menu Posunout větev nahoru - + Number of parents shown for a task: Počet rodičovských větví ukázaný pro úkol: - - + + Set application to open an URL Nastavit program pro otevírání adres (URL) - + Edit XLink Context menu name Upravit xLink - + Save selection Edit menu Uložit výběr - + Load vym example map Otevřít příkladovou mapu programu VYM - Follow XLink Context menu - Sledovat xLink + Sledovat xLink - - - - - + + + + + - - - + + + Warning Varování - + Open all vym links in subtree Edit menu Otevřít vÅ¡echny odkazy na mapy VYMu ve vedlejším stromu - + Please allow vym to check for updates! Povolte, prosím, VYMu zjišťovat dostupnost aktualizací! - + &Close Map File menu &Zavřít mapu - + &Use color of heading for link Branch attribute &Použít barvu popisu pro spojení - + Open Recent File menu Otevřít nedávný - + Set &Selection Color Nastavit barvu &výběru - + Write backup file on save Settings action Zapsat při ukládání zálohovací soubor - Set application to zip/unzip files Settings action - Nastavit program pro rozbalení/zabalení souborů + Nastavit program pro rozbalení/zabalení souborů - + Couldn't set sleep time to %1. Nepodařilo se nastavit čas spánku na %1. - &Map Menu for file actions - &Mapa + &Mapa - + Linkstyle Thick Curve Styl spojení silná křivka - + Add map (replace) Edit menu Vložit mapu (nahradit výběr) - + E&xit File menu &Ukončit - + Number of undo/redo levels: Počet kroků zpět/znovu: - + Color sub&tree Edit menu Obarvit vedlejší &strom - Main window Shortcut group - Hlavní okno + Hlavní okno - Map Editors Shortcut group - Editory mapy + Editory mapy - + Text Editors Shortcut group Editory textu - + Search results list FindResultWidget Seznam s výsledky hledání - + Property Editor PropertyEditor Editor vlastností - + History window HistoryWidget Okno s historií - + Task list TaskEditor Seznam úkolů - + &New map File menu &Nová mapa @@ -1576,7 +1636,7 @@ Chcete &Kopírovat do nové mapy - + Webpage (HTML)... File export menu Stránka (HTML)... @@ -1618,19 +1678,19 @@ Chcete SVG%1 - + E&dit Edit menu Ú&pravy - + Add mapcenter Canvas context menu Přidat střed mapy - + &Detach Context menu &Odpojit @@ -1642,55 +1702,54 @@ Chcete Odpojit větev a použít jako střed mapy - + Sort children Edit menu Setřídit potomky - + Sort children backwards Edit menu Setřídit potomky pozpátku - Unscroll children Edit menu - Roztáhnout vedlejší větve + Roztáhnout vedlejší větve - + Grow selection Edit menu ZvětÅ¡it výběr - + Shrink selection Edit menu ZmenÅ¡it výběr - + Reset selection size Edit menu Resetovat velikost výběru - + Collapse one level Edit menu Sbalit jednu úroveň - + Collapse unselected levels Edit menu Sbalit nevybrané úrovně - + Expand all branches Edit menu Rozbalit vÅ¡echny větve @@ -1702,43 +1761,40 @@ Chcete Rozbalit jednu úroveň - References Context menu Shortcuts - Klávesové zkratky + Klávesové zkratky - Open all URLs in subtree (including scrolled branches) Edit menu - Otevřít vÅ¡echny adresy (URL) ve vedlejším stromu + Otevřít vÅ¡echny adresy (URL) ve vedlejším stromu - + Extract URLs from note Edit menu Vytáhnout adresy (URL) z poznámky - + Edit URL... Edit menu Upravit adresy (URL)... - + Edit local URL... Edit menu Upravit místní adresu (URL)... - vymlinks - linking maps Shortcuts - Odkazy VYMu - spojení mezi mapami + Odkazy VYMu - spojení mezi mapami - + Open linked map in background tab Edit menu Otevřít spojenou mapu v kartě na pozadí @@ -1750,61 +1806,59 @@ Chcete Upravit spojení VYMu... - Exports Shortcuts - Export + Export - Tasks Shortcuts - Úkoly + Úkoly - + Toggle task Edit menu Přepnout úkol - + Cycle task status Edit menu Přepínat stav úkolu - + Reset sleep Task sleep Nastavit spánek znovu - - - - - + + + + + Sleep %1 days Task sleep Spát %1 dny(ů) - + Sleep %1 day Task sleep Spát %1 den - - + + Sleep %1 weeks Task sleep Spát %1 týdny(ů) - + Removing parts of a map Shortcuts Odstranění částí mapy @@ -1816,13 +1870,13 @@ Chcete Odstranit pouze větev a potomky zachovat - + Remove children Edit menu Odstranit vedlejší větve - + Various Shortcuts Různé @@ -1834,37 +1888,36 @@ Chcete Přidat časové razítko - + Map properties... Edit menu Vlastnosti mapy... - Property window Dialog to edit properties of selection - Okno vlastností + Okno vlastností - + Selections Shortcuts Výběr - + Select Select menu Vybrat - + Toggle target... Edit menu Přepnout cíl... - + Goto target... Edit menu Jít na cíl... @@ -1876,116 +1929,114 @@ Chcete Přesunout na cíl... - + Select previous Edit menu Vybrat předchozí - + Select next Edit menu Vybrat další - + Unselect all Edit menu Nevybrat nic - + Search functions Shortcuts Hledat funkce - + Find... Edit menu Najít... - + Find duplicate URLs Edit menu Najít duplicitní adresy (URL) - + Formatting Shortcuts Formátování - + Select default font Branch attribute Vybrat výchozí písmo - + Toolbars Toolbars overview in view menu Nástrojové liÅ¡ty - Views Shortcuts - Pohledy + Pohledy - + Rotate counterclockwise View action Otočit proti směru hodinových ručiček - Rotate rclockwise View action - Otočit po směru hodinových ručiček + Otočit po směru hodinových ručiček - + Center on selection View action Zaměřit na výběr - + Fit view to selection View action - + Note editor View action Editor poznámek - + Heading editor View action Editor popisů - + Tree editor View action Editor stromu - + Task editor View action Editor úkolů - + Slide editor View action Editor snímků @@ -1997,49 +2048,48 @@ Chcete Editor skriptů - History Window View action - Okno s historií + Okno s historií - + Smooth pixmap transformations View action Jemné transformace pixmapy - + Next Map View action Další mapa - + Previous Map View action Předchozí mapa - + Next slide View action Další snímek - + Previous slide View action Předchozí snímek - + Modifier modes Shortcuts Režimy modifikátorů - + @@ -2052,7 +2102,7 @@ Chcete Poznámka - + Map target SystemFlag Cíl mapy @@ -2082,19 +2132,19 @@ Chcete Neukazovat předměty v exportovaných mapách - + Set path for new maps Settings action - + Standard Flags toolbar Standard Flag Toolbar Nástrojový pruh s obvyklými příznaky - + This won't work! Standardflag To nepůjde! @@ -2148,7 +2198,7 @@ Chcete Ach ne! - + Time critical Standardflag Časově kritické @@ -2160,7 +2210,7 @@ Chcete Zavolat... - + Idea! Standardflag Nápad! @@ -2202,25 +2252,25 @@ Chcete Nelíbí se mi to - + Rose Standardflag Růže - + I just love... Standardflag JednoduÅ¡e miluju... - + Surprise! Standardflag Překvapení! - + Dangerous Standardflag Nebezpečné @@ -2232,7 +2282,7 @@ Chcete To by mohlo pomoci - + Check for release notes and updates Settings action Dívat se po poznámkách k vydání a zjišťovat dostupnost aktualizací @@ -2244,7 +2294,7 @@ Chcete Zadat autora nových map - + Number of visible parents in task editor Settings action Počet viditelných rodičovských větví v editoru úkolů @@ -2262,7 +2312,7 @@ Chcete Automatické rozvržení - + Download and show release notes Help action Stáhnout a ukázat poznámky k vydání @@ -2286,37 +2336,37 @@ Chcete Informace k hledání chyb - + References (URLs, vymLinks, ...) Context menu name Odkazy (adresy, spojení VYMu, ...) - + XLinks Menu for file actions Křížové odkazy - + File actions toolbar Toolbar for file actions Nástrojový pruh souborových činností - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard Nástrojový pruh pro Zpět/Znovu a schránku - + Edit actions toolbar Toolbar name Nástrojový pruh činností úprav - + Selection toolbar Toolbar name Nástrojový pruh pro výběr @@ -2328,31 +2378,31 @@ Chcete Nástrojový pruh pro adresy (URL) a odkazy VYMu - + Colors toolbar Colors toolbar name Nástrojový pruh pro barvy - + Editors toolbar Editor Toolbar name Nástrojový pruh editory - + Modifier modes toolbar Modifier Toolbar name Nástrojový pruh pro režimy upravovače - + Loading: %1 Progress dialog while loading maps Nahrává se %1 - + Loaded %1 @@ -2363,12 +2413,7 @@ Chcete nebo - - Saving %1... - - - - + HTML Filedialog HTML @@ -2392,7 +2437,12 @@ Chcete Obrázky - + + Enter Jira query: + + + + %1 items on map Info about map @@ -2430,31 +2480,60 @@ Chcete Křížové odkazy - + + Load images + + + + Color of selection box Mainwindow - + + Set application to open external links + Nastavit program pro otevírání vnějších odkazů + + + unknown user default name for map author in settings Neznámý uživatel - + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + History for %1 Window Caption Historie pro %1 - Export in last used format (%1) to: %2 status tip - Exportovat v naposledy použitém formátu (%1) do: %2 + Exportovat v naposledy použitém formátu (%1) do: %2 - + vym is up to date. MainWindow VYM je aktuální. @@ -2466,18 +2545,18 @@ Chcete Zjišťuji dostupnost aktualizací... - + Script output window - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -2494,43 +2573,31 @@ Chcete - - Add image... - Edit menu - - - - + Goto linked map... Edit menu - + Toggle Presentation mode View action - - Script output window - View action - - - - + Show keyboard macros Help action - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -2542,48 +2609,313 @@ Chcete - + Load vym script - + Save as default map File menu - - Get page name from Confluence - Edit menu - - - - All Filedialog - VÅ¡e + VÅ¡e - + URL SystemFlag - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - + + &Map + Map menu + &Mapa + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + + File actions + MainWindow shortcut groups + + + + + &Clear + Clear recent files menu + + + + + Exports + MainWindow shortcut groups + Export + + + + Repeat last export + + + + + Map properties + + + + + Exit + MainWindow shortcut groups + + + + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + Repeat last action + Edit menu + + + + + Add + MainWindow shortcut groups + Přidat + + + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + Odkazy VYMu - spojení mezi mapami + + + + Tasks + Shortcuts for tasks in MainWindow + Úkoly + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + Pohledy + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + Okno s historií + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + + Load user flag + + + + + Jira + SystemFlag + + + + Important Freemind flag @@ -2710,13 +3042,37 @@ Chcete Milé - + Confluence Credentials Settings action - + + Logfile settings + Settings action + + + + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Uspořádání + + + + Limited view toolbar + View Toolbar name + + + + Couldn't load default map: %1 @@ -2726,62 +3082,52 @@ vym will create an empty map now. - + + Untitled + Default name in FileSaveAs dialog + + + + Couldn't save %1, because file exists and cannot be changed. - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - - Get data from JIRA for subtree - Edit menu - - - - - (experimental) - - - - + Firefox Bookmarks File export menu Záložky Firefoxu - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + &Connect - + Connect Shortcuts @@ -2793,43 +3139,37 @@ because file exists and cannot be changed. - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply - Mode modifier - - - - + Use modifier to move branches without linking Mode modifier - + Use modifier to move view without selecting Mode modifier - + JIRA Credentials Settings action - + View toolbar View Toolbar name - + Firefox Bookmarks Záložky Firefoxu @@ -2839,58 +3179,64 @@ because file exists and cannot be changed. - - - No SSL support available for this build of vym + + + Open %1 map + + + + + Enter Url: - - Open Freemind map + + + No SSL support available for this build of vym - + Set as link to vym map - + Reset delta priority for visible tasks Reset delta - + Select color (Press Shift for more options) - + Saving the map failed: Couldn't rename map to %1 - + Couldn't save as default, failed to rename to %1 - + Dark theme Settings action - + Show scripting commands Help action - + Information @@ -2900,12 +3246,38 @@ Couldn't rename map to %1 - + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + Mapa + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + That's ok, though I would be happy to see many users working with vym and also on which platforms. @@ -2913,63 +3285,66 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope Editor mapy - + + Map Editors + Shortcut group + Editory mapy + + + Edit heading MapEditor Upravit popisek - + Print vym map MapEditor Vytisknout mapu - - %1 items selected - + + Warning + Varování NoteEditor - Note Editor Name of editor shown as window title - Editor poznámek + Editor poznámek QObject - + Export aborted. Export byl zruÅ¡en. - Couldn't remove target of old symbolic link %1 - Nepodařilo se odstranit cíl starého symbolického odkazu %1 + Nepodařilo se odstranit cíl starého symbolického odkazu %1 - - - - - + - - - + + + + + + Error Chyba @@ -2979,37 +3354,32 @@ Couldn't rename map to %1 Nepodařilo se najít stylový list %1 - + <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> <h3>Mapa je novější než VYM</h3><p>Mapa, kterou se právě pokoušíte nahrát, byla uložena za použití vymu %1. Verze tohoto vymu je %2. Pokud se po stisknutí tlačítka OK níže dostanete do potíží, aktualizace vymu by měla pomoci.</p> - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - - - Couldn't rename output to target of old symbolic link %1 - Nepodařilo se přejmenovat výstup na cíl starého symbolického odkazu %1 + Nepodařilo se přejmenovat výstup na cíl starého symbolického odkazu %1 - - - - + + + + - + - + + - - - + + + Critical Export Error Vážná chyba při vyvádění @@ -3029,7 +3399,7 @@ Couldn't rename map to %1 - + @@ -3049,9 +3419,8 @@ Couldn't rename map to %1 Nepodařilo se exportovat jako AO do %1 - Couldn't link from %1 to target of old symbolic link %2 - Nepodařilo se propojit %1 s cílem starého symbolického odkazu %2 + Nepodařilo se propojit %1 s cílem starého symbolického odkazu %2 @@ -3059,14 +3428,12 @@ Couldn't rename map to %1 Nepodařilo se exportovat jako CSV do %1 - Couldn't move existing file out of the way before saving. - Nepodařilo se přesunout stávající soubor pryč z cesty před uložením. + Nepodařilo se přesunout stávající soubor pryč z cesty před uložením. - Couldn't rename %1 back to %2 - Nepodařilo se přejmenovat %1 zpět na %2 + Nepodařilo se přejmenovat %1 zpět na %2 @@ -3074,18 +3441,22 @@ Couldn't rename map to %1 Nepodařilo se exportovat jako ASCII do %1 - + Could not create %1 Nepodařilo se vytvořit %1 - + + Images + Obrázky + + + Cancel ZruÅ¡it - - + %1 didn't exit normally %1 nebyl ukončen správně @@ -3108,38 +3479,67 @@ Couldn't rename map to %1 (stále pokusné) - + + Could not compress file %1 + + + + Couldn't read settings from "%1" Nepodařilo se přečíst nastavení z "%1" - - - - - - - - + + Note Editor + Name of editor shown as window title + Editor poznámek + + + + Heading Editor + Name of editor shown as window title + Editor popisů + + + + + + + + - - - - - - - + + + + + + Critical Error Vážná chyba - + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + + + + + Couldn't find tar tool to zip data. + + + + + Couldn't find tar tool to unzip data. + + + + Export as LibreOffice Impress presentation Exportotvat jako prezentaci LibreOffice Impress - + Couldn't find macros at %1. Macros::pathExists @@ -3156,13 +3556,13 @@ Couldn't rename map to %1 Zkouší se vytvořit adresář pro příznaky: - - + + Critical Zásadní - + Could not start %1 Nepodařilo se spustit %1 @@ -3177,18 +3577,18 @@ Couldn't rename map to %1 Exportovat jako CSV - + No objects in map! Žádné předměty v mapě! - + Overwrite Přepsat - + Could not write %1 Nepodařilo se zapsat %1 @@ -3199,18 +3599,35 @@ Couldn't rename map to %1 Varování - + Check "%1" in %2 Prověřte, prosím, "%1" v %2 - - + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + + + + + + + + zip didn't exit normally Zip nebyl ukončen správně + + + Couldn't start tool to decompress data! + + + + @@ -3230,12 +3647,11 @@ Couldn't rename map to %1 Nastavit adresář pro makra programu vym - Saved %1, but couldn't remove %2 - Uloženo %1, ale nepodařilo se odstranit %2 + Uloženo %1, ale nepodařilo se odstranit %2 - + Warning: Version Problem Varování: Potíže s verzí @@ -3263,7 +3679,7 @@ Couldn't rename map to %1 %2 - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3271,20 +3687,19 @@ Do you risk to overwrite its contents? Risknete přepsat jeho obsah? - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3300,33 +3715,21 @@ Risknete přepsat jeho obsah? - - Couldn't start %1 tool to decompress data! - - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3338,24 +3741,17 @@ Risknete přepsat jeho obsah? - - Export as AO report - - - - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Export as AO report - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3378,22 +3774,24 @@ The map could not be saved, please check if backup file is available or export a - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3414,22 +3812,21 @@ The map could not be saved, please check if backup file is available or export a Uložit - Cancel - ZruÅ¡it + ZruÅ¡it - + Save script Uložit skript - + Load script Nahrát skript - + Couldn't get model to save script into slide! Nepodařilo se získat model pro uložení skriptu do snímku! @@ -3443,18 +3840,17 @@ The map could not be saved, please check if backup file is available or export a Uložit do vybraného snímku - Overwrite - Přepsat + Přepsat - + Warning Varování - + Slide Mode in scriptEditor Snímek @@ -3466,12 +3862,11 @@ The map could not be saved, please check if backup file is available or export a Makro - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Soubor %1 + Soubor %1 již existuje. Chcete jej přepsat? @@ -3480,7 +3875,7 @@ Chcete jej přepsat? Nahrát znovu - + Script Mode in scriptEditor @@ -3492,12 +3887,18 @@ Chcete jej přepsat? - + + Script Editor + Shortcut scope + Editor skriptů + + + Macros saved to %1 - + Script saved to %1 @@ -3516,7 +3917,7 @@ Chcete jej přepsat? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3547,7 +3948,13 @@ Chcete jej přepsat? - + + Task Editor + Shortcut group + + + + Show only blocker tasks Filters in task Editor @@ -3556,7 +3963,7 @@ Chcete jej přepsat? TaskModel - + Prio TaskEditor Prio @@ -3613,27 +4020,25 @@ Chcete jej přepsat? TextEditor - Cu&t - Vyj&mout + Vyj&mout - + &Bold &Tučné - &Copy - &Kopírovat + &Kopírovat - + &Left &Vlevo - + &Redo &Znovu @@ -3648,104 +4053,101 @@ Chcete jej přepsat? &Upravit - + &Note Menubar &Poznámka - + &fixed font is default Používat písmo s &pevnou šířkou jako výchozí - + &Justify &Zarovnat do bloku - &Paste - &Vložit + &Vložit - + &Right &Vpravo - + Note Actions Činnosti poznámek - + Edit Actions Činnosti úprav - - + + Cancel ZruÅ¡it - + Note Editor Editor poznámek - + &Font hint Naznačení &písma - + C&enter &Na střed - + Subs&cript &Dolní index - &Color... - B&arva... + B&arva... - Export &As... (HTML) - Exportovat &jako... (HTML) + Exportovat &jako... (HTML) - + &Export... &Exportovat... - + &Import... &Importovat... - + F&ormat F&ormát - + &Print... &Tisk... - + Export &As...(ASCII) Exportovat &jako (ASCII) - + &Underline &Podtržení @@ -3755,39 +4157,91 @@ Chcete jej přepsat? &Kurzíva - + Set &variable font Zvolit písmo s p&roměnlivou šířkou - + Select and copy &all Vybrat a kopírovat &vÅ¡e - + Su&perscript &Horní index - + &Delete All &Smazat vÅ¡e - + Couldn't export note dialog 'save note as' Nepodařilo se exportovat poznámku - - + + Overwrite Přepsat - + + File actions + TextEditor shortcut groups + + + + + Edit actions + TextEditor shortcut groups + + + + + &Copy + Edit menu + &Kopírovat + + + + Cu&t + Edit menu + Vyj&mout + + + + &Paste + Edit menu + &Vložit + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + &Settings &Nastavení @@ -3797,61 +4251,110 @@ Chcete jej přepsat? Zvolit písmo s &pevnou šířkou - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file Exportovat poznámku do souboru - + Export Note to single file (ASCII) Exportovat poznámku do souboru jako ASCII - + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + + + + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Nahrát obrázek + + + &Richtext &Bohatý text - Ready Statusbar message - Připraven + Připraven - + No filename available for this note. Statusbar message Poznámka nemá žádný název souboru. - - - Texteditor Shortcuts - Editor textu + Editor textu - + Font hints toolbar in texteditor Rady pro písma - + Fonts toolbar in texteditor Písma - + Format toolbar in texteditor Formát - - + The file %1 exists already. Do you want to overwrite it? @@ -3861,28 +4364,16 @@ již existuje. Chcete jej přepsat? - + Print TextEditor Tisk - - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - TreeEditor - + Select upper object Tree Editor Vybrat horní předmět @@ -3897,160 +4388,169 @@ Chcete jej přepsat? VymModel - - - - + + + Critical Parse Error Vážná chyba při zpracování - Load background image - Nahrát obrázek pozadí + Nahrát obrázek pozadí - + Couldn't save QImage %1 in format %2 Nepodařilo se uložit obrázek %1 ve formátu %2 - + Critical Import Error Vážná chyba při zavádění - + Critical Export Error Vážná chyba při vyvádění - + Cannot create lockfile of map! It will be opened in readonly mode. Nepodařilo se vytvořit uzamykací soubor. Mapa bude otevřena jen pro čtení. - - + + Cancel ZruÅ¡it - + Ignore Nebrat v úvahu - - - + Images Obrázky - + Reload Nahrát znovu - + + Could not setup JiraAgent to retrieve data from Jira + + + + + + Export to + Exportovat jako + + + + (still experimental) (stále pokusné) - + Export XML to directory Exportovat XML do adresáře - Couldn't create temporary directory before save - Před uložením se nepodařilo vytvořit dočasný adresář + Před uložením se nepodařilo vytvořit dočasný adresář - Load image - Nahrát obrázek + Nahrát obrázek - + Couldn't create temporary directory before load Před nahráním se nepodařilo vytvořit dočasný adresář - + The file %1 exists already. Do you want to overwrite it? Soubor %1 již existuje. Chcete jej přepsat? - + %1 could not be renamed before saving %1 se nepodařilo přejmenovat před uložením - - + + Critical Error Vážná chyba - + Save Error Chyba při ukládání - + Warning VymModel Varování - + Save image Speichere Bild - + Choose directory structure to import Vybrat adresář pro import - + Critical Save Error Vážná chyba při ukládání - + Export as csv Exportovat jako CSV - + Autosave disabled during undo. Automatické ukládání zakázáno během kroku "Zpět". - + Couldn't save %1 Nepodařilo se uložit %1 - - + + + + + Critical Load Error Vážná chyba při nahrávání @@ -4062,17 +4562,17 @@ se nepodařilo přejmenovat před uložením - + unnamed nepojmenovaný - + Overwrite Přepsat - + The file of the map on disk has changed: %1 @@ -4085,87 +4585,142 @@ Do you want to reload that map with the new file? Chcete mapu nahrát znovu s novým souborem? - - + + + Warning Varování - + compressed (vym default) zapsat zkomprimovanou (výchozí pro vym) - + Export map as image Exportovat mapu jako obrázek - + Cannot find the directory %1 Nepodařilo se najít adresář %1 - + %1 could not be removed before saving %1 se nepodařilo odstranit před uložením - + Export map as XML Exportovat mapu jako XML - + Export map as SVG Exportovat mapu jako SVG - + Export map as PDF Exportovat mapu jako PDF - + unknown user Default for lockfiles of maps Neznámý uživatel - + unknown user default name for map author in settings Neznámý uživatel - - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Nepodařilo se uložit + + + + Compressing %1 + + + + + + + Saved %1 + + + + All Filedialog VÅ¡e - + Warning: Map already opended VymModel Varování: Mapa je již otevřena - + Note FindAll in VymModel Poznámka - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + New map New map - Nová mapa + Nová mapa - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -4183,18 +4738,18 @@ Pokud si jste jisti, že na mapě nikdo jiný již nepracuje, prosím, pouze sma Odstraněn soubor zámku pro %1 - + Couldn't remove lockfile for %1 Soubor zámku nelze odstranit %1 - + Contacting Jira... VymModel - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -4204,22 +4759,33 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - - Could not find Jira ticket pattern in %1 + + + Received Jira data. VymModel + + + VymModelWrapper - - Received Jira data. - VymModel + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + Critical Error + Vážná chyba + VymProcess @@ -4243,13 +4809,13 @@ Do you want to write the map VymView - + Tree Editor Title of dockable editor widget Editor stromu - + Slide Editor Title of dockable editor widget Editor snímků @@ -4301,40 +4867,5 @@ Do you want to write the map Close Zavřít - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.de.ts b/lang/vym_de.ts similarity index 78% rename from lang/vym.de.ts rename to lang/vym_de.ts index 16e188f..c0c5716 100644 --- a/lang/vym.de.ts +++ b/lang/vym_de.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog Mitwirkende @@ -48,6 +48,25 @@ Anwendung zum Offnen einer URL... + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + Log Einstellungen + + + + Logfiles + Log Datein + + + + Set path to logfile + Pfad zur Logdatei + + AttributeDialog @@ -63,6 +82,26 @@ Schlüssel hinzufügen + + BackgroundDialog + + + Set background + Dialog to set background color or image + Hintergrund Einstellungen + + + + Map backgroundcolor + Map background dialog + Hintergrundfarbe + + + + Load background image + Hintergrundbild laden + + BranchPropertyEditor @@ -179,13 +218,13 @@ - - + Property Editor Window caption Eigenschaften - + Name Branchprop window: Attribute name Name @@ -203,7 +242,7 @@ Typ - + %1 days ago task related times @@ -221,11 +260,29 @@ task related times Aufgabe ist aktiv + + + Frame border color + Branch property dialog + Rahmenfarbe + + + + Color of frame background + Branch property dialog + Hintergrundfarbe Rahmen + ConfluenceAgent - + + + Update existing confluence page + Existierende Confluence Seite updaten + + + @@ -642,22 +699,29 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Schliessen + + FindControlsWidget + + + Find: + FindControlsWidget + Suchen nach: + + FindWidget - Find: FindWidget - Suchen nach: + Suchen nach: HeadingEditor - Heading Editor Name of editor shown as window title - Editor Zweigbeschriftungen + Editor Zweigbeschriftungen @@ -675,7 +739,7 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Rückgängig - + Current state Current bar in history hwindow Aktueller Zustand @@ -689,19 +753,19 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Zeit - + Action Table with actions Befehl - + Comment Table with actions Bemerkungen - + Undo action Table with actions Rückgängig @@ -710,12 +774,14 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! JiraAgent - + + Warning Warnung - + + Authentication problem when contacting JIRA Authentifizierungsproblem beim Versuch JIRA zu kontaktieren @@ -739,8 +805,14 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Entfernen + + Email: + Email: + + + Username: - Benutzername: + Benutzername: Password: @@ -756,7 +828,7 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! JIRA Einstellungen - + Jira settings Jira settings dialog title Jira Einstellungen @@ -803,7 +875,7 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Main - + Linkstyle Line Verbindungsstil Linie @@ -813,87 +885,82 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Verbindungsstil gefülltes Polygon - + Set &Link Color &Farbe der Verbindungen - Set &Background Color - &Hintergrundfarbe + &Hintergrundfarbe - + &View &Ansicht - - + + Set application to open an URL URLs öffnen mit... - + Overwrite Überschreiben - - - - + + + Cancel Abbrechen - Couldn't save - Datei konnte nicht gespeichert werden + Datei konnte nicht gespeichert werden - Save modified map before closing it - Speichern und Map schliessen + Speichern und Map schliessen - Discard changes - Änderungen verwerfen + Änderungen verwerfen - - - - - + + + - + + + Critical Error Kritischer Fehler - + Open anyway Trotzdem öffnen - + Critcal error Kritischer Fehler - + Create Anlegen - + VYM -Information: vym-Information: - + Load vym map Lade vym Map @@ -908,12 +975,12 @@ Bitte prüfen Sie, ob Sie das wirklich erlauben wollen! Import: Ersetze Auswahl mit Map - + Add Hinzufügen - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -923,7 +990,7 @@ zu bearbeiten kann beim Beenden von vym zu Verwirrung führen. Wollen Sie - + This map does not exist: %1 Do you want to create a new one? @@ -932,31 +999,30 @@ Do you want to create a new one? Wollen Sie eine neue anlegen? - Saved %1 - %1 gespeichert + %1 gespeichert - - + + The file %1 exists already. Do you want to Die Datei %1 gibt es bereits. Wollen Sie sie überschreiben? - + The map %1 has been modified but not saved yet. Do you want to Die Map %1 wurde geändert, aber noch nicht gespeichert. Wollen Sie - + Couldn't open map %1 Konnte die Map %1 nicht öffnen - + Take care! Standardflag Vorsicht! @@ -986,19 +1052,37 @@ aber noch nicht gespeichert. Wollen Sie Schlecht - + Time critical Standardflag Zeitkritisch - + Idea! Standardflag Idee! - + + Windows + Mainwindow view shortcut groups + Fenster + + + + Script output + View action + Skript Ausgabe + + + + History window + View action + Verlaufsfenster + + + Important Standardflag Wichtig @@ -1034,15 +1118,19 @@ aber noch nicht gespeichert. Wollen Sie Das könnte helfen - - + + Import Importieren - - + + + + + + @@ -1050,146 +1138,141 @@ aber noch nicht gespeichert. Wollen Sie - - - + (still experimental) (noch experimentelle Funktion) - + &Print &Drucken - - Export to - Exportieren als + Exportieren als - - - - - + + + + + - - - + + + Warning Warnung - - + + + Couldn't find a viewer to open %1. Konnte kein Programm zum Öffnen von %1 finden. - - + + + Please use Settings-> Bitte setzen sie einen Pfad in Einstellungen-> - + Couldn't set sleep time to %1. Konnte Wiedervorlage nicht setzen auf %1 - - + + Set application to open PDF files PDFs öffnen mit - + Oh no! Standardflag Oh nein! - + Search results list FindResultWidget Liste der Suchergebnisse - + File actions toolbar Toolbar for file actions Datei Werkzeugleiste - + Edit actions toolbar Toolbar name Editieren Werkzeugleiste - + Property Editor PropertyEditor Eigenschaften - + History window HistoryWidget Verlaufsfenster - Main window Shortcut group - Hauptfenster + Hauptfenster - Map Editors Shortcut group - Map Editor + Map Editor - + Text Editors Shortcut group Text Editor - + Script output window Script Ausgabe - &Map Menu for file actions - &Map + &Map - + &Restore last session Edit menu &Letzte Session wiederherstellen - + Save as default map File menu Datei als standard map speichern - + Import Dir... Import Filters Verzeichnis importieren - + Webpage (HTML)... File export menu Webseite (HTML) @@ -1224,12 +1307,11 @@ aber noch nicht gespeichert. Wollen Sie CSV... - Add attribute - Attribut hinzufügen + Attribut hinzufügen - + &Detach Context menu Loslösen @@ -1241,13 +1323,54 @@ aber noch nicht gespeichert. Wollen Sie Zweig loslösen und als Zentrum verwenden - + Sort children backwards Edit menu Unterzweige aufsteigend sortieren - + + Follow reference + Context menu + Referenz folgen + + + + Set &Background color and image + Hintergrundfarbe und -bild setzen + + + + Views + Mainwindow view shortcut groups + Ansichten + + + + Toggle mode to temporary hide parts + View action + Teile temporär verbergen + + + + Rotate clockwise + View action + Rotieren im Uhrzeigersinn + + + + Rotate view to selection + View action + Ansicht rotieren zu Auswahl + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + Baumeditor aus- und einklappen + + + Expand all branches Edit menu Alle Zweige ausklappen @@ -1259,49 +1382,48 @@ aber noch nicht gespeichert. Wollen Sie Ausklappen - + Collapse one level Edit menu Einklappen - + Collapse unselected levels Edit menu Nicht selektierte Ebenen einklappen - Unscroll children Edit menu - Unterzweige ausrollen + Unterzweige ausrollen - + Grow selection Edit menu Auswahl vergössern - + Shrink selection Edit menu Auswahl verkleinern - + Reset selection size Edit menu Grösse der Auswahl zurücksetzen - + Toggle target... Edit menu Ziel einschalten/ausschalten - + Goto target... Edit menu Gehe zu Ziel @@ -1313,121 +1435,119 @@ aber noch nicht gespeichert. Wollen Sie Verschiebe zu Ziel - + Find duplicate URLs Edit menu Doppelte URLs finden - Open all URLs in subtree (including scrolled branches) Edit menu - Alle URLs im Unterbaum öffnen + Alle URLs im Unterbaum öffnen - + Extract URLs from note Edit menu Extrahiere URLs aus Notiz - + Add timestamp Edit menu Zeitstempel hinzufügen - + Remove children Edit menu Unterzweige entfernen - + Center on selection View action Zeige Auswahl - + Editors toolbar Editor Toolbar name Werkzeugleiste Editoren - + Modifier modes toolbar Modifier Toolbar name Werkzeugleiste Modifizierer - + E&dit Edit menu E&dit - + Select previous Edit menu vorherige Auswahl - + Select next Edit menu nächste Auswahl - + Unselect all Edit menu Nichts auswählen - + Select default font Branch attribute Default Zeichensatz auswählen - + Toolbars Toolbars overview in view menu Werkzeugleisten - + Toggle Presentation mode View action Präsentationsmodus an/abschalten - + Rotate counterclockwise View action Rotieren gegen Uhrzeigersinn - Rotate rclockwise View action - Rotieren im Uhrzeigersinn + Rotieren im Uhrzeigersinn - + Tree editor View action Baum Editor - + Task editor View action Aufgaben Editor - + Slide editor View action Folien Editor @@ -1439,37 +1559,36 @@ aber noch nicht gespeichert. Wollen Sie Skript Editor - Script output window View action - Script Ausgabe + Script Ausgabe - + Next slide View action Nächste Folie - + Previous slide View action Vorherige Folie - + Map target SystemFlag Ziel - + Standard Flags toolbar Standard Flag Toolbar Werkzeugleiste Standardflags - + Status - ok,done Standardflag Status - ok, erledigt @@ -1487,13 +1606,13 @@ aber noch nicht gespeichert. Wollen Sie Status - unvollständig, nicht begonnen - + Call... Standardflag Anrufen... - + Very important! Standardflag Sehr wichtig! @@ -1505,7 +1624,7 @@ aber noch nicht gespeichert. Wollen Sie Sehr unwichtig! - + Rose Standardflag Rose @@ -1517,25 +1636,24 @@ aber noch nicht gespeichert. Wollen Sie Überraschung! - + Info Standardflag Info - + Check for release notes and updates Settings action Release notes und Updates prüfen - Set application to zip/unzip files Settings action - Anwendung um Daten zu speichern (zip/unzip) + Anwendung um Daten zu speichern (zip/unzip) - + Download and show release notes Help action Release Notes herunterladen und anzeigen @@ -1553,13 +1671,30 @@ aber noch nicht gespeichert. Wollen Sie Tatstur Makros anzeigen - + XLinks Menu for file actions XLinks - + + Untitled + Default name in FileSaveAs dialog + unbenannt + + + + + Open %1 map + Öffne Map %1 + + + + Enter Url: + Url eingeben: + + + unknown user default name for map author in settings unbekannter Benutzer @@ -1570,30 +1705,60 @@ aber noch nicht gespeichert. Wollen Sie Anzahl der Elternzweige, die bei Aufgabe gezeigt werden: - + Firefox Bookmarks Firefox Lesezeichen - + + &Map + Map menu + &Map + + + + Toggle window + Toggle visibility of editor windows overview in view menu + Fenster zeigen + + + + Focus window + Toggle visibility of editor windows overview in view menu + Fenster fokussieren + + + + File actions + MainWindow shortcut groups + Datei Aktionen + + + &Open... File menu &Öffnen... - + Open Recent File menu Zuletzt geöffnete Dateien + &Clear + Clear recent files menu + Liste leeren + + + &Save... File menu &Speichern... - + Save &As... File menu Speichern &unter... @@ -1605,68 +1770,121 @@ aber noch nicht gespeichert. Wollen Sie Importieren - + (still experimental + (noch experimentell) + + + Export File menu Exportieren - + + Exports + MainWindow shortcut groups + Exports + + + + Repeat last export + Wiederhole letzten Export + + + Image%1 File export menu Bild %1 - + + Map properties + Map Eigenschaften... + + + &Close Map File menu Schlie&ßen + Exit + MainWindow shortcut groups + B&eenden + + + E&xit File menu B&eenden - + + Miscellaneous + MainWindow shortcut groups + Verschiedenes + + + + Undo/Redo + MainWindow shortcut groups + Rückgängig und Wiederholen + + + + &Undo Edit menu &Rückgängig - + &Redo Edit menu Wieder&herstellen - + + Repeat last action + Edit menu + Wiederhole letzte Aktion + + + + &Copy Edit menu &Kopieren - + + Cu&t Edit menu &Ausschneiden - + + &Paste Edit menu Ein&fügen - - + Delete Selection Edit menu Entfernen - + + Add + MainWindow shortcut groups + Hinzufügen + + + Add branch as child Edit menu Neuer Zweig @@ -1678,76 +1896,183 @@ aber noch nicht gespeichert. Wollen Sie Neuen Zweig einfügen + - Add branch above Edit menu Neuer Zweig - oben - - + + Add branch below Edit menu Neuer Zweig - unten - + + Move + MainWindow shortcut groups + Bewegen + + + + Sort and display + MainWindow shortcut groups + Sortieren und Anzeigen + + + Scroll branch Edit menu Zweig einrollen - + + Unscroll branch and subtree + Edit menu + Zweig und Unterzweige ausklappen + + + + Geometry of items + MainWindow shortcut groups + Geometrie von Objekten + + + + Rotate subtree clockwise + Edit menu + Rotiere Unterbaum im Uhrzeigersinn + + + + Rotate subtree counter-clockwise + Edit menu + Rotiere Unterbaum gegen Uhrzeigersinn + + + + URLs + Shortcuts in references context menu + URLs + + + + Open all visible URLs in subtree + Edit menu + Alle URLs im Unterbaum öffnen + + + + Open all URLs in subtree in private mode + Edit menu + Alle URLs in Unterbaum in privatem Modus öffnen + + + + Connect + Connection shortcuts in MainWindow + Verbindungen + + + + Get data from Jira for subtree + Edit menu + Daten von JIRA für Unterbaum holen + + + + Set Jira query + Edit menu + Jira Suche setzen + + + + Get page name and details from Confluence + Edit menu + Titel der Seite von Confluence übernehmen + + + + Get page name and details from Confluence for child pages + Edit menu + Titel der Seiten in Unterbaum von Confluence übernehmen + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + vym-Verbindungen zwischen Maps + + + + Tasks + Shortcuts for tasks in MainWindow + Aufgaben + + + + Add image + Edit and context menus + Bild hinzufügen + + + + Item properties + Dialog to edit properties of selected item + Eigenschaften + + + + Find... Edit menu Suchen - + Open URL Edit menu URL öffnen - + Main window Shortcut scope Hauptfenster - Open URL in new tab Edit menu - URL in neuen Tab öffnen + URL in neuen Tab öffnen - + Open all URLs in subtree Edit menu Alle URLs in Unterbaum öffnen - + Edit URL... Edit menu URL editieren... - + Use heading for URL Edit menu Beschriftung als URL übernehmen - + Open linked map Edit menu Verlinkte Map öffnen - + Open all vym links in subtree Edit menu Alle Verbindungen zu vym maps in Unterbaum öffnen @@ -1759,198 +2084,193 @@ aber noch nicht gespeichert. Wollen Sie vym Verknüpfung editieren - + Delete vym link Edit menu vym Verknüpfung löschen - + Hide in exports Edit menu In Export nicht anzeigen - + Add map (insert) Edit menu Map einfügen (An Selektion hinzufügen) - + Add map (replace) Edit menu Map einfügen (Selektion austauschen) - + Save selection Edit menu Auswahl speichern - + F&ormat Format menu F&ormat - + Pic&k color Edit menu Farbe &übernehmen - + Color &branch Edit menu Zweig &färben - + Color sub&tree Edit menu &Unterbaum färben - + Hide link if object is not selected Branch attribute Verbindung verbergen, falls Objekt nicht selektiert ist - + &Use color of heading for link Branch attribute &Verbindungen haben Farbe der Beschriftungen - + reset Zoom View action Keine Vergrösserung - + Zoom in View action Vergrössern - + Task list TaskEditor Aufgabenliste - + Script Editor ScriptEditor Skript Editor - + Firefox Bookmarks Import filters Firefox Lesezeichen - + Text (A&O report)... Export format Text (A&O Format) - Properties - Eigenschaften + Eigenschaften - + Move branch up Edit menu Zweig nach oben bewegen - + Move branch down Edit menu Zweig nach unten bewegen - References Context menu Shortcuts - Tastenkürzel + Tastenkürzel - vymlinks - linking maps Shortcuts - vym-Verbindungen zwischen Maps + vym-Verbindungen zwischen Maps - + Open linked map in background tab Edit menu Verbundene Map im Hintergrund öffnen - Exports Shortcuts - Exports + Exports - Tasks Shortcuts - Aufgaben + Aufgaben - + Toggle task Edit menu Aufgabe einschalten/ausschalten - + Cycle task status Edit menu Aufgabenstatus weiterschalten - + Reset sleep Task sleep Aufgabe aufwecken - - - - - + + + + + Sleep %1 days Task sleep Wiedervorlage in %1 Tagen - + Sleep %1 day Task sleep Wiedervorlage in %1 Tagen - - + + Sleep %1 weeks Task sleep Wiedervorlage in %1 Wochen - + Removing parts of a map Shortcuts Teile einer Map entfernen @@ -1962,130 +2282,126 @@ aber noch nicht gespeichert. Wollen Sie Zweig entfernen und Unterzweige behalten - + Various Shortcuts Verschiedene - + Map properties... Edit menu Map Eigenschaften... - + Selections Shortcuts Auswahl - + Select Select menu Auswählen - + Goto linked map... Edit menu Verlinkte Map öffnen... - + Search functions Shortcuts Suchfunktionen - + Formatting Shortcuts Formattierung - Views Shortcuts - Ansichten + Ansichten - + Zoom out View action Verkleinern - + Note editor View action Notiz Editor - + Heading editor View action Beschriftungs Editor - Images - Bilder + Bilder - All Filedialog - Alle + Alle - + URL SystemFlag URL - + User Flags toolbar user Flags Toolbar Werzeugleiste Benuzterflags - + Hm... Standardflag Hm... - (experimental) - (experimentell) + (experimentell) - + Firefox Bookmarks File export menu Firefox Lesezeichen - + Move branch diagonally up Edit menu Zeig schräg nach oben bewegen - + Move branch diagonally down Edit menu Zweig schräg nach unten bewegen - + &Connect Verbindungen - + Connect Shortcuts Verbindungen @@ -2097,31 +2413,30 @@ aber noch nicht gespeichert. Wollen Sie Nutzer Infos von Confluence holen - + Use modifier to select and reorder objects Mode modifier Auswählen und Anordnen - Format painter: pick color from another branch and apply Mode modifier - Einfärben mit der Farbe eines anderen Zweiges + Einfärben mit der Farbe eines anderen Zweiges - + Use modifier to move branches without linking Mode modifier Zweige bewegen ohne sie umzuhängen - + Use modifier to move view without selecting Mode modifier Ansicht verschieben ohne Zweige auszuwählen - + Important Freemind flag @@ -2242,13 +2557,13 @@ aber noch nicht gespeichert. Wollen Sie Süß - + Set author for new maps Settings action Author für neue Maps angeben - + Confluence Credentials Settings action Confluence Zugangsdaten @@ -2265,7 +2580,7 @@ aber noch nicht gespeichert. Wollen Sie Pfad festlegen für Standardmap - + Number of visible parents in task editor Settings action Anzahl sichtbarer Elternzweige im Aufgaben Editor @@ -2277,13 +2592,13 @@ aber noch nicht gespeichert. Wollen Sie Anzahl sichtbarer Elternzweige im Ergebnisfenster der Suche - + Debug info Option to show debugging info Infos zur Fehlersuche - + Couldn't load default map: %1 @@ -2293,14 +2608,14 @@ vym will create an empty map now. Konnte Standardmap nicht laden - + Couldn't save %1, because file exists and cannot be changed. Konnte %1 nicht speichern, da die Datei bereits existiert und nicht geändert werden darf. - - + + Couldn't save %1, because of existing lockfile: @@ -2310,14 +2625,13 @@ da die Lockdatei nicht angelegt werden konnte: %2 - Couldn't find configuration for export to LibreOffice - Konnte Konfiguration zum Exportieren nach LibreOffice nicht finden + Konnte Konfiguration zum Exportieren nach LibreOffice nicht finden - + branches Info about map Zweige @@ -2347,7 +2661,7 @@ da die Lockdatei nicht angelegt werden konnte: Querverbindungen - + Set author for new maps (used in lockfile) Author für neue Maps angeben (zur Verwendung in Lockdatei) @@ -2357,63 +2671,59 @@ da die Lockdatei nicht angelegt werden konnte: Anzahl sichtbarer Elternzweige im Ergebnisfenster der Suche - + (readonly) (nur lesen) - Get data from JIRA for subtree Edit menu - Daten von JIRA für Unterbaum holen + Daten von JIRA für Unterbaum holen - Get page name from Confluence Edit menu - Titel der Seite von Confluence übernehmen + Titel der Seite von Confluence übernehmen - Add image... Edit menu - Bild hinzufügen + Bild hinzufügen - + View toolbar View Toolbar name Werkzeugleiste ANsicht - + Save map as new default map Map als standard map speichern - + You have no permissions to write to Keine Berechtigung zum Schreiben von - Overwrite as new default map - Als neue standard map überschreiben + Als neue standard map überschreiben - + Import Firefox Bookmarks into new map Importiere Firefox Lesezeichen in neue Map - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog Wiedervorlage (als Anzahl Tage oder als Datum: JJJJ-MM-TT oder TT.MM[JJJJ]) - + tasks total Info about map Aufgaben insgesamt @@ -2425,7 +2735,7 @@ Map als standard map speichern Aufgaben in Map - + Load vym script Script laden @@ -2434,18 +2744,46 @@ Map als standard map speichern Default map setzen, die beim Start geladen wird - + No SSL support available for this build of vym SSL nicht unterstützt - + + Repeat last Export %1 +Format: %2 to +%3 + status tip + Wiederhole letzten Export %1 +Format: %2 nach +%3 + + + + Branch + Context menu to follow links + Zweig + + + + Url + Context menu to follow links + Url + + + + Map + Context menu to follow links + Map + + + Please allow vym to download release notes! Bitte erlauben Sie vym die Release-Anmerkungen herunterzuladen! - + Allow Erlauben @@ -2455,12 +2793,12 @@ Map als standard map speichern Nicht erlauben - + Thank you for enabling downloads! Danke für das Erlauben der Downloads! - + Update information Update Information @@ -2482,13 +2820,13 @@ Map als standard map speichern Bitte vym erlauben nach Updates zu sehen! - + Use modifier to draw xLinks Mode modifier Modifizierer zum Anlegen von xLinks verwenden - + Set application to open pdf files Settings action pdf-Dateien öffnen mit... @@ -2506,13 +2844,12 @@ Map als standard map speichern Zweig nach dem Einfügen auswählen - Select existing heading Settings action - Beschriftung vor dem editieren auswählen + Beschriftung vor dem editieren auswählen - + Exclusive flags Settings action Exklusive Flags @@ -2524,7 +2861,7 @@ Map als standard map speichern Während des Exports das "Verbergen" Flag verwenden - + &Help Help menubar entry &Hilfe @@ -2548,31 +2885,31 @@ Map als standard map speichern Über QT - + Remove Context menu name Entfernen - + Edit XLink Context menu name xLink ändern - + Follow XLink Context menu name XLink folgen - + Save image Context action Speichere Bild - + &New map File menu Neue map @@ -2584,7 +2921,7 @@ Map als standard map speichern Kopieren in neue Map - + PDF%1 File export menu PDF%1 @@ -2596,36 +2933,34 @@ Map als standard map speichern SVG%1 - Repeat last export (%1) - Letzten Export wiederholen (%1) + Letzten Export wiederholen (%1) - + Add mapcenter Canvas context menu Mapcenter hinzufügen - + Sort children Edit menu Unterzweige aufsteigend sortieren - + Edit local URL... Edit menu Lokale URL editieren - Property window Dialog to edit properties of selection - Eigenschaften + Eigenschaften - + Linkstyle Curve Verbindungsstil Parabel @@ -2635,29 +2970,27 @@ Map als standard map speichern Verbindungsstil Parabel - + Set &Selection Color Farbe der Auswahlmarkierung - Set &Background image - Hintergrundbild laden + Hintergrundbild laden - + Fit view to selection View action Zeige Auwahl und vergrößere - History Window View action - Verlaufsfenster + Verlaufsfenster - + Antialiasing View action Antialiasing @@ -2669,25 +3002,48 @@ Map als standard map speichern Weiche Bild Transformationen - + + Presentation mode + Mainwindow presentation shortcut groups + Präsentations Modus + + + + Navigation between maps + Mainwindow view shortcut groups + Navigieren in Maps + + + Next Map View action Nächste Map - + Previous Map View action Vorherige Map - + Modifier modes Shortcuts Tasten Modifizierer - + + Use modifier to pick color from another branch + Mode modifier + Verwende Modifizierer um Farbe eines anderen Zweiges zu erhalten + + + + Load user flag + Lade benutzerdefiniertes Flag + + + @@ -2700,7 +3056,13 @@ Map als standard map speichern Notiz - + + Jira + SystemFlag + Jira + + + Link to another vym map SystemFlag Verweis zu einer anderen Map @@ -2724,12 +3086,12 @@ Map als standard map speichern Objekt beim Exportieren nicht anzeigen - + Settings Einstellungen - + Set path for new maps Settings action Pfad für neue Maps setzen @@ -2765,7 +3127,13 @@ Map als standard map speichern Beim Verlassen Sicherungskopie anlegen - + + Logfile settings + Settings action + Log Einstellungen + + + Animation Settings action Animation @@ -2782,7 +3150,7 @@ Map als standard map speichern Test - + Open VYM example maps Help action VYM Beispielmaps @@ -2794,31 +3162,42 @@ Map als standard map speichern Zeige Tastaturkürzel - + + Hierarchy + Context menu name + Hierarchie + + + + Geometry + Context menu name + Geometrie + + + Tasks Context menu Aufgaben - + References (URLs, vymLinks, ...) Context menu name Verweise (URLS, vym, ...) - Follow XLink Context menu - XLink folgen + XLink folgen - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard Rückgängig Werkzeugleiste - + Selection toolbar Toolbar name Auswahl Werkzeugleiste @@ -2830,19 +3209,25 @@ Map als standard map speichern URLs und vymLinks Werkzeugleiste - + Colors toolbar Colors toolbar name Farben Werkzeugleiste - + + Limited view toolbar + View Toolbar name + Vereinfachte Werkzeugleiste Ansicht + + + Loading: %1 Progress dialog while loading maps Lade: %1 - + Loaded %1 %1 geladen @@ -2853,27 +3238,24 @@ Map als standard map speichern oder - Saving %1... - Speichere %1... + Speichere %1... - + Save map as Speichern &unter... - Export as CSV - Exportiere als CSV + Exportiere als CSV - Enter URL: - Neue URL: + Neue URL: - + HTML Filedialog HTML @@ -2908,7 +3290,12 @@ Map als standard map speichern URL zu einer lokalen Datei setzen - + + Enter Jira query: + Jira Suche: + + + %1 items on map Info about map @@ -2916,13 +3303,23 @@ Map als standard map speichern - + + Load images + Lade Bilder + + + Color of selection box Mainwindow Farbe der Auswahlmarkierung - + + Set application to open external links + Anwendung zum Öffnen externen Verweise + + + Number of undo/redo levels: Anzahl der Rückgängig Aktionen @@ -2943,48 +3340,66 @@ wird %1 Rückgängig Schritte haben. Information - + + Undo (%1) + Rückgängig (%1) + + + + Undo: %1 (%2) + Rückgängig (%1)-(%2) + + + + Redo (%1) + Wiederholen(%1) + + + + Redo: %1 (%2) + Wiederholen: %1 (%2) + + + History for %1 Window Caption Verlauf von %1 - Export in last used format (%1) to: %2 status tip - Exportiere im zuletzt genutzten Format (%1) nach: %2 + Exportiere im zuletzt genutzten Format (%1) nach: %2 - + Couldn't find the documentation %1 in: %2 Konnte die Dokumentation %1 nicht finden in %2 - + Load vym example map Lade vym Beispiel Map - + I just love... Standardflag Ich liebe das - + Mail Freemind flag Post - Open Freemind map - Öffne Freemind map + Öffne Freemind map - + Link to another vym map Verbindung zu weiterer vym map @@ -2994,53 +3409,53 @@ wird %1 Rückgängig Schritte haben. Verbindung zu vym map - + Reset delta priority for visible tasks Reset delta Delta Priorität für sichtbare Aufgaben zurücksetzen - + Select color (Press Shift for more options) Farbe auswählen (Drücke Shift für mehr Optionen) - + Saving the map failed: Couldn't rename map to %1 Map konnte nicht gespeichert werden Konnte nicht umbenennen zu %1 - + Couldn't save as default, failed to rename to %1 Konnte nicht als Standard speichern, das umbennen ist fehlgeschlagen: %1 - + Dark theme Settings action Dunkles Design - + Restart vym to apply the changed dark theme setting Bitte vym neu starten um die Einstellungen für dunkles Design zu verwenden - + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) <html><h3>Erlauben Sie vym online nach Updates oder Release Anmerkungen zu suchen?</h3>Wenn Sie es erlauben, wird vym <ul><li>einmalig online nach Release Anmerkungen suchen</li><li>regelmäßig nach Updates suchen und Sie benachrichtigen, sollten Updates wie z.B. wichtige Fehlerbehebungen verfügbar sein</li><li>ein cookie erhalten mit eineer zufällig erzeugten ID und einige anonymisierte Daten senden, wie z.B.<ul><li>vym Version</li><li>Plattform Name und ID "Windows" oder "Linux")</li><li>Einstellungen wie z.B. Sprache und ob dunkles Design verwendet wird</li></ul>Diese Daten werden geschickt zum Author von vym: Uwe Drechsel.<p>Als vym Entwickler motiviert es mich zu sehen, wenn viele Menschen vym benutzen. Natürlich bin ich neugierig, auf welchen Plattformen vym verwendet wird. Jede dieser Plattformen benötigt eine Menge meiner (Frei-)zeit.</p> <p>Abgesehen von obigen Daten wird nichts weiteres gesendet, insbesondere keine privaten Daten. (Bitte bei Zweifel gerne die Quellen prüfen!)</p></li></ul>Falls Sie es nicht zulassen, wird<ul><li>nichts heruntergeladen und <b>besonders werde ich nicht motiviert</b> weiter tausende Stunden meiner Zeit in die Entwicklung einer freien Software zu stecken.</ul>Bitte erlauben Sie vym nach Updates zu sehen :-) - + That's ok, though I would be happy to see many users working with vym and also on which platforms. Schade, ich würde mich wirklich freuen, wenn ich viele Menschen vym benutzen sehe und auch auf welchen Plattformen vym genutzt wird. - + Show scripting commands Help action Skript Befehle anzeigen @@ -3049,75 +3464,85 @@ Konnte nicht umbenennen zu %1 MapEditor - + Map Editor Shortcut scope Map Editor - + + Map Editors + Shortcut group + Map Editoren + + + Edit heading MapEditor Zweig-Überschrift bearbeiten - + Print vym map MapEditor Map drucken - + + Warning + Warnung + + %1 items selected - %1 Objekte ausgewählt + %1 Objekte ausgewählt NoteEditor - Note Editor Name of editor shown as window title - Notiz Editor + Notiz Editor QObject - + Export as AO report Map AO report exportieren - - - + + + - - + + - + + - - - + + + Critical Export Error Kritischer Fehler beim Exportieren - + Could not write %1 %1 konnte nicht - + Exporting to %1 will overwrite the existing file: %2 Die Datei %2 gibt es bereits. @@ -3161,7 +3586,7 @@ Wollen Sie sie überschreiben für einen Export nach %1? Export fehlgeschlagen. - + Trying to create directory for flags: Versuche Verzeichnis für Flags anzulegen @@ -3171,26 +3596,25 @@ Wollen Sie sie überschreiben für einen Export nach %1? %1 konnte nicht angelegt werden - - + Flag: %1 Alt tag in HTML export Flag: %1 - + Flag: url Alt tag in HTML export Flag: URL - - + + Critical Kritisch - + Could not find stylesheet %1 Konnte stylesheet %1 nicht finden @@ -3240,17 +3664,22 @@ Wollen Sie sie überschreiben für einen Export nach %1? Konnte nicht als LaTeX nach %1 exportieren - + Export as LibreOffice Impress presentation Exportieren als LibreOffice Impress Präsentation - + No objects in map! Keine Objekte in Map! - + + Could not compress file %1 + Konnte Datei nicht komprimieren %1 + + + Couldn't read settings from "%1" Konnte Einstellungen nicht lesen von %1 @@ -3269,89 +3698,129 @@ Wollen Sie sie überschreiben für einen Export nach %1? %1 konnte nicht gelesen werden - - - - - - - - + + Note Editor + Name of editor shown as window title + Notiz Editor + + + + Heading Editor + Name of editor shown as window title + Editor Zweigbeschriftungen + + + + + + + + - - - - - - - + + + + + + Critical Error Kritischer Fehler - + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + Konnte Tool zum Auspacken oder Komprimieren der Daten nicht finden, oder Windows Version ist älter als Windows 10. + + + + Couldn't find tar tool to zip data. + Konnte das tar Werkzeug zum Komprimieren der Daten nicht finden. + + + + Couldn't find tar tool to unzip data. + Konnte das tar Werkzeug zum Entpacken der Daten nicht finden. + + Couldn't move existing file out of the way before saving. - Konnte bereits existierende Datei vor dem Speichern nicht verschieben + Konnte bereits existierende Datei vor dem Speichern nicht verschieben - - Couldn't start %1 tool to compress data! The map could not be saved, please check if backup file is available or export as XML file! - Konnte %1 nicht starten um die Daten zu komprimieren! + Konnte %1 nicht starten um die Daten zu komprimieren! Die Map konnte nicht gespeichert werden: Bitte prüfen, ob eine Backup Datei vorhanden ist oder die Map als XML Datei exportieren! - - + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + + Konnte nicht anfangen die Daten zu komprimieren! +Die Map konnte nicht gespeichert werden, bitte prüfe, +ob ein Backup existiert oder exportiere die Map als XML-Datei! + + + + + + + + zip didn't exit normally zip wurde nicht richtig beendet - + + Couldn't start tool to decompress data! + + + Konnte das Tool zum Auspacken der Daten nicht starten! + + Couldn't rename %1 back to %2 - Konnte %1 nicht umbenennen zu %2 + Konnte %1 nicht umbenennen zu %2 - Couldn't remove target of old symbolic link %1 - Konnte Ziel des alten symbolischen Links %1 nicht entfernen + Konnte Ziel des alten symbolischen Links %1 nicht entfernen - Couldn't rename output to target of old symbolic link %1 - Konnte Ausgabe nicht zum Ziel des alten symbolischen Links %1 umbenennen + Konnte Ausgabe nicht zum Ziel des alten symbolischen Links %1 umbenennen - Couldn't link from %1 to target of old symbolic link %2 - Konnte nicht von %1 zum Ziel des symblischen Links %2 verlinken + Konnte nicht von %1 zum Ziel des symblischen Links %2 verlinken - Saved %1, but couldn't remove %2 - %1 wurde gespeichert, aber %2 konnte nicht entfernt werden + %1 wurde gespeichert, aber %2 konnte nicht entfernt werden - Couldn't start %1 tool to decompress data! - Konnte %1 nicht starten, um die Daten auszupacken! + Konnte %1 nicht starten, um die Daten auszupacken! - + Could not start %1 %1 konnte nicht gestartet werden - - + %1 didn't exit normally %1 wurde nicht richtig beendet - + + Images + Bilder + + + Overwrite Überschreiben @@ -3361,22 +3830,21 @@ Die Map konnte nicht gespeichert werden: Bitte prüfen, ob eine Backup Datei vor Abbrechen - + Warning Warnung - - - - - - - + + + + + + Error Fehler @@ -3398,7 +3866,7 @@ Die Map konnte nicht gespeichert werden: Bitte prüfen, ob eine Backup Datei vor (noch experimentelle Funktion) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3406,7 +3874,7 @@ Do you risk to overwrite its contents? Riskieren Sie es dessen Inhalt zu überschreiben? - + Warning: Version Problem Warnung: Versionsproblem @@ -3416,9 +3884,8 @@ Riskieren Sie es dessen Inhalt zu überschreiben? <h3>Map ist neuer als VYM</h3><p>Die Map, die Sie gerade versuchen zu laden wurde mit vym %1 gespeichert. Die vorliegende Version von vym ist %2. Falls nach dem Fortfahren mit Ok Probleme autauchen, sollte ein Update von vym helfen.</p> - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - Die Map wird nur zum Lesen geöffnet, da nicht alle Information aus der neuen Map mit dieser Version von vym gespeichert werden können. Bitte vorsichtig sein! + Die Map wird nur zum Lesen geöffnet, da nicht alle Information aus der neuen Map mit dieser Version von vym gespeichert werden können. Bitte vorsichtig sein! Couldn't find macros at %1. @@ -3453,20 +3920,18 @@ Riskieren Sie es dessen Inhalt zu überschreiben? Konnte nicht als Markdown nach %1 exportieren - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - Konnte kein Anwendung finden, um vym Datein auszupacken (unzip), oder die Windows Version ist älter als Windows 10. + Konnte kein Anwendung finden, um vym Datein auszupacken (unzip), oder die Windows Version ist älter als Windows 10. - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: zip tool missing on Linux/Mac platform - Konnte Tool zum Auspacken oder Komprimieren der Daten nicht finden. Bitte passend zur Plattform installieren und Pfad in den Einstellungen setzen. + Konnte Tool zum Auspacken oder Komprimieren der Daten nicht finden. Bitte passend zur Plattform installieren und Pfad in den Einstellungen setzen. - - + + Couldn't open "%1" . Konnte %1 nicht öffnen. @@ -3479,7 +3944,7 @@ Riskieren Sie es dessen Inhalt zu überschreiben? - + Couldn't write macros to "%1" . Konnte Makros nicht speichern nach "%1" @@ -3487,6 +3952,7 @@ Riskieren Sie es dessen Inhalt zu überschreiben? + Couldn't read script from "%1" . Konnte script nicht lesen von "%1" @@ -3500,12 +3966,12 @@ Riskieren Sie es dessen Inhalt zu überschreiben? - + Export as Firefox bookmarks Exportieren als Firefox Lesezeichen - + Could not export as Firefox bookmarks to %1 Konnte Firefox Lesezeichen nicht exportieren nach %1 @@ -3528,7 +3994,7 @@ Riskieren Sie es dessen Inhalt zu überschreiben? %1 Lesezeichen importiert. - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: @@ -3536,7 +4002,7 @@ Riskieren Sie es dessen Inhalt zu überschreiben? - + JIRA agent not setup. JIRA agent ist nicht eingerichtet @@ -3546,6 +4012,14 @@ Riskieren Sie es dessen Inhalt zu überschreiben? Alt tag in HTML export Bild: %1 + + + %1 +Line %2, column %3 + Error message while parsing XML + %1 +Zeile %2, Spalte %3 + ScriptEditor @@ -3578,13 +4052,13 @@ Riskieren Sie es dessen Inhalt zu überschreiben? Speichern - + Warning Warnung - + Slide Mode in scriptEditor Folie @@ -3608,7 +4082,13 @@ Riskieren Sie es dessen Inhalt zu überschreiben? Kein script geladen - + + Script Editor + Shortcut scope + Skript Editor + + + Couldn't get model to save script into slide! Konnte Datenmodell zum Speichern des Scripts nicht auffinden! @@ -3618,12 +4098,12 @@ Riskieren Sie es dessen Inhalt zu überschreiben? Konnte Folie zum Speichern des Scripts nicht finden! - + Macros saved to %1 Makros gespeichert nach %1 - + Script saved to %1 Script gespeichert nach %1 @@ -3633,26 +4113,23 @@ Riskieren Sie es dessen Inhalt zu überschreiben? Script speichern - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Die Datei %1 gibt es bereits. + Die Datei %1 gibt es bereits. Wollen Sie sie überschreiben? - Overwrite - Überschreiben + Überschreiben - Cancel - Abbrechen + Abbrechen - + Load script Script laden @@ -3671,7 +4148,7 @@ Wollen Sie sie überschreiben? TaskEditor - + Show only tasks from current map Filters in task Editor Nur Aufgaben aus aktuelle Map anzeigen @@ -3707,11 +4184,17 @@ Wollen Sie sie überschreiben? Filters in task Editor Nur Aufgaben ohne Pfeil anzeigen + + + Task Editor + Shortcut group + Aufgaben Editor + TaskModel - + Prio TaskEditor Priorität @@ -3768,22 +4251,22 @@ Wollen Sie sie überschreiben? TextEditor - + &Import... &Importiere - + &Export... &Export - + &Print... &Drucken - + &Undo R&ückgängig @@ -3798,27 +4281,24 @@ Wollen Sie sie überschreiben? &Alles auswählen und kopieren - &Copy - &Kopieren + &Kopieren - Cu&t - &Ausschneiden + &Ausschneiden - &Paste - Ein&fügen + Ein&fügen - + &Delete All Alles &löschen - + &Settings &Einstellungen @@ -3838,45 +4318,43 @@ Wollen Sie sie überschreiben? Verwende fixen Zeichensatz p&er default - Export &As... (HTML) - Exportiere Notiz &als... (HTML) + Exportiere Notiz &als... (HTML) - + Export &As...(ASCII) Exportiere a&ls (ASCII) - + Edi&t Edi&tieren - + Font hints toolbar in texteditor Zeichensatz Hint - + Fonts toolbar in texteditor Zeichensätze - + Format toolbar in texteditor Format - &Color... - &Farbe... + &Farbe... - + &Bold F&ett @@ -3891,116 +4369,181 @@ Wollen Sie sie überschreiben? &Unterstrichen - + &Left &Linksbündig - + C&enter &Zentriert - + &Right &Rechtsbündig - + &Justify &Blocksatz - + Export Note to single file Notiz in eine einzelne Datei exportieren - - + + Overwrite Überschreiben - - + + Cancel Abbrechen - + Export Note to single file (ASCII) Notiz als ASCII in eine einzelne Datei ausgeben - + &Font hint Zeichensatz &umschalten - + Subs&cript &Tiefgestellt - + Su&perscript &Hochgestellt - + Note Editor Notiz Editor - + F&ormat F&ormat - - - Texteditor Shortcuts - Text Editor + Text Editor - + Edit Actions Edit Actions - + Note Actions Note Actions - Ready Statusbar message - Bereit + Bereit - + No filename available for this note. Statusbar message Notiz hat keinen Dateinamen - + &Note Menubar &Notiz - + + File actions + TextEditor shortcut groups + Datei Aktionen + + + + Edit actions + TextEditor shortcut groups + Editier Aktionen + + + + &Copy + Edit menu + &Kopieren + + + + Cu&t + Edit menu + &Ausschneiden + + + + &Paste + Edit menu + Ein&fügen + + + + Insert image + TextEditor + Bild einfügen + + + + Format actions + TextEditor shortcut groups + Formatier Actions + + + &Richtext &Richtext - - + + &Text Color... + &Text Farbe + + + + &Text background color... + &Text Hintergrundfarbe + + + + Set RichText mode editor background color + TextEditor + Setze Standardfarbe für Hintergrund mit RichText + + + + Set RichText mode default text color + TextEditor + Setze Standardfarbe für Hintergrund mit RichText + + + + Set RichText mode default text background color + TextEditor + Setze Standardfarbe für Hintergrund mit RichText + + + The file %1 exists already. Do you want to overwrite it? @@ -4009,34 +4552,68 @@ Do you want to overwrite it? Wollen Sie sie überschreiben? - + Couldn't export note dialog 'save note as' Konnte Notiz nicht exportieren - + Print TextEditor Drucken - + + Text color + TextEditor windows + &Text Farbe + + + + Text background color + TextEditor windows + &Text Hintergrundfarbe + + + + Text editor background color + TextEditor windows + Text Editor Hintergrundfarbe + + + + Text editor default text color + TextEditor windows + Setze Standardzeichenfarbe für Texteditor + + + + Text editor default text background color + TextEditor windows + Setze Standardhintergrundfarbe für Texteditor + + + + Load image + TextEditor + Lade Bild + + Set RichText default background color TextEditor - Setze Standardfarbe für Hintergrund mit RichText + Setze Standardfarbe für Hintergrund mit RichText - Set RichText default font color TextEditor - Setze Standardzeichenfarbe für RichText + Setze Standardzeichenfarbe für RichText TreeEditor - + Select upper object Tree Editor Zweig oben auswählen @@ -4051,45 +4628,64 @@ Wollen Sie sie überschreiben? VymModel - + unknown user default name for map author in settings unbekannter Benutzer - + unnamed unbenannt - - - - + + + Critical Parse Error Kritischer Fehler beim Verarbeiten - - + + + + + Critical Load Error Kritischer Fehler beim Laden - + Couldn't create temporary directory before load Konnte temporäres Verzeichnis vor dem Laden nicht erzeugen - + + Uncompressing %1 + Entpacke %1 + + + + Loading %1 + Lade: %1 + + + + Couldn't find %1 in map file. + + Konnte %1 in der Map Datei nicht finden + + + + Couldn't find a map (*.xml) in .vym archive. Konnte keine map (*.xml) in .vym Datei finden. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -4104,35 +4700,77 @@ könnte damit Dateien im Verzeichnis überschreiben Soll die Map geschrieben werden? - + uncompressed, potentially overwrite existing data unkomprimiert, u.U werden Daten überschrieben - + + Couldn't access zipDir %1 + + Konnte nicht auf zipDir zugreifen: %1 + + + + + Saving %1... + Speichere %1... + + + + Couldn't save + Datei konnte nicht gespeichert werden + + + + Compressing %1 + Komprimiere %1 + + + + + + Saved %1 + %1 gespeichert + + + unknown user Default for lockfiles of maps unbekannter Benutzer - + Warning: Map already opended VymModel Warnung: Map ist bereits geöffnet - + + Couldn't find configuration for export to LibreOffice Impress + + Konnte Konfiguration zum Exportieren nach LibreOffice nicht finden + + + + + %1 items selected + Status message when selecting multiple items + %1 Objekte ausgewählt + + + compressed (vym default) komprimieren (vym default) - - + + Cancel Abbrechen - + Save Error Fehler beim Speichern @@ -4152,65 +4790,60 @@ could not be renamed before saving konnte vor dem Speichern nicht umbenannt werden - + Critical Save Error Kritischer Fehler beim Speichern - Couldn't create temporary directory before save - Konnte temporäres Verzeichnis vor dem Speichern nicht erzeugen + Konnte temporäres Verzeichnis vor dem Speichern nicht erzeugen - - - + Images Bilder - - + All Filedialog Alle - Load image - Lade Bild + Lade Bild - + Save image Speichere Bild - + The file %1 exists already. Do you want to overwrite it? Die Datei %1 gibt es bereits. Wollen Sie sie überschreiben? - + Overwrite Überschreiben - - + + Critical Error Kritischer Fehler - + Couldn't save %1 Konnte %1 nicht speichern - + Critical Import Error Kritischer Fehler beim Importieren @@ -4220,13 +4853,13 @@ Wollen Sie sie überschreiben? Konnte das Verzeichnis %1 nicht finden - + Choose directory structure to import Bitte Verzeichnis zum Importieren auswählen - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -4239,18 +4872,23 @@ Map ist gesperrt von "%1" auf "%2" Bitte Lockdatei nur entfernen, wenn wirklich niemand anderes diese Map momentan verwendet. - + + Could not setup JiraAgent to retrieve data from Jira + Konnte JiraAgent nicht initialisieren um Daten von Jira zu holen + + + Contacting Jira... VymModel Kontaktiere JIRA... - + Removed lockfile for %1 Lockdateo für %1 entfernt. - + Couldn't remove lockfile for %1 Konnte Lockdatei für %1 nicht entfernen @@ -4268,7 +4906,7 @@ Bitte Lockdatei nur entfernen, wenn wirklich niemand anderes diese Map momentan Warnung - + The file of the map on disk has changed: %1 @@ -4281,60 +4919,66 @@ Do you want to reload that map with the new file? Soll die Map durch die neue Datei ersetzt werden? - + Reload Neu laden - + Ignore Ignorieren - - + + + Warning Warnung - + Autosave disabled during undo. Autosave ausgeschaltet während der Aktion "Rückgängig" - + Note FindAll in VymModel Notiz - New map New map - Neue Map + Neue Map - + Export map as image Map als Bild exportieren - + Couldn't save QImage %1 in format %2 Konnte Bild %1 nicht im Format %2 speichern - + Export map as PDF Als PDF exportieren - + Export map as SVG Als SVG exportieren - + + + Export to + Exportieren als + + + Export map as XML Als XML exportieren @@ -4344,12 +4988,13 @@ Soll die Map durch die neue Datei ersetzt werden? Exportiere XML in Verzeichnis - + Critical Export Error Kritischer Fehler beim Exportieren - + + (still experimental) (noch experimentelle Funktion) @@ -4361,23 +5006,39 @@ Soll die Map durch die neue Datei ersetzt werden? Exportiere als CSV - Load background image - Hintergrundbild laden + Hintergrundbild laden - Could not find Jira ticket pattern in %1 VymModel - Konnte keine JIRA Ticket Zeichenfolge finden in %1 + Konnte keine JIRA Ticket Zeichenfolge finden in %1 - + + Received Jira data. VymModel Jira Daten empfangen + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + Map konnte nicht gespeichert werden +Konnte nicht umbenennen zu %1 + + + + + Critical Error + Kritischer Fehler + + VymProcess @@ -4400,13 +5061,13 @@ Soll die Map durch die neue Datei ersetzt werden? VymView - + Tree Editor Title of dockable editor widget Baum Editor - + Slide Editor Title of dockable editor widget Folien Editor @@ -4475,39 +5136,30 @@ Soll die Map durch die neue Datei ersetzt werden? Schliessen - zip settings dialog window title - zip Einstellungen + zip Einstellungen - Path to 7z.exe zip tool settings dialog - Pfad zu 7z.exe + Pfad zu 7z.exe - Set path to 7z to zip/unzip files - Anwendung um Daten zu speichern (zip/unzip) + Anwendung um Daten zu speichern (zip/unzip) - Set path to zip files - Pfad zum zip Hilfsprogramm + Pfad zum zip Hilfsprogramm - Set path to unzip files - Pfad zum unzip Hilfsprogramm + Pfad zum unzip Hilfsprogramm - - - - Status: %1 - Status: %1 + Status: %1 diff --git a/lang/vym.el.ts b/lang/vym_el.ts similarity index 100% rename from lang/vym.el.ts rename to lang/vym_el.ts diff --git a/lang/vym.en.ts b/lang/vym_en.ts similarity index 60% rename from lang/vym.en.ts rename to lang/vym_en.ts index f3a993d..9fb15a4 100644 --- a/lang/vym.en.ts +++ b/lang/vym_en.ts @@ -4,108 +4,165 @@ AboutDialog - + Credits Help->About vym dialog - + License Help->About vym dialog - + Ok Ok Button - + AboutTextBrowser - - Please use Settings-> - - - - + Warning About window - + - + Couldn't find a viewer to open %1. About window - + + + + + Please use Settings-> + - + Set application to open an URL... - + + + + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + BranchPropertyEditor - + Property Editor Window caption - + Name Branchprop window: Attribute name - + Value Branchprop window: Attribute value - + Type Branchprop window: Attribute type - - + + %1 days ago task related times - + sleeping %1 days task related times - + Task is awake task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - - - - + + + Update existing confluence page + + + + + + + Warning - + Authentication problem when contacting Confluence @@ -113,7 +170,7 @@ ConfluenceSettingsDialog - + Confluence settings Confluence settings dialog title @@ -122,7 +179,7 @@ ConfluenceUserDialog - + Find Confluence user dialog window title @@ -131,7 +188,7 @@ DarkThemeSettingsDialog - + DarkThemeSettingsDialog dialog dialog window title @@ -140,7 +197,7 @@ DefaultMapSettingsDialog - + Set vym default map to be loaded on startup @@ -148,8 +205,8 @@ DownloadAgent - - + + Warning @@ -157,12 +214,12 @@ ExportHTMLDialog - + Warning - + The settings saved in the map would like to run script: %1 @@ -172,51 +229,42 @@ want to allow this in your system! - + VYM - Export HTML to directory - FindWidget + FindControlsWidget - + Find: - FindWidget - - - - - HeadingEditor - - - Heading Editor - Name of editor shown as window title + FindControlsWidget HistoryWindow - - Action + + Comment Table with actions - - Comment + + Action Table with actions - + Undo action Table with actions - + Current state Current bar in history hwindow @@ -225,12 +273,14 @@ want to allow this in your system! JiraAgent - + + Warning - + + Authentication problem when contacting JIRA @@ -238,2420 +288,2621 @@ want to allow this in your system! JiraSettingsDialog - + Jira settings Jira settings dialog title - - - LineEditDialog - - Cancel + + Email: - - Ok + + Username: - LockedFileDialog + LineEditDialog - - Delete lockfile + + Ok - - Open readonly + + Cancel - Main + LockedFileDialog - - Linkstyle Line + + Open readonly - - Linkstyle Thick Line + + Delete lockfile + + + Main - - Set &Background Color + + Main window + Shortcut scope - - &View + + Text Editors + Shortcut group - - Overwrite + + &Map + Map menu - - - - - Cancel + + E&dit + Edit menu - - Open anyway + + Select + Select menu - - Create + + F&ormat + Format menu - - Load vym map + + &View - - Import: Add vym map to selection + + Toolbars + Toolbars overview in view menu - - Import: Replace selection with vym map + + Toggle window + Toggle visibility of editor windows overview in view menu - - - - - - - - Critical Error + + Focus window + Toggle visibility of editor windows overview in view menu - - Add + + &Connect - + Search results list FindResultWidget - - File actions toolbar - Toolbar for file actions + + Script Editor + ScriptEditor - - PDF%1 - File export menu + + Script output window - - SVG%1 - File export menu + + Property Editor + PropertyEditor - - Repeat last export (%1) + + History window + HistoryWidget - - Edit actions toolbar - Toolbar name + + Task list + TaskEditor - - Add attribute + + File actions + MainWindow shortcut groups - - &Detach - Context menu + + &New map + File menu - - Detach branch and use as mapcenter - Context menu + + &Copy to new map + File menu - - Sort children backwards - Edit menu + + &Open... + File menu - - Expand all branches + + &Restore last session Edit menu - - Expand one level - Edit menu + + Open Recent + File menu - - Collapse one level - Edit menu + + &Clear + Clear recent files menu - - Collapse unselected levels - Edit menu + + &Save... + File menu - - Unscroll children - Edit menu + + Save &As... + File menu - - Grow selection - Edit menu + + Save as default map + File menu - - Shrink selection - Edit menu + + Import + File menu - - Reset selection size + + Add map (insert) Edit menu - - Toggle target... + + Add map (replace) Edit menu - - Goto target... - Edit menu + + Firefox Bookmarks + Import filters - - Move to target... - Edit menu + + + + + + + + + + + + + + + (still experimental) - - Find duplicate URLs - Edit menu + + Import Dir... + Import Filters - - Open all URLs in subtree (including scrolled branches) - Edit menu + + Export + File menu - - Extract URLs from note - Edit menu + + Exports + MainWindow shortcut groups - - Add timestamp - Edit menu + + Repeat last export - - Remove children - Edit menu + + Webpage (HTML)... + File export menu - - Center on selection - View action + + Confluence (HTML)... + File export menu - - Editors toolbar - Editor Toolbar name + + Firefox Bookmarks + File export menu - - Modifier modes toolbar - Modifier Toolbar name + + Text (ASCII)... + File export menu - - Map target - SystemFlag + + Text (Markdown)... + File export menu - - Standard Flags toolbar - Standard Flag Toolbar + + Text with tasks + File export menu - - Status - ok,done - Standardflag + + Text (A&O report)... + Export format - - Status - work in progress - Standardflag + + Image%1 + File export menu - - Status - missing, not started - Standardflag + + PDF%1 + File export menu - - Automatic layout - Settings action + + SVG%1 + File export menu - - Test + + CSV... - - Follow XLink - Context menu + + Map properties - - Follow XLink - Context menu name + + &Print - - The map %1 -is already opened.Opening the same map in multiple editors may lead -to confusion when finishing working with vym.Do you want to + + &Close Map + File menu - - This map does not exist: - %1 -Do you want to create a new one? + + Exit + MainWindow shortcut groups - - Loading: %1 - Progress dialog while loading maps + + E&xit + File menu - - Saved %1 + + Miscellaneous + MainWindow shortcut groups - - Couldn't save + + Undo/Redo + MainWindow shortcut groups - - - The file %1 -exists already. Do you want to + + + &Undo + Edit menu - - Take care! - Standardflag + + &Redo + Edit menu - - Really? - Standardflag + + Repeat last action + Edit menu - - This won't work! - Standardflag + + + &Copy + Edit menu - - Good - Standardflag + + + Cu&t + Edit menu - - Bad - Standardflag - - - - - Time critical - Standardflag - - - - - Idea! - Standardflag - - - - - Important - Standardflag + + + &Paste + Edit menu - - Unimportant - Standardflag + + Delete Selection + Edit menu - - I like this - Standardflag + + Add + MainWindow shortcut groups - - I do not like this - Standardflag + + Add mapcenter + Canvas context menu - - Dangerous - Standardflag + + Add branch as child + Edit menu - - This will help - Standardflag + + Add branch (insert) + Edit menu - - - - - - - - - - - - - (still experimental) + + + Add branch above + Edit menu - - &Print + + + Add branch below + Edit menu - - Oh no! - Standardflag + + Move + MainWindow shortcut groups - - Call... - Standardflag + + Move branch up + Edit menu - - Very important! - Standardflag + + Move branch down + Edit menu - - Very unimportant! - Standardflag + + Move branch diagonally up + Edit menu - - Rose - Standardflag + + Move branch diagonally down + Edit menu - - Surprise! - Standardflag + + &Detach + Context menu - - Info - Standardflag + + Detach branch and use as mapcenter + Context menu - - Main window - Shortcut scope + + Sort and display + MainWindow shortcut groups - - Task list - TaskEditor + + Sort children + Edit menu - - Script Editor - ScriptEditor + + Sort children backwards + Edit menu - - Main window - Shortcut group + + Scroll branch + Edit menu - - Map Editors - Shortcut group + + Unscroll branch and subtree + Edit menu - - Text Editors - Shortcut group + + Geometry of items + MainWindow shortcut groups - - Script output window + + Grow selection + Edit menu - - &Map - Menu for file actions + + Shrink selection + Edit menu - - &Open... - File menu + + Reset selection size + Edit menu - - &Restore last session + + Rotate subtree clockwise Edit menu - - Open Recent - File menu + + Rotate subtree counter-clockwise + Edit menu - - &Save... - File menu + + URLs + Shortcuts in references context menu - - Save &As... - File menu + + Open URL + Edit menu - - Save as default map - File menu + + Open all visible URLs in subtree + Edit menu - - Import - File menu + + Open all URLs in subtree + Edit menu - - (experimental) + + Open all URLs in subtree in private mode + Edit menu - - Import Dir... - Import Filters + + Extract URLs from note + Edit menu - - Export - File menu + + Edit URL... + Edit menu - - Webpage (HTML)... - File export menu + + Edit local URL... + Edit menu - - Confluence (HTML)... - File export menu + + Use heading for URL + Edit menu - - Firefox Bookmarks - File export menu + + Connect + Connection shortcuts in MainWindow - - Text (ASCII)... - File export menu + + Get data from Jira for subtree + Edit menu - - Text (Markdown)... - File export menu + + Set Jira query + Edit menu - - Text with tasks - File export menu + + Get page name and details from Confluence + Edit menu - - Image%1 - File export menu + + Get page name and details from Confluence for child pages + Edit menu - - CSV... + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow - - &Close Map - File menu + + Open linked map + Edit menu - - E&xit - File menu + + Open linked map in background tab + Edit menu - - &Undo + + Open all vym links in subtree Edit menu - - &Redo + + Edit vym link... Edit menu - - &Copy + + Delete vym link Edit menu - - Cu&t + + Hide in exports Edit menu - - &Paste - Edit menu + + Tasks + Shortcuts for tasks in MainWindow - - - Delete Selection + + Toggle task Edit menu - - Add branch as child + + Cycle task status Edit menu - - Add branch (insert) - Edit menu + + Reset delta priority for visible tasks + Reset delta - - - Add branch above - Edit menu + + Reset sleep + Task sleep - - - Add branch below - Edit menu + + + + + + + Sleep %1 days + Task sleep - - Move branch diagonally up - Edit menu + + Sleep %1 day + Task sleep - - Move branch diagonally down - Edit menu + + + Sleep %1 weeks + Task sleep - - Scroll branch + + Save selection Edit menu - - References Context menu + + Removing parts of a map Shortcuts - - vymlinks - linking maps - Shortcuts + + Remove only branch and keep its children + Edit menu - - Exports - Shortcuts + + Remove children + Edit menu - - Tasks + + Various Shortcuts - - Toggle task + + Add timestamp Edit menu - - Cycle task status + + Map properties... Edit menu - - Reset sleep - Task sleep + + Add image + Edit and context menus - - - - - - - Sleep %1 days - Task sleep + + Item properties + Dialog to edit properties of selected item - - Sleep %1 day - Task sleep + + Selections + Shortcuts - - - Sleep %1 weeks - Task sleep + + Search functions + Shortcuts - - Removing parts of a map - Shortcuts + + + Find... + Edit menu - - Various - Shortcuts + + Follow reference + Context menu - - Selections - Shortcuts + + Toggle target... + Edit menu - - Select - Select menu + + Goto target... + Edit menu - - Search functions - Shortcuts + + Move to target... + Edit menu - - - Find... + + Goto linked map... Edit menu - - &Connect + + Find duplicate URLs + Edit menu - - Connect - Shortcuts + + Select previous + Edit menu - - Get Confluence user data - Connect action + + Select next + Edit menu - - Use modifier to select and reorder objects - Mode modifier + + Unselect all + Edit menu - - Format painter: pick color from another branch and apply - Mode modifier + + Formatting + Shortcuts - - Use modifier to draw xLinks - Mode modifier + + Pic&k color + Edit menu - - Use modifier to move branches without linking - Mode modifier + + Color &branch + Edit menu - - Use modifier to move view without selecting - Mode modifier + + Color sub&tree + Edit menu - - JIRA Credentials - Settings action + + Select default font + Branch attribute - - Number of visible parents in task editor - Settings action + + Linkstyle Line - - Number of visible parents in find results window - Settings action + + Linkstyle Curve - - Open URL - Edit menu + + Linkstyle Thick Line - - Open URL in new tab - Edit menu + + Linkstyle Thick Curve - - Open all URLs in subtree - Edit menu + + Hide link if object is not selected + Branch attribute - - Edit URL... - Edit menu + + &Use color of heading for link + Branch attribute - - Use heading for URL - Edit menu + + Set &Link Color - - Open linked map - Edit menu + + Set &Selection Color - - Open all vym links in subtree - Edit menu + + Set &Background color and image - - Edit vym link... - Edit menu + + Views + Mainwindow view shortcut groups - - Delete vym link - Edit menu + + Toggle mode to temporary hide parts + View action - - Hide in exports + + Zoom in + View action + + + + + Zoom out + View action + + + + + Rotate counterclockwise + View action + + + + + Rotate clockwise + View action + + + + + reset Zoom + View action + + + + + Center on selection + View action + + + + + Fit view to selection + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Expand all branches Edit menu - - Add map (insert) + + Expand one level Edit menu - - Add map (replace) + + Collapse one level Edit menu - - Save selection + + Collapse unselected levels Edit menu - - F&ormat - Format menu + + Windows + Mainwindow view shortcut groups - - Pic&k color - Edit menu + + Note editor + View action - - Color &branch - Edit menu + + Heading editor + View action - - Color sub&tree - Edit menu + + Tree editor + View action - - Hide link if object is not selected - Branch attribute + + Task editor + View action - - &Use color of heading for link - Branch attribute + + Slide editor + View action - - reset Zoom + + Script editor View action - - Zoom in + + Script output View action - - Firefox Bookmarks - Import filters + + History window + View action - - Remove only branch and keep its children - Edit menu + + Antialiasing + View action - - Formatting - Shortcuts + + Smooth pixmap transformations + View action - - Views - Shortcuts + + Presentation mode + Mainwindow presentation shortcut groups - - Zoom out + + Toggle Presentation mode View action - - Modifier modes - Shortcuts + + Next slide + View action - - Set application to open pdf files - Settings action + + Previous slide + View action - - Set application to open external links - Settings action + + Navigation between maps + Mainwindow view shortcut groups - - Select branch after adding it - Settings action + + Next Map + View action - - Select existing heading - Settings action + + Previous Map + View action - - Exclusive flags - Settings action + + Connect + Shortcuts - - Use hide flags - Settings action + + Get Confluence user data + Connect action - - &Help - Help menubar entry + + Modifier modes + Shortcuts - - Open VYM Documentation (pdf) - Help action + + Use modifier to select and reorder objects + Mode modifier - - About VYM - Help action + + Use modifier to pick color from another branch + Mode modifier - - About QT - Help action + + Use modifier to draw xLinks + Mode modifier - - Remove - Context menu name + + Use modifier to move branches without linking + Mode modifier - - Edit XLink - Context menu name + + Use modifier to move view without selecting + Mode modifier - - Save image - Context action + + Load user flag - - &New map - File menu + + + + + + + + + Note + SystemFlag - - Property Editor - PropertyEditor + + URL + SystemFlag - - History window - HistoryWidget + + Jira + SystemFlag - - &Copy to new map - File menu + + Map target + SystemFlag - - Text (A&O report)... - Export format + + Link to another vym map + SystemFlag - - Properties + + subtree is scrolled + SystemFlag - - E&dit - Edit menu + + subtree is temporary scrolled + SystemFlag - - Add mapcenter - Canvas context menu + + Hide object in exported maps + SystemFlag - - Move branch up - Edit menu + + This won't work! + Standardflag - - Move branch down - Edit menu + + Status - ok,done + Standardflag - - Sort children - Edit menu + + Status - work in progress + Standardflag - - Edit local URL... - Edit menu + + Status - missing, not started + Standardflag - - Get page name from Confluence - Edit menu + + Take care! + Standardflag - - Open linked map in background tab - Edit menu + + Really? + Standardflag - - Reset delta priority for visible tasks - Reset delta + + Info + Standardflag - - Map properties... - Edit menu + + Idea! + Standardflag - - Add image... - Edit menu + + I just love... + Standardflag - - Property window - Dialog to edit properties of selection + + Good + Standardflag - - Goto linked map... - Edit menu + + Bad + Standardflag - - Select previous - Edit menu + + Hm... + Standardflag - - Select next - Edit menu + + Oh no! + Standardflag - - Unselect all - Edit menu + + Dangerous + Standardflag - - Select default font - Branch attribute + + Important + Standardflag - - Linkstyle Curve + + Unimportant + Standardflag - - Linkstyle Thick Curve + + Very important! + Standardflag - - Set &Link Color + + Very unimportant! + Standardflag - - Set &Selection Color + + I like this + Standardflag - - Set &Background image + + I do not like this + Standardflag - - Toolbars - Toolbars overview in view menu + + This will help + Standardflag - - Toggle Presentation mode - View action + + Call... + Standardflag - - Rotate counterclockwise - View action + + Time critical + Standardflag - - Rotate rclockwise - View action + + Surprise! + Standardflag - - Fit view to selection - View action + + Rose + Standardflag - - Note editor - View action + + + Important + Freemind flag - - Heading editor - View action + + Back + Freemind flag - - Tree editor - View action + + Forward + Freemind flag - - Task editor - View action + + Look here + Freemind flag - - Slide editor - View action + + Dangerous + Freemind flag - - Script editor - View action + + Don't forget + Freemind flag - - Script output window - View action + + Flag + Freemind flag - - History Window - View action + + Home + Freemind flag - - Antialiasing - View action + + Telephone + Freemind flag - - Smooth pixmap transformations - View action + + Music + Freemind flag - - Next Map - View action + + Mailbox + Freemind flag - - Previous Map - View action + + Mail + Freemind flag - - Next slide - View action + + Password + Freemind flag - - Previous slide - View action + + To be improved + Freemind flag - - - - - - - - - Note - SystemFlag + + Stop + Freemind flag - - Link to another vym map - SystemFlag + + Magic + Freemind flag - - subtree is scrolled - SystemFlag + + To be discussed + Freemind flag - - subtree is temporary scrolled - SystemFlag + + Reminder + Freemind flag - - Hide object in exported maps - SystemFlag + + Excellent + Freemind flag - - I just love... - Standardflag + + Linux + Freemind flag + + + + + Sweet + Freemind flag - + Settings - + Check for release notes and updates Settings action - + Set author for new maps Settings action - - Set application to zip/unzip files + + Set application to open pdf files + Settings action + + + + + Set application to open external links + Settings action + + + + + Confluence Credentials + Settings action + + + + + JIRA Credentials Settings action - + Set path for new maps Settings action - + Set path for macros Settings action - + Set number of undo levels Settings action - + Autosave Settings action - + Autosave time Settings action - + Write backup file on save Settings action - + + Logfile settings + Settings action + + + + + Select branch after adding it + Settings action + + + + + Exclusive flags + Settings action + + + + + Use hide flags + Settings action + + + + Dark theme Settings action - + + Number of visible parents in task editor + Settings action + + + + + Number of visible parents in find results window + Settings action + + + + + Animation + Settings action + + + + + Automatic layout + Settings action + + + + + Test + + + + + &Help + Help menubar entry + + + + + Open VYM Documentation (pdf) + Help action + + + + + Open VYM example maps + Help action + + + + + Download and show release notes + Help action + + + + + Check, if updates are available + Help action + + + + + Show keyboard shortcuts + Help action + + + + Show keyboard macros Help action - + Show scripting commands Help action - + Debug info Option to show debugging info - - Select color (Press Shift for more options) - - - - - View toolbar - View Toolbar name + + About QT + Help action - - Loaded %1 + + About VYM + Help action - - Saving %1... + + Add - - - Couldn't save %1, -because of existing lockfile: - -%2 + + Remove + Context menu name - - - - Import + + Hierarchy + Context menu name - - Export as CSV + + Geometry + Context menu name - - - Export to + + Tasks + Context menu - - Color of selection box - Mainwindow + + References (URLs, vymLinks, ...) + Context menu name - - <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) + + XLinks + Menu for file actions - - - - - - - - - - Warning + + Edit XLink + Context menu name - - Firefox Bookmarks + + Follow XLink + Context menu name - - Import Firefox Bookmarks into new map + + Save image + Context action - - Couldn't find configuration for export to LibreOffice - + + File actions toolbar + Toolbar for file actions - - The map %1 has been modified but not saved yet. Do you want to + + Undo and clipboard toolbar + Toolbar for redo/undo and clipboard - - Save modified map before closing it + + Edit actions toolbar + Toolbar name - - Discard changes + + Selection toolbar + Toolbar name - - - Couldn't find a viewer to open %1. - + + URLs and vymLinks toolbar + Toolbar for URLs and vymlinks - - - Please use Settings-> + + Colors toolbar + Colors toolbar name - - - Set application to open an URL + + Select color (Press Shift for more options) - - Enter URL: + + View toolbar + View Toolbar name - - HTML - Filedialog + + Limited view toolbar + View Toolbar name - - Text - Filedialog + + Editors toolbar + Editor Toolbar name - - Spreadsheet - Filedialog + + Modifier modes toolbar + Modifier Toolbar name - - Textdocument - Filedialog + + Standard Flags toolbar + Standard Flag Toolbar - - Images - Filedialog + + User Flags toolbar + user Flags Toolbar - - Set URL to a local file + + (readonly) - - Couldn't open map %1 + + + + + + + + Critical Error - - Couldn't set sleep time to %1. - + + Couldn't load default map: + +%1 + +vym will create an empty map now. + Mainwindow: Failed to load default map - - %1 items on map - - Info about map + + The map %1 +is already opened.Opening the same map in multiple editors may lead +to confusion when finishing working with vym.Do you want to - - branches - Info about map + + Open anyway - - notes - Info about map + + + + Cancel - - images - Info about map + + This map does not exist: + %1 +Do you want to create a new one? - - slides - Info about map + + Create - - xLinks - Info about map + + Loading: %1 + Progress dialog while loading maps - - - Set application to open PDF files + + Loaded %1 - - Number of undo/redo levels: + + Load vym map - - VYM -Information: + + Import: Add vym map to selection - - Settings have been changed. The next map opened will have "%1" undo/redo levels + + Import: Replace selection with vym map - - Number of seconds before autosave: + + or + File Dialog - - Set author for new maps (used in lockfile) + + Save map as - - unknown user - default name for map author in settings + + Untitled + Default name in FileSaveAs dialog - - Number of parents shown in find results: + + Couldn't save %1, +because file exists and cannot be changed. - - Number of parents shown for a task: + + + The file %1 +exists already. Do you want to - - (readonly) + + Overwrite - - Get data from JIRA for subtree - Edit menu + + + Couldn't save %1, +because of existing lockfile: + +%2 - - Images + + Saving the map failed: +Couldn't rename map to %1 - - All - Filedialog + + Save map as new default map - - URL - SystemFlag + + + + + + + + + + Warning - - User Flags toolbar - user Flags Toolbar + + You have no permissions to write to - - Hm... - Standardflag + + Couldn't save as default, failed to rename to +%1 - - - Important - Freemind flag + + Firefox Bookmarks - - Back - Freemind flag + + Import Firefox Bookmarks into new map - - Forward - Freemind flag + + + + Import - - Look here - Freemind flag + + + Open %1 map - - Dangerous - Freemind flag + + The map %1 has been modified but not saved yet. Do you want to - - Don't forget - Freemind flag + + + + Couldn't find a viewer to open %1. + - - Flag - Freemind flag + + + + Please use Settings-> - - Home - Freemind flag + + + Set application to open an URL - - Telephone - Freemind flag + + Enter Url: - - Music - Freemind flag + + HTML + Filedialog - - Mailbox - Freemind flag + + Text + Filedialog - - Mail - Freemind flag + + Spreadsheet + Filedialog - - Password - Freemind flag + + Textdocument + Filedialog - - To be improved - Freemind flag + + Images + Filedialog - - Stop - Freemind flag + + Set URL to a local file - - Magic - Freemind flag + + Enter Jira query: - - To be discussed - Freemind flag + + Couldn't open map %1 - - Reminder - Freemind flag + + Link to another vym map - - Excellent - Freemind flag + + Set as link to vym map - - Linux - Freemind flag + + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] + task sleep time dialog - - Sweet - Freemind flag + + Couldn't set sleep time to %1. + - - Confluence Credentials - Settings action + + %1 items on map + + Info about map - - Couldn't load default map: - -%1 - -vym will create an empty map now. - Mainwindow: Failed to load default map + + branches + Info about map - - Couldn't save %1, -because file exists and cannot be changed. + + tasks total + Info about map - - Saving the map failed: -Couldn't rename map to %1 + + tasks in map + Info about map - - Save map as new default map + + notes + Info about map - - You have no permissions to write to + + images + Info about map - - Overwrite as new default map + + slides + Info about map - - Couldn't save as default, failed to rename to -%1 + + xLinks + Info about map - - Open Freemind map + + Load images - - Link to another vym map + + Color of selection box + Mainwindow - - Set as link to vym map + + + Set application to open PDF files - - Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] - task sleep time dialog + + Set application to open external links - - tasks total - Info about map + + Load vym script - - - tasks in map - Info about map + + + Number of undo/redo levels: - - Load vym script + + VYM -Information: - - Information + + Settings have been changed. The next map opened will have "%1" undo/redo levels - - Restart vym to apply the changed dark theme setting + + Number of seconds before autosave: - - - No SSL support available for this build of vym + + Set author for new maps (used in lockfile) - - History for %1 - Window Caption + + unknown user + default name for map author in settings - - Export in last used format (%1) to: %2 - status tip + + Information - - Critcal error + + Restart vym to apply the changed dark theme setting - - Couldn't find the documentation %1 in: -%2 + + Number of parents shown in find results: - - Load vym example map + + Number of parents shown for a task: - - Please allow vym to download release notes! + + + No SSL support available for this build of vym - - Allow + + Undo (%1) - - Do not allow + + Undo: %1 (%2) - - Thank you for enabling downloads! + + Redo (%1) - - That's ok, though I would be happy to see many users working with vym and also on which platforms. + + Redo: %1 (%2) - - Update information + + History for %1 + Window Caption - - vym is up to date. - MainWindow + + Repeat last Export %1 +Format: %2 to +%3 + status tip - - Checking for updates... - MainWindow + + Branch + Context menu to follow links - - Please allow vym to check for updates! + + Url + Context menu to follow links - - Animation - Settings action + + Map + Context menu to follow links - - Open VYM example maps - Help action + + Critcal error - - Download and show release notes - Help action + + Couldn't find the documentation %1 in: +%2 - - Check, if updates are available - Help action + + Load vym example map - - Show keyboard shortcuts - Help action + + Please allow vym to download release notes! - - Tasks - Context menu + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - - References (URLs, vymLinks, ...) - Context menu name + + Allow - - XLinks - Menu for file actions + + Do not allow - - Undo and clipboard toolbar - Toolbar for redo/undo and clipboard + + Thank you for enabling downloads! - - Selection toolbar - Toolbar name + + That's ok, though I would be happy to see many users working with vym and also on which platforms. - - URLs and vymLinks toolbar - Toolbar for URLs and vymlinks + + Update information - - Colors toolbar - Colors toolbar name + + vym is up to date. + MainWindow - - or - File Dialog + + Checking for updates... + MainWindow - - Save map as + + Please allow vym to check for updates! MapEditor - + Map Editor Shortcut scope - - + + Map Editors + Shortcut group + + + + + Edit heading MapEditor - + Print vym map MapEditor - - %1 items selected + + Warning - NoteEditor + QObject - - Note Editor - Name of editor shown as window title + + Export as AO report - - - QObject - - Export as AO report + + (still experimental) - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Critical Export Error - - - - Could not write %1 + + Could not export as AO to %1 - - Exporting to %1 will overwrite the existing file: -%2 + + + + + + + + + + Export failed. - - Warning: Overwriting file + + Export as ASCII - - Could not export as AO to %1 + + Could not export as ASCII to %1 - - Could not export as ASCII to %1 + + + + + + + + + + + Error - - Export as CSV + + + Couldn't access temporary directory + - - Could not export as CSV to %1 + + Warning: Overwriting file + + + + + Exporting to %1 will overwrite the existing file: +%2 - - + + Contents: Used in HTML export - - Export aborted. + + + Trying to save HTML file: - - Trying to create directory for flags: + + + + Could not write %1 - - Could not create %1 + + Export as CSV - - - Critical + + Could not export as CSV to %1 + + + + + Export as Firefox bookmarks + + + + + Could not export as Firefox bookmarks to %1 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export - + + Export aborted. + + + + + + Critical + + + + Could not find stylesheet %1 - + Error ExportHTML - + Could not copy %1 to %2 @@ -2659,490 +2910,431 @@ Couldn't rename map to %1 - - - Trying to save HTML file: - - - - - - - - - - - - - Export failed. + + Trying to create directory for flags: - - Could not export as OrgMode to %1 + + Could not create %1 - - Could not export as LaTeX to %1 + + Export as LibreOffice Impress presentation - - Export as LibreOffice Impress presentation + + No objects in map! - - No objects in map! + + Could not compress file %1 - + Couldn't read settings from "%1" - + Check "%1" in %2 - - - + + + Could not read %1 - - - - - - - - - - - - - - - - - - Critical Error - - - - - Couldn't move existing file out of the way before saving. - - - - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! - - - - - - zip didn't exit normally - - - - - Couldn't rename %1 back to %2 - - - - - Couldn't remove target of old symbolic link %1 - - - - - Couldn't rename output to target of old symbolic link %1 + + Could not export as LaTeX to %1 - - Couldn't link from %1 to target of old symbolic link %2 + + Export as Markdown - - Saved %1, but couldn't remove %2 + + Could not export as Markdown to %1 - - Couldn't start %1 tool to decompress data! - + + Could not export as OrgMode to %1 - - Could not start %1 + + Images - - - %1 didn't exit normally + + The directory %1 is not empty. +Do you risk to overwrite its contents? + write directory - + Overwrite - + Cancel - - Warning - - - - - - - - - - - - - - - Error - - - - - - Couldn't access temporary directory - + + Import Firefox bookmarks + Import dialog - - Export as ASCII + + Loading bookmarks: + Progress dialog while importing bookmarks - - (still experimental) + + Imported %1 bookmarks + Import dialog - - The directory %1 is not empty. -Do you risk to overwrite its contents? - write directory + + Warning - - Warning: Version Problem + + Couldn't find macros at %1. + + Macros::pathExists - - <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> + + Please use Settings-> - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! + + Set directory for vym macros - - Couldn't find macros at %1. - - Macros::pathExists + + Note Editor + Name of editor shown as window title - - Please use Settings-> + + Heading Editor + Name of editor shown as window title - - Set directory for vym macros + + + + + + + + + + + + + + + Critical Error - - Export as Markdown + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. - - Could not export as Markdown to %1 + + Couldn't find tar tool to zip data. - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. + + Couldn't find tar tool to unzip data. - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform + + + Couldn't open "%1" +. - - - Couldn't open "%1" -. + + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: + + - + Couldn't write macros to "%1" . - + + Couldn't read script from "%1" . - + Couldn't write script to "%1" . - - Export as Firefox bookmarks + + JIRA agent not setup. - - Could not export as Firefox bookmarks to %1 + + %1 +Line %2, column %3 + Error message while parsing XML - - Import Firefox bookmarks - Import dialog + + Warning: Version Problem - - Loading bookmarks: - Progress dialog while importing bookmarks + + <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - Imported %1 bookmarks - Import dialog + + Could not start %1 - - Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: + + %1 didn't exit normally + + + + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! - - JIRA agent not setup. + + + + + zip didn't exit normally + + + + + Couldn't start tool to decompress data! + + ScriptEditor - - - Warning - - - - + Slide Mode in scriptEditor - + Macro Mode in scriptEditor - + Script Mode in scriptEditor - + No script selected scriptname in scriptEditor - - Couldn't get model to save script into slide! - - - - - Couldn't find slide to save script into slide! + + Script Editor + Shortcut scope - - Macros saved to %1 + + + Warning - - Script saved to %1 + + Couldn't get model to save script into slide! - - Save script + + Couldn't find slide to save script into slide! - - The file %1 -exists already. -Do you want to overwrite it? - dialog 'save as' + + Macros saved to %1 - - Overwrite + + Load script - - Cancel + + Script saved to %1 - - Load script + + Save script TaskEditor - + Show only tasks from current map Filters in task Editor - + Show only active tasks Filters in task Editor - + Show only new tasks Filters in task Editor - + Show only blocker tasks Filters in task Editor - - + + Show only tasks marked with this arrow-up flag Filters in task Editor - + Show only tasks marked without any arrow-up flag Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor - + Delta TaskEditor - + Status TaskEditor - + Age total TaskEditor - + Age mod. TaskEditor - + Sleep TaskEditor - + Map TaskEditor - + Flags TaskEditor - + Task TaskEditor @@ -3151,280 +3343,334 @@ Do you want to overwrite it? TextEditor - - &Import... + + No filename available for this note. + Statusbar message - - &Export... + + Note Actions + + + + + &Note + Menubar + + + + + File actions + TextEditor shortcut groups - - Export &As... (HTML) + + &Import... + + + + + &Export... - + Export &As...(ASCII) - + &Print... - + + &Delete All + + + + + Edit actions + TextEditor shortcut groups + + + + + Edit Actions + + + + + Edi&t + + + + &Undo - + &Redo - + Select and copy &all - + &Copy + Edit menu - + Cu&t + Edit menu - + &Paste + Edit menu - - &Delete All + + Insert image + TextEditor - - - - Texteditor - Shortcuts + + Format actions + TextEditor shortcut groups - - Edi&t + + Font hints + toolbar in texteditor - - Font hints - toolbar in texteditor + + F&ormat - + &Font hint - + &Richtext - + Fonts toolbar in texteditor - + Format toolbar in texteditor - - &Color... + + &Text Color... - + + &Text background color... + + + + &Bold - + &Italic - + &Underline - + + Subs&cript + + + + + Su&perscript + + + + &Left - + C&enter - + &Right - + &Justify - + &Settings - + Set &fixed font - + Set &variable font - + &fixed font is default - - Export Note to single file - - - - - - Overwrite + + Set RichText mode editor background color + TextEditor - - - Cancel + + Set RichText mode default text color + TextEditor - - Export Note to single file (ASCII) + + Set RichText mode default text background color + TextEditor - - Print - TextEditor + + Note Editor - - Subs&cript + + + Overwrite - - Su&perscript + + + Cancel - - Note Editor + + Export Note to single file - - F&ormat + + The file %1 +exists already. +Do you want to overwrite it? + dialog 'save note as' - - Edit Actions + + Couldn't export note + dialog 'save note as' - - Note Actions + + Export Note to single file (ASCII) - - Ready - Statusbar message + + Print + TextEditor - - No filename available for this note. - Statusbar message + + Text color + TextEditor windows - - &Note - Menubar + + Text background color + TextEditor windows - - Set RichText default background color - TextEditor + + Text editor background color + TextEditor windows - - Set RichText default font color - TextEditor + + Text editor default text color + TextEditor windows - - - The file %1 -exists already. -Do you want to overwrite it? - dialog 'save note as' + + Text editor default text background color + TextEditor windows - - Couldn't export note - dialog 'save note as' + + Load image + TextEditor TreeEditor - + Select upper object Tree Editor - + Select lower object Tree Editor @@ -3433,38 +3679,62 @@ Do you want to overwrite it? VymModel - + + unknown user + default name for map author in settings + + + + unnamed - - - - + + + Critical Parse Error - - + + + + + Critical Load Error - + Couldn't create temporary directory before load - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3474,126 +3744,139 @@ Do you want to write the map - - uncompressed, potentially overwrite existing data - - - - - unknown user - Default for lockfiles of maps - - - - - Warning: Map already opended - VymModel + + compressed (vym default) - - compressed (vym default) + + uncompressed, potentially overwrite existing data - - + + Cancel - - + + Save Error - + %1 could not be removed before saving - + %1 could not be renamed before saving - + Critical Save Error - - Couldn't create temporary directory before save + + Couldn't access zipDir %1 - - - - Images + + Saving %1... - - - All - Filedialog + + Couldn't save - - Load image + + Compressing %1 + + + + + + + Saved %1 + + + + + Images + + + + + All + Filedialog - + Save image - + The file %1 exists already. Do you want to overwrite it? - + Overwrite - - + + Critical Error - + Couldn't save %1 - + Critical Import Error - + Cannot find the directory %1 - - + + Choose directory structure to import - + + Removed lockfile for %1 + + + + + unknown user + Default for lockfiles of maps + + + + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3602,30 +3885,38 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - - Removed lockfile for %1 + + Warning: Map already opended + VymModel + + + + + + + Warning - + Couldn't remove lockfile for %1 - + Cannot create lockfile of map! It will be opened in readonly mode. - + Warning VymModel - + The file of the map on disk has changed: %1 @@ -3634,130 +3925,142 @@ Do you want to reload that map with the new file? - + Reload - + Ignore - - - Warning - - - - + Autosave disabled during undo. - + Note FindAll in VymModel - - New map - New map + + Could not setup JiraAgent to retrieve data from Jira - - Could not find Jira ticket pattern in %1 + + Contacting Jira... VymModel - + + Received Jira data. VymModel - + Export map as image - + Couldn't save QImage %1 in format %2 - - Export map as SVG + + Export map as PDF - - Export map as XML + + Export map as SVG - - Export map as PDF + + + Export to - - unknown user - default name for map author in settings + + + + (still experimental) - - Contacting Jira... - VymModel + + Export map as XML - + Export XML to directory - + Critical Export Error - - - (still experimental) + + + Export as csv - - - Export as csv + + Couldn't find configuration for export to LibreOffice Impress + - - Load background image + + %1 items selected + Status message when selecting multiple items + + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error VymProcess - - + + Critical Error - + Could not start %1 - + %1 didn't exit normally @@ -3765,13 +4068,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -3780,62 +4083,24 @@ Do you want to reload that map with the new file? WarningDialog - - Cancel - - - - + Proceed - + Show this message again - + Warning Warning dialog default window name - - - ZipSettingsDialog - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - Set path to unzip files - - - - - - - - Status: %1 + + Cancel diff --git a/lang/vym.es.ts b/lang/vym_es.ts similarity index 82% rename from lang/vym.es.ts rename to lang/vym_es.ts index 2d257c6..21553fd 100644 --- a/lang/vym.es.ts +++ b/lang/vym_es.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog @@ -48,6 +48,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -63,6 +82,26 @@ Cerrar + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Cargar imagen de fondo + + BranchPropertyEditor @@ -142,13 +181,13 @@ - - + Property Editor Window caption Editar propiedad - + Name Branchprop window: Attribute name Ventana propiedades de rama: Nombre del atributo @@ -171,7 +210,7 @@ want to allow this in your system! Ventana propiedades de rama: Tipo de atributo - + %1 days ago task related times @@ -189,11 +228,29 @@ want to allow this in your system! task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -466,20 +523,11 @@ want to allow this in your system! - FindWidget + FindControlsWidget - + Find: - FindWidget - - - - - HeadingEditor - - - Heading Editor - Name of editor shown as window title + FindControlsWidget @@ -506,25 +554,25 @@ want to allow this in your system! Deshacer - + Action Table with actions Acciones - + Comment Table with actions Comentarios - + Undo action Table with actions Acciones deshechas - + Current state Current bar in history hwindow Estado actual @@ -533,12 +581,14 @@ want to allow this in your system! JiraAgent - + + Warning Advertencia - + + Authentication problem when contacting JIRA @@ -550,11 +600,21 @@ want to allow this in your system! Añadir - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -585,7 +645,7 @@ want to allow this in your system! Main - + Linkstyle Line Línea de estilo de enlace @@ -595,51 +655,49 @@ want to allow this in your system! Estilo de enlace de línea gruesa - + Set &Link Color Configurar &Color de Enlace - Set &Background Color - Configurar &Color de Fondo + Configurar &Color de Fondo - + &View &Vista - - + + Set application to open an URL Configurar aplicación para abrir una URL - + Overwrite Sobreescribir - - - - + + + Cancel Cancelar - + Open anyway Abrir de todas maneras - + Create Crear - + Load vym map Cargar mapa vym @@ -654,50 +712,48 @@ want to allow this in your system! Importar: Reemplaza selección con mapa vym - Save modified map before closing it - Guardar mapa modificado antes de cerrarlo + Guardar mapa modificado antes de cerrarlo - Discard changes - Descartar cambios + Descartar cambios - + VYM -Information: VYM -Información: - - - - - + + + - + + + Critical Error Error crítico - + Critcal error Error crítico - + Add Añadir - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to El mapa %1 ya está abierto. Abrir el mismo mapa en múltiples editores puede conducir a confusión cuando se cierran tareas con vym. ¿Desea abrirlo? - + This map does not exist: %1 Do you want to create a new one? @@ -706,78 +762,66 @@ Do you want to create a new one? ¿Desea crear uno nuevo? - + Loading: %1 Progress dialog while loading maps - Saved %1 - Guardado %1 + Guardado %1 - Couldn't save - No se pudo guardar + No se pudo guardar - - + + The file %1 exists already. Do you want to El archivo %1 ya existe. ¿Desea crearlo? - + Saving the map failed: Couldn't rename map to %1 - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - + Import Firefox Bookmarks into new map - - Open Freemind map - - - - + The map %1 has been modified but not saved yet. Do you want to El mapa %1 ha sido modificado pero se ha guardado todavía. ¿Desea guardarlo? - + Couldn't open map %1 No se pudo abrir mapa %1 - + Take care! Standardflag ¡Ten cuidado! @@ -807,13 +851,13 @@ Couldn't rename map to %1 Mal - + Time critical Standardflag Tiempo crítico - + Idea! Standardflag ¡Idea! @@ -855,15 +899,19 @@ Couldn't rename map to %1 Esto puede ayudar - - + + Import Importar - - + + + + + + @@ -871,58 +919,56 @@ Couldn't rename map to %1 - - - + (still experimental) (aún experimental) - + &Print &Imprimir - - Export to - Exportar a + Exportar a - - - - - + + + + + - - - + + + Warning Advertencia - - + + + Couldn't find a viewer to open %1. No se pudo encontrar un visor para abrir %1. - - + + + Please use Settings-> Por favor use Configuración-> - + Couldn't set sleep time to %1. - + branches Info about map @@ -952,31 +998,31 @@ Couldn't rename map to %1 - - + + Set application to open PDF files Configurar aplicación para abrir archivos PDF - + Oh no! Standardflag ¡Oh cielos! - + Search results list FindResultWidget - + File actions toolbar Toolbar for file actions - + PDF%1 File export menu @@ -988,41 +1034,31 @@ Couldn't rename map to %1 - - Repeat last export (%1) - - - - + Edit actions toolbar Toolbar name - + Task list TaskEditor - + Script Editor ScriptEditor - + E&dit Edit menu - - Add attribute - - - - + &Detach Context menu @@ -1034,13 +1070,13 @@ Couldn't rename map to %1 - + Sort children backwards Edit menu - + Expand all branches Edit menu @@ -1052,162 +1088,127 @@ Couldn't rename map to %1 - + Collapse one level Edit menu - + Collapse unselected levels Edit menu - - Unscroll children - Edit menu - - - - - Properties - - - - + Move branch up Edit menu Mover rama arriba - + Move branch down Edit menu Mover rama abajo - + Grow selection Edit menu - + Shrink selection Edit menu - + Reset selection size Edit menu - - References Context menu - Shortcuts - - - - - vymlinks - linking maps - Shortcuts - - - - - Exports - Shortcuts - - - - - Tasks - Shortcuts - - - - + Toggle task Edit menu - + Cycle task status Edit menu - + Reset sleep Task sleep - - - - - + + + + + Sleep %1 days Task sleep - + Sleep %1 day Task sleep - - + + Sleep %1 weeks Task sleep - + Removing parts of a map Shortcuts - + Various Shortcuts - + Map properties... Edit menu - + Selections Shortcuts - + Select Select menu - + Toggle target... Edit menu - + Goto target... Edit menu @@ -1219,37 +1220,37 @@ Couldn't rename map to %1 - + Search functions Shortcuts - + Find duplicate URLs Edit menu - + Note editor View action - + Heading editor View action - + Set author for new maps Settings action - + Number of visible parents in task editor Settings action @@ -1261,83 +1262,72 @@ Couldn't rename map to %1 - - Open all URLs in subtree (including scrolled branches) - Edit menu - - - - + Extract URLs from note Edit menu - + Add timestamp Edit menu - + Remove children Edit menu - + Center on selection View action - + Editors toolbar Editor Toolbar name - + Modifier modes toolbar Modifier Toolbar name - + Property Editor PropertyEditor Editar propiedad - + Script output window - + History window HistoryWidget - + Save as default map File menu - - (experimental) - - - - + Import Dir... Import Filters - + Webpage (HTML)... File export menu @@ -1384,115 +1374,91 @@ Couldn't rename map to %1 - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - - Get data from JIRA for subtree - Edit menu - - - - - Get page name from Confluence - Edit menu - - - - + Open linked map in background tab Edit menu - + Reset delta priority for visible tasks Reset delta - - Add image... + + Goto linked map... Edit menu - - Goto linked map... + + Select previous Edit menu - Select previous + Select next Edit menu - Select next + Unselect all Edit menu - - Unselect all - Edit menu - - - - + Select default font Branch attribute - + Toolbars Toolbars overview in view menu - + Toggle Presentation mode View action - + Rotate counterclockwise View action - - Rotate rclockwise - View action - - - - + Tree editor View action - + Task editor View action - + Slide editor View action @@ -1504,37 +1470,31 @@ Couldn't rename map to %1 - - Script output window - View action - - - - + Next slide View action - + Previous slide View action - + Map target SystemFlag - + Standard Flags toolbar Standard Flag Toolbar - + Status - ok,done Standardflag @@ -1552,13 +1512,13 @@ Couldn't rename map to %1 - + Call... Standardflag Llamar... - + Very important! Standardflag ¡Muy importante! @@ -1570,7 +1530,7 @@ Couldn't rename map to %1 ¡Poco importante! - + Rose Standardflag Rosa @@ -1582,18 +1542,18 @@ Couldn't rename map to %1 ¡Sorpresa! - + Fit view to selection View action - + &Connect - + Connect Shortcuts @@ -1605,43 +1565,36 @@ Couldn't rename map to %1 - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply - Mode modifier - - - - + Use modifier to move branches without linking Mode modifier - + Use modifier to move view without selecting Mode modifier - Images - Imágenes + Imágenes - - All - Filedialog + + URL + SystemFlag - - URL + + Jira SystemFlag @@ -1658,7 +1611,7 @@ Couldn't rename map to %1 - + Important Freemind flag @@ -1785,7 +1738,7 @@ Couldn't rename map to %1 Dulce - + Settings @@ -1796,13 +1749,7 @@ Couldn't rename map to %1 - - Set application to zip/unzip files - Settings action - - - - + Confluence Credentials Settings action @@ -1814,13 +1761,13 @@ Couldn't rename map to %1 - + Dark theme Settings action - + Download and show release notes Help action @@ -1856,25 +1803,25 @@ Couldn't rename map to %1 - + Tasks Context menu - + XLinks Menu for file actions - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard - + Selection toolbar Toolbar name @@ -1886,13 +1833,13 @@ Couldn't rename map to %1 - + Colors toolbar Colors toolbar name - + Select color (Press Shift for more options) @@ -1903,13 +1850,19 @@ Couldn't rename map to %1 - + + Limited view toolbar + View Toolbar name + + + + User Flags toolbar user Flags Toolbar - + Couldn't load default map: %1 @@ -1919,7 +1872,7 @@ vym will create an empty map now. - + Loaded %1 @@ -1930,24 +1883,19 @@ vym will create an empty map now. - - Saving %1... - - - - + Save map as - + Couldn't save %1, because file exists and cannot be changed. - - + + Couldn't save %1, because of existing lockfile: @@ -1955,18 +1903,11 @@ because of existing lockfile: - - Couldn't find configuration for export to LibreOffice - - - - - Enter URL: - Introduzca URL: + Introduzca URL: - + HTML Filedialog @@ -2001,13 +1942,13 @@ because of existing lockfile: Establecer URL a un fichero local - + Color of selection box Mainwindow - + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) @@ -2017,7 +1958,33 @@ because of existing lockfile: - + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + + + + Allow @@ -2027,17 +1994,17 @@ because of existing lockfile: - + Thank you for enabling downloads! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -2059,30 +2026,60 @@ because of existing lockfile: - + Firefox Bookmarks Favoritos de Firefox - + + &Map + Map menu + &Mapa + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + + File actions + MainWindow shortcut groups + + + + &Open... File menu &Abrir... - + Open Recent File menu Abrir reciente + &Clear + Clear recent files menu + + + + &Save... File menu &Guardar... - + Save &As... File menu Guardar &Como... @@ -2094,68 +2091,117 @@ because of existing lockfile: Importar - + Export File menu Exportar - + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + Image%1 File export menu Imagen%1 - + + Map properties + + + + &Close Map File menu &Cerrar Mapa + Exit + MainWindow shortcut groups + + + + E&xit File menu Salir& - + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + &Undo Edit menu &Deshacer - + &Redo Edit menu &Rehacer - + + Repeat last action + Edit menu + + + + + &Copy Edit menu &Copiar - + + Cu&t Edit menu Menú editar - + + &Paste Edit menu &Pegar - - + Delete Selection Edit menu Eliminar Selección - + + Add + MainWindow shortcut groups + Añadir + + + Add branch as child Edit menu Agregar rama como hija @@ -2167,70 +2213,177 @@ because of existing lockfile: Adicionar rama (insertar) + - Add branch above Edit menu Agregar rama arriba - - + + Add branch below Edit menu Agregar rama abajo - + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + Scroll branch Edit menu Acoplar rollo - - - Find... + + Unscroll branch and subtree Edit menu - Encontrar... + - - Open URL - Edit menu - Abrir URL + + Geometry of items + MainWindow shortcut groups + - - Open URL in new tab + + Rotate subtree clockwise Edit menu - Abrir URL en una nueva pestaña + - - Open all URLs in subtree + + Rotate subtree counter-clockwise Edit menu - Menú editar + - - Edit URL... - Edit menu - Editar URL... + + URLs + Shortcuts in references context menu + - + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + + Find... + Edit menu + Encontrar... + + + + Open URL + Edit menu + Abrir URL + + + Open URL in new tab + Edit menu + Abrir URL en una nueva pestaña + + + + Open all URLs in subtree + Edit menu + Menú editar + + + + Edit URL... + Edit menu + Editar URL... + + + Use heading for URL Edit menu Usar encabezado para URL - + Open linked map Edit menu Abrir mapa enlazado - + Open all vym links in subtree Edit menu Abrir todos los enlaces de vym en subárbol @@ -2242,157 +2395,138 @@ because of existing lockfile: Editar enlace vym... - + Delete vym link Edit menu Eliminar enlace de vym - + Hide in exports Edit menu Ocultar en la exportación - + Add map (insert) Edit menu Añadir mapa (insertar) - + Add map (replace) Edit menu Añadir mapa (reemplazar) - + Save selection Edit menu Guardar Selección - + F&ormat Format menu Formato& - + Pic&k color Edit menu Esco&ger Color - + Color &branch Edit menu Color de &rama - + Color sub&tree Edit menu Color de Sub&árbol - + Hide link if object is not selected Branch attribute Esconder enlace si el objeto no se selecciona - + &Use color of heading for link Branch attribute &Usar color para encabezado de enlace - + reset Zoom View action Reiniciar Zoom - + Zoom in View action Acercar - + Main window Shortcut scope - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - &Map Menu for file actions - &Mapa + &Mapa - + &Restore last session Edit menu - + Firefox Bookmarks Import filters Favoritos de Firefox - + Remove only branch and keep its children Edit menu - + Formatting Shortcuts - - Views - Shortcuts - - - - + Zoom out View action Alejar - + Use modifier to draw xLinks Mode modifier Usar modificadores para dibujar XEnlace - + Set application to open pdf files Settings action Configurar aplicación para abrir archivos pdf @@ -2410,13 +2544,12 @@ because of existing lockfile: Seleccionar rama después de adicionarle - Select existing heading Settings action - Seleccionar encabezado existente + Seleccionar encabezado existente - + Exclusive flags Settings action Flags exclusivos @@ -2428,7 +2561,7 @@ because of existing lockfile: Usar flags ocultos - + &Help Help menubar entry &Ayuda @@ -2452,31 +2585,31 @@ because of existing lockfile: Acerca de QT - + Remove Context menu name Remover - + Edit XLink Context menu name Editar XEnlace - + Follow XLink Context menu name Seguir XLink - + Save image Context action Guardar imagen - + &New map File menu Nuevo mapa @@ -2488,31 +2621,30 @@ because of existing lockfile: &Copiar en nuevo mapa - + Add mapcenter Canvas context menu Añadir mapcenter - + Sort children Edit menu Ordenar hijos - + Edit local URL... Edit menu Editar URL local... - Property window Dialog to edit properties of selection - Propiedades de ventana + Propiedades de ventana - + Linkstyle Curve Estilo de curva @@ -2522,23 +2654,21 @@ because of existing lockfile: Estilo de curva gruesa - + Set &Selection Color Establecer &color selección - Set &Background image - Establecer &imagen de fondo + Establecer &imagen de fondo - History Window View action - Historico de ventana + Historico de ventana - + Antialiasing View action No alisar @@ -2550,25 +2680,48 @@ because of existing lockfile: Transformaciones de pixmap lisas - + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + Next Map View action Nuevo mapa - + Previous Map View action Previsualizar mapa - + Modifier modes Shortcuts - + + Use modifier to pick color from another branch + Mode modifier + + + + + Load user flag + + + + @@ -2581,7 +2734,7 @@ because of existing lockfile: Nota - + Link to another vym map SystemFlag Enlace a otro mapa vym @@ -2611,7 +2764,7 @@ because of existing lockfile: Me encanta... - + Set path for new maps Settings action @@ -2647,7 +2800,13 @@ because of existing lockfile: Escribir fichero de copia de seguridad al guardar - + + Logfile settings + Settings action + + + + Animation Settings action Animación @@ -2664,37 +2823,47 @@ because of existing lockfile: - + Open VYM example maps Help action Abrir mapas de ejemplo de VYM - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Geometría + + + References (URLs, vymLinks, ...) Context menu name Referencias (URLs, vymLinks, ...) - Follow XLink Context menu - Seguir XLink + Seguir XLink - Export as CSV - Exportar a CSV + Exportar a CSV - + %1 items on map Info about map %1 elementos en el mapa - + Number of undo/redo levels: Número de niveles deshacer/rehacer: @@ -2730,12 +2899,93 @@ because of existing lockfile: - + (readonly) - + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + + + + + Untitled + Default name in FileSaveAs dialog + + + + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + Link to another vym map Enlace a otro mapa vym @@ -2745,13 +2995,13 @@ because of existing lockfile: - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -2763,12 +3013,22 @@ because of existing lockfile: - + + Load images + + + + + Set application to open external links + Establecer aplicación para abrir enlaces externos + + + Load vym script - + Information @@ -2784,25 +3044,39 @@ because of existing lockfile: - - History for %1 - Window Caption - Historial para %1 + + Undo (%1) + - - Export in last used format (%1) to: %2 - status tip + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) - + + History for %1 + Window Caption + Historial para %1 + + + Couldn't find the documentation %1 in: %2 No se pudo encontrar la documentación %1 in: - + Load vym example map Cargar mapa vym de ejemplo @@ -2810,75 +3084,81 @@ because of existing lockfile: MapEditor - + Map Editor Shortcut scope - + + Map Editors + Shortcut group + + + + Edit heading MapEditor Editar encabezado - + Print vym map MapEditor - - %1 items selected - + + Warning + Advertencia NoteEditor - Note Editor Name of editor shown as window title - Editor de notas + Editor de notas QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error Error de exportación crítico - + Could not write %1 No se pudo escribir %1 - + Exporting to %1 will overwrite the existing file: %2 @@ -2906,7 +3186,7 @@ because of existing lockfile: - + Trying to create directory for flags: @@ -2916,8 +3196,8 @@ because of existing lockfile: - - + + Critical @@ -2937,20 +3217,19 @@ because of existing lockfile: - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3004,17 +3283,22 @@ because of existing lockfile: - + Export as LibreOffice Impress presentation - + No objects in map! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" @@ -3032,88 +3316,90 @@ because of existing lockfile: No se pudo leer %1 - - - - - - - - - - - - - - - - - - Critical Error - Error crítico - - - - Couldn't move existing file out of the way before saving. - + + Note Editor + Name of editor shown as window title + Editor de notas - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Heading Editor + Name of editor shown as window title - - - zip didn't exit normally - zip no salió normalmente + + + + + + + + + + + + + + + Critical Error + Error crítico - - Couldn't rename %1 back to %2 + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. - - Couldn't remove target of old symbolic link %1 + + Couldn't find tar tool to zip data. - - Couldn't rename output to target of old symbolic link %1 + + Couldn't find tar tool to unzip data. - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - Saved %1, but couldn't remove %2 - + + + + + zip didn't exit normally + zip no salió normalmente - - Couldn't start %1 tool to decompress data! + + Couldn't start tool to decompress data! + - + Could not start %1 No pudo arrancar %1 - - + %1 didn't exit normally %1 no f&inalizó de forma habitual - + + Images + Imágenes + + + Overwrite Sobreescribir @@ -3123,22 +3409,21 @@ The map could not be saved, please check if backup file is available or export a Cancelar - + Warning Advertencia - - - - - - - + + + + + + Error Error @@ -3160,14 +3445,14 @@ The map could not be saved, please check if backup file is available or export a (experimental) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory El directorio %1 no está vacío. Desea sobreescribir el contenido? - + Warning: Version Problem @@ -3176,11 +3461,6 @@ Do you risk to overwrite its contents? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3199,12 +3479,12 @@ Do you risk to overwrite its contents? Establecer directorio para las macros vym - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3237,39 +3517,28 @@ Do you risk to overwrite its contents? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3281,10 +3550,17 @@ Do you risk to overwrite its contents? - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3309,13 +3585,13 @@ Do you risk to overwrite its contents? Guardar - + Warning Advertencia - + Slide Mode in scriptEditor @@ -3339,7 +3615,13 @@ Do you risk to overwrite its contents? - + + Script Editor + Shortcut scope + + + + Couldn't get model to save script into slide! @@ -3349,12 +3631,12 @@ Do you risk to overwrite its contents? - + Macros saved to %1 - + Script saved to %1 @@ -3364,25 +3646,22 @@ Do you risk to overwrite its contents? Salvar script - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - El fichero %1 ya existe. ¿Desea sobreescribir? + El fichero %1 ya existe. ¿Desea sobreescribir? - Overwrite - Sobreescribir + Sobreescribir - Cancel - Cancelar + Cancelar - + Load script Cargar script @@ -3401,7 +3680,7 @@ Do you want to overwrite it? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3437,11 +3716,17 @@ Do you want to overwrite it? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor @@ -3498,32 +3783,37 @@ Do you want to overwrite it? TextEditor - + &Import... &Importar... - + &Export... &Exportar... - Export &As... (HTML) - Exportar &Como...(HTML) + Exportar &Como...(HTML) - + Export &As...(ASCII) Exportar &Como...(ASCII) - + &Print... &Imprimir... - + + Edit actions + TextEditor shortcut groups + + + + &Undo &Deshacer @@ -3538,27 +3828,54 @@ Do you want to overwrite it? Seleccionar y copiar &todo - &Copy - &Copiar + &Copiar - Cu&t - &Cortar + &Cortar - &Paste - &Pegar + &Pegar - + &Delete All &Borrar Todo - + + &Copy + Edit menu + &Copiar + + + + Cu&t + Edit menu + + + + + &Paste + Edit menu + &Pegar + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + &Font hint &Consejo de Fuente @@ -3568,24 +3885,59 @@ Do you want to overwrite it? - + Fonts toolbar in texteditor - + Format toolbar in texteditor - + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + + + + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Cargar imagen + + &Color... - &Color... + &Color... - + &Bold &Negrilla @@ -3600,55 +3952,59 @@ Do you want to overwrite it? &Subrayado - + &Left &Izquierda - + C&enter &Centro - + &Right &Derecha - + &Justify &justificado - + &Settings &Configuración - - Set RichText default background color + + Print TextEditor - + Imprimir - - Set RichText default font color - TextEditor + + Set &fixed font + Configurar fuente &arreglada + + + + File actions + TextEditor shortcut groups - - Print - TextEditor - Imprimir + + &Text Color... + - - Set &fixed font - Configurar fuente &arreglada + + &Text background color... + - + Set &variable font Configurar &variable fuente @@ -3658,97 +4014,105 @@ Do you want to overwrite it? &fuente arreglada por defecto - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file Exportar nota a archivo sencillo - - + + Overwrite Sobreescribir - - + + Cancel Cancelar - + Export Note to single file (ASCII) Exportar Nota a archivo simple (ASCII) - + Subs&cript - - - - Texteditor - Shortcuts - - - - + Edi&t - + Font hints toolbar in texteditor - + Su&perscript - + Note Editor Editor de notas - + F&ormat F&ormato - + Edit Actions Editar acciones - + Note Actions Nota de acciones - Ready Statusbar message - Mensaje de barra de estados + Mensaje de barra de estados - + No filename available for this note. Statusbar message Archivo no disponible para esta nota. - + &Note Menubar Nota - - + The file %1 exists already. Do you want to overwrite it? @@ -3756,7 +4120,7 @@ Do you want to overwrite it? El fichero %1 ya existe. ¿Desea sobreescribir? - + Couldn't export note dialog 'save note as' No pudo exportar nota @@ -3765,7 +4129,7 @@ Do you want to overwrite it? TreeEditor - + Select upper object Tree Editor @@ -3780,44 +4144,62 @@ Do you want to overwrite it? VymModel - + unknown user default name for map author in settings - + unnamed sin nombre - - - - + + + Critical Parse Error Error Crítico de conversión - - + + + + + Critical Load Error Error crítico de carga - + Couldn't create temporary directory before load No se pudo crear un directorio temporal antes de cargar - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3827,35 +4209,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + No se pudo guardar + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) - - + + Cancel Cancelar - + Save Error Error al guardar @@ -3873,64 +4295,59 @@ could not be renamed before saving %1 no se pudo renombar antes de guardarlo - + Critical Save Error - Couldn't create temporary directory before save - No se pudo crear un directorio temporal antes de guardar + No se pudo crear un directorio temporal antes de guardar - - - + Images Imágenes - - + All Filedialog - Load image - Cargar imagen + Cargar imagen - + Save image Guardar imagen - + The file %1 exists already. Do you want to overwrite it? G&uardar cómo {1 ?} - + Overwrite Sobreescribir - - + + Critical Error Error crítico - + Couldn't save %1 - + Critical Import Error Error de Importación crítico @@ -3940,13 +4357,13 @@ Do you want to overwrite it? No se puede encontrar el directorio %1 - + Choose directory structure to import Escoger la estructura de directorio a importar - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3960,7 +4377,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - + Couldn't remove lockfile for %1 @@ -3978,7 +4395,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin Advertencia - + The file of the map on disk has changed: %1 @@ -3987,60 +4404,66 @@ Do you want to reload that map with the new file? Desea regargar este mapa con el nuevo fichero? - + Reload Recargar - + Ignore Ignorar - - + + + Warning Advertencia - + Autosave disabled during undo. Se ha desactivado el guardado automático mientras se deshace - + Note FindAll in VymModel Nota - New map New map - Nuevo Mapa + Nuevo Mapa - + Export map as image Exportar mapa como imagen - + Couldn't save QImage %1 in format %2 - + Export map as PDF - + Export map as SVG - + + + Export to + Exportar a + + + Export map as XML @@ -4050,44 +4473,60 @@ Do you want to reload that map with the new file? Exportar XML a directorio - + Critical Export Error Error de exportación crítico - + + (still experimental) - - - Export as csv + + Could not setup JiraAgent to retrieve data from Jira - - Could not find Jira ticket pattern in %1 - VymModel + + + Export as csv - + Contacting Jira... VymModel - + + Received Jira data. VymModel - Load background image - Cargar imagen de fondo + Cargar imagen de fondo + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + Error crítico @@ -4112,13 +4551,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -4162,40 +4601,5 @@ Do you want to reload that map with the new file? Close Cerrar - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.fr.ts b/lang/vym_fr.ts similarity index 81% rename from lang/vym.fr.ts rename to lang/vym_fr.ts index 21ee208..b9796af 100644 --- a/lang/vym.fr.ts +++ b/lang/vym_fr.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog @@ -49,6 +49,25 @@ Définir l'application pour ouvrir une URL... + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -64,6 +83,26 @@ Fermer + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Charger l'image de fond + + BranchPropertyEditor @@ -155,13 +194,13 @@ - - + Property Editor Window caption Éditeur des propriétés - + Name Branchprop window: Attribute name @@ -179,7 +218,7 @@ - + %1 days ago task related times @@ -197,11 +236,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -547,46 +604,53 @@ cela sur votre système! Fermer + + FindControlsWidget + + + Find: + FindControlsWidget + Rechercher: + + FindWidget - Find: FindWidget - Rechercher: + Rechercher: HeadingEditor - Heading Editor Name of editor shown as window title - Éditeur d'en-tête + Éditeur d'en-tête HistoryWindow - + Action Table with actions Action - + Comment Table with actions Commentaire - + Undo action Table with actions Annuler l'action - + Current state Current bar in history hwindow Situation présente @@ -615,12 +679,14 @@ cela sur votre système! JiraAgent - + + Warning Attention - + + Authentication problem when contacting JIRA @@ -640,11 +706,21 @@ cela sur votre système! Enlever - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -687,7 +763,7 @@ cela sur votre système! Main - + Linkstyle Line Aspect du lien : trait droit @@ -697,64 +773,133 @@ cela sur votre système! Aspect du lien : trait élargi - Set &Background Color - Définir la couleur du &Fond + Définir la couleur du &Fond - + &View &Voir - + Overwrite Écraser - - - - + + + Cancel Annuler - + Firefox Bookmarks Import filters Signets Firefox - + Remove only branch and keep its children Edit menu Effacer la branche courante et garder les branches filles - + Formatting Shortcuts - + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + Historique + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + Modifier modes Shortcuts - + + Use modifier to pick color from another branch + Mode modifier + + + + Open anyway Ouvrir de toute manière - + Create Créer - + Load vym map Charger une carte VYM @@ -769,39 +914,37 @@ cela sur votre système! Importation : remplacer la sélection par une carte VYM - Save modified map before closing it - Enregistrer la carte modifiée avant de la fermer + Enregistrer la carte modifiée avant de la fermer - Discard changes - Annuler les modifications + Annuler les modifications - + VYM -Information: VYM - Information: - - - - - + + + - + + + Critical Error Erreur critique - + Couldn't set sleep time to %1. Impossible de fixer le temps d'arrêt à %1. - + branches Info about map @@ -831,7 +974,7 @@ cela sur votre système! - + Set author for new maps (used in lockfile) @@ -847,28 +990,27 @@ cela sur votre système! - + (readonly) - Export in last used format (%1) to: %2 status tip - Exporter vers : %2 en utilisant le dernier format utilisé (%1) + Exporter vers : %2 en utilisant le dernier format utilisé (%1) - + Critcal error Erreur critique - + Add Ajouter - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -877,7 +1019,7 @@ to confusion when finishing working with vym.Do you want to des incohérences à la fermeture de vym. Voulez vous - + This map does not exist: %1 Do you want to create a new one? @@ -886,35 +1028,33 @@ Do you want to create a new one? Voulez-vous la créer ? - Saved %1 - Sauvegarde de : %1 effectuée + Sauvegarde de : %1 effectuée - Couldn't save - Echec sauvegarde + Echec sauvegarde - - + + The file %1 exists already. Do you want to Le fichier %1 existe déjà. Voulez-vous - + The map %1 has been modified but not saved yet. Do you want to La carte %1 a été modifiée mais pas encore sauvegardée. Voulez-vous - + Couldn't open map %1 Echec ouverture carte %1 - + Take care! Standardflag Faites Attention ! @@ -944,13 +1084,13 @@ existe déjà. Voulez-vous Mauvais - + Time critical Standardflag Moment critique - + Idea! Standardflag Idée ! @@ -992,15 +1132,19 @@ existe déjà. Voulez-vous Cela peux aider - - + + Import Importer - - + + + + + + @@ -1008,112 +1152,103 @@ existe déjà. Voulez-vous - - - + (still experimental) (encore expérimental) - + &Print Im&primer - - Export to - Exporter vers + Exporter vers - - - - - + + + + + - - - + + + Warning Attention - - Couldn't find configuration for export to LibreOffice - - - - - - + + + Couldn't find a viewer to open %1. Pas d'application pour ouvrir %1. - - + + + Please use Settings-> Veuillez utiliser le menu Paramètres - - + + Set application to open an URL Définir l'application pour ouvrir une URL - + %1 items on map Info about map La carte contient %1 éléments - - + + Set application to open PDF files Définir l'application pour ouvrir les fichier PDF - + Oh no! Standardflag Oh non ! - + Search results list FindResultWidget Résultats de la Recherche - + File actions toolbar Toolbar for file actions Barre d'outils fichiers - + Edit actions toolbar Toolbar name Barre d'outils des actions - + E&dit Edit menu E&diter - Add attribute - Ajouter une propriété + Ajouter une propriété - + &Detach Context menu &Détacher @@ -1125,13 +1260,13 @@ existe déjà. Voulez-vous Détacher une branche et réutiliser comme centre de la carte - + Sort children backwards Edit menu Tri inverse des branches filles - + Expand all branches Edit menu Développer toutes les branches @@ -1143,126 +1278,95 @@ existe déjà. Voulez-vous Développer sur un niveau - + Collapse one level Edit menu Replier d'un niveau - + Collapse unselected levels Edit menu Replier les niveaux non sélectionnés - Unscroll children Edit menu - Dérouler les branches filles + Dérouler les branches filles - + Text (A&O report)... Export format - - Properties - - - - + Move branch up Edit menu Monter la branche - + Move branch down Edit menu Descendre la branche - + Grow selection Edit menu Faire croitre la sélection - + Shrink selection Edit menu Racourcir la sélection - + Reset selection size Edit menu Réinitialiser la taille de la sélection - - References Context menu - Shortcuts - - - - - Get data from JIRA for subtree - Edit menu - - - - - vymlinks - linking maps - Shortcuts - - - - - Exports - Shortcuts - - - - Tasks Shortcuts - Tâches + Tâches - + Removing parts of a map Shortcuts - + Various Shortcuts - + Map properties... Edit menu - + Selections Shortcuts - + Toggle target... Edit menu Basculer vers cible... - + Goto target... Edit menu Se déplacer vers (par XLink)... @@ -1274,106 +1378,99 @@ existe déjà. Voulez-vous Déplacer vers la cible... - + Select previous Edit menu Sélection précédente - + Select next Edit menu Sélection suivante - + Search functions Shortcuts - + Find duplicate URLs Edit menu Trouver des URLS en double - + Note editor View action - + Heading editor View action - Images - Images + Images - All Filedialog - Tous + Tous - + URL SystemFlag - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - (experimental) - - - - + Firefox Bookmarks File export menu - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + Reset delta priority for visible tasks Reset delta - + &Connect - + Connect Shortcuts @@ -1385,31 +1482,36 @@ existe déjà. Voulez-vous - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply + + Use modifier to move branches without linking Mode modifier - - Use modifier to move branches without linking + + Use modifier to move view without selecting Mode modifier - - Use modifier to move view without selecting - Mode modifier + + Load user flag + + + + + Jira + SystemFlag - + Important Freemind flag @@ -1536,13 +1638,13 @@ existe déjà. Voulez-vous Adouci - + Set author for new maps Settings action - + Confluence Credentials Settings action @@ -1554,7 +1656,13 @@ existe déjà. Voulez-vous - + + Logfile settings + Settings action + + + + Dark theme Settings action @@ -1572,7 +1680,7 @@ existe déjà. Voulez-vous - + Show scripting commands Help action @@ -1584,12 +1692,108 @@ existe déjà. Voulez-vous - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Géométrie + + + + Limited view toolbar + View Toolbar name + + + + + Untitled + Default name in FileSaveAs dialog + + + + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + + Load images + + + + + Set application to open external links + Définir une application pour ouvrir les liens externes + + + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + Carte + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + Couldn't load default map: %1 @@ -1599,14 +1803,14 @@ vym will create an empty map now. - + Couldn't save %1, because file exists and cannot be changed. - - + + Couldn't save %1, because of existing lockfile: @@ -1614,39 +1818,29 @@ because of existing lockfile: - + Saving the map failed: Couldn't rename map to %1 - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - - Open Freemind map - - - - + Link to another vym map Lien vers une autre carte cym @@ -1656,13 +1850,13 @@ Couldn't rename map to %1 - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -1674,12 +1868,12 @@ Couldn't rename map to %1 - + Load vym script - + Information @@ -1695,12 +1889,12 @@ Couldn't rename map to %1 - + Please allow vym to download release notes! - + Allow @@ -1710,17 +1904,17 @@ Couldn't rename map to %1 - + Thank you for enabling downloads! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -1742,61 +1936,60 @@ Couldn't rename map to %1 - Open all URLs in subtree (including scrolled branches) Edit menu - Ouvrir toutes les URL dans un sous arbre (y compris les branches enroulées) + Ouvrir toutes les URL dans un sous arbre (y compris les branches enroulées) - + Extract URLs from note Edit menu Extraire les URLs depuis la note - + Add timestamp Edit menu Ajouter hrodatage - + Remove children Edit menu Enlever la branche fille - + Center on selection View action Recentrer sur la sélection - + Editors toolbar Editor Toolbar name Barre d'outils d'édition - + Modifier modes toolbar Modifier Toolbar name Barre d'outils des modes d'action - + Tree editor View action Éditeur arborescence - + Task editor View action Éditeur de Tâches - + Slide editor View action Éditeur de diapositive @@ -1808,25 +2001,25 @@ Couldn't rename map to %1 Éditeur de scripts - + Next slide View action Diapo suivante - + Previous slide View action Diapo précédente - + Standard Flags toolbar Standard Flag Toolbar Barre d'outils standard des Imagettes - + Status - ok,done Standardflag Status ok, réalisé @@ -1844,13 +2037,13 @@ Couldn't rename map to %1 Statut: absent, non démarré - + Call... Standardflag Appeler... - + Very important! Standardflag Très important ! @@ -1862,7 +2055,7 @@ Couldn't rename map to %1 Sans aucun intérêt ! - + Rose Standardflag Rose @@ -1874,24 +2067,48 @@ Couldn't rename map to %1 Surprise ! - + Info Standardflag Information - + Firefox Bookmarks Signets de Firefox - + &New map File menu &Nouvelle Carte - + + &Map + Map menu + &Carte + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + + File actions + MainWindow shortcut groups + + + + &Copy to new map File menu &Copier vers une nouvelle carte @@ -1903,19 +2120,25 @@ Couldn't rename map to %1 &Ouvrir... - + Open Recent File menu Ouvrir un document récent + &Clear + Clear recent files menu + + + + &Save... File menu Enregi&strer... - + Save &As... File menu Enregistrer &sous... @@ -1927,13 +2150,24 @@ Couldn't rename map to %1 Importer - + Export File menu Exporter - + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + Image%1 File export menu Image%1 @@ -1951,67 +2185,99 @@ Couldn't rename map to %1 SVG%1 - Repeat last export (%1) - Repeter le dernier export (%1) + Repeter le dernier export (%1) - + &Close Map File menu Fermer la &carte + Exit + MainWindow shortcut groups + + + + E&xit File menu &Quitter - + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + &Undo Edit menu Ann&uler action - + &Redo Edit menu &Refaire - + + Repeat last action + Edit menu + + + + + &Copy Edit menu &Copier - + + Cu&t Edit menu Cou&per - + + &Paste Edit menu Co&ller - - + Delete Selection Edit menu Effacer la sélection - + + Add + MainWindow shortcut groups + Ajouter + + + Add mapcenter Canvas context menu Ajouter un nouveau centre de carte - + Add branch as child Edit menu Ajouter une branche fille @@ -2023,112 +2289,207 @@ Couldn't rename map to %1 Ajouter une branche (insérer) + - Add branch above Edit menu Ajouter une branche au-dessus - - + + Add branch below Edit menu Ajouter une branche au-dessous - + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + Sort children Edit menu Tri des branches filles - + Scroll branch Edit menu Enrouler la branche - - - Find... + + Unscroll branch and subtree Edit menu - Rechercher... + - - Open URL - Edit menu - Ouvrir une URL + + Geometry of items + MainWindow shortcut groups + - - Main window - Shortcut scope + + Rotate subtree clockwise + Edit menu - - Task list - TaskEditor - Liste des Tâches + + Rotate subtree counter-clockwise + Edit menu + - - Script Editor - ScriptEditor - Éditeur de script + + URLs + Shortcuts in references context menu + - - Property Editor - PropertyEditor - Éditeur des propriétés + + Open all visible URLs in subtree + Edit menu + - - History window - HistoryWidget - Historique + + Open all URLs in subtree in private mode + Edit menu + - - Main window - Shortcut group + + Connect + Connection shortcuts in MainWindow - - Map Editors - Shortcut group + + Get data from Jira for subtree + Edit menu - + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + Tâches + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + + Find... + Edit menu + Rechercher... + + + + Open URL + Edit menu + Ouvrir une URL + + + + Main window + Shortcut scope + + + + + Task list + TaskEditor + Liste des Tâches + + + + Script Editor + ScriptEditor + Éditeur de script + + + + Property Editor + PropertyEditor + Éditeur des propriétés + + + + History window + HistoryWidget + Historique + + + Text Editors Shortcut group - &Map Menu for file actions - &Carte + &Carte - + &Restore last session Edit menu &Restaurer la dernière session - + Save as default map File menu - + Webpage (HTML)... File export menu @@ -2146,43 +2507,42 @@ Couldn't rename map to %1 - Open URL in new tab Edit menu - Ouvrir l'URL dans un nouvel onglet + Ouvrir l'URL dans un nouvel onglet - + Open all URLs in subtree Edit menu Ouvrir toutes les URL dans un sous arbre - + Edit URL... Edit menu Editer l'URL... - + Edit local URL... Edit menu Editer l'URL locale... - + Use heading for URL Edit menu Utiliser l'en-tête comme URL - + Open linked map Edit menu Ouvrir la carte liée - + Open linked map in background tab Edit menu Ouvrir la carte liée dans un onglet d'arrière plan @@ -2200,121 +2560,131 @@ Couldn't rename map to %1 Editer un lien vym... - + Delete vym link Edit menu Effacer le lien vym - + Hide in exports Edit menu Cacher dans l'export - + Toggle task Edit menu Changer le statut d'une Tâche - + Cycle task status Edit menu Statut de la tâche (cyclique) - + Reset sleep Task sleep Réinitialiser la durée de repos - - - - - + + + + + Sleep %1 days Task sleep Mettre au repos pendant : %1 jour(s) - + Sleep %1 day Task sleep Mettre au repos pendant : %1 jour - - + + Sleep %1 weeks Task sleep Mettre au repos pendant :%1 semaine(s) - + Add map (insert) Edit menu Ajouter une carte (insérer) - + Add map (replace) Edit menu Ajouter une carte (remplacer) - + Save selection Edit menu Enregister la sélection - Property window Dialog to edit properties of selection - Propriétés + Propriétés - + Select Select menu Sélection - + Unselect all Edit menu Tout désélectionner - + F&ormat Format menu F&ormater - + + Map properties + + + + + Follow reference + Context menu + + + + Pic&k color Edit menu Choisir la &couleur - + Color &branch Edit menu Colorier la &branche - + Color sub&tree Edit menu Colorier le sous-&arbre - + Select default font Branch attribute Sélectionner la fonte par défaut @@ -2336,7 +2706,7 @@ Couldn't rename map to %1 Cacher le lien si l'objet n'est pas sélectionné - + &Use color of heading for link Branch attribute &Utiliser la couleur de l'en-tête pour le lien @@ -2352,60 +2722,51 @@ Couldn't rename map to %1 Définir la couleur de la &Sélection - Set &Background image - Définit l'&Image de fond + Définit l'&Image de fond - + Toolbars Toolbars overview in view menu Barre d'outils - - Views - Shortcuts - - - - + Rotate counterclockwise View action Rotation antihoraire - Rotate rclockwise View action - Rotation horaire + Rotation horaire - + reset Zoom View action Annuler Zoom - + Zoom in View action Zoom avant - + Zoom out View action Zoom arrière - History Window View action - Historique + Historique - + Antialiasing View action Anti-aliasing @@ -2417,25 +2778,25 @@ Couldn't rename map to %1 Transforme pixels Image : adoucissement - + Next Map View action Prochaine Carte - + Previous Map View action Carte précédente - + Use modifier to draw xLinks Mode modifier Utiliser le modificateur pour tracer le XLink - + @@ -2448,7 +2809,7 @@ Couldn't rename map to %1 Note - + Map target SystemFlag Carte Cible @@ -2484,7 +2845,7 @@ Couldn't rename map to %1 J'aime un peu... - + Settings Paramètres @@ -2507,13 +2868,7 @@ Couldn't rename map to %1 Définir une application pour ouvrir les liens externes - - Set application to zip/unzip files - Settings action - - - - + Set path for macros Settings action Définir le répertoire des macros @@ -2543,19 +2898,18 @@ Couldn't rename map to %1 Enregistrer la version précédente avant sauvegarde - + Select branch after adding it Settings action Sélectionner une branche après son ajout - Select existing heading Settings action - Sélectionner un en-tête existant + Sélectionner un en-tête existant - + Exclusive flags Settings action Imagettes exclusives @@ -2584,7 +2938,7 @@ Couldn't rename map to %1 Test - + &Help Help menubar entry &Aide @@ -2632,18 +2986,18 @@ Couldn't rename map to %1 À propos de QT - + Script output window - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -2660,73 +3014,55 @@ Couldn't rename map to %1 - - Get page name from Confluence - Edit menu - - - - - Add image... - Edit menu - - - - + Goto linked map... Edit menu - + Toggle Presentation mode View action - + Fit view to selection View action - - Script output window - View action - - - - + Set path for new maps Settings action - + Show keyboard macros Help action - + Remove Context menu name Enlever - + Tasks Context menu Tâches - + References (URLs, vymLinks, ...) Context menu name Références (URLs, vymLinks, ...) - + XLinks Menu for file actions @@ -2738,31 +3074,30 @@ Couldn't rename map to %1 Editer l'XLink - Follow XLink Context menu - Suivre l'XLink + Suivre l'XLink - + Follow XLink Context menu name Suivre l'XLink - + Save image Context action Enregistrer l'image - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard Barre des outils : annulation action et presse-papiers - + Selection toolbar Toolbar name Barre d'outils de sélection @@ -2774,13 +3109,13 @@ Couldn't rename map to %1 Barre outils de manipulation URL et vymLinks - + Colors toolbar Colors toolbar name Barre d'outils couleurs - + Select color (Press Shift for more options) @@ -2791,13 +3126,13 @@ Couldn't rename map to %1 - + Loading: %1 Progress dialog while loading maps Chargement: %1 - + Loaded %1 @@ -2808,32 +3143,25 @@ Couldn't rename map to %1 ou - - Saving %1... - - - - + Save map as Enregistrer la carte sous - + Import Firefox Bookmarks into new map - Export as CSV - Exporter en format CSV + Exporter en format CSV - Enter URL: - Entrer l'URL: + Entrer l'URL: - + HTML Filedialog HTML @@ -2868,13 +3196,13 @@ Couldn't rename map to %1 Définir l'URL d'un fichier local - + Color of selection box Mainwindow - + Number of undo/redo levels: Nombre possible d'actions annuler/refaire : @@ -2894,20 +3222,20 @@ Couldn't rename map to %1 Nombre de parents affichés pour une tache: - + History for %1 Window Caption Historique de %1 - + Couldn't find the documentation %1 in: %2 Documentation %1 introuvable dans: %2 - + Load vym example map Charger l'exemple de carte vym @@ -2915,75 +3243,81 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope - - - Edit heading - MapEditor - Éditer l'en-tête - + + Map Editors + Shortcut group + + + + + + Edit heading + MapEditor + Éditer l'en-tête + - + Print vym map MapEditor Imprimer la carte vym - - %1 items selected - + + Warning + Attention NoteEditor - Note Editor Name of editor shown as window title - Éditeur de note + Éditeur de note QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error Erreur Critique d'Exportation - + Could not write %1 Echec écriture %1 - + Exporting to %1 will overwrite the existing file: %2 Exporter %1 écrasera le fichier suivant : %2 @@ -3026,7 +3360,7 @@ Couldn't rename map to %1 Echec de l'export. - + Trying to create directory for flags: Essai de création du répertoire des Imagettes: @@ -3036,32 +3370,31 @@ Couldn't rename map to %1 Echec création %1 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export - + Critical Critique - + Could not find stylesheet %1 La feuille de style %1 est introuvable @@ -3111,17 +3444,22 @@ Couldn't rename map to %1 - + Export as LibreOffice Impress presentation - + No objects in map! Pas d'objet dans la carte! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" Pas de paramètre trouvé dans "%1" @@ -3140,88 +3478,102 @@ Couldn't rename map to %1 Echec lecture %1 - - - - - - - - + + Note Editor + Name of editor shown as window title + Éditeur de note + + + + Heading Editor + Name of editor shown as window title + Éditeur d'en-tête + + + + + + + + - - - - - - - + + + + + + Critical Error Erreur critique - - Couldn't move existing file out of the way before saving. - Le fichier déjà existant n'as pu être déplacé ailleurs avant la sauvegarde. + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Couldn't find tar tool to zip data. - - - zip didn't exit normally - zip ne s'est pas terminé normalement + + Couldn't find tar tool to unzip data. + - - Couldn't rename %1 back to %2 - Ne peux renommer %1 vers %2 + Couldn't move existing file out of the way before saving. + Le fichier déjà existant n'as pu être déplacé ailleurs avant la sauvegarde. - - Couldn't remove target of old symbolic link %1 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - Couldn't rename output to target of old symbolic link %1 - + + + + zip didn't exit normally + zip ne s'est pas terminé normalement - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start tool to decompress data! + + - - Saved %1, but couldn't remove %2 - %1 sauvegardé, mais ne peux effacer %2 + Couldn't rename %1 back to %2 + Ne peux renommer %1 vers %2 - - Couldn't start %1 tool to decompress data! - - + Saved %1, but couldn't remove %2 + %1 sauvegardé, mais ne peux effacer %2 - + Could not start %1 Echec lancement %1 - - + %1 didn't exit normally %1 ne s'est pas terminé normalement - + + Images + Images + + + Overwrite Écraser @@ -3231,22 +3583,21 @@ The map could not be saved, please check if backup file is available or export a Annuler - + Warning Attention - - - - - - - + + + + + + Error Erreur @@ -3268,7 +3619,7 @@ The map could not be saved, please check if backup file is available or export a (toujours expérimental) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3276,7 +3627,7 @@ Do you risk to overwrite its contents? Acceptez-vous l'écrasement éventuel de son contenu ? - + Warning: Version Problem Attention : problème de version @@ -3285,11 +3636,6 @@ Acceptez-vous l'écrasement éventuel de son contenu ? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> <h3>La Carte est d'une version plus récente que VYM</h3><p>La carte que vous essayez de charger a été sauvée en utilisant vym %1. La version présente de vym est %2. Si vous rencontrez des erreurs en validant le bouton OK, mettre à jour vym devrait vous aider.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3318,32 +3664,21 @@ Acceptez-vous l'écrasement éventuel de son contenu ? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3355,12 +3690,12 @@ Acceptez-vous l'écrasement éventuel de son contenu ? - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3383,17 +3718,24 @@ Acceptez-vous l'écrasement éventuel de son contenu ? - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3422,13 +3764,13 @@ Acceptez-vous l'écrasement éventuel de son contenu ? Sauvegarder - + Warning Attention - + Slide Mode in scriptEditor Diapo @@ -3452,7 +3794,13 @@ Acceptez-vous l'écrasement éventuel de son contenu ? - + + Script Editor + Shortcut scope + Éditeur de script + + + Couldn't get model to save script into slide! Pas de modèle disponible pour enregistrer le script dans la diapo! @@ -3462,12 +3810,12 @@ Acceptez-vous l'écrasement éventuel de son contenu ? Pas de diapo disponible pour enregistrer le script! - + Macros saved to %1 - + Script saved to %1 @@ -3477,27 +3825,24 @@ Acceptez-vous l'écrasement éventuel de son contenu ? Enregistrer le script - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Le fichier %1 + Le fichier %1 existe déjà. Voulez-vous l'écraser? - Overwrite - Écraser + Écraser - Cancel - Annuler + Annuler - + Load script Charger le script @@ -3516,7 +3861,7 @@ Voulez-vous l'écraser? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3552,11 +3897,17 @@ Voulez-vous l'écraser? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor Priorité @@ -3613,32 +3964,31 @@ Voulez-vous l'écraser? TextEditor - + &Import... &Importer... - + &Export... &Exporter... - Export &As... (HTML) - Exporter sous (&A)... (HTML) + Exporter sous (&A)... (HTML) - + Export &As...(ASCII) Exporter sous (&A).. (ASCII) - + &Print... Im&primer... - + &Undo Ann&uler Action @@ -3653,49 +4003,45 @@ Voulez-vous l'écraser? Sélectionner et &tout copier - &Copy - &Copier + &Copier - Cu&t - Cou&per + Cou&per - &Paste - Co&ller + Co&ller - + &Delete All Effacer tout (&D) - + &Font hint &Indicateur de fonte - + Fonts toolbar in texteditor Fontes - + Format toolbar in texteditor Format - &Color... - &Couleur... + &Couleur... - + &Bold Gras (&B) @@ -3710,27 +4056,27 @@ Voulez-vous l'écraser? So&uligner - + &Left &Gauche - + C&enter &Centrer - + &Right &Droite - + &Justify &Justifier - + &Settings Paramètre&S @@ -3750,114 +4096,162 @@ Voulez-vous l'écraser? Police à pas &fixe par défaut - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - + Export Note to single file Exporter la Note dans un fichier indépendant - - + + Overwrite Écraser - - + + Cancel Annuler - + Export Note to single file (ASCII) Exporter la note en un fichier unique (ASCII) - + Subs&cript Indi&ce - - - - Texteditor - Shortcuts - - - - + Edi&t - + Font hints toolbar in texteditor Indicateur de fonte - + Su&perscript Ex&posant - + Note Editor Éditeur de note - + F&ormat F&ormater - Ready Statusbar message - Prêt + Prêt - + No filename available for this note. Statusbar message Pas de nom de fichier disponible pour la note. - + Note Actions Actions sur Note - + &Note Menubar &Note + + + File actions + TextEditor shortcut groups + + + Edit actions + TextEditor shortcut groups + + + + Edit Actions Editer les Actions - + + &Copy + Edit menu + &Copier + + + + Cu&t + Edit menu + Cou&per + + + + &Paste + Edit menu + Co&ller + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + &Richtext En&richir typo - - + + &Text Color... + + + + + &Text background color... + + + + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + The file %1 exists already. Do you want to overwrite it? @@ -3867,22 +4261,58 @@ existe déjà. Voulez-vous l'écraser? - + Couldn't export note dialog 'save note as' Echec exportation de la note - + Print TextEditor Imprimer + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + + + + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Charger une image + TreeEditor - + Select upper object Tree Editor Sélectionner l'objet au-dessus @@ -3897,44 +4327,62 @@ Voulez-vous l'écraser? VymModel - + unknown user default name for map author in settings - + unnamed sans nom - - - - + + + Critical Parse Error Erreur critique d'analyse syntaxique - - + + + + + Critical Load Error Erreur critique de chargement - + Couldn't create temporary directory before load Echec de création du répertoire temporaire avant le chargement - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. carte (*.xml) introuvable dans l'archive .vym. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3944,35 +4392,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Echec sauvegarde + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) compressé (option par défaut de VYM) - - + + Cancel Annuler - + Save Error Echec de sauvegarde @@ -3992,65 +4480,60 @@ could not be renamed before saving n'as pu être renommé avant la sauvegarde - + Critical Save Error - Couldn't create temporary directory before save - Echec création du répertoire temporaire avant la sauvegarde + Echec création du répertoire temporaire avant la sauvegarde - - - + Images Images - - + All Filedialog Tous - Load image - Charger une image + Charger une image - + Save image Sauvegarder une image - + The file %1 exists already. Do you want to overwrite it? Le fichier %1 existe déjà. Voulez-vous l'écraser? - + Overwrite Écraser - - + + Critical Error Erreur Critique - + Couldn't save %1 Echec sauvegarde %1 - + Critical Import Error Erreur critique d'importation @@ -4060,13 +4543,13 @@ Voulez-vous l'écraser? Répertoire %1 introuvable - + Choose directory structure to import Choisir la structure de répertoire à importer - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -4075,24 +4558,18 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - - Could not find Jira ticket pattern in %1 - VymModel - - - - + Contacting Jira... VymModel - + Removed lockfile for %1 - + Couldn't remove lockfile for %1 @@ -4110,7 +4587,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin Attention - + The file of the map on disk has changed: %1 @@ -4123,60 +4600,61 @@ Do you want to reload that map with the new file? Voulez-vous recharger la carte à partir du nouveau fichier? - + Reload Recharger - + Ignore Ignorer - - + + + Warning Attention - + Autosave disabled during undo. Sauvegarde auto désactivée durant l'annulation d'action. - + Note FindAll in VymModel Note - - New map - New map - - - - + Export map as image Exporter la carte sous forme d'image - + Couldn't save QImage %1 in format %2 Echec sauvegarde QImage %1 dans le format %2 - + Export map as PDF Exporte la carte en format PDF - + Export map as SVG Exporte la carte sous le format SVG - + + + Export to + Exporter vers + + + Export map as XML @@ -4186,32 +4664,54 @@ Voulez-vous recharger la carte à partir du nouveau fichier? Exporter le XML dans le répertoire - + Critical Export Error Erreur critique d'Export - + + (still experimental) (toujours expérimental) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv Exporter en format csv - + + Received Jira data. VymModel - Load background image - Charger l'image de fond + Charger l'image de fond + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + @@ -4236,13 +4736,13 @@ Voulez-vous recharger la carte à partir du nouveau fichier? VymView - + Tree Editor Title of dockable editor widget Éditeur d'arbre - + Slide Editor Title of dockable editor widget Éditeur de diapo @@ -4290,40 +4790,5 @@ Voulez-vous recharger la carte à partir du nouveau fichier? Close Fermer - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.hr_HR.ts b/lang/vym_hr_HR.ts similarity index 80% rename from lang/vym.hr_HR.ts rename to lang/vym_hr_HR.ts index ed28a38..7586cd6 100644 --- a/lang/vym.hr_HR.ts +++ b/lang/vym_hr_HR.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog Zasluge @@ -48,6 +48,25 @@ Postavi aplikaciju za otvaranje URLa ... + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -59,6 +78,26 @@ Zatvori + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Učitaj sliku pozadine + + BranchPropertyEditor @@ -158,13 +197,13 @@ - - + Property Editor Window caption Uređivač svojstava - + Name Branchprop window: Attribute name @@ -182,7 +221,7 @@ - + %1 days ago task related times @@ -200,11 +239,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -538,21 +595,20 @@ Provjerite da li to stvarno - FindWidget + FindControlsWidget - + Find: - FindWidget - Nađi: + FindControlsWidget + Nađi: - HeadingEditor + FindWidget - - Heading Editor - Name of editor shown as window title - + Find: + FindWidget + Nađi: @@ -578,25 +634,25 @@ Provjerite da li to stvarno PoniÅ¡ti - + Action Table with actions Akcija - + Comment Table with actions Komentar - + Undo action Table with actions PoniÅ¡ti akciju - + Current state Current bar in history hwindow Trenutno stanje @@ -605,12 +661,14 @@ Provjerite da li to stvarno JiraAgent - + + Warning Upozorenje - + + Authentication problem when contacting JIRA @@ -630,11 +688,21 @@ Provjerite da li to stvarno Ukloni - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -677,67 +745,64 @@ Provjerite da li to stvarno Main - + Main window Shortcut scope Glavni prozor - Main window Shortcut group - Glavni prozor + Glavni prozor - Map Editors Shortcut group - Uređivači mapa + Uređivači mapa - + Text Editors Shortcut group Uređivači teksta - + Search results list FindResultWidget Lista rezultata pretraživanja - + Script Editor ScriptEditor Uređivač skripti - + Property Editor PropertyEditor Uređivač svojstava - + History window HistoryWidget Prozor povijesti - + Task list TaskEditor Lista zadatka - &Map Menu for file actions - &Mapa + &Mapa - + &New map File menu &Nova mapa @@ -761,19 +826,19 @@ Provjerite da li to stvarno &Vrati zadnju sesiju - + Open Recent File menu Otvori nedavne - + &Save... File menu &Spremi... - + Save &As... File menu Spremi &kao ... @@ -785,14 +850,18 @@ Provjerite da li to stvarno Uvoz - + Firefox Bookmarks Import filters Firefoxove knjižne oznake - - + + + + + + @@ -800,25 +869,22 @@ Provjerite da li to stvarno - - - + (still experimental) (experimentalno) - + Export File menu Izvoz - Repeat last export (%1) - Ponovi zadnji izvoz (%1) + Ponovi zadnji izvoz (%1) - + Webpage (HTML)... File export menu Web stranica (HTML)... @@ -860,83 +926,84 @@ Provjerite da li to stvarno SVG%1 - Properties - Svojstva + Svojstva - + &Print &Ispis - + &Close Map File menu &Zatvori mapu - + E&xit File menu &Izlaz - + E&dit Edit menu &Uredi - + + &Undo Edit menu &PoniÅ¡ti - + &Redo Edit menu &Ponovi - + + &Copy Edit menu &Kopiraj - + + Cu&t Edit menu &Izreži - + + &Paste Edit menu &Zalijepi - - + Delete Selection Edit menu ObriÅ¡i odabir - Add attribute - Dodaj atribut + Dodaj atribut - + Add mapcenter Canvas context menu Dodaj centar mape - + Add branch as child Edit menu Dodaj granu kao dijete @@ -948,45 +1015,45 @@ Provjerite da li to stvarno Dodaj granu (umetni) + - Add branch above Edit menu Dodaj granu iznad - - + + Add branch below Edit menu Dodaj granu ispod - + Move branch up Edit menu Makni granu gore - + Move branch down Edit menu Makni granu dolje - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + &Detach Context menu &Odvoji @@ -998,61 +1065,60 @@ Provjerite da li to stvarno Odvoji granu i iskoristi kao srediÅ¡te mape - + Sort children Edit menu Razvrstaj djecu - + Sort children backwards Edit menu Razvrstaj djecu obrnuto - + Scroll branch Edit menu Uvij granu - Unscroll children Edit menu - Uvij djecu + Uvij djecu - + Grow selection Edit menu Uvećaj odabir - + Shrink selection Edit menu Smanji odabir - + Reset selection size Edit menu PoniÅ¡ti veličinu odabira - + Collapse one level Edit menu Sklopi jedan nivo - + Collapse unselected levels Edit menu Sklopi neodabrane nivoe - + Expand all branches Edit menu RaÅ¡iri sve grane @@ -1064,73 +1130,69 @@ Provjerite da li to stvarno RaÅ¡iri jedan nivo - References Context menu Shortcuts - Reference kontekstnog izbornika + Reference kontekstnog izbornika - + Open URL Edit menu Otvori URL - Open URL in new tab Edit menu - Otvori URL u novoj kartici + Otvori URL u novoj kartici - Open all URLs in subtree (including scrolled branches) Edit menu - Otvori sve URLove u podstablu (uključujući uvijene grane) + Otvori sve URLove u podstablu (uključujući uvijene grane) - + Open all URLs in subtree Edit menu Otvori sve URLove u podstablu - + Extract URLs from note Edit menu Izdvoji URL iz zabiljeÅ¡ke - + Edit URL... Edit menu Uredi URL ... - + Edit local URL... Edit menu Uredi lokalni URL ... - + Use heading for URL Edit menu Koristi naslov za URL - vymlinks - linking maps Shortcuts - vymlinkovi - vezanje mapa + vymlinkovi - vezanje mapa - + Open linked map Edit menu Otvori povezanu mapu - + Open linked map in background tab Edit menu Otvori povezanu mapu u pozadinskoj kartici @@ -1148,85 +1210,83 @@ Provjerite da li to stvarno Uredi vym vezu... - + Delete vym link Edit menu ObriÅ¡i vym vezu - Exports Shortcuts - Izvozi + Izvozi - + Hide in exports Edit menu Sakrij u izvozu - Tasks Shortcuts - Zadatci + Zadatci - + Toggle task Edit menu Preklopi zadatak - + Cycle task status Edit menu Kruži kroz statuse zadataka - + Reset sleep Task sleep PoniÅ¡ti spavanje - - - - - + + + + + Sleep %1 days Task sleep Spavaj %1 dana - + Sleep %1 day Task sleep Spavaj %1 dan - - + + Sleep %1 weeks Task sleep Spavaj %1 tjedana - + Add map (insert) Edit menu Dodaj mapu (umetni) - + Add map (replace) Edit menu Dodaj mapu (zamijeni) - + Save selection Edit menu Spremi odabir @@ -1244,13 +1304,13 @@ Provjerite da li to stvarno Ukloni samo granu i zadrži djecu - + Remove children Edit menu Ukloni djecu - + Various Shortcuts Razno @@ -1262,37 +1322,36 @@ Provjerite da li to stvarno Dodaj vremensku oznaku - + Map properties... Edit menu Svojstva mape ... - Property window Dialog to edit properties of selection - Prozor svojstava + Prozor svojstava - + Selections Shortcuts Odabiri - + Select Select menu &Odaberi - + Toggle target... Edit menu Preklopi cilj ... - + Goto target... Edit menu Idi na cilj ... @@ -1304,81 +1363,271 @@ Provjerite da li to stvarno Makni na cilj ... - + Goto linked map... Edit menu - + Select previous Edit menu Odaberi prethodni - + Select next Edit menu Odaberi sljedeći - + Unselect all Edit menu Deselektiraj sve - + Search functions Shortcuts Funkcije pretraživanja - + Find... Edit menu Nađi... - + Find duplicate URLs Edit menu Nađi duple URLove - + F&ormat Format menu &Format - - Formatting - Shortcuts - Formatiranje + + &Map + Map menu + &Mapa - - Pic&k color - Edit menu - Oda&beri boju + + Toggle window + Toggle visibility of editor windows overview in view menu + - - Color &branch - Edit menu - Boja &grane + + Focus window + Toggle visibility of editor windows overview in view menu + - - Color sub&tree - Edit menu - Boja pod&stabla + + File actions + MainWindow shortcut groups + - - Select default font + + &Clear + Clear recent files menu + + + + + Exports + MainWindow shortcut groups + Izvozi + + + + Repeat last export + + + + + Map properties + + + + + Exit + MainWindow shortcut groups + + + + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + Repeat last action + Edit menu + + + + + Add + MainWindow shortcut groups + Dodaj + + + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + vymlinkovi - vezanje mapa + + + + Tasks + Shortcuts for tasks in MainWindow + Zadatci + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Follow reference + Context menu + + + + + Formatting + Shortcuts + Formatiranje + + + + Pic&k color + Edit menu + Oda&beri boju + + + + Color &branch + Edit menu + Boja &grane + + + + Color sub&tree + Edit menu + Boja pod&stabla + + + + Select default font Branch attribute Odredi zadani font @@ -1409,7 +1658,7 @@ Provjerite da li to stvarno Sakrij vezu ako objekt nije odabran - + &Use color of heading for link Branch attribute &Koristi boju naslova za vezu @@ -1425,17 +1674,15 @@ Provjerite da li to stvarno Postavi boju &odabranog - Set &Background Color - Postavi boju &pozadine + Postavi boju &pozadine - Set &Background image - Postavi &sliku pozadine + Postavi &sliku pozadine - + &View &Pogled @@ -1446,85 +1693,83 @@ Provjerite da li to stvarno Izbornici - Views Shortcuts - Pogledi + Pogledi - + Toggle Presentation mode View action - + Zoom in View action Povećaj - + Zoom out View action Smanji - + Rotate counterclockwise View action Rotiraj u suprotnom smjeru od kazaljke na satu - Rotate rclockwise View action - Rotiraj u smjeru kazaljke na satu + Rotiraj u smjeru kazaljke na satu - + reset Zoom View action PoniÅ¡ti povećanje - + Center on selection View action Centriraj odabrano - + Fit view to selection View action - + Note editor View action Uređivač biljeÅ¡ki - + Heading editor View action Uređivač naslova - + Tree editor View action Uređivač stabla - + Task editor View action Uređivač zadataka - + Slide editor View action Uređivač slajdova @@ -1536,19 +1781,12 @@ Provjerite da li to stvarno Uređivač skripti - - Script output window - View action - - - - History Window View action - Prozor povijesti + Prozor povijesti - + Antialiasing View action Zaglađivanje nazubljenih rubova @@ -1560,36 +1798,101 @@ Provjerite da li to stvarno Glatke pixmap transformacije - + Next Map View action Sljedeća mapa - + Previous Map View action Prethodna mapa - + Next slide View action Sljedeći slajd - + Previous slide View action Prethodni slajd - + &Connect - + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + Pogledi + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + Prozor povijesti + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + Connect Shortcuts @@ -1601,19 +1904,25 @@ Provjerite da li to stvarno - + Modifier modes Shortcuts Načini modifikatora - + + Use modifier to pick color from another branch + Mode modifier + + + + Use modifier to draw xLinks Mode modifier Koristi modifikator za crtanje xLinkova - + @@ -1626,7 +1935,7 @@ Provjerite da li to stvarno BiljeÅ¡ka - + Map target SystemFlag Cilj mape @@ -1656,19 +1965,25 @@ Provjerite da li to stvarno Sakrij objekt u izvezenim mapama - + Set path for new maps Settings action - + + Limited view toolbar + View Toolbar name + + + + Standard Flags toolbar Standard Flag Toolbar Alatna traka standardnih zastavica - + This won't work! Standardflag Ovo ne funkcionira! @@ -1722,7 +2037,7 @@ Provjerite da li to stvarno O ne! - + Time critical Standardflag Vremenski kritično @@ -1734,7 +2049,7 @@ Provjerite da li to stvarno Poziv ... - + Idea! Standardflag Ideja! @@ -1776,25 +2091,25 @@ Provjerite da li to stvarno Ovo mi se ne sviđa - + Rose Standardflag Ruža - + I just love... Standardflag Ja volim ... - + Surprise! Standardflag Iznenađenje! - + Dangerous Standardflag Opasno @@ -1812,7 +2127,7 @@ Provjerite da li to stvarno Ovo će pomoći - + Settings Pos&tavke @@ -1841,13 +2156,12 @@ Provjerite da li to stvarno Postavi aplikaciju za otvaranje vanjskih veza - Set application to zip/unzip files Settings action - Postavi aplikaciju za komprimiranje/raspakiravanje datoteka + Postavi aplikaciju za komprimiranje/raspakiravanje datoteka - + Set path for macros Settings action Postavi putanju za makroe @@ -1877,19 +2191,18 @@ Provjerite da li to stvarno ZapiÅ¡i backup datoteku pri spremanju - + Select branch after adding it Settings action Odaberi granu nakon dodavanja - Select existing heading Settings action - Odaberi postojeći naslov + Odaberi postojeći naslov - + Exclusive flags Settings action Ekskluzivne zastavice @@ -1930,7 +2243,7 @@ Provjerite da li to stvarno Test - + &Help Help menubar entry &Pomoć @@ -1984,7 +2297,7 @@ Provjerite da li to stvarno O VYMu - + Select color (Press Shift for more options) @@ -1995,7 +2308,7 @@ Provjerite da li to stvarno - + Couldn't load default map: %1 @@ -2005,34 +2318,35 @@ vym will create an empty map now. - + + Untitled + Default name in FileSaveAs dialog + + + + Couldn't save %1, because file exists and cannot be changed. - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - + Firefox Bookmarks Firefoxove knjižne oznake @@ -2042,12 +2356,7 @@ because file exists and cannot be changed. - - Open Freemind map - - - - + Link to another vym map Veza na drugu vym mapu @@ -2057,41 +2366,41 @@ because file exists and cannot be changed. - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + Load vym script - + About QT Help action O QTu - + Script output window - + Save as default map File menu - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -2108,95 +2417,75 @@ because file exists and cannot be changed. - - Get data from JIRA for subtree - Edit menu - - - - - Get page name from Confluence - Edit menu - - - - - Add image... - Edit menu - - - - Images - Slike + Slike - All Filedialog - Sve + Sve - + URL SystemFlag - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - (experimental) - - - - + Firefox Bookmarks File export menu Firefoxove knjižne oznake - + Reset delta priority for visible tasks Reset delta - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply + + Use modifier to move branches without linking Mode modifier - - Use modifier to move branches without linking + + Use modifier to move view without selecting Mode modifier - - Use modifier to move view without selecting - Mode modifier + + Load user flag - + + Jira + SystemFlag + + + + Important Freemind flag @@ -2323,7 +2612,7 @@ because file exists and cannot be changed. Slatko - + Confluence Credentials Settings action @@ -2335,42 +2624,60 @@ because file exists and cannot be changed. - + + Logfile settings + Settings action + + + + Dark theme Settings action - + Show scripting commands Help action - + Add Dodaj - + Remove Context menu name Ukloni - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Geometrija + + + Tasks Context menu Zadatci - + References (URLs, vymLinks, ...) Context menu name Reference (URLovi, vymLinkovi, ...) - + XLinks Menu for file actions XLinkovi @@ -2382,43 +2689,42 @@ because file exists and cannot be changed. Uredi XLink - Follow XLink Context menu - Prati XLink + Prati XLink - + Follow XLink Context menu name Prati XLink - + Save image Context action Spremi sliku - + File actions toolbar Toolbar for file actions Alatna traka datotečnih akcija - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard Alatna traka poniÅ¡tavanja i međuspremnika - + Edit actions toolbar Toolbar name Uredi alatnu traku akcija - + Selection toolbar Toolbar name Alatna traka odabira @@ -2430,35 +2736,72 @@ because file exists and cannot be changed. Alatna traka URLova i vymLinkova - + Colors toolbar Colors toolbar name Alatna traka boja - + + + Open %1 map + + + + + Enter Url: + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + Mapa + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + Editors toolbar Editor Toolbar name Alatna traka uređivača - + Modifier modes toolbar Modifier Toolbar name Alatna traka načina modifikatora - + (readonly) (samo za čitanje) - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -2467,20 +2810,19 @@ je već otvorena. Otvaranje iste mape u viÅ¡e uređivača može dovesti do zabune pri zavrÅ¡etku rada s vymom. Želite li - + Open anyway Svejedno otvori - - - + + Cancel Odustani - + This map does not exist: %1 Do you want to create a new one? @@ -2489,18 +2831,18 @@ Do you want to create a new one? Želite li kreirati novu mapu? - + Create Kreiraj - + Loading: %1 Progress dialog while loading maps Učitavam: %1 - + Load vym map Učitaj vym mapu @@ -2521,47 +2863,45 @@ Do you want to create a new one? ili - Saved %1 - Spremljen %1 + Spremljen %1 - Couldn't save - Ne mogu spremiti + Ne mogu spremiti - + Save map as Spremi mapu kao - - + + The file %1 exists already. Do you want to Datoteka %1 već postoji. Želite li - + Overwrite PrepiÅ¡i - - - - - + + + - + + + Critical Error Kritična greÅ¡ka - - + + Couldn't save %1, because of existing lockfile: @@ -2572,99 +2912,89 @@ zbog postojeće datoteke zaključavanja: - + Import Uvoz - Export as CSV - Izvezi kao CSV + Izvezi kao CSV - - Export to - Izvezi u + Izvezi u - - - - - + + + + + - - - + + + Warning Upozorenje - + Loaded %1 - - Saving %1... - - - - + Saving the map failed: Couldn't rename map to %1 - Couldn't find configuration for export to LibreOffice - Ne mogu naći konfiguraciju za izvoz u LibreOffice + Ne mogu naći konfiguraciju za izvoz u LibreOffice - + The map %1 has been modified but not saved yet. Do you want to Mapa %1 je modificirana, ali nije spremljena. Želite li - Save modified map before closing it - Spremljena izmijenjenu mapu prije zatvaranja + Spremljena izmijenjenu mapu prije zatvaranja - Discard changes - Odbaci promjene + Odbaci promjene - - + + + Couldn't find a viewer to open %1. Ne mogu naći program za pregledavanje %1. - - + + + Please use Settings-> Molim koristite postavke-> - - + + Set application to open an URL Postavi aplikaciju za otvaranje URLa - Enter URL: - Unesi URL: + Unesi URL: - + HTML Filedialog HTML @@ -2699,18 +3029,23 @@ Couldn't rename map to %1 Postavi URL za lokalnu datoteku - + + Enter Jira query: + + + + Couldn't open map %1 Ne mogu otvoriti mapu %1 - + Couldn't set sleep time to %1. Ne mogu postaviti spavanje na %1. - + %1 items on map Info about map @@ -2760,19 +3095,29 @@ Couldn't rename map to %1 xLinkovi - + + Load images + + + + Color of selection box Mainwindow - - + + Set application to open PDF files Postavi aplikaciju za otvaranje PDF datoteka - + + Set application to open external links + Postavi aplikaciju za otvaranje vanjskih veza + + + Number of undo/redo levels: Broj poniÅ¡ti/ponovi nivoa: @@ -2829,19 +3174,38 @@ Couldn't rename map to %1 - + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + History for %1 Window Caption Povijest za %1 - Export in last used format (%1) to: %2 status tip - Izvezi po zadnje koriÅ¡tenom formatu (%1) u: %2 + Izvezi po zadnje koriÅ¡tenom formatu (%1) u: %2 - + Critcal error Kritična greÅ¡ka @@ -2852,17 +3216,17 @@ Couldn't rename map to %1 Ne mogu naći dokumentaciju %1 u: %2 - + Load vym example map Učitaj vym mapu primjera - + Please allow vym to download release notes! Molim da dozvolite vymu da skine biljeÅ¡ke izdanja! - + Allow Dozvoli @@ -2872,17 +3236,17 @@ Couldn't rename map to %1 Nemoj dozvoliti - + Thank you for enabling downloads! Hvala za dozvoljavanje skidanja! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information Ažuriraj informacije @@ -2907,53 +3271,57 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope Uređivač mapa - + + Map Editors + Shortcut group + Uređivači mapa + + + Edit heading MapEditor Uredi naslov - + Print vym map MapEditor Ispis vym mape - - %1 items selected - + + Warning + Upozorenje NoteEditor - Note Editor Name of editor shown as window title - Uređivač biljeÅ¡ki + Uređivač biljeÅ¡ki QObject - - - - - + - - - + + + + + + Error GreÅ¡ka @@ -2977,12 +3345,12 @@ Couldn't rename map to %1 %2 - + Export as ASCII Izvezi kao ASCII - + Export as AO report @@ -2994,20 +3362,21 @@ Couldn't rename map to %1 - - + + - - + + - + + - - - + + + Critical Export Error Kritična greÅ¡ka izvoza @@ -3022,7 +3391,7 @@ Couldn't rename map to %1 - + @@ -3045,7 +3414,7 @@ Couldn't rename map to %1 Ne mogu izvesti kao CSV u %1 - + Warning Upozorenje @@ -3057,20 +3426,19 @@ Couldn't rename map to %1 Sadržaj: - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3082,12 +3450,12 @@ Couldn't rename map to %1 - + Critical Kritično - + Could not find stylesheet %1 Ne mogu naći stilski predložak %1 @@ -3108,7 +3476,7 @@ Couldn't rename map to %1 %2 - + Trying to create directory for flags: PokuÅ¡avam kreirati direktorij za zastavice: @@ -3119,7 +3487,7 @@ Couldn't rename map to %1 - + Trying to save HTML file: PokuÅ¡avam spremiti HTML datoteku: @@ -3141,17 +3509,22 @@ Couldn't rename map to %1 Ne mogu izvesti kao LaTeX u %1 - + Export as LibreOffice Impress presentation Izvezi kao LibreOffice Impress prezentaciju - + No objects in map! Nema objekata u mapi! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" Ne mogu pročitati postavke iz "%1" @@ -3170,7 +3543,12 @@ Couldn't rename map to %1 Ne mogu pročitati %1 - + + Images + Slike + + + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3178,7 +3556,7 @@ Do you risk to overwrite its contents? Želite li reskirati prepisivanje njegovog sadržaja? - + Overwrite PrepiÅ¡i @@ -3188,77 +3566,98 @@ Do you risk to overwrite its contents? Odustani - - - - - - - - + + Note Editor + Name of editor shown as window title + Uređivač biljeÅ¡ki + + + + Heading Editor + Name of editor shown as window title + + + + + + + + + - - - - - - - + + + + + + Critical Error Kritična greÅ¡ka - + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + + + + + Couldn't find tar tool to zip data. + + + + + Couldn't find tar tool to unzip data. + + + Couldn't move existing file out of the way before saving. - Ne mogu ukloniti postojeću datoteku s puta prije spremanja. + Ne mogu ukloniti postojeću datoteku s puta prije spremanja. - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - + + + + zip didn't exit normally zip nije normalno zavrÅ¡io - + + Couldn't start tool to decompress data! + + + + + Couldn't rename %1 back to %2 - Ne mogu preimenovati %1 nazad u %2 + Ne mogu preimenovati %1 nazad u %2 - Couldn't remove target of old symbolic link %1 - Ne mogu ukloniti izlaz na staru simboličku vezu %1 + Ne mogu ukloniti izlaz na staru simboličku vezu %1 - Couldn't rename output to target of old symbolic link %1 - Ne mogu preimenovati izlaz na staru simboličku vezu %1 + Ne mogu preimenovati izlaz na staru simboličku vezu %1 - Couldn't link from %1 to target of old symbolic link %2 - Ne mogu povezati %1 na staru simboličku vezu %2 + Ne mogu povezati %1 na staru simboličku vezu %2 - Saved %1, but couldn't remove %2 - Spremljena datoteka %1, ali ne mogu obrisati %2 - - - - Couldn't start %1 tool to decompress data! - - + Spremljena datoteka %1, ali ne mogu obrisati %2 - %1 didn't exit normally %1 nije normalno zavrÅ¡io @@ -3281,7 +3680,7 @@ The map could not be saved, please check if backup file is available or export a Postavi direktorij za vym makroe - + Warning: Version Problem Upozorenje: Problem s verzijom @@ -3291,12 +3690,7 @@ The map could not be saved, please check if backup file is available or export a <h3>Mapa je novija od VYMa</h3><p>Mapa koju pokuÅ¡avate učitati je spremljena pomoću vym %1. Verzija ovog vyma je %2. Ako se suočite s problemima, osvježavanje vyma bi trebalo pomoći.</p> - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - - - + Could not start %1 Ne mogu pokrenuti %1 @@ -3311,32 +3705,21 @@ The map could not be saved, please check if backup file is available or export a - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3348,12 +3731,12 @@ The map could not be saved, please check if backup file is available or export a - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3376,17 +3759,24 @@ The map could not be saved, please check if backup file is available or export a - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3415,7 +3805,7 @@ The map could not be saved, please check if backup file is available or export a Spremi - + Slide Mode in scriptEditor Slajd @@ -3439,7 +3829,13 @@ The map could not be saved, please check if backup file is available or export a - + + Script Editor + Shortcut scope + Uređivač skripti + + + Warning Upozorenje @@ -3455,12 +3851,12 @@ The map could not be saved, please check if backup file is available or export a Ne mogu naći slajd u koji mogu spremiti skriptu! - + Macros saved to %1 - + Script saved to %1 @@ -3470,27 +3866,24 @@ The map could not be saved, please check if backup file is available or export a Spremi skriptu - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Datoteka %1 + Datoteka %1 već postoji. Želite li ju prepisati? - Overwrite - PrepiÅ¡i + PrepiÅ¡i - Cancel - Odustani + Odustani - + Load script Učitaj skriptu @@ -3509,7 +3902,7 @@ već postoji. TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3545,11 +3938,17 @@ već postoji. Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor Prioritet @@ -3608,58 +4007,53 @@ već postoji. TextEditor - Ready Statusbar message - Spreman + Spreman - + No filename available for this note. Statusbar message Nema imena datoteke za ovu biljeÅ¡ku. - + Note Actions Akcije biljeÅ¡ki - + &Note Menubar &BiljeÅ¡ka - - - Texteditor Shortcuts - Uređivač teksta + Uređivač teksta - + &Import... &Uvoz... - + &Export... &Izvoz... - Export &As... (HTML) - Izvezi &kao... (HTML) + Izvezi &kao... (HTML) - + Export &As...(ASCII) Izvezi &kao... (ASCII) - + &Print... &Ispis... @@ -3669,12 +4063,18 @@ već postoji. &BriÅ¡i sve - + + Edit actions + TextEditor shortcut groups + + + + Edit Actions Uredi akcije - + Edi&t &Uredi @@ -3694,28 +4094,25 @@ već postoji. Odaberi i kopiraj &sve - &Copy - &Kopiraj + &Kopiraj - Cu&t - &Izreži + &Izreži - &Paste - &Zalijepi + &Zalijepi - + Font hints toolbar in texteditor Moduliranja slova - + F&ormat &Format @@ -3730,24 +4127,23 @@ već postoji. &Bogati tekst - + Fonts toolbar in texteditor Fontovi - + Format toolbar in texteditor Format - &Color... - &Boja... + &Boja... - + &Bold &Podebljano @@ -3767,32 +4163,32 @@ već postoji. In&deks - + Su&perscript &Eksponent - + &Left &Lijevo - + C&enter C&entriraj - + &Right &Desno - + &Justify &Složi - + &Settings &Postavke @@ -3812,30 +4208,17 @@ već postoji. &fiksni font je zadan - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - + Note Editor Uređivač biljeÅ¡ki - + Export Note to single file Izvezi biljeÅ¡ku u jednu datoteku - - + The file %1 exists already. Do you want to overwrite it? @@ -3845,39 +4228,139 @@ već postoji. Želite li ju prepisati? - - + + Overwrite PrepiÅ¡i - - + + File actions + TextEditor shortcut groups + + + + + &Copy + Edit menu + &Kopiraj + + + + Cu&t + Edit menu + &Izreži + + + + &Paste + Edit menu + &Zalijepi + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + + Cancel Odustani - + Couldn't export note dialog 'save note as' Ne mogu izvesti biljeÅ¡ku - + Export Note to single file (ASCII) Izvezi biljeÅ¡ku u jednu datoteku (ASCII) - + Print TextEditor Ispis + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + + + + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Učitaj sliku + TreeEditor - + Select upper object Tree Editor Odaberi gornji objekt @@ -3892,56 +4375,74 @@ već postoji. VymModel - + unknown user default name for map author in settings nepoznati korisnik - + unnamed neimenovana - - - - + + + Critical Parse Error Kritična greÅ¡ka raščlanjivanja - - + + + + + Critical Load Error Kritična greÅ¡ka učitavanja - + Couldn't create temporary directory before load Ne mogu kreirati privremeni direktorij prije učitavanja - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. Ne mogu naći mapu (*.xml) u .vym arhivi. - + compressed (vym default) Komprimirano (vym zadano) - - + + Cancel Odustani - + Save Error GreÅ¡ka spremanja @@ -3961,72 +4462,73 @@ could not be renamed before saving ne može biti preimenovana prije spremanja - + Critical Save Error Kritična greÅ¡ka spremanja - Couldn't create temporary directory before save - Ne mogu kreirati privremeni direktorij prije spremanja + Ne mogu kreirati privremeni direktorij prije spremanja - - - + Images Slike - - + All Filedialog Sve - Load image - Učitaj sliku + Učitaj sliku - + Save image Spremi sliku - + The file %1 exists already. Do you want to overwrite it? Datoteka %1 već postoji. Želite li ju prepisati? - + Overwrite PrepiÅ¡i - - + + Critical Error Kritična greÅ¡ka - + + Could not setup JiraAgent to retrieve data from Jira + + + + + Received Jira data. VymModel - + Couldn't save %1 Ne mogu spremiti %1 - + Critical Import Error Kritična greÅ¡ka uvoza @@ -4036,13 +4538,13 @@ Do you want to overwrite it? Ne mogu naći direktorij %1 - + Choose directory structure to import Odabiri strukturu direktorija za uvoz - + unknown user Default for lockfiles of maps nepoznati korisnik @@ -4061,18 +4563,18 @@ Mapa je zaključana od %1 na %2. Molim vas obriÅ¡ite datoteku zaključavanja ako ste sigurni da trenutno nitko ne radi na ovoj mapi. - + Warning: Map already opended VymModel Upozorenje: Mapa je već otvorena - + Removed lockfile for %1 Uklonjena datoteka zaključavanja za %1 - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -4082,18 +4584,47 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Ne mogu spremiti + + + + Compressing %1 + + + + + + + Saved %1 + + + + + + Warning Upozorenje - + Couldn't remove lockfile for %1 Ne mogu ukloniti datoteku zaključavanja za %1 @@ -4113,7 +4644,7 @@ Do you want to write the map Upozorenje - + The file of the map on disk has changed: %1 @@ -4126,66 +4657,77 @@ Do you want to reload that map with the new file? Želite li ponovo učitati mapu iz nove datoteke? - + Reload Ponovo učitaj - + Ignore Ignoriraj - + Autosave disabled during undo. Automatski spas onemogućen za vrijeme poniÅ¡tavanja. - + Note FindAll in VymModel BiljeÅ¡ka - - New map - New map - Nova mapa + + Couldn't find configuration for export to LibreOffice Impress + + - - Could not find Jira ticket pattern in %1 - VymModel + + %1 items selected + Status message when selecting multiple items - + New map + New map + Nova mapa + + + Contacting Jira... VymModel - + Export map as image Izvezi mapu kao sliku - + Couldn't save QImage %1 in format %2 Ne mogu spremiti QImage %1 u formatu %2 - + Export map as PDF Izvezi mapu kao PDF - + Export map as SVG Izvezi mapu kao SVG - + + + Export to + Izvezi u + + + Export map as XML Izvezi mapu kao XML @@ -4195,26 +4737,42 @@ Do you want to reload that map with the new file? Izvezi XML u direktorij - + Critical Export Error Kritična greÅ¡ka izvoza - + Export as csv Izvezi kao CSV - + + (still experimental) (experimentalno) - Load background image - Učitaj sliku pozadine + Učitaj sliku pozadine + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + Kritična greÅ¡ka @@ -4239,13 +4797,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget Uređivač stabla - + Slide Editor Title of dockable editor widget Uređivač slajdova @@ -4297,40 +4855,5 @@ Do you want to reload that map with the new file? Close Zatvori - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.ia.ts b/lang/vym_ia.ts similarity index 79% rename from lang/vym.ia.ts rename to lang/vym_ia.ts index ecc2d6a..3675ac2 100644 --- a/lang/vym.ia.ts +++ b/lang/vym_ia.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog Gratias @@ -49,6 +49,25 @@ Fixa application pro aperir un URL... + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -60,6 +79,26 @@ Claude + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Carga imagine de fundo + + BranchPropertyEditor @@ -159,13 +198,13 @@ - - + Property Editor Window caption Editor de proprietate - + Name Branchprop window: Attribute name @@ -183,7 +222,7 @@ - + %1 days ago task related times @@ -201,11 +240,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -538,22 +595,29 @@ vole permitter isto in tu systema! Claude + + FindControlsWidget + + + Find: + FindControlsWidget + Trova: + + FindWidget - Find: FindWidget - Trova: + Trova: HeadingEditor - Heading Editor Name of editor shown as window title - Editor de capite + Editor de capite @@ -579,25 +643,25 @@ vole permitter isto in tu systema! Annulla - + Action Table with actions Action - + Comment Table with actions Commento - + Undo action Table with actions Annulla action - + Current state Current bar in history hwindow Stato currente @@ -606,12 +670,14 @@ vole permitter isto in tu systema! JiraAgent - + + Warning Advertimento - + + Authentication problem when contacting JIRA @@ -631,11 +697,21 @@ vole permitter isto in tu systema! Remove - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -678,25 +754,25 @@ vole permitter isto in tu systema! Main - + Search results list FindResultWidget Cerca lista de exitos - + Task list TaskEditor Lista de crga - + Script Editor ScriptEditor Editor de script - + &New map File menu &Nove mappa @@ -714,19 +790,19 @@ vole permitter isto in tu systema! &Aperi... - + Open Recent File menu Aperi recente - + &Save... File menu &Salveguarda... - + Save &As... File menu &Salveguarda como... @@ -738,24 +814,23 @@ vole permitter isto in tu systema! IImporta - + Firefox Bookmarks Import filters Favoritos de Firefox - + Export File menu Exporta - Repeat last export (%1) - Repite ultime exportation (%1) + Repite ultime exportation (%1) - + Image%1 File export menu Image%1 @@ -778,73 +853,75 @@ vole permitter isto in tu systema! &Imprime - + &Close Map File menu &Claude Mappa - + E&xit File menu E&xi - + E&dit Edit menu E&dita - + + &Undo Edit menu A&nnulla - + &Redo Edit menu &Face de nove - + + &Copy Edit menu &Copia - + + Cu&t Edit menu &Talia - + + &Paste Edit menu &Colla - - + Delete Selection Edit menu Dele selection - Add attribute - Adde attributo + Adde attributo - + Add mapcenter Canvas context menu Adde centro de mappa - + Add branch as child Edit menu Adde ramo como infante @@ -856,21 +933,21 @@ vole permitter isto in tu systema! Adde ramo (Inserta) + - Add branch above Edit menu Adde ramo de supra - - + + Add branch below Edit menu Adde ramo a basso - + &Detach Context menu &Distacca @@ -882,25 +959,60 @@ vole permitter isto in tu systema! Distacca ramo e usa lo como centro de mappa - + Sort children Edit menu Ordina infantes - + Sort children backwards Edit menu Ordina infantes de retro modo - + Scroll branch Edit menu rola ramo - + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + Vistas + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + Expand all branches Edit menu Expande tote ramos @@ -912,25 +1024,24 @@ vole permitter isto in tu systema! Expande un nivello - + Collapse one level Edit menu Plica un nivello - + Collapse unselected levels Edit menu Plica nivellos non selectionate - Unscroll children Edit menu - Annulla rolar de infantes + Annulla rolar de infantes - + Webpage (HTML)... File export menu Pagina web (HTML)... @@ -948,79 +1059,77 @@ vole permitter isto in tu systema! Texto con cargas - + Grow selection Edit menu Cresce selection - + Shrink selection Edit menu Contracte selection - + Reset selection size Edit menu Reinitia grandor de selection - + Open URL Edit menu Aperi URL - Open URL in new tab Edit menu - Aperi URL in nove scheda + Aperi URL in nove scheda - Open all URLs in subtree (including scrolled branches) Edit menu - Aperi omne URLs in subarbore (includente ramos rolate) + Aperi omne URLs in subarbore (includente ramos rolate) - + Open all URLs in subtree Edit menu Aperi omne URLs in subarbore - + Extract URLs from note Edit menu Extrahe URLS ex nota - + Edit URL... Edit menu Edita URL... - + Edit local URL... Edit menu Edita URL local... - + Use heading for URL Edit menu Usa capite pro UR - + Open linked map Edit menu Aperi mappa ligate - + Open linked map in background tab Edit menu Aperir mappas ligate in etiquetta de fundo @@ -1038,79 +1147,79 @@ vole permitter isto in tu systema! Edita ligamine de vym... - + Delete vym link Edit menu Dele ligamine de vym - + Hide in exports Edit menu Cela quando on exporta - + Toggle task Edit menu Commuta carga - + Cycle task status Edit menu Cycla status de carga - + Reset sleep Task sleep Reinitia otio - - - - - + + + + + Sleep %1 days Task sleep Otio de carga - + Sleep %1 day Task sleep Otia %1 die - - + + Sleep %1 weeks Task sleep Otia %1 septimanas - + Add timestamp Edit menu Adde marca de tempore - + Add map (insert) Edit menu Adde mappa (inserta) - + Add map (replace) Edit menu Adde mappa (reimplacia) - + Save selection Edit menu Salveguardia selection @@ -1122,37 +1231,36 @@ vole permitter isto in tu systema! Solmente remobve ramo e mantene su infantes - + Remove children Edit menu Remove infantes - Property window Dialog to edit properties of selection - fenestra de proprietate + fenestra de proprietate - + Select Select menu Selectiona - + Tree editor View action Editor de arbore - + Task editor View action Editor de carga - + Slide editor View action Editor de diapositiva @@ -1164,19 +1272,19 @@ vole permitter isto in tu systema! Editor de script - + Next slide View action Proxime diapositiva - + Previous slide View action Previe diapositiva - + Settings Preferentias @@ -1187,13 +1295,13 @@ vole permitter isto in tu systema! Verifica per notas de liberation e actualisationes - + Toggle target... Edit menu Alterna objectivo... - + Goto target... Edit menu Vade a objectivo... @@ -1205,83 +1313,273 @@ vole permitter isto in tu systema! Move a objectivo... - + Select previous Edit menu Selectiona previe - + Select next Edit menu Selectiona proxime - + Unselect all Edit menu Deselectiona toto - - + + Find... Edit menu Trova... - + Find duplicate URLs Edit menu Trova URLs duplicate - + F&ormat Format menu F&ormato - - Pic&k color - Edit menu - P&rende color + + &Map + Map menu + &Mappa - - Color &branch - Edit menu - Colora &ramo + + Toggle window + Toggle visibility of editor windows overview in view menu + - - Color sub&tree - Edit menu - Colora sub&arbore + + Focus window + Toggle visibility of editor windows overview in view menu + - - Select default font - Branch attribute - Selige font predefinite + + File actions + MainWindow shortcut groups + - - Linkstyle Line - Linea de stilo de ligamine + + &Clear + Clear recent files menu + - - Linkstyle Curve - Curva de stilo de ligamine (LinkStyle) + + Exports + MainWindow shortcut groups + Exportationes - - Linkstyle Thick Line - Linea spisse de stilo de ligamine + + Repeat last export + - + + Map properties + + + + + Exit + MainWindow shortcut groups + + + + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + Repeat last action + Edit menu + + + + + Add + MainWindow shortcut groups + Adde + + + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + wymlinks-ligante mappas + + + + Tasks + Shortcuts for tasks in MainWindow + Cargas + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Follow reference + Context menu + + + + + Pic&k color + Edit menu + P&rende color + + + + Color &branch + Edit menu + Colora &ramo + + + + Color sub&tree + Edit menu + Colora sub&arbore + + + + Select default font + Branch attribute + Selige font predefinite + + + + Linkstyle Line + Linea de stilo de ligamine + + + + Linkstyle Curve + Curva de stilo de ligamine (LinkStyle) + + + + Linkstyle Thick Line + Linea spisse de stilo de ligamine + + + Linkstyle Thick Curve Curba spisse de stilo de ligamine @@ -1292,7 +1590,7 @@ vole permitter isto in tu systema! Cela ligamine si objecto non es selectionate - + &Use color of heading for link Branch attribute &Usa color de capite pro ligamine @@ -1308,17 +1606,15 @@ vole permitter isto in tu systema! Fixa color de &selection - Set &Background Color - Fixa color de &fundo + Fixa color de &fundo - Set &Background image - Fixa imagine de fun&do + Fixa imagine de fun&do - + &View &Vista @@ -1329,49 +1625,47 @@ vole permitter isto in tu systema! Barras de instrumento - + Zoom in View action Aggrandi - + Zoom out View action Diminue - + Rotate counterclockwise View action Rota in senso antihorologic - Rotate rclockwise View action - Rota in senso horologic + Rota in senso horologic - + reset Zoom View action Reinitia zoom - + Center on selection View action Centra sur selection - History Window View action - Fenestra de historia + Fenestra de historia - + Antialiasing View action Antialiasing @@ -1383,25 +1677,25 @@ vole permitter isto in tu systema! Applana transformationes de pixmap - + Next Map View action Proxime mappa - + Previous Map View action Previe mappa - + Use modifier to draw xLinks Mode modifier Usa modificator per designar xLinks - + @@ -1414,7 +1708,7 @@ vole permitter isto in tu systema! Nota - + Map target SystemFlag Mappa objectivo @@ -1444,19 +1738,19 @@ vole permitter isto in tu systema! Cela objecto in mappas exportate - + Set path for new maps Settings action - + Standard Flags toolbar Standard Flag Toolbar barra de instrumentos de bandieras standard - + Take care! Standardflag Attention! @@ -1492,181 +1786,166 @@ vole permitter isto in tu systema! Isto non functiona! - + Main window Shortcut scope Fenestra principal - + Property Editor PropertyEditor Editor de proprietate - + History window HistoryWidget Forsan chronologia es melior Fenestra de historia - Main window Shortcut group - Fenestra principal + Fenestra principal - Map Editors Shortcut group - Editores de mappa + Editores de mappa - + Text Editors Shortcut group Editores de texto - &Map Menu for file actions - &Mappa + &Mappa - + &Restore last session Edit menu &Restabili ultime session - + Text (A&O report)... Export format Texto(reporto de A&O)... - Properties - Proprietates + Proprietates - + Move branch up Edit menu Move ramo de supra - + Move branch down Edit menu Move ramo a basso - References Context menu Shortcuts - Menu de contexto de referentias + Menu de contexto de referentias - vymlinks - linking maps Shortcuts - wymlinks-ligante mappas + wymlinks-ligante mappas - Exports Shortcuts - Exportationes + Exportationes - Tasks Shortcuts - Cargas + Cargas - + Removing parts of a map Shortcuts Removente partes de un mappa - + Various Shortcuts Vias breve - + Map properties... Edit menu Proprietates de mappa... - + Selections Shortcuts Selectiones - + Goto linked map... Edit menu - + Search functions Shortcuts Cerca functiones - + Formatting Shortcuts Formattante - Views Shortcuts - Vistas + Vistas - + Toggle Presentation mode View action - + Note editor View action Editor de nota - + Heading editor View action Editor de capite - - Script output window - View action - - - - + Modifier modes Shortcuts Modos de modificator - + Good Standardflag Bon @@ -1684,7 +1963,7 @@ vole permitter isto in tu systema! Oh no! - + Time critical Standardflag Tempore critic @@ -1696,7 +1975,7 @@ vole permitter isto in tu systema! Appella... - + Idea! Standardflag Idea! @@ -1738,31 +2017,67 @@ vole permitter isto in tu systema! Isto non place me - + Rose Standardflag Rosa - + I just love... Standardflag Io solmente ama... - + Surprise! Standardflag Surprisa! - + Dangerous Standardflag Periculose - + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + Fenestra de historia + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + Info Standardflag Info @@ -1774,13 +2089,13 @@ vole permitter isto in tu systema! Isto adjutara - + Set author for new maps Settings action Fixa autor per nove mappas - + Number of visible parents in task editor Settings action Numero de genitores visibile in editor de carga @@ -1792,7 +2107,7 @@ vole permitter isto in tu systema! Numero de genitores visibile in fenestra de exito de cerca - + Show keyboard macros Help action @@ -1804,7 +2119,13 @@ vole permitter isto in tu systema! Information de debug - + + Limited view toolbar + View Toolbar name + + + + Couldn't load default map: %1 @@ -1814,8 +2135,14 @@ vym will create an empty map now. - - + + Untitled + Default name in FileSaveAs dialog + + + + + Couldn't save %1, because of existing lockfile: @@ -1836,12 +2163,7 @@ a causa de un file de bloco existente: - - Open Freemind map - - - - + Link to another vym map Ligamine a un altere mappa de vym @@ -1851,13 +2173,13 @@ a causa de un file de bloco existente: - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -1869,12 +2191,12 @@ a causa de un file de bloco existente: - + Load vym script - + Set author for new maps (used in lockfile) Fixa autor per nove mappas (usate in le file de bloco) @@ -1900,18 +2222,12 @@ a causa de un file de bloco existente: Numero de genitores mostrate per un carga: - + (readonly) (de sol lectura) - - Get data from JIRA for subtree - Edit menu - - - - + Select color (Press Shift for more options) @@ -1922,30 +2238,102 @@ a causa de un file de bloco existente: - + Saving the map failed: Couldn't rename map to %1 - + Couldn't save as default, failed to rename to %1 - + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + + Load images + + + + + Set application to open external links + Fixa application per aperir ligamines externe + + + No SSL support available for this build of vym - + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + Mappa + + + Please allow vym to download release notes! Pro favor, permitte que vym pote discargar notas de liberation! - + Allow Permitte @@ -1955,17 +2343,17 @@ Couldn't rename map to %1 Non permitte - + Thank you for enabling downloads! Gratias pro habilitar le discargmentos! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information Actualisa information @@ -1987,7 +2375,7 @@ Couldn't rename map to %1 Pro favor permitte que vym verifica actualisationes! - + Set application to open pdf files Settings action Fixa application per aperir files pdf @@ -1999,13 +2387,12 @@ Couldn't rename map to %1 Fixa application per aperir ligamines externe - Set application to zip/unzip files Settings action - Fixa applicationes per facer zip/unzip sur files + Fixa applicationes per facer zip/unzip sur files - + Set path for macros Settings action Fixa percurso per macros @@ -2035,19 +2422,18 @@ Couldn't rename map to %1 Scribe files de retrocopia quando on salveguarda - + Select branch after adding it Settings action Selige rampo post que il es addite - Select existing heading Settings action - Selige capite existente + Selige capite existente - + Exclusive flags Settings action Bandieras exclusive @@ -2076,7 +2462,7 @@ Couldn't rename map to %1 Essaya - + &Help Help menubar entry &Adjuta @@ -2124,24 +2510,24 @@ Couldn't rename map to %1 Circa QT - + Script output window - + Save as default map File menu - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -2158,88 +2544,65 @@ Couldn't rename map to %1 - - Get page name from Confluence - Edit menu - - - - - Add image... - Edit menu - - - - - Images - - - - All Filedialog - Omne + Omne - + URL SystemFlag - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - (experimental) - - - - + Firefox Bookmarks File export menu Favoritos de Firefox - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + Reset delta priority for visible tasks Reset delta - + Fit view to selection View action - + &Connect - + Connect Shortcuts @@ -2251,31 +2614,36 @@ Couldn't rename map to %1 - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply + + Use modifier to move branches without linking Mode modifier - - Use modifier to move branches without linking + + Use modifier to move view without selecting Mode modifier - - Use modifier to move view without selecting - Mode modifier + + Load user flag + + + + + Jira + SystemFlag - + Important Freemind flag @@ -2402,7 +2770,7 @@ Couldn't rename map to %1 Dulce - + Confluence Credentials Settings action @@ -2414,42 +2782,60 @@ Couldn't rename map to %1 - + + Logfile settings + Settings action + + + + Dark theme Settings action - + Show scripting commands Help action - + Add Adde - + Remove Context menu name Remove - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Geometria + + + Tasks Context menu Cargas - + References (URLs, vymLinks, ...) Context menu name Referentias(URLs, Ligamines de vym,...) - + XLinks Menu for file actions XLinks @@ -2461,43 +2847,42 @@ Couldn't rename map to %1 Edita XLink - Follow XLink Context menu - Seque XLink + Seque XLink - + Follow XLink Context menu name Seque XLink - + Save image Context action Salveguarda Image - + File actions toolbar Toolbar for file actions Barra de instrumento de actiones de file - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard barra de instrumento de annullar e de area de transferentia - + Edit actions toolbar Toolbar name Barra de instrumentos per actiones de Edita - + Selection toolbar Toolbar name barra de instrumento de selection @@ -2509,46 +2894,41 @@ Couldn't rename map to %1 barra de instrumento de URLs e ligamines de vym - + Colors toolbar Colors toolbar name Barra de instrumentos de color - + Loaded %1 - - Saving %1... - - - - + Color of selection box Mainwindow - + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + Editors toolbar Editor Toolbar name Barra de instrumentos de editores - + Modifier modes toolbar Modifier Toolbar name barra de instrumento de modos de modificator - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -2557,20 +2937,19 @@ ja es aperite. Aperir le mesme mappa in editores multiple pote ducer a confusion quando on termina de travaliar con vym. Tu vole - + Open anyway aperir in omne modo - - - + + Cancel Cancella - + This map does not exist: %1 Do you want to create a new one? @@ -2579,18 +2958,18 @@ Do you want to create a new one? Tu vole crea un nove? - + Create Crea - + Loading: %1 Progress dialog while loading maps Cargante: %1 - + Load vym map Carga mappa de vym @@ -2611,68 +2990,64 @@ Tu vole crea un nove? o - Saved %1 - Salveguardate %1 + Salveguardate %1 - Couldn't save - Il non pote salveguardar + Il non pote salveguardar - + Save map as Salveguarda mappa como - + Couldn't save %1, because file exists and cannot be changed. - - + + The file %1 exists already. Do you want to Le file %1 ja existe. Tu vole - + Overwrite Superscribe - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - + - Import Importa - Export as CSV - Exporta como CSV + Exporta como CSV - - + + + + + + @@ -2680,73 +3055,68 @@ exists already. Do you want to - - - + (still experimental) (ancora experimental) - - Export to - Exporta in + Exporta in - - - - - + + + + + - - - + + + Warning Advertimento - + The map %1 has been modified but not saved yet. Do you want to Le mappa %1 ha essite modificate ma non salveguardate ancora. Tu vole - Save modified map before closing it - Salveguardar mappa modificate ante que clauder lo + Salveguardar mappa modificate ante que clauder lo - Discard changes - Abandona modificationes + Abandona modificationes - - + + + Couldn't find a viewer to open %1. Il nonpoteva trovar un application pro aperir %1. - - + + + Please use Settings-> Pro favor usa preferentias -> - - + + Set application to open an URL Fixa application pro aperir un URL - Enter URL: - Inserta URL: + Inserta URL: - + HTML Filedialog HTML @@ -2781,35 +3151,34 @@ exists already. Do you want to Fixa Url per un file local - - - - - + + + - + + + Critical Error Error critic - Couldn't find configuration for export to LibreOffice - Non pote trovar le configuration pro exportar a LibreOffice + Non pote trovar le configuration pro exportar a LibreOffice - + Couldn't open map %1 Il non pote aperir mamma %1 - + Couldn't set sleep time to %1. Non pote fixar tempore de otio a %1. - + %1 items on map Info about map @@ -2847,13 +3216,13 @@ exists already. Do you want to xLinks - - + + Set application to open PDF files Fixa application pro aperir files PDF - + Number of undo/redo levels: Numero de nivellos de annulla/reface: @@ -2878,19 +3247,18 @@ exists already. Do you want to Information - + History for %1 Window Caption Historia per %1 - Export in last used format (%1) to: %2 status tip - Exporta in ultime formato usate (%1) in: %2 + Exporta in ultime formato usate (%1) in: %2 - + Critcal error Error critic @@ -2902,7 +3270,7 @@ exists already. Do you want to %2 - + Load vym example map Carga mappa de exemplo de vym @@ -2910,53 +3278,57 @@ exists already. Do you want to MapEditor - + Map Editor Shortcut scope Editor de mappa - + + Map Editors + Shortcut group + Editores de mappa + + + Edit heading MapEditor - + Print vym map MapEditor Imprime mappa de vym - - %1 items selected - + + Warning + Advertimento NoteEditor - Note Editor Name of editor shown as window title - Editor de nota + Editor de nota QObject - - - - - + - - - + + + + + + Error Error @@ -2981,12 +3353,12 @@ exists already. Do you want to Advertimento: on superscribe file - + Export as ASCII Exporta como ASCII - + Export as AO report @@ -3006,7 +3378,7 @@ exists already. Do you want to Non pot exportar como ASCII a %1 - + Export as CSV Exporta como CSV @@ -3016,13 +3388,13 @@ exists already. Do you want to Non pote exportar como CSV a %1 - + Warning Advertimento - - + + Contents: Used in HTML export Contentos: @@ -3033,7 +3405,7 @@ exists already. Do you want to Il abortava exportation. - + Trying to create directory for flags: Provante a crear directorio per bandieras: @@ -3044,8 +3416,8 @@ exists already. Do you want to - - + + Could not write %1 Il non pote scriber %1 @@ -3058,44 +3430,44 @@ exists already. Do you want to - + + - - - + + + Critical Export Error Error de exportar critic - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export - + Critical Critic - + Could not find stylesheet %1 Non pote trovar folio de stylo %1 @@ -3127,7 +3499,7 @@ exists already. Do you want to - + @@ -3145,17 +3517,22 @@ exists already. Do you want to Non pote exportar como LaTeX a %1 - + Export as LibreOffice Impress presentation Exporta com presentation de LibreOffice Impress - + No objects in map! Nulle objectos in mappa! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" Il non pote leger prefrentias ex "%1" @@ -3174,7 +3551,12 @@ exists already. Do you want to Il non pote leger %1 - + + Images + + + + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3182,7 +3564,7 @@ Do you risk to overwrite its contents? Tu risca de super scriber su contentos? - + Overwrite Superscribe @@ -3192,88 +3574,109 @@ Tu risca de super scriber su contentos? Cancella - - - - - - - - + + Note Editor + Name of editor shown as window title + Editor de nota + + + + Heading Editor + Name of editor shown as window title + Editor de capite + + + + + + + + - - - - - - - + + + + + + Critical Error Error critic - + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + + + + + Couldn't find tar tool to zip data. + + + + + Couldn't find tar tool to unzip data. + + + Couldn't move existing file out of the way before saving. - Non pote mover remotemente file existente ante salveguardar. + Non pote mover remotemente file existente ante salveguardar. - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - + + + + zip didn't exit normally zip non exiva normalmente - + + Couldn't start tool to decompress data! + + + + + Couldn't rename %1 back to %2 - Non pote renominar %1 de retro a %2 + Non pote renominar %1 de retro a %2 - Couldn't remove target of old symbolic link %1 - Non pote remover objecto de vetere ligamine symbolic %1 + Non pote remover objecto de vetere ligamine symbolic %1 - Couldn't rename output to target of old symbolic link %1 - Non pote renominar exitoa objecto a vetere ligamine symbolic %1 + Non pote renominar exitoa objecto a vetere ligamine symbolic %1 - Couldn't link from %1 to target of old symbolic link %2 - non pote crear igamine %1 a objecto de vetere ligamine symbolic %2 + non pote crear igamine %1 a objecto de vetere ligamine symbolic %2 - Saved %1, but couldn't remove %2 - Salveguardate %1 ma non pote remover %2 - - - - Couldn't start %1 tool to decompress data! - - + Salveguardate %1 ma non pote remover %2 - + Could not start %1 Il non pote initiar %1 - - + %1 didn't exit normally %1 non exiva normalmente - + Warning: Version Problem Advertimento: Problema de version @@ -3282,11 +3685,6 @@ The map could not be saved, please check if backup file is available or export a <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3315,32 +3713,21 @@ The map could not be saved, please check if backup file is available or export a - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3352,12 +3739,12 @@ The map could not be saved, please check if backup file is available or export a - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3380,17 +3767,24 @@ The map could not be saved, please check if backup file is available or export a - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3423,13 +3817,13 @@ The map could not be saved, please check if backup file is available or export a Salveguarda - + Warning Advertimento - + Slide Mode in scriptEditor Diapositiva @@ -3453,7 +3847,13 @@ The map could not be saved, please check if backup file is available or export a - + + Script Editor + Shortcut scope + Editor de script + + + Couldn't get model to save script into slide! Non pote obtener modelloo pro salveguardar script in diapositiva! @@ -3463,12 +3863,12 @@ The map could not be saved, please check if backup file is available or export a Non pote trovar diapositiva pro salveguardar in slide! - + Macros saved to %1 - + Script saved to %1 @@ -3478,25 +3878,22 @@ The map could not be saved, please check if backup file is available or export a Salveguarda script - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Le file %1 ja existe. Tu vole superscriber lo? + Le file %1 ja existe. Tu vole superscriber lo? - Overwrite - Superscribe + Superscribe - Cancel - Cancella + Cancella - + Load script Carga script @@ -3515,7 +3912,7 @@ Do you want to overwrite it? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3551,11 +3948,17 @@ Do you want to overwrite it? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor Prioritate @@ -3612,58 +4015,53 @@ Do you want to overwrite it? TextEditor - Ready Statusbar message - Preste + Preste - + No filename available for this note. Statusbar message Nulle nomine de file disponibile pro iste nota. - + Note Actions Actiones de nota - + &Note Menubar &Nota - - - Texteditor Shortcuts - Editor de texto + Editor de texto - + &Import... &Importa... - + &Export... &Exporta... - Export &As... (HTML) - Exporta &como...(HTML) + Exporta &como...(HTML) - + Export &As...(ASCII) Exporta &como...(ASCII) - + &Print... &Imprime... @@ -3673,53 +4071,86 @@ Do you want to overwrite it? &Dele Toto - + + Edit actions + TextEditor shortcut groups + + + + Edit Actions Actiones de Edit - + &Undo &Annulla - - &Redo - &Reface + + &Redo + &Reface + + + + Select and copy &all + Selige e copia &omne + + + &Copy + &Copia + + + Cu&t + &Talia + + + &Paste + Co&lla - - Select and copy &all - Selige e copia &omne + + Edi&t + Edi&tar - + &Copy - &Copia + Edit menu + &Copia Cu&t - &Talia + Edit menu + &Talia &Paste - Co&lla + Edit menu + - - Edi&t - Edi&tar + + Insert image + TextEditor + - + + Format actions + TextEditor shortcut groups + + + + Font hints toolbar in texteditor Insinuation de font - + F&ormat F&ormat @@ -3734,24 +4165,23 @@ Do you want to overwrite it? &Richtext - + Fonts toolbar in texteditor Fonts - + Format toolbar in texteditor Formato - &Color... - &Color... + &Color... - + &Bold &Grasso @@ -3771,32 +4201,32 @@ Do you want to overwrite it? Subscri&bite - + Su&perscript Supersc&ribite - + &Left &Sinistra - + C&enter C&entro - + &Right &Dextera - + &Justify &Justifica - + &Settings &Preferentias @@ -3816,30 +4246,53 @@ Do you want to overwrite it? &font fixate es predefinite - - Set RichText default background color - TextEditor + + Text color + TextEditor windows - - Set RichText default font color - TextEditor + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + + + + Text editor default text color + TextEditor windows + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Carga imagine + + + Note Editor Editor de nota - + Export Note to single file Exporta nota in un singule file - - + The file %1 exists already. Do you want to overwrite it? @@ -3847,30 +4300,64 @@ Do you want to overwrite it? Le file %1 ja existe. Tu vole superscriber lo? - - + + Overwrite Superscribe - - + + File actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + + Cancel Cancella - + Couldn't export note dialog 'save note as' Il nonpote exportar nota - + Export Note to single file (ASCII) Exporta Nota a un singule file (ASCII) - + Print TextEditor Imprime @@ -3879,7 +4366,7 @@ Do you want to overwrite it? TreeEditor - + Select upper object Tree Editor Selige objecto superior @@ -3894,46 +4381,64 @@ Do you want to overwrite it? VymModel - + unknown user default name for map author in settings usator incognite - + unnamed sin nomine - - - - + + + Critical Parse Error Error critic de analysator syntactic - - + + + + + Critical Load Error Errioc critic de cargar - + Couldn't create temporary directory before load Il non pote crear directorio temporanee ante cargar - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. Il non pot etrovar un mappa (é.xml) in archivo .vym. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3943,35 +4448,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Il non pote salveguardar + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps usator incognite - + Warning: Map already opended VymModel Advertimento: Mappa ja aperite - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) comprimite (predefinite de vym) - - + + Cancel Cancella - + Save Error Salveguarda error @@ -3989,65 +4534,60 @@ could not be renamed before saving %1 non poteva esser renominate ante salveguardar - + Critical Save Error Error critic de salveguardar - Couldn't create temporary directory before save - Il non poteva crear directorio temporanee ante salveguardar + Il non poteva crear directorio temporanee ante salveguardar - - - + Images Imagines - - + All Filedialog Omne - Load image - Carga imagine + Carga imagine - + Save image Salveguarda imagine - + The file %1 exists already. Do you want to overwrite it? Le file %1 ja existe. Tu vole supescriber lo? - + Overwrite Superscribe - - + + Critical Error Error critic - + Couldn't save %1 Il non pote salveguardar %1 - + Critical Import Error Error critic de importar @@ -4057,13 +4597,13 @@ Do you want to overwrite it? Il non pote trovar le directorio %1 - + Choose directory structure to import Selige structura de directorio de importar - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -4077,7 +4617,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - + Couldn't remove lockfile for %1 @@ -4097,7 +4637,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin Advertimento - + The file of the map on disk has changed: %1 @@ -4110,72 +4650,72 @@ Do you want to reload that map with the new file? Tu vole recargar le mappa con le nove file? - + Reload Recarga - + Ignore Ignora - - + + + Warning Advertimento - + Autosave disabled during undo. Salveguardar automatc dishabilitate durante annullation. - + Note FindAll in VymModel Nota - New map New map - Nove mappa + Nove mappa - - Could not find Jira ticket pattern in %1 - VymModel - - - - + Contacting Jira... VymModel - + Export map as image Exporta mappa como imagine - + Couldn't save QImage %1 in format %2 Il non pote salveguardar QImage %1 in formato %2 - + Export map as PDF Exporta mappa como PDF - + Export map as SVG Exporta mappa como SVG - + + + Export to + Exporta in + + + Export map as XML Exporta mappa como XML @@ -4185,32 +4725,54 @@ Tu vole recargar le mappa con le nove file? Exporta XML in directorio - + Critical Export Error Error critic de exportation - + + (still experimental) (ancora experimental) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv Exporta como csv - + + Received Jira data. VymModel - Load background image - Carga imagine de fundo + Carga imagine de fundo + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + Error critic @@ -4235,13 +4797,13 @@ Tu vole recargar le mappa con le nove file? VymView - + Tree Editor Title of dockable editor widget Editor a arbore - + Slide Editor Title of dockable editor widget Editor de diapositiva @@ -4293,40 +4855,5 @@ Tu vole recargar le mappa con le nove file? Close Claude - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.it.ts b/lang/vym_it.ts similarity index 77% rename from lang/vym.it.ts rename to lang/vym_it.ts index bb6aca0..e3ce088 100644 --- a/lang/vym.it.ts +++ b/lang/vym_it.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog Ringraziamenti @@ -48,6 +48,25 @@ Impostare un'applicazione per aprire una URL... + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -63,6 +82,26 @@ Chiudi + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Carica immagine di sfondo + + BranchPropertyEditor @@ -162,13 +201,13 @@ - - + Property Editor Window caption Editor di Proprietà - + Name Branchprop window: Attribute name Nome @@ -186,7 +225,7 @@ Tipo - + %1 days ago task related times @@ -204,11 +243,29 @@ task related times Il task è attivo + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -569,22 +626,29 @@ voglia permettere ciò nel tuo sistema! Chiudi + + FindControlsWidget + + + Find: + FindControlsWidget + Trova: + + FindWidget - Find: FindWidget - Trova: + Trova: HeadingEditor - Heading Editor Name of editor shown as window title - Editor intestazione + Editor intestazione @@ -610,25 +674,25 @@ voglia permettere ciò nel tuo sistema! Annulla - + Action Table with actions Azioni - + Comment Table with actions Commenti - + Undo action Table with actions Cancella azione - + Current state Current bar in history hwindow Stato corrente @@ -637,12 +701,14 @@ voglia permettere ciò nel tuo sistema! JiraAgent - + + Warning Attenzione - + + Authentication problem when contacting JIRA Problema di autenticazione quando si contatta JIRA @@ -662,11 +728,21 @@ voglia permettere ciò nel tuo sistema! Rimuovi - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -709,7 +785,7 @@ voglia permettere ciò nel tuo sistema! Main - + Linkstyle Line Collegamenti Lineari @@ -719,51 +795,49 @@ voglia permettere ciò nel tuo sistema! Collegamento Linea Spessa - + Set &Link Color Specifica Co&lore dei Collegamenti - Set &Background Color - Specifica Colore di S&fondo + Specifica Colore di S&fondo - + &View &Vista - - + + Set application to open an URL Scegli l'applicazione per aprire gli URL - + Overwrite Sovvrascrivi - - - - + + + Cancel Cancella - + Open anyway Aprire lo stesso - + Create Crea - + Load vym map Carica una mappa vym @@ -778,55 +852,53 @@ voglia permettere ciò nel tuo sistema! Importa: Rimpiazza la selezione con una mappa vym - Save modified map before closing it - Salvare la mappa modificata prima di chiudere + Salvare la mappa modificata prima di chiudere - Discard changes - Tralascia le modifiche + Tralascia le modifiche - + VYM -Information: VIM - Informazioni: - - - - - + + + - + + + Critical Error Errore Critico - + Critcal error Errore Critico - + Add Aggiungi - - + + Import Importa - + &Print &Stampa - + Take care! Standardflag Fare attenzione! @@ -856,13 +928,13 @@ voglia permettere ciò nel tuo sistema! Male - + Time critical Standardflag In tempo critico - + Idea! Standardflag Idea! @@ -904,8 +976,12 @@ voglia permettere ciò nel tuo sistema! Questo aiuta - - + + + + + + @@ -913,20 +989,17 @@ voglia permettere ciò nel tuo sistema! - - - + (still experimental) (in via di sperimentazione) - Add image... Edit menu - Aggiungi immagine... + Aggiungi immagine... - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -935,7 +1008,7 @@ to confusion when finishing working with vym.Do you want to quando si finisce di lavorare con vym. Si vuole continuare - + This map does not exist: %1 Do you want to create a new one? @@ -944,134 +1017,131 @@ Do you want to create a new one? Si vuole crearne una nuova? - Saved %1 - Salvato %1 + Salvato %1 - Couldn't save - Non si può salvare + Non si può salvare - - + + The file %1 exists already. Do you want to Il file %1 è già esistente. Si vuole - - Export to - Esporta in + Esporta in - + The map %1 has been modified but not saved yet. Do you want to La mappa %1 è stata modificata ma non salvata. Si vuole - + Couldn't open map %1 Non è possibile aprire la mappa %1 - - - - - + + + + + - - - + + + Warning Attenzione - - + + + Couldn't find a viewer to open %1. Non è possibile trovare un applicazione per aprire %1. - - + + + Please use Settings-> Usare le Impostazioni-> - - + + Set application to open PDF files Scegli il programma per aprire i file PDF - + Oh no! Standardflag Oh no! - + Search results list FindResultWidget Cerca lista dei risultati - + File actions toolbar Toolbar for file actions Barra strumenti azioni di file - + Edit actions toolbar Toolbar name Barra di azioni di Edit - + Task list TaskEditor Elenco delle task - + Script Editor ScriptEditor Editor di Script - + Property Editor PropertyEditor Editor di Proprietà - + History window HistoryWidget lascio storia ma dovrebbe essere cronologia Finestra per la storia - + E&dit Edit menu E&dit - Add attribute - Aggiunge attributo + Aggiunge attributo - + &Detach Context menu &Stacca @@ -1083,13 +1153,13 @@ exists already. Do you want to Stacca ramp e usa come centro di mappa - + Sort children backwards Edit menu Ordina figli in modo inverso - + Expand all branches Edit menu Espande tutti i rami @@ -1101,175 +1171,169 @@ exists already. Do you want to Espande un livello - + Collapse one level Edit menu Collassa un livello - + Collapse unselected levels Edit menu Collassa livelli non selezionati - Unscroll children Edit menu - Non scorre i figli + Non scorre i figli - + Text (A&O report)... Export format Testo (rapporto A&O)... - Properties - Proprietà + Proprietà - + Move branch up Edit menu Vai al ramo superiore - + Move branch down Edit menu Vai al ramo inferiore - + Grow selection Edit menu Amplia selezione - + Shrink selection Edit menu Contrae selezione - + Reset selection size Edit menu Riazzera dimensione della selezione - References Context menu Shortcuts - Menu di contesto dei riferimenti + Menu di contesto dei riferimenti - vymlinks - linking maps Shortcuts - vymkinks - collegare mappe + vymkinks - collegare mappe - + Open linked map in background tab Edit menu Apri la mappa collegata nella scheda di sfondo - Exports Shortcuts - Esporta + Esporta - Tasks Shortcuts - Le Task + Le Task - + Toggle task Edit menu Commuta la task - + Cycle task status Edit menu Status della task di ciclo - + Reset sleep Task sleep Riazzera il riposo - - - - - + + + + + Sleep %1 days Task sleep Traduco sleep come riposa, ma prima o poio lo cambierò Riposa %1 giorni - + Sleep %1 day Task sleep Riposa %1 giorno - - + + Sleep %1 weeks Task sleep Riposa %1 settimane - + Removing parts of a map Shortcuts Rimovente parti di una mappa - + Various Shortcuts Varie - + Map properties... Edit menu Proprietà di mappa... - + Selections Shortcuts Selezioni - + Select Select menu Seleziona - + Toggle target... Edit menu Commuta obiettivo... - + Goto target... Edit menu Va a obiettivo... @@ -1281,142 +1345,137 @@ exists already. Do you want to Sposta a obiettivo... - + Goto linked map... Edit menu Vai alla mappa collegata... - + Unselect all Edit menu Deseleziona tutto - + Search functions Shortcuts Funzioni di ricerca - + Find duplicate URLs Edit menu Trova URL duplicate - + Formatting Shortcuts Formattante - Views Shortcuts - Viste + Viste - + Toggle Presentation mode View action Attiva/disattiva la modalità presentazione - + Note editor View action Editor di note - + Heading editor View action Editor di intestazione - Script output window View action - Finestra di output dello script + Finestra di output dello script - + Modifier modes Shortcuts Modalità di modifica - Images - Immagini + Immagini - All Filedialog - Tutto + Tutto - + URL SystemFlag URL - + User Flags toolbar user Flags Toolbar Barra degli strumenti Flag utente - + Hm... Standardflag Hm... - (experimental) - (sperimentale) + (sperimentale) - + Firefox Bookmarks File export menu Segnalibri di Firefox - + Move branch diagonally up Edit menu Spostare il ramo in diagonale verso l'alto - + Move branch diagonally down Edit menu Spostare il ramo in diagonale verso IL basso - + Reset delta priority for visible tasks Reset delta Reimposta la priorità delta per i task visibili - + Fit view to selection View action Adatta la vista alla selezione - + &Connect &Connetti - + Connect Shortcuts Connetti @@ -1428,31 +1487,30 @@ exists already. Do you want to Connetti azione - + Use modifier to select and reorder objects Mode modifier Modificatore di modalità - Format painter: pick color from another branch and apply Mode modifier - Formato colore: scegli il colore da un altro ramo e applicalo + Formato colore: scegli il colore da un altro ramo e applicalo - + Use modifier to move branches without linking Mode modifier Usa il modificatore per spostare i rami senza collegarli - + Use modifier to move view without selecting Mode modifier Utilizza il modificatore per spostare la vista senza selezionare - + Important Freemind flag @@ -1579,7 +1637,7 @@ exists already. Do you want to Dolce - + Check for release notes and updates Settings action Verifica per le note di rilascio e gli aggiornamenti @@ -1591,13 +1649,12 @@ exists already. Do you want to Imposta l'autore per le nuove mappe - Set application to zip/unzip files Settings action - Imposta l'applicazione per eseguire lo zip/unzip dei file + Imposta l'applicazione per eseguire lo zip/unzip dei file - + Confluence Credentials Settings action Credenziali di Confluence @@ -1609,7 +1666,7 @@ exists already. Do you want to Credenziali JIRA - + Dark theme Settings action Tema scuro @@ -1627,7 +1684,7 @@ exists already. Do you want to Numero di genitori visibili nella finestra dei risultati di ricerca - + Download and show release notes Help action Scarica e mostra le note di rilascio @@ -1657,34 +1714,29 @@ exists already. Do you want to Informazione di debug - + XLinks Menu for file actions XLinks - + Loaded %1 - - Saving %1... - - - - + Color of selection box Mainwindow Colore della casella di selezione - + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) <html><h3>Consenti a vym di controllare online gli aggiornamenti o le note di rilascio?</h3>Se lo consenti, vym <ul><li>controllerà una volta le note di rilascio</li><li>controlla regolarmente gli aggiornamenti e avvisati nel caso in cui dovessi aggiornare, ad es. se sono disponibili correzioni di bug importanti</li><li>ricevi un cookie con un ID casuale e invia alcuni dati anonimi, come:<ul><li>versione vym</li><li>nome della piattaforma e l'ID (ad es. "Windows" o "Linux")</li><li>se utilizzi il tema scuro</li></ul>Questi dati vengono inviati a me, Uwe Drechsel.<p>Come sviluppatore vym sono motivato nel vedere molte persone usare vym. Naturalmente sono curioso di vedere su quale sistema viene utilizzato vym. La manutenzione di ciascuno dei sistemi richiede molto del mio tempo (libero).</p> <p>Non verranno inviati dati diversi da quelli sopra indicati, in particolare non verranno raccolti o inviati dati privati. (Se non ci credi, controlla il codice sorgente.)</p></li></ ul>Se non consenti, <ul><li>non verrà scaricato nulla e soprattutto <b>non sarò motivato</b> per dedicare altre migliaia di ore allo sviluppo di uno strumento software gratuito.</ul>Consenti a vym di verificare la presenza di aggiornamenti :-) - + Couldn't load default map: %1 @@ -1694,15 +1746,15 @@ vym will create an empty map now. Finestra principale: impossibile caricare la mappa predefinita - + Couldn't save %1, because file exists and cannot be changed. Impossibile salvare %1, perché il file esiste e non può essere modificato. - - + + Couldn't save %1, because of existing lockfile: @@ -1713,29 +1765,44 @@ poiché esiste il file di blocco: %2 - + Save map as new default map Salva la mappa come nuova mappa predefinita - + You have no permissions to write to Non hai i permessi per scrivere - Overwrite as new default map - Sovrascrivi come nuova mappa predefinita + Sovrascrivi come nuova mappa predefinita - + Couldn't save as default, failed to rename to %1 Impossibile salvare come predefinito. Impossibile rinominare %1 - + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + Link to another vym map Collega ad un'altra mappa vym @@ -1745,13 +1812,13 @@ poiché esiste il file di blocco: Imposta come collegamento alla mappa vym - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog Imposta come collegamento alla mappa vym inserendo il tempo di riposo (numero di giorni, ore con '' o data AAAA-MM-GG o GG.MM[.AAAA] - + tasks total Info about map Task totali @@ -1763,12 +1830,22 @@ poiché esiste il file di blocco: Task nella mappa - + + Load images + + + + + Set application to open external links + Imposta applicazione per aprire i link esterni + + + Load vym script Carica script vym - + Restart vym to apply the changed dark theme setting Riavvia vym per applicare l'impostazione modificata del tema scuro @@ -1779,32 +1856,78 @@ poiché esiste il file di blocco: Nessun supporto SSL disponibile per questa build di vym - - Please allow vym to download release notes! - Per favore permeti a vym di scaricare le note di rilascio! - - - - Allow - Permetti + + Undo (%1) + - - Do not allow - Non permetti + + Undo: %1 (%2) + - - Thank you for enabling downloads! - Grazie per avere abilitato i downloads! + + Redo (%1) + - - That's ok, though I would be happy to see many users working with vym and also on which platforms. - Tutto ok, anche se sarei felice di vedere molti utenti che lavorano con vym e anche su quali piattaforme. + + Redo: %1 (%2) + - + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + Mappa + + + + Please allow vym to download release notes! + Per favore permeti a vym di scaricare le note di rilascio! + + + + Allow + Permetti + + + + Do not allow + Non permetti + + + + Thank you for enabling downloads! + Grazie per avere abilitato i downloads! + + + + That's ok, though I would be happy to see many users working with vym and also on which platforms. + Tutto ok, anche se sarei felice di vedere molti utenti che lavorano con vym e anche su quali piattaforme. + + + Update information Aggiorna l'informazione @@ -1826,43 +1949,42 @@ poiché esiste il file di blocco: Per favore permetti a vym di verificare gli aggiornamenti! - Open all URLs in subtree (including scrolled branches) Edit menu - Apre tutte le URL in un sottoalbero (inclusi i rami scorsi) + Apre tutte le URL in un sottoalbero (inclusi i rami scorsi) - + Extract URLs from note Edit menu Estrae URL dalla nota - + Add timestamp Edit menu Aggiunge una marca temporale - + Remove children Edit menu Rimuove i figli - + Tree editor View action Editor a albero - + Task editor View action Editor di task - + Slide editor View action Editor di diapositive @@ -1874,73 +1996,72 @@ poiché esiste il file di blocco: Editor di script - + Center on selection View action Centra su selezione - + Editors toolbar Editor Toolbar name Barra di strumenti per editor - + Modifier modes toolbar Modifier Toolbar name Barra di strumenti per i modi del Modificatore - + Select previous Edit menu Seleziona il precedente - + Select next Edit menu Seleziona il prossimo - + Select default font Branch attribute Seleziona il font predefinito - + Toolbars Toolbars overview in view menu Barre di strumenti - + Rotate counterclockwise View action Ruota in modo antiorario - Rotate rclockwise View action - Ruota in moto orario + Ruota in moto orario - + Map target SystemFlag Mappa obiettivo - + Standard Flags toolbar Standard Flag Toolbar Barra strumenti di Flags Standard - + Status - ok,done Standardflag Stato - ok, fatto @@ -1958,13 +2079,13 @@ poiché esiste il file di blocco: Stato - mancante, non iniziato - + Call... Standardflag Chiama... - + Very important! Standardflag Molto Importante! @@ -1976,7 +2097,7 @@ poiché esiste il file di blocco: Molto irrilevante! - + Rose Standardflag Rosa @@ -1988,54 +2109,52 @@ poiché esiste il file di blocco: Sorpresa! - + Save as default map File menu Salva come mappa predefinita - Get data from JIRA for subtree Edit menu - Ottieni dati da JIRA per il sottoalbero + Ottieni dati da JIRA per il sottoalbero - Get page name from Confluence Edit menu - Ottieni il nome della pagina da Confluence + Ottieni il nome della pagina da Confluence - + Info Standardflag Info - + Settings Impostazioni - + Show keyboard shortcuts Help action Mostra le scorciatoie di tastiera - + Tasks Context menu Le task - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard Strumento di annullamento e clipboard - + Selection toolbar Toolbar name barra di strumenti di selezione @@ -2047,13 +2166,13 @@ poiché esiste il file di blocco: Barra di strumenti per URL e collegamenti di vym - + Colors toolbar Colors toolbar name Barra di strumenti dei colori - + Select color (Press Shift for more options) Seleziona il colore (premi Maiusc per ulteriori opzioni) @@ -2063,6 +2182,12 @@ poiché esiste il file di blocco: View Toolbar name Visualizza barra degli strumenti + + + Limited view toolbar + View Toolbar name + + or @@ -2070,34 +2195,37 @@ poiché esiste il file di blocco: o - + Save map as Salva la mappa come - + + Untitled + Default name in FileSaveAs dialog + + + + Import Firefox Bookmarks into new map Importa i segnalibri di Firefox nella nuova mappa - Open Freemind map - Apri la mappa di Freemind + Apri la mappa di Freemind - Couldn't find configuration for export to LibreOffice - Non si può trovare la configurazione per esportare in LibreOffice + Non si può trovare la configurazione per esportare in LibreOffice - Enter URL: - Inserisci URL: + Inserisci URL: - + HTML Filedialog HTML @@ -2132,14 +2260,14 @@ poiché esiste il file di blocco: Imposta URL come file locale - + Couldn't set sleep time to %1. Non è possibile fissare il tempo di riposo a %1. - + branches Info about map rami @@ -2169,7 +2297,7 @@ poiché esiste il file di blocco: xLinks - + Set author for new maps (used in lockfile) Imposta l'autore per le nuove mappe (usato nel file di blocco) @@ -2190,48 +2318,47 @@ poiché esiste il file di blocco: Numero di genitori mostrati per task: - + (readonly) (di sola lettura) - + Saving the map failed: Couldn't rename map to %1 Salvataggio della mappa non riuscito: Impossibile rinominare la mappa in %1 - Export in last used format (%1) to: %2 status tip - Esporta nell'ultimo formato usato (%1) in %2 + Esporta nell'ultimo formato usato (%1) in %2 - + Firefox Bookmarks Segnalibri di Firefox - + &Open... File menu &Apri... - + Open Recent File menu Apri Recente - + &Save... File menu &Salva... - + Save &As... File menu Salva &Con nome... @@ -2243,13 +2370,13 @@ Impossibile rinominare la mappa in %1 Importa - + Export File menu Esporta - + Image%1 File export menu Immagine%1 @@ -2267,61 +2394,63 @@ Impossibile rinominare la mappa in %1 SVG%1 - Repeat last export (%1) - Ripete l'ultima esportazione (%1) + Ripete l'ultima esportazione (%1) - + &Close Map File menu C&hiudi Mappa - + E&xit File menu &Esci - + + &Undo Edit menu &Cancella - + &Redo Edit menu &Rifai - + + &Copy Edit menu &Copia - + + Cu&t Edit menu &Taglia - + + &Paste Edit menu &Incolla - - + Delete Selection Edit menu Cancella la Selezione - + Add branch as child Edit menu Aggiungi ramo come figlio @@ -2333,87 +2462,84 @@ Impossibile rinominare la mappa in %1 Aggiungi ramo (inserisci) + - Add branch above Edit menu Aggiungi ramo sopra - - + + Add branch below Edit menu Aggiungi ramo sotto - + Scroll branch Edit menu Nascondi/Mostra ramificazione - - + + Find... Edit menu Trova... - + Open URL Edit menu Apri URL - + Main window Shortcut scope Finestra principale - Main window Shortcut group - Finestra principale + Finestra principale - Map Editors Shortcut group - Editor di mappa + Editor di mappa - + Text Editors Shortcut group Editor di testo - + Script output window Finestra di output dello script - &Map Menu for file actions - &Mappa + &Mappa - + &Restore last session Edit menu &Ripristina ultima sessione - + Import Dir... Import Filters Importa Dir... - + Webpage (HTML)... File export menu Pagina web (HTML)... @@ -2448,37 +2574,36 @@ Impossibile rinominare la mappa in %1 CSV... - Open URL in new tab Edit menu - Apri l'URL in una nuova scheda + Apri l'URL in una nuova scheda - + Open all URLs in subtree Edit menu Apri tutte le URL in un Sottoramo - + Edit URL... Edit menu Modifica URL... - + Use heading for URL Edit menu Usa titoli per gli URL - + Open linked map Edit menu Apri una mappa linkata - + Open all vym links in subtree Edit menu Apri tutti i link vym in un Sottoramo @@ -2490,109 +2615,109 @@ Impossibile rinominare la mappa in %1 Edita un link vym... - + Delete vym link Edit menu Cancella link vym - + Hide in exports Edit menu Nascondi nell'esportazione - + Add map (insert) Edit menu Aggiungi mappa (inserisci) - + Add map (replace) Edit menu Aggiungi mappa (rimpiazza) - + Save selection Edit menu Salva selezione - + F&ormat Format menu F&ormato - + Pic&k color Edit menu P&rendi colore - + Color &branch Edit menu Colore &del ramo - + Color sub&tree Edit menu Colore del so&ttoalbero - + Hide link if object is not selected Branch attribute Nascondi link se gli oggetti non sono selezionati - + &Use color of heading for link Branch attribute &Usa colore dei titoli per i collegamenti - + reset Zoom View action reset Zoom - + Zoom in View action Zoom dentro - + Firefox Bookmarks Import filters Segnalibri di Firefox - + Remove only branch and keep its children Edit menu Rimuove solamente i rami e mantiene i figli - + Zoom out View action Zoom fuori - + Use modifier to draw xLinks Mode modifier Usa i modifier per disegnare XLink - + Set application to open pdf files Settings action Scegli il programma per aprire i file pdf @@ -2610,13 +2735,12 @@ Impossibile rinominare la mappa in %1 Seleziona il ramo dopo averlo aggiunto - Select existing heading Settings action - Seleziona il titolo esistente + Seleziona il titolo esistente - + Exclusive flags Settings action Flag esclusivi @@ -2628,7 +2752,7 @@ Impossibile rinominare la mappa in %1 Usa i flag nascosti - + &Help Help menubar entry &Aiuto @@ -2652,31 +2776,31 @@ Impossibile rinominare la mappa in %1 Riguardo le QT - + Remove Context menu name Rimuovi - + Edit XLink Context menu name Edita il XLink - + Follow XLink Context menu name Segui XLink - + Save image Context action Salva immagine - + &New map File menu &Nuova Mappa @@ -2688,31 +2812,30 @@ Impossibile rinominare la mappa in %1 &Copia in nuova mappa - + Add mapcenter Canvas context menu Aggiungi centromappa - + Sort children Edit menu Ordina i figli - + Edit local URL... Edit menu Modifica URL locale... - Property window Dialog to edit properties of selection - Finestra di proprieta + Finestra di proprieta - + Linkstyle Curve Stile collegamenti Curvo @@ -2722,23 +2845,21 @@ Impossibile rinominare la mappa in %1 Collegamento Curva Spessa - + Set &Selection Color Specifica Colore della &Selezione - Set &Background image - Specifica &Immagine di sfondo + Specifica &Immagine di sfondo - History Window View action - Finestra cronologia + Finestra cronologia - + Antialiasing View action Antialiasing @@ -2750,99 +2871,371 @@ Impossibile rinominare la mappa in %1 Appiana trasformazioni di pixmap - + Next Map View action Mappa Successiva - + Previous Map View action Mappa Precedente - + Next slide View action Diapositiva successiva - - Previous slide - View action - Diapositiva precedente + + &Map + Map menu + &Mappa - - - - - - - - - Note - SystemFlag - Note + + Toggle window + Toggle visibility of editor windows overview in view menu + - - Link to another vym map - SystemFlag - Collega ad un'altra mappa vym + + Focus window + Toggle visibility of editor windows overview in view menu + - - subtree is scrolled - SystemFlag - sottoalbero è espanso + + File actions + MainWindow shortcut groups + - - subtree is temporary scrolled - SystemFlag - sottoalbero è temporaneamente espanso + + &Clear + Clear recent files menu + - - Hide object in exported maps - SystemFlag - Nascondi oggetto nelle mappe esportate + + Exports + MainWindow shortcut groups + Esporta - - I just love... - Standardflag - Lo amo... + + Repeat last export + - - Set path for new maps - Settings action - Imposta percorso per le nuove mappe + + Map properties + - - Set path for macros - Settings action - Specifica percorso per le macro + + Exit + MainWindow shortcut groups + - - Set number of undo levels - Settings action - Seleziona numero di annullamenti + + Miscellaneous + MainWindow shortcut groups + - - Autosave - Settings action - Salvataggio automatico + + Undo/Redo + MainWindow shortcut groups + - - Autosave time + + Repeat last action + Edit menu + + + + + Add + MainWindow shortcut groups + Aggiungi + + + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + Connetti + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + vymkinks - collegare mappe + + + + Tasks + Shortcuts for tasks in MainWindow + + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + Viste + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + Finestra per la storia + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Previous slide + View action + Diapositiva precedente + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + + Load user flag + + + + + + + + + + + + Note + SystemFlag + Note + + + + Jira + SystemFlag + + + + + Link to another vym map + SystemFlag + Collega ad un'altra mappa vym + + + + subtree is scrolled + SystemFlag + sottoalbero è espanso + + + + subtree is temporary scrolled + SystemFlag + sottoalbero è temporaneamente espanso + + + + Hide object in exported maps + SystemFlag + Nascondi oggetto nelle mappe esportate + + + + I just love... + Standardflag + Lo amo... + + + + Set path for new maps + Settings action + Imposta percorso per le nuove mappe + + + + Set path for macros + Settings action + Specifica percorso per le macro + + + + Set number of undo levels + Settings action + Seleziona numero di annullamenti + + + + Autosave + Settings action + Salvataggio automatico + + + + Autosave time Settings action Tempo di salvataggio automatico @@ -2853,7 +3246,13 @@ Impossibile rinominare la mappa in %1 Scrivi file di backup al salvataggio - + + Logfile settings + Settings action + + + + Animation Settings action Animazione @@ -2870,36 +3269,46 @@ Impossibile rinominare la mappa in %1 Test - + Open VYM example maps Help action Apri mappe VYM di esempio - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Geometria + + + References (URLs, vymLinks, ...) Context menu name Riferimenti (URL, vymLinks, ...) - Follow XLink Context menu - Segui XLink + Segui XLink - + Loading: %1 Progress dialog while loading maps Caricante %1 - Export as CSV - Esporta come CSV + Esporta come CSV - + %1 items on map Info about map @@ -2907,7 +3316,7 @@ Impossibile rinominare la mappa in %1 - + Number of undo/redo levels: Numero di annullamenti/rifacimenti: @@ -2927,20 +3336,20 @@ Impossibile rinominare la mappa in %1 Informazione - + History for %1 Window Caption Storia per %1 - + Couldn't find the documentation %1 in: %2 Non è possibile trovare la documentazione %1 in: %2 - + Load vym example map Carica la mappa vym di esempio @@ -2948,43 +3357,57 @@ Impossibile rinominare la mappa in %1 MapEditor - + Map Editor Shortcut scope Editor di mappa - + + Map Editors + Shortcut group + Editor di mappa + + + Edit heading MapEditor Edita Titolo - + Print vym map MapEditor Stampa Mappa di vym - + + Warning + Attenzione + + %1 items selected - %1 elementi selezionati + %1 elementi selezionati NoteEditor - Note Editor Name of editor shown as window title - Editor di Note + Editor di Note QObject - + + Images + Immagini + + + Overwrite Sovrascrivi @@ -2994,39 +3417,40 @@ Impossibile rinominare la mappa in %1 Cancella - + Export as AO report Esporta come rapporto AO - - - + + + - - + + - + + - - - + + + Critical Export Error Errore critico nell'esportazione - + Could not write %1 Non è possibile scrivere %1 - + Exporting to %1 will overwrite the existing file: %2 L'esportazione di %1 sovrascriverà il file esistente @@ -3070,7 +3494,7 @@ Impossibile rinominare la mappa in %1 Esportazione abortita. - + Trying to create directory for flags: Si cerca di creare una cartella per i flags: @@ -3080,32 +3504,31 @@ Impossibile rinominare la mappa in %1 Non è possibile creare %1 - - + Flag: %1 Alt tag in HTML export Flag: %1 - + Flag: url Alt tag in HTML export Flag: url - + Image: %1 Alt tag in HTML export >Immagine: %1 - + Critical Critico - + Could not find stylesheet %1 Non si trova il foglio di stile %1 @@ -3155,17 +3578,22 @@ Impossibile rinominare la mappa in %1 Non si può esportare come LaTeX in %1 - + Export as LibreOffice Impress presentation Espporta come presentazione di Impress di LibreOffice - + No objects in map! Nessun oggetto nella mappa! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" Non possono essere lette le preferenze da "%1" @@ -3184,104 +3612,134 @@ Impossibile rinominare la mappa in %1 Non è possibile leggere %1 - - - - - - - - + + Note Editor + Name of editor shown as window title + Editor di Note + + + + Heading Editor + Name of editor shown as window title + Editor intestazione + + + + + + + + - - - - - - - + + + + + + Critical Error Errore Critico - + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + + + + + Couldn't find tar tool to zip data. + + + + + Couldn't find tar tool to unzip data. + + + Couldn't move existing file out of the way before saving. - Non si può spostare togliere di mezzo il file esistente prima di salvare. + Non si può spostare togliere di mezzo il file esistente prima di salvare. - - Couldn't start %1 tool to compress data! The map could not be saved, please check if backup file is available or export as XML file! - Impossibile avviare lo strumento %1 per comprimere i dati! + Impossibile avviare lo strumento %1 per comprimere i dati! Impossibile salvare la mappa, controlla se il file di backup è disponibile o esporta come file XML! - - + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + + + + + + + + zip didn't exit normally lo zip non è terminato normalmente - + + Couldn't start tool to decompress data! + + + + + Couldn't rename %1 back to %2 - Non si può rinominere %1 di nuovo in %2 + Non si può rinominere %1 di nuovo in %2 - Couldn't remove target of old symbolic link %1 - Non si può rimuovere l'obiettivo del vecchio link simbolico %1 + Non si può rimuovere l'obiettivo del vecchio link simbolico %1 - Couldn't rename output to target of old symbolic link %1 - Nonn si può rinominare l'esito qll'oobiettivo del vechio legame simbolico %1 + Nonn si può rinominare l'esito qll'oobiettivo del vechio legame simbolico %1 - Couldn't link from %1 to target of old symbolic link %2 - Non si può eseguire il link da %1 all'ogetto del vecchio link %2 + Non si può eseguire il link da %1 all'ogetto del vecchio link %2 - Saved %1, but couldn't remove %2 - Salvato %1, ma non può essere rimosso %2 + Salvato %1, ma non può essere rimosso %2 - Couldn't start %1 tool to decompress data! - Impossibile avviare lo strumento %1 per decomprimere i dati! + Impossibile avviare lo strumento %1 per decomprimere i dati! - + Could not start %1 Non è possibile iniziare %1 - - + %1 didn't exit normally %1 non è terminato normalmente - + Warning Attenzione - - - - - - - + + + + + + Error Errore @@ -3304,7 +3762,7 @@ Impossibile salvare la mappa, controlla se il file di backup è disponibile o es (in sperimentazione) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3312,7 +3770,7 @@ Do you risk to overwrite its contents? Vuoi rischiare di sovvrascrivere i contenuti? - + Warning: Version Problem Attenzione: Problema di versione @@ -3322,9 +3780,8 @@ Vuoi rischiare di sovvrascrivere i contenuti? <h3>La mappa è più nuova di VYM</h3><p>La mappa che voi state proprio per caricare è stata salvat con vym%1. La versione di questo vym è %2. Se incontrte problemi dopo la pressione del pulsante in basso, potrebbe essere di aiuto aggiornare vym.</p> - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - <p>La mappa verrà aperta in sola lettura, perché non tutte le informazioni delle nuove mappe possono essere salvate con questa versione di vym. Fate attenzione! + <p>La mappa verrà aperta in sola lettura, perché non tutte le informazioni delle nuove mappe possono essere salvate con questa versione di vym. Fate attenzione! @@ -3354,27 +3811,25 @@ Vuoi rischiare di sovvrascrivere i contenuti? Impossibile esportare come Markdown su %1 - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - Impossibile trovare lo strumento per decomprimere i dati oppure la versione di Windows è precedente a Windows 10. + Impossibile trovare lo strumento per decomprimere i dati oppure la versione di Windows è precedente a Windows 10. - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: zip tool missing on Linux/Mac platform - Impossibile trovare lo strumento per comprimere/decomprimere i dati. Installalo sulla tua piattaforma e imposta il percorso nel menu Impostazioni: + Impossibile trovare lo strumento per comprimere/decomprimere i dati. Installalo sulla tua piattaforma e imposta il percorso nel menu Impostazioni: - - + + Couldn't open "%1" . Impossibile aprire "%1" . - + Couldn't write macros to "%1" . Impossibile scrivere le macro su "%1" @@ -3382,6 +3837,7 @@ Vuoi rischiare di sovvrascrivere i contenuti? + Couldn't read script from "%1" . Impossibile leggere lo script da "%1" @@ -3395,12 +3851,12 @@ Vuoi rischiare di sovvrascrivere i contenuti? . - + Export as Firefox bookmarks Esporta come segnalibri di Firefox - + Could not export as Firefox bookmarks to %1 Impossibile esportare come segnalibri di Firefox in %1 @@ -3423,17 +3879,24 @@ Vuoi rischiare di sovvrascrivere i contenuti? Importati %1 segnalibri - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: I file di blocco esistenti sono stati ignorati per le mappe elencate di seguito. Controlla se le mappe potrebbero essere aperte in un'altra istanza di vym: - + JIRA agent not setup. Agente JIRA non configurato. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3466,13 +3929,13 @@ Vuoi rischiare di sovvrascrivere i contenuti? Salva - + Warning Attenzione - + Slide Mode in scriptEditor Diapositiva @@ -3496,7 +3959,13 @@ Vuoi rischiare di sovvrascrivere i contenuti? Nessuno script selezionato - + + Script Editor + Shortcut scope + Editor di Script + + + Couldn't get model to save script into slide! Non si può ottenere il modello per salvare lo script nella diapositiva! @@ -3506,12 +3975,12 @@ Vuoi rischiare di sovvrascrivere i contenuti? Non si può trovare la diapositiva per salvare lo script nella diapositiva! - + Macros saved to %1 Macro salvate in %1 - + Script saved to %1 Script salvato in %1 @@ -3521,27 +3990,24 @@ Vuoi rischiare di sovvrascrivere i contenuti? Salva script - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Il file %1 + Il file %1 esiste già. Vuoi sovrascriverlo? - Overwrite - Sovrascrivi + Sovrascrivi - Cancel - Cancella + Cancella - + Load script Carica script @@ -3560,7 +4026,7 @@ Vuoi sovrascriverlo? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3596,11 +4062,17 @@ Vuoi sovrascriverlo? Filters in task Editor Mostra solo task contrassegnate senza alcun contrassegno freccia su + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor Prio @@ -3659,32 +4131,31 @@ Vuoi sovrascriverlo? TextEditor - + &Import... &Importa... - + &Export... &Esporta... - Export &As... (HTML) - Es&porta Come... (HTML) + Es&porta Come... (HTML) - + Export &As...(ASCII) Es&porta Come... (ASCII) - + &Print... &Stampa... - + &Undo &Annulla @@ -3699,49 +4170,45 @@ Vuoi sovrascriverlo? Seleziona e copia t&utto - &Copy - &Copia + &Copia - Cu&t - &Taglia + &Taglia - &Paste - I&ncolla + I&ncolla - + &Delete All Cance&lla tutto - + &Font hint &Suggerimento Caratteri - + Fonts toolbar in texteditor Font - + Format toolbar in texteditor Formato - &Color... - &Colore... + &Colore... - + &Bold &Grassetto @@ -3756,44 +4223,42 @@ Vuoi sovrascriverlo? So&ttolinea - + &Left &Sinistra - + C&enter C&entro - + &Right &Destra - + &Justify &Giustificato - + &Settings &Preferenze - Set RichText default background color TextEditor - Imposta il colore di sfondo predefinito del RichText + Imposta il colore di sfondo predefinito del RichText - Set RichText default font color TextEditor - Imposta il colore predefinito del carattere RichText + Imposta il colore predefinito del carattere RichText - + Set &fixed font Scegli Caratteri &Fissi @@ -3808,102 +4273,167 @@ Vuoi sovrascriverlo? carattere &fisso predefinito - + Export Note to single file Esporta nota in un file singolo - - + + Overwrite Sovvrascrivi - - + + Cancel Cancella - + Export Note to single file (ASCII) Esporta nota in un file singolo (ASCII) - + Note Editor Editor di Note - - - Texteditor Shortcuts - Editor di testo + Editor di testo - + Edi&t Edi&t_ - + Font hints toolbar in texteditor Suggerimenti per i font - + Subs&cript Pedi&ce - + Su&perscript A&pice - + F&ormat F&ormattazione - + Edit Actions Edita Azioni - + Note Actions Note Azioni - Ready Statusbar message - Pronto + Pronto - + No filename available for this note. Statusbar message Nessun nome di file disponibile per questa nota. - + &Note Menubar &Nota - + + File actions + TextEditor shortcut groups + + + + + Edit actions + TextEditor shortcut groups + + + + + &Copy + Edit menu + &Copia + + + + Cu&t + Edit menu + &Taglia + + + + &Paste + Edit menu + + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + &Richtext &Richtext - - + + &Text Color... + + + + + &Text background color... + + + + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + The file %1 exists already. Do you want to overwrite it? @@ -3913,22 +4443,58 @@ esiste già. Vuoi sovvrascriverlo? - + Couldn't export note dialog 'save note as' Non è possibile esportare la nota - + Print TextEditor Stampa + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + + + + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Carica immagine + TreeEditor - + Select upper object Tree Editor Seleziona l'oggetto superiore @@ -3943,46 +4509,64 @@ Vuoi sovvrascriverlo? VymModel - + unknown user default name for map author in settings utente sconosciuto - + unnamed senza nome - - - - + + + Critical Parse Error Errore Critico di Interpretazione - - + + + + + Critical Load Error Errore Critico di Caricamento - + Couldn't create temporary directory before load Non si può creare unaa cartella temporanea prima di caricare - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. Non è possibile trovare una mappa (*.xml) nell'archivio .vym. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3997,35 +4581,75 @@ e flag e quindi potrebbero sovrascrivere i file nella directory specificata Vuoi scrivere la mappa? - + uncompressed, potentially overwrite existing data non compresso, sovrascrive potenzialmente i dati esistenti - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Non si può salvare + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps utente sconosciuto - + Warning: Map already opended VymModel Attenzione: La mappa è già aperta - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + %1 elementi selezionati + + + compressed (vym default) compressi (predefiniti di vym) - - + + Cancel Cancella - + Save Error Errore di Salvataggio @@ -4045,66 +4669,61 @@ could not be renamed before saving non puo' essere rinominato prima del salvataggio - + Critical Save Error Errore Critico di Salvataggio - Couldn't create temporary directory before save - Non è possibile creare una cartella temporanea prima di salvare + Non è possibile creare una cartella temporanea prima di salvare - - - + Images Immagini - - + All Filedialog Tutto - Load image - Carica immagine + Carica immagine - + Save image Salva immagine - + The file %1 exists already. Do you want to overwrite it? Il file %1 esiste già. Vuoi sovrascriverlo? - + Overwrite Sovrascrivi - - + + Critical Error Errore Critico - + Couldn't save %1 Non è possibile salvare %1 - + Critical Import Error Errore critico nell'importazione @@ -4114,13 +4733,13 @@ Vuoi sovrascriverlo? Non è possibile trovare la cartella %1 - + Choose directory structure to import Scegliere la struttura delle cartelle da importare - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -4133,24 +4752,23 @@ Please only delete the lockfile, if you are sure nobody else is currently workin Elimina il file di blocco solo se sei sicuro che nessun altro stia attualmente lavorando su questa mappa. - Could not find Jira ticket pattern in %1 VymModel - Impossibile trovare il modello del ticket Jira in %1 + Impossibile trovare il modello del ticket Jira in %1 - + Contacting Jira... VymModel Sto contattando Jira... - + Removed lockfile for %1 File di blocco rimosso per %1 - + Couldn't remove lockfile for %1 Impossibile rimuovere il file di blocco per %1 @@ -4170,7 +4788,7 @@ Elimina il file di blocco solo se sei sicuro che nessun altro stia attualmente l Attenzione - + The file of the map on disk has changed: %1 @@ -4183,60 +4801,66 @@ Do you want to reload that map with the new file? Vuoi ricaricare la mappa in un nuovo file? - + Reload Ricarica - + Ignore Ignora - - + + + Warning Attenzione - + Autosave disabled during undo. Salvataggio automatico disabilitato durante il cancella. - + Note FindAll in VymModel Note - New map New map - Nuova Mappa + Nuova Mappa - + Export map as image Esporta mappa come immagine - + Couldn't save QImage %1 in format %2 Non è possibile salvare QImage %1 nel formato %2 - + Export map as PDF Esporta mappa come PDF - + Export map as SVG Esporta mappa come SVG - + + + Export to + Esporta in + + + Export map as XML Esporta mappa come XML @@ -4246,32 +4870,54 @@ Vuoi ricaricare la mappa in un nuovo file? Esporta XML in una cartella - + Critical Export Error Errore critico nell'esportazione - + + (still experimental) (ancora sperimentale) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv Esporta come csv - + + Received Jira data. VymModel Dati Jira ricevuti. - Load background image - Carica immagine di sfondo + Carica immagine di sfondo + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + Errore Critico @@ -4296,13 +4942,13 @@ Vuoi ricaricare la mappa in un nuovo file? VymView - + Tree Editor Title of dockable editor widget Editor di albero - + Slide Editor Title of dockable editor widget Editor di diapositiva @@ -4355,39 +5001,30 @@ Vuoi ricaricare la mappa in un nuovo file? Chiudi - zip settings dialog window title - impostazioni zip + impostazioni zip - Path to 7z.exe zip tool settings dialog - Percorso di 7z.exe + Percorso di 7z.exe - Set path to 7z to zip/unzip files - Imposta il percorso su 7z per comprimere/decomprimere i file + Imposta il percorso su 7z per comprimere/decomprimere i file - Set path to zip files - Imposta il percorso dei file zip + Imposta il percorso dei file zip - Set path to unzip files - Imposta il percorso per decomprimere i file + Imposta il percorso per decomprimere i file - - - - Status: %1 - Stato: %1 + Stato: %1 diff --git a/lang/vym.ja.ts b/lang/vym_ja.ts similarity index 80% rename from lang/vym.ja.ts rename to lang/vym_ja.ts index aebbbf4..006fa65 100644 --- a/lang/vym.ja.ts +++ b/lang/vym_ja.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog @@ -48,6 +48,25 @@ URLを開けるようにアプリを設定する... + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -59,6 +78,26 @@ 閉じる + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + 背景画像をロード + + BranchPropertyEditor @@ -154,13 +193,13 @@ - - + Property Editor Window caption プロパティ·エディタ - + Name Branchprop window: Attribute name @@ -178,7 +217,7 @@ - + %1 days ago task related times @@ -196,11 +235,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -525,22 +582,29 @@ want to allow this in your system! 閉じる + + FindControlsWidget + + + Find: + FindControlsWidget + 検索: + + FindWidget - Find: FindWidget - 検索: + 検索: HeadingEditor - Heading Editor Name of editor shown as window title - ヘッダー·エディタ + ヘッダー·エディタ @@ -566,25 +630,25 @@ want to allow this in your system! 元に戻す - + Action Table with actions アクション - + Comment Table with actions コメント - + Undo action Table with actions アクションを元に戻す - + Current state Current bar in history hwindow 現状態 @@ -593,12 +657,14 @@ want to allow this in your system! JiraAgent - + + Warning 警告 - + + Authentication problem when contacting JIRA @@ -618,11 +684,21 @@ want to allow this in your system! 除去する - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -665,7 +741,7 @@ want to allow this in your system! Main - + Linkstyle Line リンクスタイル:ライン @@ -675,40 +751,38 @@ want to allow this in your system! リンクスタイル:太ライン - Set &Background Color - バックグラウンドの色設定(&B) + バックグラウンドの色設定(&B) - + &View 表示(&V) - + Overwrite 上書きする - - - - + + + Cancel キャンセル - + Open anyway とにかく開いてみる - + Create 新規作成 - + Load vym map VYMマップを開く @@ -723,67 +797,64 @@ want to allow this in your system! インポート:選択をVYMマップに置き換え - Save modified map before closing it - 閉じる前に変更されたマップを保存 + 閉じる前に変更されたマップを保存 - Discard changes - 変更破棄 + 変更破棄 - + Couldn't set sleep time to %1. スリープタイムを%1に設定できませんでした。 - + VYM -Information: VYM - 詳細: - - - - - + + + - + + + Critical Error 重大なエラー - Export in last used format (%1) to: %2 status tip - 最後に使用され形式(%1)でエクスポート:%2 + 最後に使用され形式(%1)でエクスポート:%2 - + Critcal error 重大なエラー - + Add 追加 - + Search results list FindResultWidget 検索結果 - + File actions toolbar Toolbar for file actions ファイル·アクション·ツールバー - + PDF%1 File export menu PDF%1 @@ -795,23 +866,21 @@ want to allow this in your system! SVG%1 - Repeat last export (%1) - 最後に使ったエクスポートを再度使用(%1) + 最後に使ったエクスポートを再度使用(%1) - + Edit actions toolbar Toolbar name 編集アクションツールバー - Add attribute - アトリビュートを追加します + アトリビュートを追加します - + &Detach Context menu 切り離す(&D) @@ -823,13 +892,13 @@ want to allow this in your system! ブランチを切り離し、マップの中心として使用 - + Sort children backwards Edit menu 反対にチャイルドブランチを並び替える - + Expand all branches Edit menu すべてのブランチを展開 @@ -841,49 +910,48 @@ want to allow this in your system! ブランチレベルを一つ展開 - + Collapse one level Edit menu ブランチレベルを一つ折りたたむ - + Collapse unselected levels Edit menu 選択外のレベルを折りたたむ - Unscroll children Edit menu - チャイルドブランチのスクロールを固定 + チャイルドブランチのスクロールを固定 - + Grow selection Edit menu 選択範囲を拡大 - + Shrink selection Edit menu 選択範囲を縮小 - + Reset selection size Edit menu 選択範囲をリセット - + Toggle target... Edit menu ターゲットを切り替える... - + Goto target... Edit menu ターゲットに移動... @@ -895,67 +963,66 @@ want to allow this in your system! ブランチをターゲットに移す... - + Find duplicate URLs Edit menu 重複するURLを探す - Open all URLs in subtree (including scrolled branches) Edit menu - スクロールされたブランチを含みサブツリー内のすべてのURLを開く + スクロールされたブランチを含みサブツリー内のすべてのURLを開く - + Extract URLs from note Edit menu ノートからURLを抽出 - + Add timestamp Edit menu タイムスタンプを追加 - + Remove children Edit menu チャイルドブランチを削除 - + Center on selection View action 選択を中心にする - + Editors toolbar Editor Toolbar name エディタ用ツールバー - + Modifier modes toolbar Modifier Toolbar name 編集モード用ツールバー - + Map target SystemFlag マップ·ターゲット - + Standard Flags toolbar Standard Flag Toolbar 標準フラグツールバー - + Status - ok,done Standardflag ステータス - OK、終了 @@ -973,7 +1040,7 @@ want to allow this in your system! ステータス - 不足、未開始 - + Automatic layout Settings action 自動レイアウト @@ -984,19 +1051,18 @@ want to allow this in your system! テスト - Follow XLink Context menu - XLinkに従う + XLinkに従う - + Follow XLink Context menu name XLinkに従う - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -1005,7 +1071,7 @@ to confusion when finishing working with vym.Do you want to すると仕上げの段階で混乱するかもしれません - + This map does not exist: %1 Do you want to create a new one? @@ -1014,41 +1080,39 @@ Do you want to create a new one? 新しいものを作成しますか? - + Loading: %1 Progress dialog while loading maps ロード中: %1 - Saved %1 - %1を保存しました + %1を保存しました - Couldn't save - 保存できませんでした + 保存できませんでした - - + + The file %1 exists already. Do you want to %1は、既に 存在します、どうします - + The map %1 has been modified but not saved yet. Do you want to マップ%1は変更されましたが保存されていません。保存しますか - + Couldn't open map %1 マップ%1を開くことができませんでした - + Take care! Standardflag 注意してください! @@ -1078,13 +1142,13 @@ exists already. Do you want to 駄目 - + Time critical Standardflag 重要時 - + Idea! Standardflag アイデア! @@ -1126,15 +1190,19 @@ exists already. Do you want to これが役立ちます - - + + Import 重要 - - + + + + + + @@ -1142,75 +1210,73 @@ exists already. Do you want to - - - + (still experimental) (実験中) - + &Print 印刷(&P) - - Export to - エクスポート + エクスポート - - - - - + + + + + - - - + + + Warning 警告 - - + + + Couldn't find a viewer to open %1. %1を開くためのビューワー·ソフトが見つかりませんでした。 - - + + + Please use Settings-> 設定を利用してください-> - - + + Set application to open an URL URLを開けるアプリを設定する - - + + Set application to open PDF files PDFを開けるアプリを設定する - + Oh no! Standardflag オゥ、ノーッ! - + Call... Standardflag 電話… - + Very important! Standardflag 大変重要! @@ -1222,7 +1288,7 @@ exists already. Do you want to 本当にどうでもいい! - + Rose Standardflag 薔薇 @@ -1234,55 +1300,42 @@ exists already. Do you want to サプライズ! - + Info Standardflag 詳細 - + Task list TaskEditor タスク·リスト - + Script Editor ScriptEditor スクリプトエディタ - + Main window Shortcut scope - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - &Map Menu for file actions - マップ(&M) + マップ(&M) - + &Open... File menu 開く(&O)… @@ -1294,19 +1347,19 @@ exists already. Do you want to 前セッションを復元する(&R) - + Open Recent File menu 最近のファイルをオープン - + &Save... File menu 保存(&S)… - + Save &As... File menu 新しい名前をつけて保存(&As)... @@ -1318,73 +1371,71 @@ exists already. Do you want to インポート - + Export File menu エクスポート - + Image%1 File export menu 画像%1 - - Properties - - - - + &Close Map File menu マップを閉じる(&C) - + E&xit File menu 終了(&x) - + + &Undo Edit menu 元に戻す(&U) - + &Redo Edit menu やり直し(&R) - + + &Copy Edit menu コピー(&C) - + + Cu&t Edit menu 切り取り(&t) - + + &Paste Edit menu 貼り付け(&P) - - + Delete Selection Edit menu 選択範囲を除去 - + Add branch as child Edit menu ブランチをチャイルドブランチとして追加 @@ -1396,118 +1447,117 @@ exists already. Do you want to ブランチを追加(挿入) + - Add branch above Edit menu ブランチを上位に追加 - - + + Add branch below Edit menu ブランチを下位に追加 - + Scroll branch Edit menu ブランチをスクロール - + Toggle task Edit menu タスクを切り替える - + Cycle task status Edit menu タスクのステータスを循環する - + Reset sleep Task sleep スリープをリセット - - - - - + + + + + Sleep %1 days Task sleep スリープ%1日間 - + Sleep %1 day Task sleep スリープ%1日間 - - + + Sleep %1 weeks Task sleep スリープ%1週間 - + Select Select menu 選択 - - + + Find... Edit menu 検索… - + Open URL Edit menu URLを開く - Open URL in new tab Edit menu - 新しいタブでURLを開く + 新しいタブでURLを開く - + Open all URLs in subtree Edit menu サブツリー内のすべてのURLを開く - + Edit URL... Edit menu URLを編集… - + Use heading for URL Edit menu URLの見出しを使用 - + Open linked map Edit menu リンクされたマップを開く - + Open all vym links in subtree Edit menu サブツリー内のすべてのVYMリンクを開く @@ -1519,91 +1569,91 @@ exists already. Do you want to VYMリンクを編集... - + Delete vym link Edit menu VYMリンクを除去 - + Hide in exports Edit menu エクスポート用には非表示 - + Add map (insert) Edit menu マップを追加(挿入) - + Add map (replace) Edit menu マップを追加(交換) - + Save selection Edit menu 選択範囲を保存 - + F&ormat Format menu フォーマット(&o) - + Pic&k color Edit menu 色を選択(&k) - + Color &branch Edit menu ブランチに着色(&b) - + Color sub&tree Edit menu スブツリーに着色(&t) - + Hide link if object is not selected Branch attribute オブジェクトが選択されていない場合は、リンクを非表示 - + &Use color of heading for link Branch attribute 見出しの色をリンクに使用(&U) - + reset Zoom View action ズームをリセット - + Zoom in View action ズームイン - + Firefox Bookmarks Import filters Firefoxブックマーク - + Webpage (HTML)... File export menu @@ -1644,139 +1694,108 @@ exists already. Do you want to - + Move branch up Edit menu - + Move branch down Edit menu - - References Context menu + Tasks Shortcuts - + タスク - - vymlinks - linking maps + + Removing parts of a map Shortcuts - - Exports - Shortcuts - + + Remove only branch and keep its children + Edit menu + ブランチのみを削除し、チャイルドブランチを残す - - Tasks - Shortcuts - タスク - - - - Removing parts of a map - Shortcuts - - - - - Remove only branch and keep its children - Edit menu - ブランチのみを削除し、チャイルドブランチを残す - - - + Various Shortcuts - + Map properties... Edit menu - + Selections Shortcuts - + Goto linked map... Edit menu - + Search functions Shortcuts - + Formatting Shortcuts - - Views - Shortcuts - - - - + Toggle Presentation mode View action - + Zoom out View action ズームアウト - + Note editor View action - + Heading editor View action - - Script output window - View action - - - - + Modifier modes Shortcuts - + Use modifier to draw xLinks Mode modifier XLinkを描くため修飾子を使用 - + Check for release notes and updates Settings action @@ -1800,25 +1819,18 @@ exists already. Do you want to 外部リンクを開くためのアプリを設定する - - Set application to zip/unzip files - Settings action - - - - + Select branch after adding it Settings action 追加した後のブランチを選択 - Select existing heading Settings action - 既存の見出しを選択 + 既存の見出しを選択 - + Exclusive flags Settings action 独占フラグ @@ -1842,7 +1854,7 @@ exists already. Do you want to - + &Help Help menubar entry ヘルプ(&H) @@ -1890,105 +1902,80 @@ exists already. Do you want to QTについて - + Script output window - + Save as default map File menu - + Import Dir... Import Filters - - Get data from JIRA for subtree - Edit menu - - - - - Get page name from Confluence - Edit menu - - - - - Add image... - Edit menu - - - - Images - 画像 + 画像 - All Filedialog - 全て + 全て - + URL SystemFlag - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - (experimental) - - - - + Firefox Bookmarks File export menu Firefoxブックマーク - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + Reset delta priority for visible tasks Reset delta - + &Connect - + Connect Shortcuts @@ -2000,31 +1987,25 @@ exists already. Do you want to - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply - Mode modifier - - - - + Use modifier to move branches without linking Mode modifier - + Use modifier to move view without selecting Mode modifier - + Important Freemind flag @@ -2152,7 +2133,7 @@ exists already. Do you want to スウィート - + Confluence Credentials Settings action @@ -2164,25 +2145,25 @@ exists already. Do you want to - + Dark theme Settings action - + Show scripting commands Help action - + Remove Context menu name 除去する - + XLinks Menu for file actions @@ -2194,18 +2175,96 @@ exists already. Do you want to XLINKを編集 - + Save image Context action 画像を保存 - + + Untitled + Default name in FileSaveAs dialog + + + + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + + Load images + + + + + Set application to open external links + 外部リンクを開くためのアプリを設定する + + + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + マップ + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + Couldn't load default map: %1 @@ -2215,14 +2274,14 @@ vym will create an empty map now. - + Couldn't save %1, because file exists and cannot be changed. - - + + Couldn't save %1, because of existing lockfile: @@ -2230,33 +2289,23 @@ because of existing lockfile: - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - - Open Freemind map - - - - + Link to another vym map 別のVYMマップへリンクっする @@ -2266,12 +2315,12 @@ because of existing lockfile: - + Load vym script - + Information @@ -2287,12 +2336,12 @@ because of existing lockfile: - + Please allow vym to download release notes! - + Allow @@ -2302,17 +2351,17 @@ because of existing lockfile: - + Thank you for enabling downloads! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -2334,85 +2383,84 @@ because of existing lockfile: - + &New map File menu 新しいマップを作成(&N) - + Property Editor PropertyEditor プロパティ·エディタ - + History window HistoryWidget 履歴ウィンドウ - + &Copy to new map File menu 新しいマップにコピーする(&C) - + E&dit Edit menu 編集(&E) - + Add mapcenter Canvas context menu 新しいマップの中心を追加 - + Sort children Edit menu チャイルドブランチを並び替える - + Edit local URL... Edit menu ローカルURLを編集… - + Open linked map in background tab Edit menu リンクマップのタブをバックグラウンドで開く - Property window Dialog to edit properties of selection - プロパティ·ウィンドウ + プロパティ·ウィンドウ - + Select previous Edit menu 前の選択 - + Select next Edit menu 次の選択 - + Unselect all Edit menu すべて選択解除 - + Select default font Branch attribute デフォルトのフォントを選択 @@ -2428,7 +2476,7 @@ because of existing lockfile: リンクスタイル:太いカーブ - + Set &Link Color リンクの色を設定(&L) @@ -2438,48 +2486,46 @@ because of existing lockfile: 選択色を設定(&S) - Set &Background image - バックグラウンドの画像設定(&B) + バックグラウンドの画像設定(&B) - + Toolbars Toolbars overview in view menu ツールバー - + Rotate counterclockwise View action 半時計回りに回す - Rotate rclockwise View action - 時計回りに回す + 時計回りに回す - + Fit view to selection View action - + Tree editor View action ツリーエディタ - + Task editor View action タスク・エディタ - + Slide editor View action スライド·エディタ @@ -2491,13 +2537,12 @@ because of existing lockfile: スクリプトエディタ - History Window View action - 履歴ウィンドウ + 履歴ウィンドウ - + Antialiasing View action アンチエイリアス @@ -2509,65 +2554,337 @@ because of existing lockfile: スムーズなピックスマップ変換 - + Next Map View action 次のマップ - + Previous Map View action 前のマップ - + Next slide View action 次のスライド - - Previous slide - View action - 前のスライド + + &Map + Map menu + マップ(&M) - - - - - - - - - Note - SystemFlag - ノート + + Toggle window + Toggle visibility of editor windows overview in view menu + - - Link to another vym map - SystemFlag - 別のVYMマップへリンクっする + + Focus window + Toggle visibility of editor windows overview in view menu + - - subtree is scrolled - SystemFlag - ブツリーがスクロールされます + + File actions + MainWindow shortcut groups + - - subtree is temporary scrolled - SystemFlag - サブツリーは、一時的にスクロールされます + + &Clear + Clear recent files menu + - - Hide object in exported maps - SystemFlag - エクスポートしたマップ内のオブジェクトを非表示にする + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + + Map properties + + + + + Exit + MainWindow shortcut groups + + + + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + Repeat last action + Edit menu + + + + + Add + MainWindow shortcut groups + 追加 + + + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + タスク + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + 履歴ウィンドウ + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Previous slide + View action + 前のスライド + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + + Load user flag + + + + + + + + + + + + Note + SystemFlag + ノート + + + + Jira + SystemFlag + + + + + Link to another vym map + SystemFlag + 別のVYMマップへリンクっする + + + + subtree is scrolled + SystemFlag + ブツリーがスクロールされます + + + + subtree is temporary scrolled + SystemFlag + サブツリーは、一時的にスクロールされます + + + + Hide object in exported maps + SystemFlag + エクスポートしたマップ内のオブジェクトを非表示にする @@ -2576,12 +2893,12 @@ because of existing lockfile: 大好き... - + Settings 設定 - + Set path for new maps Settings action @@ -2617,13 +2934,19 @@ because of existing lockfile: 保存時にバックアップファイルを書く - + + Logfile settings + Settings action + + + + Animation Settings action アニメーション - + Open VYM example maps Help action VYMのマップ例を開く @@ -2635,25 +2958,37 @@ because of existing lockfile: キーボードのショートカットを表示 - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + ジオメトリ + + + Tasks Context menu タスク - + References (URLs, vymLinks, ...) Context menu name 参考リンク(URLs, vymLinks, ...) - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard 元に戻すとクリップボード·ツールバー - + Selection toolbar Toolbar name 選択ツールバー @@ -2665,13 +3000,13 @@ because of existing lockfile: URLとvymLinksのツールバー - + Colors toolbar Colors toolbar name 色のツールバー - + Select color (Press Shift for more options) @@ -2681,6 +3016,12 @@ because of existing lockfile: View Toolbar name + + + Limited view toolbar + View Toolbar name + + Loaded %1 @@ -2693,23 +3034,18 @@ because of existing lockfile: または - - Saving %1... - - - - + Save map as マップを名前をつけて保存 - + Saving the map failed: Couldn't rename map to %1 - + Firefox Bookmarks Firefoxブックマーク @@ -2719,23 +3055,15 @@ Couldn't rename map to %1 - Export as CSV - CSVファイルとしてエクスポート + CSVファイルとしてエクスポート - - Couldn't find configuration for export to LibreOffice - - - - - Enter URL: - URLを入力: + URLを入力: - + HTML Filedialog HTML @@ -2770,13 +3098,13 @@ Couldn't rename map to %1 URLをローカルファイルに設定 - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + %1 items on map Info about map @@ -2825,13 +3153,13 @@ Couldn't rename map to %1 - + Color of selection box Mainwindow - + Number of undo/redo levels: 元に戻す / やり直しの可能回数: @@ -2867,25 +3195,25 @@ Couldn't rename map to %1 タスクに表示できる親ブランチの数: - + (readonly) - + History for %1 Window Caption %1の履歴 - + Couldn't find the documentation %1 in: %2 %1のドキュメンテーションが下記のロケーションで見つかりませんでした: %2 - + Load vym example map ロードVYMのマップ例 @@ -2893,75 +3221,81 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope - + + Map Editors + Shortcut group + + + + Edit heading MapEditor ヘッダーの編集 - + Print vym map MapEditor VYMマップを印刷する - - %1 items selected - + + Warning + 警告 NoteEditor - Note Editor Name of editor shown as window title - ノートエディタ + ノートエディタ QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error 重大なエラー(エクスポート) - + Could not write %1 %1を書き込めませんでした - + Exporting to %1 will overwrite the existing file: %2 %1をエクスポートすると、既存のファイルが上書きされます: @@ -3005,7 +3339,7 @@ Couldn't rename map to %1 エクスポートが中止されました。 - + Trying to create directory for flags: フラグ用のディレクトリを作成します: @@ -3015,26 +3349,25 @@ Couldn't rename map to %1 %1を作成できませんでした - - + + Critical 重要 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3090,17 +3423,22 @@ Couldn't rename map to %1 - + Export as LibreOffice Impress presentation - + No objects in map! マップ内のオブジェクトがありません! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" "%1"の設定が読み込めません @@ -3119,88 +3457,102 @@ Couldn't rename map to %1 %1を読み込めませんでした - - - - - - - - + + Note Editor + Name of editor shown as window title + ノートエディタ + + + + Heading Editor + Name of editor shown as window title + ヘッダー·エディタ + + + + + + + + - - - - - - - + + + + + + Critical Error 重大なエラー - - Couldn't move existing file out of the way before saving. - 保存する前に、既存のファイルを移動できませんでした。 + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Couldn't find tar tool to zip data. - - - zip didn't exit normally - ジップが正常に終了しませんでした + + Couldn't find tar tool to unzip data. + - - Couldn't rename %1 back to %2 - %1のファイル名をを%2に変更できませんでした + Couldn't move existing file out of the way before saving. + 保存する前に、既存のファイルを移動できませんでした。 - - Couldn't remove target of old symbolic link %1 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - Couldn't rename output to target of old symbolic link %1 - + + + + zip didn't exit normally + ジップが正常に終了しませんでした - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start tool to decompress data! + + - - Saved %1, but couldn't remove %2 - %1を保存しましたが、%2を削除できませんでした + Couldn't rename %1 back to %2 + %1のファイル名をを%2に変更できませんでした - - Couldn't start %1 tool to decompress data! - - + Saved %1, but couldn't remove %2 + %1を保存しましたが、%2を削除できませんでした - + Could not start %1 %1を起動できませんでした - - + %1 didn't exit normally %1が正常に終了しませんでした - + + Images + 画像 + + + Overwrite 上書き @@ -3210,22 +3562,21 @@ The map could not be saved, please check if backup file is available or export a キャンセル - + Warning 警告 - - - - - - - + + + + + + Error エラー @@ -3247,7 +3598,7 @@ The map could not be saved, please check if backup file is available or export a (実験中です) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3255,7 +3606,7 @@ Do you risk to overwrite its contents? 内容を上書きしますか? - + Warning: Version Problem 警告:バージョンに問題があります @@ -3264,11 +3615,6 @@ Do you risk to overwrite its contents? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> <h3>マップがVYMより新しい様です。</h3><p>あなたの開こうとしているマップはVYMバージョン·%1です。現在使っているVYMのバージョンは%2です。OKを押したあとに問題が生じればVYMをアップグレードしてみてください。</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3297,32 +3643,21 @@ Do you risk to overwrite its contents? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3334,12 +3669,12 @@ Do you risk to overwrite its contents? - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3362,17 +3697,24 @@ Do you risk to overwrite its contents? - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3401,13 +3743,13 @@ Do you risk to overwrite its contents? 保存 - + Warning 警告 - + Slide Mode in scriptEditor スライド @@ -3431,7 +3773,13 @@ Do you risk to overwrite its contents? - + + Script Editor + Shortcut scope + スクリプトエディタ + + + Couldn't get model to save script into slide! スライドにスクリプトを保存するためのモデルを取得できませんでした! @@ -3441,12 +3789,12 @@ Do you risk to overwrite its contents? スライドにスクリプトを保存するためのスライドが見つかりませんでした! - + Macros saved to %1 - + Script saved to %1 @@ -3456,27 +3804,24 @@ Do you risk to overwrite its contents? スクリプトを保存 - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - %1は、既に + %1は、既に 存在します。 上書きしますか? - Overwrite - 上書き + 上書き - Cancel - キャンセル + キャンセル - + Load script スクリプトをロード @@ -3495,7 +3840,7 @@ Do you want to overwrite it? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3531,11 +3876,17 @@ Do you want to overwrite it? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor 優先順位 @@ -3592,32 +3943,37 @@ Do you want to overwrite it? TextEditor - + &Import... インポート(&I)... - + &Export... エクスポート(&E)... - Export &As... (HTML) - HTMLとしてエクスポート(&A) + HTMLとしてエクスポート(&A) - + Export &As...(ASCII) ASCIIとしてエクスポート(&A) - + &Print... 印刷(&P)… - + + Edit actions + TextEditor shortcut groups + + + + &Undo 元に戻す(&U) @@ -3632,46 +3988,65 @@ Do you want to overwrite it? 選択して全てコピー(&a) - &Copy - コピー(&C) + コピー(&C) - Cu&t - 切り取り(&t) + 切り取り(&t) - &Paste - 貼り付け(&P) + 貼り付け(&P) + + + + &Delete All + 全て削除(&D) + + + + Edi&t + + + + + &Copy + Edit menu + コピー(&C) + + + + Cu&t + Edit menu + 切り取り(&t) - - &Delete All - 全て削除(&D) + + &Paste + Edit menu + 貼り付け(&P) - - - - Texteditor - Shortcuts + + Insert image + TextEditor - - Edi&t + + Format actions + TextEditor shortcut groups - + Font hints toolbar in texteditor フォント·ヒント - + &Font hint フォント·ヒント(&F) @@ -3681,24 +4056,23 @@ Do you want to overwrite it? リッチテキスト(&R) - + Fonts toolbar in texteditor フォント - + Format toolbar in texteditor フォーマット - &Color... - 色(&C)… + 色(&C)… - + &Bold ボールド(&B) @@ -3713,27 +4087,27 @@ Do you want to overwrite it? 下線(&U) - + &Left 左寄り(&L) - + C&enter 中心(&e) - + &Right 右より(&R) - + &Justify 両端揃え(&J) - + &Settings 設定(&S) @@ -3753,96 +4127,152 @@ Do you want to overwrite it? 固定フォントはデフォルト(&f) - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file ノートを単一のファイルにエクスポート + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + - + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + 画像をロード + + + + Overwrite 上書きする - - + + File actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Cancel キャンセル - + Export Note to single file (ASCII) ノートを単一のファイルにエクスポート (ASCII) - + Print TextEditor 印刷 - + Subs&cript 添字(&c) - + Su&perscript スーパースクリプト(&p) - + Note Editor ノートエディタ - + F&ormat フォーマット(&o) - + Edit Actions アクションを編集 - + Note Actions アクションをノート - Ready Statusbar message - 準備完了 + 準備完了 - + No filename available for this note. Statusbar message このノートに利用可能なファイル名がありません。 - + &Note Menubar ノート(&N) - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - - + The file %1 exists already. Do you want to overwrite it? @@ -3852,7 +4282,7 @@ Do you want to overwrite it? 上書きしますか? - + Couldn't export note dialog 'save note as' ノートをエクスポートできませんでした @@ -3861,7 +4291,7 @@ Do you want to overwrite it? TreeEditor - + Select upper object Tree Editor 上部のオブジェクトを選択する @@ -3876,44 +4306,62 @@ Do you want to overwrite it? VymModel - + unknown user default name for map author in settings - + unnamed 名無し - - - - + + + Critical Parse Error 重大な解析エラー - - + + + + + Critical Load Error 重大な読み込みエラー - + Couldn't create temporary directory before load テンポラリ·ディレクトリをロードする前に作成できませんでした - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. .vymアーカイブ内のマップ(*.xmlファイル)が見つかりませんでした。 - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3923,35 +4371,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + 保存できませんでした + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) 圧縮(VYMデフォルト) - - + + Cancel キャンセル - + Save Error 保存エラー @@ -3971,65 +4459,60 @@ could not be renamed before saving を保存前に改名できませんでした - + Critical Save Error - Couldn't create temporary directory before save - テンポラリ·ディレクトリを保存する前に作成できませんでした + テンポラリ·ディレクトリを保存する前に作成できませんでした - - - + Images 画像 - - + All Filedialog 全て - Load image - 画像をロード + 画像をロード - + Save image 画像を保存 - + The file %1 exists already. Do you want to overwrite it? %1は、既に存在します。 上書きしますか? - + Overwrite 上書き - - + + Critical Error 重大なエラー - + Couldn't save %1 %1を保存できませんでした - + Critical Import Error 重大なエラー(インポート) @@ -4039,13 +4522,13 @@ Do you want to overwrite it? ディレクトリ%1がみつかりませんでした - + Choose directory structure to import インポートするディレクトリ構造を選択してください - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -4059,7 +4542,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - + Couldn't remove lockfile for %1 @@ -4077,7 +4560,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin 警告 - + The file of the map on disk has changed: %1 @@ -4090,107 +4573,129 @@ Do you want to reload that map with the new file? 新しいファイルと、そのマップを再ロードしますか? - + Reload 再ロード - + Ignore 無視 - - + + + Warning 警告 - + Autosave disabled during undo. 自動保存は、元に戻す時には無効になっています。 - - Could not find Jira ticket pattern in %1 - VymModel - - - - + + Received Jira data. VymModel - + Export map as SVG - + Export map as XML - + Note FindAll in VymModel ノート - New map New map - 新しいマップ + 新しいマップ - + Contacting Jira... VymModel - + Export map as image 画像としてマップをエクスポート - + Couldn't save QImage %1 in format %2 QImage %1を %2のフォーマットで保存できませんでした - + Export map as PDF PDFとしてマップをエクスポート - + + + Export to + エクスポート + + + Export XML to directory ディレクトリにXMLをエクスポート - + Critical Export Error 重大なエラー(エクスポート) - + + (still experimental) (実験用) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv CSVファイルとしてエクスポート - Load background image - 背景画像をロード + 背景画像をロード + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + 重大なエラー @@ -4215,13 +4720,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget ツリーエディタ - + Slide Editor Title of dockable editor widget スライド·エディタ @@ -4273,40 +4778,5 @@ Do you want to reload that map with the new file? Close 閉じる - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.pt_BR.ts b/lang/vym_pt_BR.ts similarity index 81% rename from lang/vym.pt_BR.ts rename to lang/vym_pt_BR.ts index e4710c7..883af63 100644 --- a/lang/vym.pt_BR.ts +++ b/lang/vym_pt_BR.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog @@ -49,6 +49,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -56,6 +75,26 @@ Fechar + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + + + BranchPropertyEditor @@ -71,13 +110,13 @@ Incluir imagens verticalmente - + Property Editor Window caption - + Name Branchprop window: Attribute name @@ -95,7 +134,7 @@ - + %1 days ago task related times @@ -113,11 +152,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -393,20 +450,11 @@ want to allow this in your system! - FindWidget + FindControlsWidget - + Find: - FindWidget - - - - - HeadingEditor - - - Heading Editor - Name of editor shown as window title + FindControlsWidget @@ -433,25 +481,25 @@ want to allow this in your system! Desfazer - + Action Table with actions Ações - + Comment Table with actions Comentário - + Undo action Table with actions Desfazer ação - + Current state Current bar in history hwindow Atual @@ -460,12 +508,14 @@ want to allow this in your system! JiraAgent - + + Warning Aviso - + + Authentication problem when contacting JIRA @@ -485,11 +535,21 @@ want to allow this in your system! Remover - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -528,7 +588,7 @@ want to allow this in your system! Main - + Linkstyle Line Estilo de Linhas @@ -538,40 +598,38 @@ want to allow this in your system! Estilo de Linhas Largas - Set &Background Color - Definir Cor de &Fundo + Definir Cor de &Fundo - + &View &Visualizar - + Overwrite Sobrescrever - - - - + + + Cancel Cancelar - + Open anyway Forçar abrir - + Create Criar - + Load vym map Carregar mapa VYM @@ -586,33 +644,37 @@ want to allow this in your system! Importar: Substituir seleção com um mapa - Save modified map before closing it - Salvar mapa modificado antes de fechar + Salvar mapa modificado antes de fechar - Discard changes - Descartas alterações + Descartas alterações - + VYM -Information: VYM - Informações: - - - - - + + + - + + + Critical Error Erro Crítico - + + + Open %1 map + + + + Number of undo/redo levels: @@ -648,34 +710,28 @@ want to allow this in your system! - + (readonly) - + History for %1 Window Caption - - Export in last used format (%1) to: %2 - status tip - - - - + Critcal error Erro crítico - + Add Adicionar - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -685,7 +741,7 @@ causar perda de dados pois as mudanças em um não será automaticamente replicada no outro. Deseja continuar? - + This map does not exist: %1 Do you want to create a new one? @@ -694,35 +750,33 @@ Do you want to create a new one? Deseja criar um novo? - Saved %1 - Salvo %1 + Salvo %1 - Couldn't save - Não foi possível salvar + Não foi possível salvar - - + + The file %1 exists already. Do you want to O arquivo %1 já existe. Deseja continuar? - + The map %1 has been modified but not saved yet. Do you want to O mapa %1 foi modificado mas não foi salvo ainda. Deseja salvar? - + Couldn't open map %1 Não foi possível abrir o mapa %1 - + Take care! Standardflag Cuidado! @@ -752,13 +806,13 @@ já existe. Deseja continuar? Ruim - + Time critical Standardflag Falta de tempo - + Idea! Standardflag Idéia! @@ -800,15 +854,19 @@ já existe. Deseja continuar? Vai ajudar - - + + Import Importar - - + + + + + + @@ -816,37 +874,33 @@ já existe. Deseja continuar? - - - + (still experimental) (ainda em testes) - + &Print Im&primir - - Export to - Exportar para + Exportar para - + Search results list FindResultWidget - + File actions toolbar Toolbar for file actions - + PDF%1 File export menu @@ -858,77 +912,54 @@ já existe. Deseja continuar? - - Repeat last export (%1) - - - - + Edit actions toolbar Toolbar name - + Task list TaskEditor - + Script Editor ScriptEditor - + Property Editor PropertyEditor - + History window HistoryWidget - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - &Map Menu for file actions - &Mapa + &Mapa - + &Restore last session Edit menu - - Add attribute - - - - + &Detach Context menu @@ -940,13 +971,13 @@ já existe. Deseja continuar? - + Sort children backwards Edit menu - + Expand all branches Edit menu @@ -958,30 +989,19 @@ já existe. Deseja continuar? - + Collapse one level Edit menu - + Collapse unselected levels Edit menu - - Unscroll children - Edit menu - - - - - (experimental) - - - - + Webpage (HTML)... File export menu @@ -1005,139 +1025,109 @@ já existe. Deseja continuar? - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + Grow selection Edit menu - + Shrink selection Edit menu - + Reset selection size Edit menu - - References Context menu - Shortcuts - - - - - Get data from JIRA for subtree - Edit menu - - - - - vymlinks - linking maps - Shortcuts - - - - - Exports - Shortcuts - - - - - Tasks - Shortcuts - - - - + Toggle task Edit menu - + Cycle task status Edit menu - + Reset sleep Task sleep - - - - - + + + + + Sleep %1 days Task sleep - + Sleep %1 day Task sleep - - + + Sleep %1 weeks Task sleep - + Removing parts of a map Shortcuts - + Various Shortcuts - + Selections Shortcuts - + Select Select menu - + Toggle target... Edit menu - + Goto target... Edit menu @@ -1149,116 +1139,381 @@ já existe. Deseja continuar? - + Search functions Shortcuts - + Find duplicate URLs Edit menu - Images - Imagens - - - - All - Filedialog - + Imagens - + URL SystemFlag - + Dark theme Settings action - + Show scripting commands Help action - + Select color (Press Shift for more options) - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - - Important - Freemind flag - Importante + + &Map + Map menu + &Mapa - - Back - Freemind flag + + Toggle window + Toggle visibility of editor windows overview in view menu - - Forward - Freemind flag + + Focus window + Toggle visibility of editor windows overview in view menu - - Look here - Freemind flag + + File actions + MainWindow shortcut groups - - Dangerous - Freemind flag - Perigoso + + &Clear + Clear recent files menu + - - Don't forget - Freemind flag + + Exports + MainWindow shortcut groups - - Flag - Freemind flag + + Repeat last export - - Home - Freemind flag + + Map properties - - Telephone - Freemind flag + + Exit + MainWindow shortcut groups + + + + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + Repeat last action + Edit menu + + + + + Add + MainWindow shortcut groups + Adicionar + + + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + + Load user flag + + + + + Jira + SystemFlag + + + + + + Important + Freemind flag + Importante + + + + Back + Freemind flag + + + + + Forward + Freemind flag + + + + + Look here + Freemind flag + + + + + Dangerous + Freemind flag + Perigoso + + + + Don't forget + Freemind flag + + + + + Flag + Freemind flag + + + + + Home + Freemind flag + + + + + Telephone + Freemind flag @@ -1334,7 +1589,7 @@ já existe. Deseja continuar? - + Confluence Credentials Settings action @@ -1346,72 +1601,72 @@ já existe. Deseja continuar? - - Number of visible parents in task editor + + Logfile settings Settings action - - Number of visible parents in find results window + + Number of visible parents in task editor Settings action - - Open all URLs in subtree (including scrolled branches) - Edit menu + + Number of visible parents in find results window + Settings action - + Extract URLs from note Edit menu - + Add timestamp Edit menu - + Remove children Edit menu - + Center on selection View action - + Editors toolbar Editor Toolbar name - + Modifier modes toolbar Modifier Toolbar name - + Script output window - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -1428,19 +1683,19 @@ já existe. Deseja continuar? - + Map target SystemFlag - + Standard Flags toolbar Standard Flag Toolbar - + Status - ok,done Standardflag @@ -1458,7 +1713,7 @@ já existe. Deseja continuar? - + Automatic layout Settings action @@ -1469,63 +1724,58 @@ já existe. Deseja continuar? - Follow XLink Context menu - Seguir Ligação Externa + Seguir Ligação Externa - + Loading: %1 Progress dialog while loading maps - - Export as CSV - - - - - - - - + + + + + - - - + + + Warning Aviso - - Couldn't find configuration for export to LibreOffice - - - - - - + + + Couldn't find a viewer to open %1. Não foi possível encontrar um programa para abrir %1. - - + + + Please use Settings-> Por favor use Configurações-> - - + + Set application to open an URL Definir aplicação externa para abrir URL - + + Enter Url: + + + + HTML Filedialog @@ -1554,13 +1804,18 @@ já existe. Deseja continuar? - + + Enter Jira query: + + + + Couldn't set sleep time to %1. - + %1 items on map Info about map @@ -1597,55 +1852,55 @@ já existe. Deseja continuar? - - + + Set application to open PDF files Definir aplicação externa para abrir PDF - + Oh no! Standardflag Ahh não! - + Main window Shortcut scope - + Firefox Bookmarks Import filters Favoritos do Firefox - + Remove only branch and keep its children Edit menu - + Formatting Shortcuts - + Modifier modes Shortcuts - + Call... Standardflag Telefonar... - + Very important! Standardflag Muito importante! @@ -1657,7 +1912,7 @@ já existe. Deseja continuar? Desprezível! - + Rose Standardflag Rosa @@ -1669,36 +1924,36 @@ já existe. Deseja continuar? Surpresa! - + Info Standardflag Informação - + Firefox Bookmarks Favoritos do Firefox - + &Open... File menu &Abrir... - + Open Recent File menu Abrir Recentes - + &Save... File menu &Salvar... - + Save &As... File menu Salvar &Como... @@ -1710,68 +1965,71 @@ já existe. Deseja continuar? Importar - + Export File menu Exportar - + Image%1 File export menu Imagem %1 - + &Close Map File menu &Fechar Mapa - + E&xit File menu Sai&r - + + &Undo Edit menu Desfa&zer - + &Redo Edit menu &Refazer - + + &Copy Edit menu &Copiar - + + Cu&t Edit menu Recor&tar - + + &Paste Edit menu C&olar - - + Delete Selection Edit menu Apagar seleção - + Add branch as child Edit menu Adicionar ramo como filho @@ -1783,70 +2041,69 @@ já existe. Deseja continuar? Adicionar ramo + - Add branch above Edit menu Adicionar ramo acima - - + + Add branch below Edit menu Adicionar ramo abaixo - + Scroll branch Edit menu Contrair ramo - - + + Find... Edit menu Pesquisar... - + Open URL Edit menu Abrir URL - Open URL in new tab Edit menu - Abrir URL em nova aba + Abrir URL em nova aba - + Open all URLs in subtree Edit menu Abrir todas URLs da subárvore - + Edit URL... Edit menu Editar URL... - + Use heading for URL Edit menu Usar tópico como URL - + Open linked map Edit menu Abrir mapa ligado - + Open all vym links in subtree Edit menu Abrir todas ligações da subárvore @@ -1858,97 +2115,97 @@ já existe. Deseja continuar? Editar ligação... - + Delete vym link Edit menu Apagar ligação - + Hide in exports Edit menu Ocultar ao exportar - + Add map (insert) Edit menu Adicionar mapa (novo) - + Add map (replace) Edit menu Adicionar mapa (substituir) - + Save selection Edit menu Salvar seleção - + F&ormat Format menu &Formatação - + Pic&k color Edit menu &Capturar cor - + Color &branch Edit menu Cor do &ramo - + Color sub&tree Edit menu Cor da subár&vore - + Hide link if object is not selected Branch attribute Ocultar ligações se objeto não for selecionado - + &Use color of heading for link Branch attribute &Usar cor do tópico para ligações - + reset Zoom View action Normal - + Zoom in View action Ampliar - + Zoom out View action Reduzir - + Use modifier to draw xLinks Mode modifier Usar modificador para criar Ligações Externas - + Set application to open pdf files Settings action Definir aplicação externa para abrir PDF @@ -1966,13 +2223,12 @@ já existe. Deseja continuar? Selecionar ramo depois de adicionar - Select existing heading Settings action - Selecionar tópico + Selecionar tópico - + Exclusive flags Settings action Emblemas exclusivos @@ -1984,7 +2240,7 @@ já existe. Deseja continuar? Usar emblemas ocultos - + &Help Help menubar entry A&juda @@ -2008,31 +2264,31 @@ já existe. Deseja continuar? Sobre QT - + Remove Context menu name Remover - + Edit XLink Context menu name Editar Ligação Externa - + Follow XLink Context menu name Seguir Ligação Externa - + Save image Context action Salvar imagem - + &New map File menu @@ -2044,120 +2300,97 @@ já existe. Deseja continuar? - + Save as default map File menu - + Text (A&O report)... Export format - - Properties - - - - + E&dit Edit menu - + Add mapcenter Canvas context menu - + Move branch up Edit menu Mover ramo acima - + Move branch down Edit menu Mover ramo abaixo - + Sort children Edit menu - + Edit local URL... Edit menu - - Get page name from Confluence - Edit menu - - - - + Open linked map in background tab Edit menu - + Reset delta priority for visible tasks Reset delta - + Map properties... Edit menu - - Add image... - Edit menu - - - - - Property window - Dialog to edit properties of selection - - - - + Goto linked map... Edit menu - + Select previous Edit menu - + Select next Edit menu - + Unselect all Edit menu - + Select default font Branch attribute @@ -2173,7 +2406,7 @@ já existe. Deseja continuar? - + Set &Link Color @@ -2183,72 +2416,55 @@ já existe. Deseja continuar? - - Set &Background image - - - - + Toolbars Toolbars overview in view menu - - Views - Shortcuts - - - - + Toggle Presentation mode View action - + Rotate counterclockwise View action - - Rotate rclockwise - View action - - - - + Fit view to selection View action - + Note editor View action - + Heading editor View action - + Tree editor View action - + Task editor View action - + Slide editor View action @@ -2260,19 +2476,7 @@ já existe. Deseja continuar? - - Script output window - View action - - - - - History Window - View action - - - - + Antialiasing View action @@ -2284,36 +2488,36 @@ já existe. Deseja continuar? - + Next Map View action - + Previous Map View action - + Next slide View action - + Previous slide View action - + &Connect - + Connect Shortcuts @@ -2325,31 +2529,25 @@ já existe. Deseja continuar? - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply - Mode modifier - - - - + Use modifier to move branches without linking Mode modifier - + Use modifier to move view without selecting Mode modifier - + @@ -2362,7 +2560,7 @@ já existe. Deseja continuar? Nota - + Link to another vym map SystemFlag Ligar a outro mapa do VYM @@ -2392,34 +2590,29 @@ já existe. Deseja continuar? - + Set path for new maps Settings action - + Loaded %1 - - Saving %1... - - - - + Color of selection box Mainwindow - + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + Settings @@ -2436,13 +2629,7 @@ já existe. Deseja continuar? - - Set application to zip/unzip files - Settings action - - - - + Set path for macros Settings action @@ -2472,7 +2659,7 @@ já existe. Deseja continuar? - + Show keyboard macros Help action @@ -2484,7 +2671,7 @@ já existe. Deseja continuar? - + Couldn't load default map: %1 @@ -2494,14 +2681,14 @@ vym will create an empty map now. - + Couldn't save %1, because file exists and cannot be changed. - - + + Couldn't save %1, because of existing lockfile: @@ -2509,103 +2696,149 @@ because of existing lockfile: - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - + Import Firefox Bookmarks into new map - - Open Freemind map + + Link to another vym map + Ligar a outro mapa do VYM + + + + Set as link to vym map + + + + + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] + task sleep time dialog + + + + + tasks total + Info about map + + + + + tasks in map + Info about map + + + + + Load images + + + + + Set application to open external links + Definir aplicação externa para abrir URL + + + + Load vym script + + + + + Information + + + + + Restart vym to apply the changed dark theme setting + + + + + + No SSL support available for this build of vym - - Link to another vym map - Ligar a outro mapa do VYM - - - - Set as link to vym map + + Undo (%1) - - Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] - task sleep time dialog + + Undo: %1 (%2) - - tasks total - Info about map + + Redo (%1) - - tasks in map - Info about map + + Redo: %1 (%2) - - Load vym script + + Repeat last Export %1 +Format: %2 to +%3 + status tip - - Information + + Branch + Context menu to follow links - - Restart vym to apply the changed dark theme setting + + Url + Context menu to follow links - - - No SSL support available for this build of vym + + Map + Context menu to follow links - + Couldn't find the documentation %1 in: %2 - + Load vym example map - + Please allow vym to download release notes! - + Allow @@ -2615,17 +2848,17 @@ because of existing lockfile: - + Thank you for enabling downloads! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -2647,13 +2880,13 @@ because of existing lockfile: - + Animation Settings action - + Open VYM example maps Help action @@ -2677,31 +2910,43 @@ because of existing lockfile: - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + + + + Tasks Context menu - + References (URLs, vymLinks, ...) Context menu name - + XLinks Menu for file actions - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard - + Selection toolbar Toolbar name @@ -2713,17 +2958,23 @@ because of existing lockfile: - + Colors toolbar Colors toolbar name - + View toolbar View Toolbar name + + + Limited view toolbar + View Toolbar name + + or @@ -2731,23 +2982,28 @@ because of existing lockfile: - + Save map as - + + Untitled + Default name in FileSaveAs dialog + + + + Saving the map failed: Couldn't rename map to %1 - Enter URL: - Informe URL: + Informe URL: - + Images Filedialog Imagens @@ -2756,75 +3012,81 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope - + + Map Editors + Shortcut group + + + + Edit heading MapEditor Editar tópico - + Print vym map MapEditor - - %1 items selected - + + Warning + Aviso NoteEditor - Note Editor Name of editor shown as window title - Editor de Notas + Editor de Notas QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error Erro Crítico ao Exportar - + Could not write %1 Não foi possível criar %1 - + Exporting to %1 will overwrite the existing file: %2 @@ -2852,7 +3114,7 @@ Couldn't rename map to %1 - + Trying to create directory for flags: @@ -2862,8 +3124,8 @@ Couldn't rename map to %1 - - + + Critical @@ -2883,20 +3145,19 @@ Couldn't rename map to %1 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -2950,17 +3211,22 @@ Couldn't rename map to %1 - + Export as LibreOffice Impress presentation - + No objects in map! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" @@ -2979,88 +3245,90 @@ Couldn't rename map to %1 Não foi possível ler %1 - - - - - - - - - - - - - - - - - - Critical Error - Erro Crítico - - - - Couldn't move existing file out of the way before saving. - + + Note Editor + Name of editor shown as window title + Editor de Notas - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Heading Editor + Name of editor shown as window title - - - zip didn't exit normally - "zip" não terminou normalmente + + + + + + + + + + + + + + + Critical Error + Erro Crítico - - Couldn't rename %1 back to %2 + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. - - Couldn't remove target of old symbolic link %1 + + Couldn't find tar tool to zip data. - - Couldn't rename output to target of old symbolic link %1 + + Couldn't find tar tool to unzip data. - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - Saved %1, but couldn't remove %2 - + + + + + zip didn't exit normally + "zip" não terminou normalmente - - Couldn't start %1 tool to decompress data! + + Couldn't start tool to decompress data! + - + Could not start %1 Não foi possível executar %1 - - + %1 didn't exit normally %1 não terminou normalmente - + + Images + Imagens + + + Overwrite Sobrescrever @@ -3070,22 +3338,21 @@ The map could not be saved, please check if backup file is available or export a Cancelar - + Warning Aviso - - - - - - - + + + + + + Error Erro @@ -3108,7 +3375,7 @@ The map could not be saved, please check if backup file is available or export a (ainda em testes) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3116,7 +3383,7 @@ Do you risk to overwrite its contents? Deseja sobrescrever o conteúdo? - + Warning: Version Problem @@ -3125,11 +3392,6 @@ Deseja sobrescrever o conteúdo? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3158,32 +3420,21 @@ Deseja sobrescrever o conteúdo? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3195,12 +3446,12 @@ Deseja sobrescrever o conteúdo? - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3223,17 +3474,24 @@ Deseja sobrescrever o conteúdo? - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3242,13 +3500,13 @@ Deseja sobrescrever o conteúdo? Salvar - + Warning Aviso - + Slide Mode in scriptEditor @@ -3272,7 +3530,13 @@ Deseja sobrescrever o conteúdo? - + + Script Editor + Shortcut scope + + + + Couldn't get model to save script into slide! @@ -3282,12 +3546,12 @@ Deseja sobrescrever o conteúdo? - + Macros saved to %1 - + Script saved to %1 @@ -3297,27 +3561,24 @@ Deseja sobrescrever o conteúdo? - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - O arquivo %1 + O arquivo %1 já existe. Deseja sobrescrevê-lo? - Overwrite - Sobrescrever + Sobrescrever - Cancel - Cancelar + Cancelar - + Load script @@ -3336,7 +3597,7 @@ Deseja sobrescrevê-lo? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3372,11 +3633,17 @@ Deseja sobrescrevê-lo? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor @@ -3433,32 +3700,37 @@ Deseja sobrescrevê-lo? TextEditor - + &Import... &Importar... - + &Export... E&xportar... - Export &As... (HTML) - Exportar Como... (&HTML) + Exportar Como... (&HTML) - + Export &As...(ASCII) Exportar Como... (&Texto) - + &Print... Im&primir... - + + Edit actions + TextEditor shortcut groups + + + + &Undo Desfa&zer @@ -3473,46 +3745,65 @@ Deseja sobrescrevê-lo? Selecionar e copiar &tudo - &Copy - &Copiar + &Copiar - Cu&t - Recor&tar + Recor&tar - &Paste - C&olar + C&olar - + &Delete All &Apagar Tudo - - - - Texteditor - Shortcuts + + Edi&t + + + + + &Copy + Edit menu + &Copiar + + + + Cu&t + Edit menu + Recor&tar + + + + &Paste + Edit menu + C&olar + + + + Insert image + TextEditor - - Edi&t + + Format actions + TextEditor shortcut groups - + Font hints toolbar in texteditor - + &Font hint &Fonte Sugerida @@ -3522,24 +3813,23 @@ Deseja sobrescrevê-lo? - + Fonts toolbar in texteditor - + Format toolbar in texteditor - &Color... - &Cor... + &Cor... - + &Bold &Negrito @@ -3554,27 +3844,27 @@ Deseja sobrescrevê-lo? &Sublinhado - + &Left &Esquerda - + C&enter Ce&ntralizado - + &Right &Direita - + &Justify &Justificado - + &Settings &Configurações @@ -3594,96 +3884,152 @@ Deseja sobrescrevê-lo? Fonte fi&xa como padrão - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file Exportar Nota como Arquivo + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + - + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Carregar imagem + + + + Overwrite Sobrescrever - - + + File actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Cancel Cancelar - + Export Note to single file (ASCII) Exportar Nota para Arquivo (Texto) - + Print TextEditor Imprimir - + Subs&cript S&ubscrito - + Su&perscript So&brescrito - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - + Note Editor Editor de Notas - + F&ormat &Formatação - + Edit Actions Ações de Edição - + Note Actions Ações de Notas - Ready Statusbar message - Pronto + Pronto - + No filename available for this note. Statusbar message Nenhum arquivo está disponível para esta nota. - + &Note Menubar &Nota - - + The file %1 exists already. Do you want to overwrite it? @@ -3693,7 +4039,7 @@ já existe. Deseja sobrescrevê-lo? - + Couldn't export note dialog 'save note as' Não foi possível exportar nota @@ -3702,7 +4048,7 @@ Deseja sobrescrevê-lo? TreeEditor - + Select upper object Tree Editor @@ -3717,46 +4063,64 @@ Deseja sobrescrevê-lo? VymModel - + unknown user default name for map author in settings - + unnamed sem nome - - - - + + + Critical Parse Error Erro Crítico ao Ler - - + + + + + Critical Load Error Erro Crítico ao Carregar - + Couldn't create temporary directory before load Não foi possível criar diretório temporário antes de carregar - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. Não foi possível encontrar um mapa (.xml) dentro do arquivo .vym. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3766,35 +4130,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Não foi possível salvar + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) comprimido (padrão) - - + + Cancel Cancelar - + Save Error Erro ao Salvar @@ -3812,66 +4216,61 @@ could not be renamed before saving - + Critical Save Error - Couldn't create temporary directory before save - Não foi possível criar diretório temporário antes de salvar + Não foi possível criar diretório temporário antes de salvar - - - + Images Imagens - - + All Filedialog - Load image - Carregar imagem + Carregar imagem - + Save image Salvar imagem - + The file %1 exists already. Do you want to overwrite it? O arquivo %1 já existe. Deseja sobrescrevê-lo? - + Overwrite Sobrescrever - - + + Critical Error Erro Crítico - + Couldn't save %1 - + Critical Import Error Erro Crítico ao Importar @@ -3881,13 +4280,13 @@ Deseja sobrescrevê-lo? Não foi possível encontrar o diretório %1 - + Choose directory structure to import Escolha o diretório para importar - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3896,24 +4295,18 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - - Could not find Jira ticket pattern in %1 - VymModel - - - - + Contacting Jira... VymModel - + Removed lockfile for %1 - + Couldn't remove lockfile for %1 @@ -3931,7 +4324,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin Aviso - + The file of the map on disk has changed: %1 @@ -3940,60 +4333,66 @@ Do you want to reload that map with the new file? - + Reload - + Ignore - - + + + Warning Aviso - + Autosave disabled during undo. - + Note FindAll in VymModel Nota - New map New map - Novo mapa + Novo mapa - + Export map as image Exportar mapa como imagem - + Couldn't save QImage %1 in format %2 - + Export map as PDF - + Export map as SVG - + + + Export to + Exportar para + + + Export map as XML @@ -4003,33 +4402,51 @@ Do you want to reload that map with the new file? Exportar XML para diretório - + Critical Export Error Erro Crítico ao Exportar - + + (still experimental) (ainda em testes) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv - + + Received Jira data. VymModel + + + VymModelWrapper - - Load background image + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + Critical Error + Erro Crítico + VymProcess @@ -4053,13 +4470,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -4107,40 +4524,5 @@ Do you want to reload that map with the new file? Close Fechar - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.ru.ts b/lang/vym_ru.ts similarity index 81% rename from lang/vym.ru.ts rename to lang/vym_ru.ts index 278aae3..5f73653 100644 --- a/lang/vym.ru.ts +++ b/lang/vym_ru.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog Титры @@ -49,6 +49,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -64,6 +83,26 @@ Закрыть + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Загрузить фоновый рисунок + + BranchPropertyEditor @@ -143,13 +182,13 @@ - - + Property Editor Window caption Редактор свойств - + Name Branchprop window: Attribute name Имя @@ -167,7 +206,7 @@ Тип - + %1 days ago task related times @@ -185,11 +224,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -458,21 +515,20 @@ want to allow this in your system! - FindWidget + FindControlsWidget - + Find: - FindWidget - Найти: + FindControlsWidget + Найти: - HeadingEditor + FindWidget - - Heading Editor - Name of editor shown as window title - + Find: + FindWidget + Найти: @@ -498,25 +554,25 @@ want to allow this in your system! Отменить - + Action Table with actions Действия - + Comment Table with actions Комментировать - + Undo action Table with actions Вернуть действие - + Current state Current bar in history hwindow Текущее состояние @@ -525,12 +581,14 @@ want to allow this in your system! JiraAgent - + + Warning - + + Authentication problem when contacting JIRA @@ -546,11 +604,21 @@ want to allow this in your system! Удалить - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -581,7 +649,7 @@ want to allow this in your system! Main - + Linkstyle Line Стиль линии: тонкая линия @@ -591,42 +659,34 @@ want to allow this in your system! Стиль линии: толстая линия - Set &Background Color - &Установить цвет фона + &Установить цвет фона - + &View &Вид - + Overwrite Перезаписать - - - - + + + Cancel Отмена - + Formatting Shortcuts - - Views - Shortcuts - - - - + Download and show release notes Help action @@ -638,7 +698,7 @@ want to allow this in your system! Проверить наличие обновлений - + Couldn't load default map: %1 @@ -648,17 +708,17 @@ vym will create an empty map now. - + Open anyway Открывать всегда - + Create Создать - + Load vym map Загрузить карту в формате VYM @@ -673,61 +733,59 @@ vym will create an empty map now. Импортирование: Заменить выделение vym-картой - + Saving the map failed: Couldn't rename map to %1 - Save modified map before closing it - Сохранить изменённую карту перед закрытием + Сохранить изменённую карту перед закрытием - Discard changes - Отменить изменения + Отменить изменения - + VYM -Information: Информация VYM: - - - - - + + + - + + + Critical Error Критическая ошибка - + Critcal error Критическая ошибка - + Add Добавить - + Search results list FindResultWidget - + File actions toolbar Toolbar for file actions - + PDF%1 File export menu @@ -739,65 +797,42 @@ Couldn't rename map to %1 - - Repeat last export (%1) - - - - + Edit actions toolbar Toolbar name - + Task list TaskEditor - + Script Editor ScriptEditor - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - &Map Menu for file actions - &Карта + &Карта - + &Restore last session Edit menu - - Add attribute - - - - + &Detach Context menu Отделить @@ -809,13 +844,13 @@ Couldn't rename map to %1 - + Sort children backwards Edit menu - + Expand all branches Edit menu @@ -827,180 +862,143 @@ Couldn't rename map to %1 - + Collapse one level Edit menu - + Collapse unselected levels Edit menu - - Unscroll children - Edit menu - - - - Properties - Свойства + Свойства - + Move branch up Edit menu Переместить вверх - + Move branch down Edit menu Переместить вниз - + Move branch diagonally up Edit menu Переместить на уровень ниже (вложить в другой узел) - + Move branch diagonally down Edit menu Переместить на уровень выше - + Grow selection Edit menu Увеличить изображение - + Shrink selection Edit menu Уменьшить изображение - + Reset selection size Edit menu Вернуть исходный размер - - References Context menu - Shortcuts - - - - - Get data from JIRA for subtree - Edit menu - - - - - vymlinks - linking maps - Shortcuts - - - - - Exports - Shortcuts - - - - - Tasks - Shortcuts - - - - + Toggle task Edit menu - + Cycle task status Edit menu - + Reset sleep Task sleep - - - - - + + + + + Sleep %1 days Task sleep - + Sleep %1 day Task sleep - - + + Sleep %1 weeks Task sleep - + Removing parts of a map Shortcuts - + Various Shortcuts - + Map properties... Edit menu - + Selections Shortcuts - + Select Select menu &Выбрать - + Toggle target... Edit menu - + Goto target... Edit menu @@ -1012,99 +1010,87 @@ Couldn't rename map to %1 - + Unselect all Edit menu - + Search functions Shortcuts - + Find duplicate URLs Edit menu - + Note editor View action - + Heading editor View action - - Images - - - - - All - Filedialog - - - - + URL SystemFlag - + Show scripting commands Help action - + Select color (Press Shift for more options) Выбрать цвет (нажмите Shift для настройки) - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - (experimental) - (экспериментально) + (экспериментально) - + Firefox Bookmarks File export menu Закладки Firefox - + Reset delta priority for visible tasks Reset delta - + &Connect &Соединение - + Connect Shortcuts @@ -1116,37 +1102,42 @@ Couldn't rename map to %1 - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply - Mode modifier - - - - + Use modifier to draw xLinks Mode modifier - + Use modifier to move branches without linking Mode modifier - + Use modifier to move view without selecting Mode modifier - + + Load user flag + + + + + Jira + SystemFlag + + + + Important Freemind flag @@ -1273,13 +1264,13 @@ Couldn't rename map to %1 Мило - + Set author for new maps Settings action - + Confluence Credentials Settings action @@ -1291,7 +1282,13 @@ Couldn't rename map to %1 - + + Logfile settings + Settings action + + + + Dark theme Settings action @@ -1309,83 +1306,178 @@ Couldn't rename map to %1 - - <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) + + Hierarchy + Context menu name - - Open all URLs in subtree (including scrolled branches) - Edit menu - Открыть все URL в поддереве, включая свёрнутые ветви + + Geometry + Context menu name + Форма - - Extract URLs from note - Edit menu + + Limited view toolbar + View Toolbar name - - Add timestamp - Edit menu + + Untitled + Default name in FileSaveAs dialog - - Remove children - Edit menu - Удалить вложенные узлы - + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + + Load images + + + + + Set application to open external links + Выберите приложение для открытия внешних ссылок + + + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + + + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) + + + + Open all URLs in subtree (including scrolled branches) + Edit menu + Открыть все URL в поддереве, включая свёрнутые ветви + + + + Extract URLs from note + Edit menu + + + + + Add timestamp + Edit menu + + + + + Remove children + Edit menu + Удалить вложенные узлы + - + Center on selection View action - + Editors toolbar Editor Toolbar name - + Modifier modes toolbar Modifier Toolbar name - + Property Editor PropertyEditor Редактор свойств - + Script output window - + History window HistoryWidget - + Save as default map File menu - + Import Dir... Import Filters - + Webpage (HTML)... File export menu @@ -1426,91 +1518,78 @@ Couldn't rename map to %1 CSV... - + E&dit Edit menu &Редактировать - - Get page name from Confluence - Edit menu - - - - + Open linked map in background tab Edit menu - Add image... Edit menu - Добавить изображение... + Добавить изображение... - + Goto linked map... Edit menu - + Select previous Edit menu - + Select next Edit menu - + Select default font Branch attribute Выбрать шрифт по умолчанию - + Toolbars Toolbars overview in view menu - + Toggle Presentation mode View action - + Rotate counterclockwise View action - - Rotate rclockwise - View action - - - - + Tree editor View action Структура - + Task editor View action - + Slide editor View action @@ -1522,55 +1601,126 @@ Couldn't rename map to %1 - - Script output window - View action - - - - + Next slide View action - + Previous slide View action - + Map target SystemFlag - + View toolbar View Toolbar name - + Standard Flags toolbar Standard Flag Toolbar - + Status - ok,done Standardflag - + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + Fit view to selection View action - + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + Status - work in progress Standardflag @@ -1582,13 +1732,13 @@ Couldn't rename map to %1 - + Set path for new maps Settings action - + Automatic layout Settings action @@ -1599,7 +1749,7 @@ Couldn't rename map to %1 - + Show keyboard shortcuts Help action @@ -1617,31 +1767,30 @@ Couldn't rename map to %1 - + Tasks Context menu - + XLinks Menu for file actions - Follow XLink Context menu - Перейти по XLink + Перейти по XLink - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard - + Selection toolbar Toolbar name @@ -1653,33 +1802,33 @@ Couldn't rename map to %1 - + Colors toolbar Colors toolbar name - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to - + This map does not exist: %1 Do you want to create a new one? - + Loading: %1 Progress dialog while loading maps - + Loaded %1 @@ -1690,42 +1839,35 @@ Do you want to create a new one? - - Saving %1... - - - - Saved %1 - Сохранено %1 + Сохранено %1 - Couldn't save - Ошибка при сохранении + Ошибка при сохранении - + Save map as - + Couldn't save %1, because file exists and cannot be changed. - - + + The file %1 exists already. Do you want to Файл %1 уже существует. Вы хотите - - + + Couldn't save %1, because of existing lockfile: @@ -1733,54 +1875,37 @@ because of existing lockfile: - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - + Import Firefox Bookmarks into new map - - Open Freemind map - - - - - Couldn't find configuration for export to LibreOffice - - - - - + The map %1 has been modified but not saved yet. Do you want to Карта %1 была изменена, но изменения не сохранены. Вы хотите - Enter URL: - Введите URL: + Введите URL: - + HTML Filedialog HTML @@ -1815,12 +1940,12 @@ because of existing lockfile: Указать URL на локальный файл - + Couldn't open map %1 Ошибка при открытии карты %1 - + Link to another vym map Ссылка на другую vym-карту @@ -1830,13 +1955,13 @@ because of existing lockfile: - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -1848,18 +1973,18 @@ because of existing lockfile: - + Color of selection box Mainwindow - + Load vym script - + Information @@ -1875,12 +2000,12 @@ because of existing lockfile: - + Please allow vym to download release notes! - + Allow @@ -1890,17 +2015,17 @@ because of existing lockfile: - + Thank you for enabling downloads! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -1922,7 +2047,7 @@ because of existing lockfile: - + Take care! Standardflag Аккуратнее! @@ -1952,13 +2077,13 @@ because of existing lockfile: Плохо - + Time critical Standardflag Временные рамки - + Idea! Standardflag О, идея! @@ -2000,15 +2125,19 @@ because of existing lockfile: Должно помочь - - + + Import Импортировать - - + + + + + + @@ -2016,63 +2145,61 @@ because of existing lockfile: - - - + (still experimental) (still experimental) - + &Print &Печать - - Export to - Экспортировать в + Экспортировать в - - - - - + + + + + - - - + + + Warning Предупреждение - - + + + Couldn't find a viewer to open %1. Не найдено приложение для открытия %1. - - + + + Please use Settings-> Используйте пункт "Настройки"-> - - + + Set application to open an URL Выберите приложение для открытия URL - + Couldn't set sleep time to %1. - + branches Info about map @@ -2102,25 +2229,25 @@ because of existing lockfile: - - + + Set application to open PDF files Выберите приложение для открытия PDF документов - + Oh no! Standardflag Вот блин! - + Call... Standardflag Звонок... - + Very important! Standardflag Очень важно! @@ -2132,7 +2259,7 @@ because of existing lockfile: Совсем неважно! - + Rose Standardflag Розочка @@ -2144,36 +2271,66 @@ because of existing lockfile: Сюрприз! - + Info Standardflag Информация - + Firefox Bookmarks Закладки Firefox - + &Open... File menu &Открыть... - + + &Map + Map menu + &Карта + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + + File actions + MainWindow shortcut groups + + + + Open Recent File menu Открыть последние + &Clear + Clear recent files menu + + + + &Save... File menu &Сохранить... - + Save &As... File menu Сохранить &как... @@ -2185,68 +2342,117 @@ because of existing lockfile: Импортировать - + Export File menu Экспортировать - + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + Image%1 File export menu Изображение%1 - + + Map properties + + + + &Close Map File menu &Закрыть карту + Exit + MainWindow shortcut groups + + + + E&xit File menu &Выход - + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + &Undo Edit menu &Отменить - + &Redo Edit menu &Вернуть - + + Repeat last action + Edit menu + + + + + &Copy Edit menu &Копировать - + + Cu&t Edit menu Выреза&ть - + + &Paste Edit menu &Вставить - - + Delete Selection Edit menu Удалить выделенное - + + Add + MainWindow shortcut groups + Добавить + + + Add branch as child Edit menu Добавить дочернюю ветвь @@ -2258,76 +2464,183 @@ because of existing lockfile: Добавить промежуточный узел + - Add branch above Edit menu Добавить ветвь перед текущей - - + + Add branch below Edit menu Добавить ветвь после текущей - + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + Scroll branch Edit menu Свернуть ветвь - + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + + Get page name and details from Confluence for child pages + Edit menu + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Find... Edit menu Найти... - + Open URL Edit menu Открыть URL - + Main window Shortcut scope - Open URL in new tab Edit menu - Открыть URL в новой закладке + Открыть URL в новой закладке - + Open all URLs in subtree Edit menu Открыть все URL в поддереве - + Edit URL... Edit menu Изменить URL... - + Use heading for URL Edit menu Use heading for URL - + Open linked map Edit menu Open linked map - + Open all vym links in subtree Edit menu Открыть все vym-ссылки в поддереве @@ -2339,103 +2652,103 @@ because of existing lockfile: Редактировать vym-ссылку... - + Delete vym link Edit menu Удалить ссылку - + Hide in exports Edit menu Скрыть при экспортировании - + Add map (insert) Edit menu Добавить карту (вставить) - + Add map (replace) Edit menu Добавить карту (заменить) - + Save selection Edit menu Сохранить выделенное - + F&ormat Format menu Ф&ормат - + Pic&k color Edit menu Выб&рать цвет - + Color &branch Edit menu Цвет &ветви - + Color sub&tree Edit menu Цвет под&дерева - + Hide link if object is not selected Branch attribute Скрыть ссылку если объект не выбран - + &Use color of heading for link Branch attribute &Использовать цвет заголовка для ссылки - + reset Zoom View action reset Zoom - + Zoom in View action Увеличить - + Firefox Bookmarks Import filters Закладки Firefox - + Remove only branch and keep its children Edit menu Удалить этот узел и оставить его вложенные узлы - + Zoom out View action Уменьшить - + Set application to open pdf files Settings action Установить приложение для открытия pdf @@ -2454,12 +2767,6 @@ because of existing lockfile: - Select existing heading - Settings action - - - - Exclusive flags Settings action @@ -2471,7 +2778,7 @@ because of existing lockfile: - + &Help Help menubar entry &Справка @@ -2495,31 +2802,31 @@ because of existing lockfile: Информация о QT - + Remove Context menu name Удалить - + Edit XLink Context menu name Изменить XLink - + Follow XLink Context menu name Перейти по XLink - + Save image Context action Сохранить изображение - + &New map File menu Новая Кар&та @@ -2531,31 +2838,30 @@ because of existing lockfile: &Копировать в новую карту - + Add mapcenter Canvas context menu Добавить центральный узел - + Sort children Edit menu Сортировать дочерние ветви - + Edit local URL... Edit menu Редактировать локальный URL... - Property window Dialog to edit properties of selection - Свойства + Свойства - + Linkstyle Curve Стиль линии: тонкая дуга @@ -2565,7 +2871,7 @@ because of existing lockfile: Стиль линии: толстая дуга - + Set &Link Color Установить цвет &ссылки @@ -2575,18 +2881,16 @@ because of existing lockfile: Установить &цвет выделения - Set &Background image - Установить фоновое &изображение + Установить фоновое &изображение - History Window View action - История изменений + История изменений - + Antialiasing View action Сглаживание @@ -2598,25 +2902,25 @@ because of existing lockfile: Smooth pixmap transformations - + Next Map View action Следующая карта - + Previous Map View action Предыдущая карта - + Modifier modes Shortcuts - + @@ -2629,7 +2933,7 @@ because of existing lockfile: Заметки - + Link to another vym map SystemFlag Ссылка на другую vym-карту @@ -2659,7 +2963,7 @@ because of existing lockfile: Просто люблю... - + Settings @@ -2670,13 +2974,7 @@ because of existing lockfile: - - Set application to zip/unzip files - Settings action - - - - + Set path for macros Settings action Установить папку для макросов @@ -2706,30 +3004,29 @@ because of existing lockfile: Создать резрвную копию при сохранении - + Animation Settings action Анимация - + Open VYM example maps Help action Открыть примеры карт - + References (URLs, vymLinks, ...) Context menu name Ссылки (URL, vym-ссылки, ...) - Export as CSV - Экспортировать в CVS + Экспортировать в CVS - + %1 items on map Info about map @@ -2737,7 +3034,7 @@ because of existing lockfile: - + Number of undo/redo levels: Количество уровней отмены/повтора: @@ -2773,30 +3070,24 @@ because of existing lockfile: - + (readonly) - + History for %1 Window Caption История для %1 - - Export in last used format (%1) to: %2 - status tip - - - - + Couldn't find the documentation %1 in: %2 Не найдена документация %1 в: %2 - + Load vym example map Загрузить примеры карт @@ -2804,75 +3095,81 @@ because of existing lockfile: MapEditor - + Map Editor Shortcut scope - + + Map Editors + Shortcut group + + + + Edit heading MapEditor Изменить заголовок - + Print vym map MapEditor - - %1 items selected + + Warning NoteEditor - Note Editor Name of editor shown as window title - Редактор заметок + Редактор заметок QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error Критическая ошибка Экспорта - + Could not write %1 Ошибка при записи %1 - + Exporting to %1 will overwrite the existing file: %2 @@ -2900,7 +3197,7 @@ because of existing lockfile: - + Trying to create directory for flags: @@ -2910,8 +3207,8 @@ because of existing lockfile: - - + + Critical @@ -2931,20 +3228,19 @@ because of existing lockfile: - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -2998,17 +3294,22 @@ because of existing lockfile: - + Export as LibreOffice Impress presentation - + No objects in map! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" @@ -3026,88 +3327,90 @@ because of existing lockfile: Ошибка при чтении %1 - - - - - - - - - - - - - - - - - - Critical Error - Критическая ошибка - - - - Couldn't move existing file out of the way before saving. + + Note Editor + Name of editor shown as window title - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Heading Editor + Name of editor shown as window title - - - zip didn't exit normally - "zip" завершился с ошибкой + + + + + + + + + + + + + + + Critical Error + Критическая ошибка - - Couldn't rename %1 back to %2 + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. - - Couldn't remove target of old symbolic link %1 + + Couldn't find tar tool to zip data. - - Couldn't rename output to target of old symbolic link %1 + + Couldn't find tar tool to unzip data. - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - Saved %1, but couldn't remove %2 - + + + + + zip didn't exit normally + "zip" завершился с ошибкой - - Couldn't start %1 tool to decompress data! + + Couldn't start tool to decompress data! + - + Could not start %1 Ошибка при запуске %1 - - + %1 didn't exit normally %1 завершился с ошибкой - + + Images + + + + Overwrite Перезаписать @@ -3117,22 +3420,21 @@ The map could not be saved, please check if backup file is available or export a Отмена - + Warning Предупреждение - - - - - - - + + + + + + Error Ошибка @@ -3154,7 +3456,7 @@ The map could not be saved, please check if backup file is available or export a (still experimental) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3162,7 +3464,7 @@ Do you risk to overwrite its contents? Возможно приведет к утере важной информации.Перезаписать? - + Warning: Version Problem @@ -3171,11 +3473,6 @@ Do you risk to overwrite its contents? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3204,32 +3501,21 @@ Do you risk to overwrite its contents? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3241,12 +3527,12 @@ Do you risk to overwrite its contents? - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3269,17 +3555,24 @@ Do you risk to overwrite its contents? - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3304,13 +3597,13 @@ Do you risk to overwrite its contents? Сохранить - + Warning - + Slide Mode in scriptEditor @@ -3334,7 +3627,13 @@ Do you risk to overwrite its contents? - + + Script Editor + Shortcut scope + + + + Couldn't get model to save script into slide! @@ -3344,12 +3643,12 @@ Do you risk to overwrite its contents? - + Macros saved to %1 - + Script saved to %1 @@ -3359,25 +3658,22 @@ Do you risk to overwrite its contents? Сохранить сценарий - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Файл %1 уже существует. Перезаписать? + Файл %1 уже существует. Перезаписать? - Overwrite - Перезаписать + Перезаписать - Cancel - Отмена + Отмена - + Load script Загрузить сценарий @@ -3396,7 +3692,7 @@ Do you want to overwrite it? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3432,11 +3728,17 @@ Do you want to overwrite it? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor @@ -3493,32 +3795,37 @@ Do you want to overwrite it? TextEditor - + &Import... &Импортировать... - + &Export... &Экспортировать... - Export &As... (HTML) - Экспортировать &как... (HTML) + Экспортировать &как... (HTML) - + Export &As...(ASCII) Экспортировать &как... (ASСII) - + &Print... &Печать... - + + Edit actions + TextEditor shortcut groups + + + + &Undo &Отменить @@ -3533,46 +3840,65 @@ Do you want to overwrite it? Выбрать и копировать &всё - &Copy - &Копировать + &Копировать - Cu&t - Выреза&ть + Выреза&ть - &Paste - &Вставить + &Вставить - + &Delete All &Удалить всё - - - - Texteditor - Shortcuts + + Edi&t - - Edi&t + + &Copy + Edit menu + &Копировать + + + + Cu&t + Edit menu + Выреза&ть + + + + &Paste + Edit menu + &Вставить + + + + Insert image + TextEditor - + + Format actions + TextEditor shortcut groups + + + + Font hints toolbar in texteditor - + &Font hint &Font hint @@ -3582,24 +3908,23 @@ Do you want to overwrite it? - + Fonts toolbar in texteditor - + Format toolbar in texteditor - &Color... - &Цвет... + &Цвет... - + &Bold &Полужирный @@ -3614,27 +3939,27 @@ Do you want to overwrite it? &Подчеркивание - + &Left &Слева - + C&enter &Центр - + &Right &Справа - + &Justify &Растянуть - + &Settings &Настройки @@ -3654,96 +3979,152 @@ Do you want to overwrite it? - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file Экспортировать заметки в один файл + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + - + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Загрузить изображение + + + + Overwrite Перезаписать - - + + File actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Cancel Отмена - + Export Note to single file (ASCII) Экспортировать Заметку в один файл (ASCII) - + Print TextEditor Печать - + Subs&cript Под&строчный - + Su&perscript На&дстрочный - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - + Note Editor Редактор Заметок - + F&ormat Ф&ормат - + Edit Actions Edit Actions - + Note Actions Note Actions - Ready Statusbar message - Готово + Готово - + No filename available for this note. Statusbar message Не задано имя файла для текущей заметки. - + &Note Menubar Заме&тка - - + The file %1 exists already. Do you want to overwrite it? @@ -3751,7 +4132,7 @@ Do you want to overwrite it? Файл %1 уже существует. Перезаписать? - + Couldn't export note dialog 'save note as' Ошибка при экспорте Заметок @@ -3760,7 +4141,7 @@ Do you want to overwrite it? TreeEditor - + Select upper object Tree Editor @@ -3775,45 +4156,63 @@ Do you want to overwrite it? VymModel - + unknown user default name for map author in settings - + unnamed vym-map - - - - + + + Critical Parse Error Критическая ошибка Разбора - - + + + + + Critical Load Error Критическая ошибка Загрузки - + Couldn't create temporary directory before load Ошибка при создании временной папки перед загрузкой - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. Не найдена карта (*.xml) в .vym архиве. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3823,35 +4222,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Ошибка при сохранении + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) compressed (vym default) - - + + Cancel Отмена - + Save Error Ошибка сохранения @@ -3869,43 +4308,38 @@ could not be renamed before saving %1 не может быть удалено перед сохранением - + Critical Save Error - Couldn't create temporary directory before save - Ошибка при создании временной папки перед сохранением + Ошибка при создании временной папки перед сохранением - - - + Images - - + All Filedialog - Load image - Загрузить изображение + Загрузить изображение - + Save image Сохранить изображение - + The file %1 exists already. Do you want to overwrite it? Файл %1 @@ -3913,23 +4347,23 @@ Do you want to overwrite it? Перезаписать? {1 ?} - + Overwrite Перезаписать - - + + Critical Error Критическая ошибка - + Couldn't save %1 - + Critical Import Error Критическая ошибка Импорта @@ -3939,13 +4373,13 @@ Do you want to overwrite it? Папка %1 не найдена - + Choose directory structure to import Выберите структуруа папок для экспорта - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3954,24 +4388,18 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - - Could not find Jira ticket pattern in %1 - VymModel - - - - + Contacting Jira... VymModel - + Removed lockfile for %1 - + Couldn't remove lockfile for %1 @@ -3989,7 +4417,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - + The file of the map on disk has changed: %1 @@ -4002,60 +4430,66 @@ Do you want to reload that map with the new file? Вы хотите загрузить изменённую карту с диска? - + Reload Перезагрузить - + Ignore Пропустить - - + + + Warning - + Autosave disabled during undo. Автосохранение отключено во время "отмены". - + Note FindAll in VymModel Заметки - New map New map - Новая карта + Новая карта - + Export map as image Экспортировать карту как изображение - + Couldn't save QImage %1 in format %2 - + Export map as PDF - + Export map as SVG - + + + Export to + Экспортировать в + + + Export map as XML @@ -4065,32 +4499,54 @@ Do you want to reload that map with the new file? Экспортировать XML в папку - + Critical Export Error Критическая ошибка Экспорта - + + (still experimental) (still experimental) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv - + + Received Jira data. VymModel - Load background image - Загрузить фоновый рисунок + Загрузить фоновый рисунок + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + Критическая ошибка @@ -4115,13 +4571,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -4165,40 +4621,5 @@ Do you want to reload that map with the new file? Close Закрыть - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.sv.ts b/lang/vym_sv.ts similarity index 81% rename from lang/vym.sv.ts rename to lang/vym_sv.ts index cfb303c..13360ec 100644 --- a/lang/vym.sv.ts +++ b/lang/vym_sv.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog @@ -49,6 +49,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -64,6 +83,26 @@ Stäng + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + Ladda bakgrund bild + + BranchPropertyEditor @@ -143,13 +182,13 @@ - - + Property Editor Window caption Egenskapsredigerare - + Name Branchprop window: Attribute name Namn @@ -167,7 +206,7 @@ Typ - + %1 days ago task related times @@ -185,11 +224,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -461,20 +518,11 @@ want to allow this in your system! - FindWidget + FindControlsWidget - + Find: - FindWidget - - - - - HeadingEditor - - - Heading Editor - Name of editor shown as window title + FindControlsWidget @@ -501,25 +549,25 @@ want to allow this in your system! Ångra - + Action Table with actions Aktion - + Comment Table with actions Kommentar - + Undo action Table with actions Ångra aktion - + Current state Current bar in history hwindow Nuvarande tillstÃ¥nd @@ -528,12 +576,14 @@ want to allow this in your system! JiraAgent - + + Warning Varning - + + Authentication problem when contacting JIRA @@ -553,11 +603,21 @@ want to allow this in your system! Ta bort - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -596,7 +656,7 @@ want to allow this in your system! Main - + Linkstyle Line Länkstil linje @@ -606,185 +666,135 @@ want to allow this in your system! Länkstil tjock linje - Set &Background Color - Sätt &bakgrundsfärg + Sätt &bakgrundsfärg - + &View &Visa - + Overwrite Överskriva - - - - + + + Cancel Avbryt - + Main window Shortcut scope - + Task list TaskEditor - + Script Editor ScriptEditor - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - &Map Menu for file actions - &Karta + &Karta - + &Restore last session Edit menu - + Firefox Bookmarks Import filters Firefox bokmärken - + Text (A&O report)... Export format - - Properties - - - - + Move branch up Edit menu Flyttä gren uppÃ¥t - + Move branch down Edit menu Flyttä gren nedÃ¥t - - References Context menu - Shortcuts - - - - - Get data from JIRA for subtree - Edit menu - - - - - vymlinks - linking maps - Shortcuts - - - - + Open linked map in background tab Edit menu - - Exports - Shortcuts - - - - - Tasks - Shortcuts - - - - + Toggle task Edit menu - + Cycle task status Edit menu - + Reset sleep Task sleep - - - - - + + + + + Sleep %1 days Task sleep - + Sleep %1 day Task sleep - - + + Sleep %1 weeks Task sleep - + Removing parts of a map Shortcuts @@ -796,112 +806,100 @@ want to allow this in your system! - + Various Shortcuts - + Map properties... Edit menu - + Selections Shortcuts - + Select Select menu - + Unselect all Edit menu - + Note editor View action - + Heading editor View action - Images - Bilder - - - - All - Filedialog - + Bilder - + URL SystemFlag - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - (experimental) - - - - + Firefox Bookmarks File export menu Firefox bokmärken - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + Fit view to selection View action - + &Connect - + Connect Shortcuts @@ -913,31 +911,36 @@ want to allow this in your system! - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply + + Use modifier to move branches without linking Mode modifier - - Use modifier to move branches without linking + + Use modifier to move view without selecting Mode modifier - - Use modifier to move view without selecting - Mode modifier + + Load user flag + + + + + Jira + SystemFlag - + Important Freemind flag @@ -1064,13 +1067,13 @@ want to allow this in your system! Söt - + Set author for new maps Settings action - + Confluence Credentials Settings action @@ -1082,7 +1085,13 @@ want to allow this in your system! - + + Logfile settings + Settings action + + + + Number of visible parents in task editor Settings action @@ -1094,13 +1103,31 @@ want to allow this in your system! - + Debug info Option to show debugging info - + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + Geometri + + + + Limited view toolbar + View Toolbar name + + + + Couldn't load default map: %1 @@ -1110,24 +1137,19 @@ vym will create an empty map now. - + Loaded %1 - - Saving %1... - - - - + Couldn't save %1, because file exists and cannot be changed. - - + + Couldn't save %1, because of existing lockfile: @@ -1135,28 +1157,39 @@ because of existing lockfile: - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map + + Couldn't save as default, failed to rename to +%1 - - Couldn't save as default, failed to rename to -%1 + + + Open %1 map - + + Enter Url: + + + + + Enter Jira query: + + + + Link to another vym map Länk till andra vym-karta @@ -1166,13 +1199,13 @@ because of existing lockfile: - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -1184,18 +1217,28 @@ because of existing lockfile: - + + Load images + + + + Color of selection box Mainwindow - + + Set application to open external links + Sätt program att öppna externa länkar + + + Load vym script - + Information @@ -1211,32 +1254,78 @@ because of existing lockfile: - - Please allow vym to download release notes! + + Undo (%1) - - Allow + + Undo: %1 (%2) - - Do not allow + + Redo (%1) - - Thank you for enabling downloads! + + Redo: %1 (%2) - + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + + + + + Please allow vym to download release notes! + + + + + Allow + + + + + Do not allow + + + + + Thank you for enabling downloads! + + + + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -1258,36 +1347,36 @@ because of existing lockfile: - + Select default font Branch attribute - + Webpage (HTML)... File export menu - + Script output window - + Save as default map File menu - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -1316,73 +1405,49 @@ because of existing lockfile: - - Get page name from Confluence - Edit menu - - - - + Reset delta priority for visible tasks Reset delta - - Add image... - Edit menu - - - - + Goto linked map... Edit menu - + Toolbars Toolbars overview in view menu - - Views - Shortcuts - - - - + Toggle Presentation mode View action - + Rotate counterclockwise View action - - Rotate rclockwise - View action - - - - + Tree editor View action - + Task editor View action - + Slide editor View action @@ -1394,42 +1459,48 @@ because of existing lockfile: - - Script output window + + Next slide View action - - Next slide + + Previous slide View action - Previous slide - View action + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier - + Settings - + Set path for new maps Settings action - + Dark theme Settings action - + Download and show release notes Help action @@ -1459,19 +1530,19 @@ because of existing lockfile: - + Tasks Context menu - + XLinks Menu for file actions - + Select color (Press Shift for more options) @@ -1482,17 +1553,17 @@ because of existing lockfile: - + Open anyway Öppna trots allt - + Create Skapa - + Load vym map Öppna vym karta @@ -1513,110 +1584,98 @@ because of existing lockfile: - + Save map as - - Import Firefox Bookmarks into new map - - - - - Open Freemind map + + Untitled + Default name in FileSaveAs dialog - - Couldn't find configuration for export to LibreOffice - + + Import Firefox Bookmarks into new map - Save modified map before closing it - Spara modifierad karta före avstängning + Spara modifierad karta före avstängning - Discard changes - Avbryta förändringar + Avbryta förändringar - + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + VYM -Information: VYM -Information: - - - - - + + + - + + + Critical Error Kritisk fel - + Critcal error Kritisk fel - + Add Lägg till - + Search results list FindResultWidget - + File actions toolbar Toolbar for file actions - + Edit actions toolbar Toolbar name - + Property Editor PropertyEditor Egenskapsredigerare - + History window HistoryWidget - + E&dit Edit menu - - Add attribute - - - - + &Detach Context menu @@ -1628,13 +1687,25 @@ because of existing lockfile: - + Sort children backwards Edit menu - + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + Expand all branches Edit menu @@ -1646,49 +1717,49 @@ because of existing lockfile: - + Collapse one level Edit menu - + Collapse unselected levels Edit menu - - Unscroll children - Edit menu - - - - + Grow selection Edit menu - + Shrink selection Edit menu - + Reset selection size Edit menu - + + Follow reference + Context menu + + + + Toggle target... Edit menu - + Goto target... Edit menu @@ -1700,85 +1771,79 @@ because of existing lockfile: - + Select previous Edit menu - + Select next Edit menu - + Search functions Shortcuts - + Find duplicate URLs Edit menu - - Open all URLs in subtree (including scrolled branches) - Edit menu - - - - + Extract URLs from note Edit menu - + Add timestamp Edit menu - + Remove children Edit menu - + Center on selection View action - + Editors toolbar Editor Toolbar name - + Modifier modes toolbar Modifier Toolbar name - + Map target SystemFlag - + Standard Flags toolbar Standard Flag Toolbar - + Status - ok,done Standardflag @@ -1796,7 +1861,7 @@ because of existing lockfile: - + Automatic layout Settings action @@ -1807,19 +1872,18 @@ because of existing lockfile: - Follow XLink Context menu - Följa xLänk + Följa xLänk - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard - + Selection toolbar Toolbar name @@ -1831,13 +1895,13 @@ because of existing lockfile: - + Colors toolbar Colors toolbar name - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -1846,7 +1910,7 @@ to confusion when finishing working with vym.Do you want to Ã¥stadkomma problem när man slutar att arbeta med vym. Vill du - + This map does not exist: %1 Do you want to create a new one? @@ -1855,47 +1919,44 @@ Do you want to create a new one? Vill du skapa en ny? - + Loading: %1 Progress dialog while loading maps - Saved %1 - Sparad %1 + Sparad %1 - Couldn't save - Kunde inte spara + Kunde inte spara - - + + The file %1 exists already. Do you want to Filen %1 finns redan. Vill du - + Saving the map failed: Couldn't rename map to %1 - + The map %1 has been modified but not saved yet. Do you want to Kartan %1 har varit modifierad men inte sparad. Vill du - Enter URL: - Inskriv URL: + Inskriv URL: - + HTML Filedialog @@ -1930,12 +1991,12 @@ Couldn't rename map to %1 Sätt URL tlii lokal fil - + Couldn't open map %1 Kunde inte öppna kartan %1 - + Take care! Standardflag Var rädd om...! @@ -1965,13 +2026,13 @@ Couldn't rename map to %1 DÃ¥ligt - + Time critical Standardflag Tidkritiskt - + Idea! Standardflag Idé! @@ -2013,15 +2074,19 @@ Couldn't rename map to %1 Den här ska hjälp - - + + Import Importera - - + + + + + + @@ -2029,82 +2094,80 @@ Couldn't rename map to %1 - - - + (still experimental) (fortfarande experimentell) - + &Print &Skriv ut - - Export to - Exportera till + Exportera till - - - - - + + + + + - - - + + + Warning Varning - - + + + Couldn't find a viewer to open %1. Kunde inte hittas en visare att öppna %1. - - + + + Please use Settings-> Använd Inställningar-> - - + + Set application to open an URL Sätt program att öppna URL - - + + Set application to open PDF files Sätt program att öppna PDF-filer - + Oh no! Standardflag Nej men inte! - + Formatting Shortcuts - + Call... Standardflag Ringa... - + Very important! Standardflag Jätte viktigt! @@ -2116,7 +2179,7 @@ Couldn't rename map to %1 Inte viktigt! - + Rose Standardflag Rosa @@ -2128,36 +2191,66 @@ Couldn't rename map to %1 Överraskning! - + Info Standardflag Info - + Firefox Bookmarks Firefox bokmärken - + &Open... File menu &Öppna... - + + &Map + Map menu + &Karta + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + + File actions + MainWindow shortcut groups + + + + Open Recent File menu Senaste dokument + &Clear + Clear recent files menu + + + + &Save... File menu &Spara... - + Save &As... File menu Spara &som... @@ -2169,13 +2262,24 @@ Couldn't rename map to %1 Importera - + Export File menu Exportera - + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + Image%1 File export menu Bild%1 @@ -2193,61 +2297,89 @@ Couldn't rename map to %1 - - Repeat last export (%1) - - - - + &Close Map File menu &Stäng kartan + Exit + MainWindow shortcut groups + + + + E&xit File menu A&vsluta - - &Undo - Edit menu - &Ångra + + Miscellaneous + MainWindow shortcut groups + - - &Redo + + Undo/Redo + MainWindow shortcut groups + + + + + + &Undo + Edit menu + &Ångra + + + + &Redo Edit menu &Göra om - + + Repeat last action + Edit menu + + + + + &Copy Edit menu &Kopiera - + + Cu&t Edit menu &Klip ut - + + &Paste Edit menu Klistra &in - - + Delete Selection Edit menu Ta bort selektion - + + Add + MainWindow shortcut groups + Lägg till + + + Add branch as child Edit menu Lägg till gren som ett barn @@ -2259,70 +2391,177 @@ Couldn't rename map to %1 + - Add branch above Edit menu Lägg till gren ovanför - - + + Add branch below Edit menu Lägg till gren inunder - + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + Scroll branch Edit menu Rulla gren - + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Find... Edit menu Sök... - + Open URL Edit menu Öppna URL - Open URL in new tab Edit menu - Öppna URL i ny flick + Öppna URL i ny flick - + Open all URLs in subtree Edit menu Öppna alla URLs i subträd - + Edit URL... Edit menu Redigera URL... - + Use heading for URL Edit menu Använd rubrik för URL - + Open linked map Edit menu Öppna linkad karta - + Open all vym links in subtree Edit menu Öppna alla vym länkar i subträd @@ -2334,97 +2573,143 @@ Couldn't rename map to %1 Redigera vym länk... - + Delete vym link Edit menu Ta bort vym länk - + Hide in exports Edit menu Gömma i exporteringar - + Add map (insert) Edit menu Lägg till karta (i nuvarande) - + Add map (replace) Edit menu Lägg till karta (ersätt) - + Save selection Edit menu Spara selektion - + F&ormat Format menu F&ormat - + + Map properties + + + + Pic&k color Edit menu Väl&j färg - + Color &branch Edit menu Färga &gren - + Color sub&tree Edit menu Färga sub&träd - + Hide link if object is not selected Branch attribute Gömma länk om objekt är inte valt - + &Use color of heading for link Branch attribute &Använd färg av rubrik för länk - + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + reset Zoom View action Normal zoom - + Zoom in View action Zooma in - + Zoom out View action Zooma ut - + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + + + + Use modifier to draw xLinks Mode modifier Använd modifierare add rita xLänkar - + Set application to open pdf files Settings action Sätt program att öppna pdf-filer @@ -2442,13 +2727,12 @@ Couldn't rename map to %1 Väl gren efter tillläggning - Select existing heading Settings action - Välj existering rubrik + Välj existering rubrik - + Exclusive flags Settings action Exklusiva flaggor @@ -2460,7 +2744,7 @@ Couldn't rename map to %1 Använd gömma flaggor - + &Help Help menubar entry &Hjälp @@ -2484,31 +2768,31 @@ Couldn't rename map to %1 Om QT - + Remove Context menu name Ta bort - + Edit XLink Context menu name Redigera xlänk - + Follow XLink Context menu name Följa xLänk - + Save image Context action Spara bild - + &New map File menu &Ny karta @@ -2520,31 +2804,30 @@ Couldn't rename map to %1 &Kopiera till ny karta - + Add mapcenter Canvas context menu Lägg till kartacenter - + Sort children Edit menu Ställa barn i ordning - + Edit local URL... Edit menu Redigera lokal URL... - Property window Dialog to edit properties of selection - Egenskaper fönstret + Egenskaper fönstret - + Linkstyle Curve Länkstil kurva @@ -2554,7 +2837,7 @@ Couldn't rename map to %1 Länkstil tjock kurva - + Set &Link Color Sätt &länkfärg @@ -2564,18 +2847,16 @@ Couldn't rename map to %1 Sätt &selektion färg - Set &Background image - Sätt &bakgrundsbild + Sätt &bakgrundsbild - History Window View action - Historik fönstret + Historik fönstret - + Antialiasing View action Kantutjämning @@ -2587,25 +2868,31 @@ Couldn't rename map to %1 Mjuk pixmap -ändringar - + + Presentation mode + Mainwindow presentation shortcut groups + + + + Next Map View action Följande karta - + Previous Map View action Förra karta - + Modifier modes Shortcuts - + @@ -2618,7 +2905,7 @@ Couldn't rename map to %1 Anteckning - + Link to another vym map SystemFlag Länk till andra vym-karta @@ -2648,19 +2935,13 @@ Couldn't rename map to %1 Jag bara älskar... - + Check for release notes and updates Settings action - - Set application to zip/unzip files - Settings action - - - - + Set path for macros Settings action Sätt stig för macros @@ -2690,36 +2971,35 @@ Couldn't rename map to %1 Skriva säkerhetskopiafil när man sparar - + Animation Settings action Animation - + Open VYM example maps Help action Öppna VYM exempel-kartor - + References (URLs, vymLinks, ...) Context menu name Referenser (URLs, vymLinks, ...) - Export as CSV - Exportera som CSV + Exportera som CSV - + Couldn't set sleep time to %1. - + %1 items on map Info about map @@ -2757,7 +3037,7 @@ Couldn't rename map to %1 - + Number of undo/redo levels: Antal av Ã¥ngra/gör om nivÃ¥er: @@ -2793,30 +3073,24 @@ Couldn't rename map to %1 - + (readonly) - + History for %1 Window Caption Historik för %1 - - Export in last used format (%1) to: %2 - status tip - - - - + Couldn't find the documentation %1 in: %2 Kunde inte hittas dokumentation %1 i:(new line)%2 - + Load vym example map Öppna VYM exempel-karta @@ -2824,75 +3098,81 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope - + + Map Editors + Shortcut group + + + + Edit heading MapEditor Redigera rubrik - + Print vym map MapEditor - - %1 items selected - + + Warning + Varning NoteEditor - Note Editor Name of editor shown as window title - Anteknings redigerare + Anteknings redigerare QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error Kritisk export fel - + Could not write %1 Kunde inte skriva %1 - + Exporting to %1 will overwrite the existing file: %2 @@ -2920,7 +3200,7 @@ Couldn't rename map to %1 - + Trying to create directory for flags: @@ -2930,8 +3210,8 @@ Couldn't rename map to %1 - - + + Critical @@ -2951,20 +3231,19 @@ Couldn't rename map to %1 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3018,17 +3297,22 @@ Couldn't rename map to %1 - + Export as LibreOffice Impress presentation - + No objects in map! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" @@ -3047,88 +3331,90 @@ Couldn't rename map to %1 Kunnde inte läsa %1 - - - - - - - - - - - - - - - - - - Critical Error - Kritisk fel - - - - Couldn't move existing file out of the way before saving. - + + Note Editor + Name of editor shown as window title + Anteknings redigerare - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Heading Editor + Name of editor shown as window title - - - zip didn't exit normally - zip avslutade inte normalt + + + + + + + + + + + + + + + Critical Error + Kritisk fel - - Couldn't rename %1 back to %2 + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. - - Couldn't remove target of old symbolic link %1 + + Couldn't find tar tool to zip data. - - Couldn't rename output to target of old symbolic link %1 + + Couldn't find tar tool to unzip data. - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - Saved %1, but couldn't remove %2 - + + + + + zip didn't exit normally + zip avslutade inte normalt - - Couldn't start %1 tool to decompress data! + + Couldn't start tool to decompress data! + - + Could not start %1 Kunde inte börja %1 - - + %1 didn't exit normally %1 kunde inte avsluta normalt - + + Images + Bilder + + + Overwrite Överskriva @@ -3138,22 +3424,21 @@ The map could not be saved, please check if backup file is available or export a Avbryt - + Warning Varning - - - - - - - + + + + + + Error Fel @@ -3176,7 +3461,7 @@ The map could not be saved, please check if backup file is available or export a (fortfarande experimentell) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3184,7 +3469,7 @@ Do you risk to overwrite its contents? Ska du äventyra att överskriva innehÃ¥llet av det? - + Warning: Version Problem @@ -3193,11 +3478,6 @@ Ska du äventyra att överskriva innehÃ¥llet av det? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3226,32 +3506,21 @@ Ska du äventyra att överskriva innehÃ¥llet av det? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3263,12 +3532,12 @@ Ska du äventyra att överskriva innehÃ¥llet av det? - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3291,17 +3560,24 @@ Ska du äventyra att överskriva innehÃ¥llet av det? - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3326,13 +3602,13 @@ Ska du äventyra att överskriva innehÃ¥llet av det? Spara - + Warning Varning - + Slide Mode in scriptEditor @@ -3356,7 +3632,13 @@ Ska du äventyra att överskriva innehÃ¥llet av det? - + + Script Editor + Shortcut scope + + + + Couldn't get model to save script into slide! @@ -3366,12 +3648,12 @@ Ska du äventyra att överskriva innehÃ¥llet av det? - + Macros saved to %1 - + Script saved to %1 @@ -3381,27 +3663,24 @@ Ska du äventyra att överskriva innehÃ¥llet av det? Spara script - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - Filen %1 + Filen %1 finns redan. Skall den skrivas över? - Overwrite - Överskriva + Överskriva - Cancel - Avbryt + Avbryt - + Load script Ladda script @@ -3420,7 +3699,7 @@ Skall den skrivas över? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3456,11 +3735,17 @@ Skall den skrivas över? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor @@ -3517,32 +3802,37 @@ Skall den skrivas över? TextEditor - + &Import... &Importera... - + &Export... &Exportera... - Export &As... (HTML) - Export &Som... (HTML) + Export &Som... (HTML) - + Export &As...(ASCII) Export &Som...(ASCII) - + &Print... &Skriva ut... - + + Edit actions + TextEditor shortcut groups + + + + &Undo &Ångra @@ -3557,46 +3847,65 @@ Skall den skrivas över? Val och kopiera &allt - &Copy - &Kopiera + &Kopiera - Cu&t - &Klipp + &Klipp - &Paste - &Infoga + &Infoga - + &Delete All &Ta bort alla - - - - Texteditor - Shortcuts + + Edi&t - - Edi&t + + &Copy + Edit menu + &Kopiera + + + + Cu&t + Edit menu - + + &Paste + Edit menu + + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + Font hints toolbar in texteditor - + &Font hint &Font rÃ¥d @@ -3606,24 +3915,23 @@ Skall den skrivas över? - + Fonts toolbar in texteditor - + Format toolbar in texteditor - &Color... - &Färg... + &Färg... - + &Bold &Fet @@ -3638,27 +3946,27 @@ Skall den skrivas över? &Understruken - + &Left &Vänsterjustera - + C&enter C&entrera - + &Right &Högerjustera - + &Justify &Marginaljustera - + &Settings &Inställningar @@ -3678,96 +3986,152 @@ Skall den skrivas över? &fastställd font är antagande - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file Exportera anteckning till en fil + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + - + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + Ladda en bild + + + + Overwrite Överskriva - - + + File actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Cancel Avbryt - + Export Note to single file (ASCII) Exportera anteckning till en fil (ASCII) - + Print TextEditor Skriv ut - + Subs&cript - + Su&perscript - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - + Note Editor Anteknings redigerare - + F&ormat F&ormat - + Edit Actions Redigera aktiviteter - + Note Actions Antecknings aktiviteter - Ready Statusbar message - Färdig + Färdig - + No filename available for this note. Statusbar message Ingen filnamn ledig för den här antekning - + &Note Menubar &Anteckning - - + The file %1 exists already. Do you want to overwrite it? @@ -3777,7 +4141,7 @@ finns redan. Skall den skrivas över? - + Couldn't export note dialog 'save note as' Kunde inte exportera anteckning @@ -3786,7 +4150,7 @@ Skall den skrivas över? TreeEditor - + Select upper object Tree Editor @@ -3801,45 +4165,63 @@ Skall den skrivas över? VymModel - + unknown user default name for map author in settings - + unnamed namnlös - - - - + + + Critical Parse Error Kritisk parse fel - - + + + + + Critical Load Error Kritisk XX fel (kato joku aikasempi...) - + Couldn't create temporary directory before load Kunnde inte skapa tillfälligt register förrän XXX kas aik - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. Kunnde inte hitta en karta (*.xml) in i .vym arkivet. - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3849,35 +4231,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + Kunde inte spara + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) tryckt (vym huvudsaklig) - - + + Cancel Avbryt - + Save Error Sparningsfel @@ -3897,43 +4319,38 @@ could not be renamed before saving kunnde inte att vara nämnad igen förrän sparn - + Critical Save Error - Couldn't create temporary directory before save - Kunnde inte skapa tillfälligt register förrän sparning + Kunnde inte skapa tillfälligt register förrän sparning - - - + Images Bilder - - + All Filedialog - Load image - Ladda en bild + Ladda en bild - + Save image Spara bild - + The file %1 exists already. Do you want to overwrite it? Filen %1 @@ -3941,23 +4358,23 @@ redan finns. Vill du överskriva det? {1 ?} - + Overwrite Överskriva - - + + Critical Error Kritisk fel - + Couldn't save %1 - + Critical Import Error Kritisk import fel @@ -3967,13 +4384,13 @@ Vill du överskriva det? {1 ?} Kann inte hitta register %1 - + Choose directory structure to import Välj registerstruktur att importera - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3982,24 +4399,18 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - - Could not find Jira ticket pattern in %1 - VymModel - - - - + Contacting Jira... VymModel - + Removed lockfile for %1 - + Couldn't remove lockfile for %1 @@ -4017,7 +4428,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin Varning - + The file of the map on disk has changed: %1 @@ -4030,60 +4441,66 @@ Do you want to reload that map with the new file? Vill du ha äterladda kartan med ny fil? - + Reload Återladda - + Ignore Passera - - + + + Warning Varning - + Autosave disabled during undo. Automatisk sparning avstängd under Ã¥ngra. - + Note FindAll in VymModel Anteckning - New map New map - Ny karta + Ny karta - + Export map as image - + Couldn't save QImage %1 in format %2 - + Export map as PDF - + Export map as SVG - + + + Export to + Exportera till + + + Export map as XML @@ -4093,32 +4510,54 @@ Vill du ha äterladda kartan med ny fil? Export XML till register - + Critical Export Error Kritisk export fel - + + (still experimental) (fortfarande experimentell) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv - + + Received Jira data. VymModel - Load background image - Ladda bakgrund bild + Ladda bakgrund bild + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + Kritisk fel @@ -4143,13 +4582,13 @@ Vill du ha äterladda kartan med ny fil? VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -4197,40 +4636,5 @@ Vill du ha äterladda kartan med ny fil? Close Stäng - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.zh_CN.ts b/lang/vym_zh_CN.ts similarity index 81% rename from lang/vym.zh_CN.ts rename to lang/vym_zh_CN.ts index 6c33685..b4577c5 100644 --- a/lang/vym.zh_CN.ts +++ b/lang/vym_zh_CN.ts @@ -4,7 +4,7 @@ AboutDialog - + Credits Help->About vym dialog @@ -49,6 +49,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -64,6 +83,26 @@ 关闭 + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + 载入背景图像 + + BranchPropertyEditor @@ -143,13 +182,13 @@ - - + Property Editor Window caption 属性编辑器 - + Name Branchprop window: Attribute name 名 @@ -167,7 +206,7 @@ 类型 - + %1 days ago task related times @@ -185,11 +224,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -469,20 +526,11 @@ want to allow this in your system! - FindWidget + FindControlsWidget - + Find: - FindWidget - - - - - HeadingEditor - - - Heading Editor - Name of editor shown as window title + FindControlsWidget @@ -509,25 +557,25 @@ want to allow this in your system! 撤销 - + Action Table with actions 动作 - + Comment Table with actions 注释 - + Undo action Table with actions 撤销动作 - + Current state Current bar in history hwindow 当前状态 @@ -536,12 +584,14 @@ want to allow this in your system! JiraAgent - + + Warning 警告 - + + Authentication problem when contacting JIRA @@ -561,11 +611,21 @@ want to allow this in your system! 删除 - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -604,7 +664,7 @@ want to allow this in your system! Main - + Linkstyle Line 直线链接样式 @@ -614,40 +674,38 @@ want to allow this in your system! 粗直线链接样式 - Set &Background Color - 设置背景颜色(&B) + 设置背景颜色(&B) - + &View 查看(&V) - + Overwrite 覆盖 - - - - + + + Cancel 取消 - + Open anyway 继续打开 - + Create 新建 - + Load vym map 载入 vym 导图 @@ -662,43 +720,41 @@ want to allow this in your system! 导入:将选中项替换为 vym 导图 - Save modified map before closing it - 关闭前保存已修改的导图 + 关闭前保存已修改的导图 - Discard changes - 丢弃修改 + 丢弃修改 - + VYM -Information: VYM - 信息: - - - - - + + + - + + + Critical Error 严重错误 - + Critcal error 严重错误 - + Add 添加 - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to @@ -707,7 +763,7 @@ to confusion when finishing working with vym.Do you want to 可能会导致混乱。您希望 - + This map does not exist: %1 Do you want to create a new one? @@ -716,35 +772,33 @@ Do you want to create a new one? 您希望新建一个吗? - Saved %1 - 已保存 %1 + 已保存 %1 - Couldn't save - 无法保存 + 无法保存 - - + + The file %1 exists already. Do you want to 文件 %1 已存在。您希望 - + The map %1 has been modified but not saved yet. Do you want to 导图 %1 已更改但尚未保存。您希望 - + Couldn't open map %1 无法打开导图 %1 - + Take care! Standardflag 当心! @@ -774,13 +828,13 @@ exists already. Do you want to 坏的 - + Time critical Standardflag 时间紧迫 - + Idea! Standardflag 想法! @@ -822,15 +876,19 @@ exists already. Do you want to 这会起到帮助的 - - + + Import 导入 - - + + + + + + @@ -838,90 +896,68 @@ exists already. Do you want to - - - + (still experimental) (仍处于试验阶段) - + &Print 打印(&P) - - Export to - 导出至 + 导出至 - + Search results list FindResultWidget - + File actions toolbar Toolbar for file actions - + Edit actions toolbar Toolbar name - + Task list TaskEditor - + Script Editor ScriptEditor - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - &Map Menu for file actions - 导图(&M) + 导图(&M) - + &Restore last session Edit menu - - Add attribute - - - - + &Detach Context menu @@ -933,13 +969,13 @@ exists already. Do you want to - + Sort children backwards Edit menu - + Expand all branches Edit menu @@ -951,180 +987,139 @@ exists already. Do you want to - + Collapse one level Edit menu - + Collapse unselected levels Edit menu - - Unscroll children - Edit menu - - - - - Properties - - - - + Move branch up Edit menu 上移分支 - + Move branch down Edit menu 下移分支 - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - + Grow selection Edit menu - + Shrink selection Edit menu - + Reset selection size Edit menu - - References Context menu - Shortcuts - - - - - Get data from JIRA for subtree - Edit menu - - - - - vymlinks - linking maps - Shortcuts - - - - - Exports - Shortcuts - - - - - Tasks - Shortcuts - - - - + Toggle task Edit menu - + Cycle task status Edit menu - + Reset sleep Task sleep - - - - - + + + + + Sleep %1 days Task sleep - + Sleep %1 day Task sleep - - + + Sleep %1 weeks Task sleep - + Removing parts of a map Shortcuts - + Various Shortcuts - + Map properties... Edit menu - + Selections Shortcuts - + Select Select menu - + Toggle target... Edit menu - + Goto target... Edit menu @@ -1136,99 +1131,87 @@ exists already. Do you want to - + Unselect all Edit menu - + Search functions Shortcuts - + Find duplicate URLs Edit menu - + Note editor View action - + Heading editor View action - Images - 图象 - - - - All - Filedialog - + 图象 - + URL SystemFlag - + Show scripting commands Help action - + Select color (Press Shift for more options) - + User Flags toolbar user Flags Toolbar - + Hm... Standardflag - - (experimental) - - - - + Firefox Bookmarks File export menu Firefox 书签 - + Reset delta priority for visible tasks Reset delta - + &Connect - + Connect Shortcuts @@ -1240,31 +1223,36 @@ exists already. Do you want to - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply + + Use modifier to move branches without linking Mode modifier - - Use modifier to move branches without linking + + Use modifier to move view without selecting Mode modifier - - Use modifier to move view without selecting - Mode modifier + + Load user flag + + + + + Jira + SystemFlag - + Important Freemind flag @@ -1391,13 +1379,13 @@ exists already. Do you want to 甜蜜 - + Set author for new maps Settings action - + Confluence Credentials Settings action @@ -1409,7 +1397,13 @@ exists already. Do you want to - + + Logfile settings + Settings action + + + + Dark theme Settings action @@ -1427,83 +1421,214 @@ exists already. Do you want to - - <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) + + Hierarchy + Context menu name - - Open all URLs in subtree (including scrolled branches) - Edit menu + + Geometry + Context menu name + 几何 + + + + Limited view toolbar + View Toolbar name - - Extract URLs from note - Edit menu + + Untitled + Default name in FileSaveAs dialog - + + + Open %1 map + + + + + Enter Url: + + + + + Enter Jira query: + + + + + Load images + + + + + Set application to open external links + 设置用于打开外部链接的应用程序 + + + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + + + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) + + + + + Extract URLs from note + Edit menu + + + + Add timestamp Edit menu - + Remove children Edit menu - + Center on selection View action - + Editors toolbar Editor Toolbar name - + Modifier modes toolbar Modifier Toolbar name - + Property Editor PropertyEditor 属性编辑器 - + + &Map + Map menu + 导图(&M) + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + Script output window - + History window HistoryWidget - + + File actions + MainWindow shortcut groups + + + + + &Clear + Clear recent files menu + + + + Save as default map File menu - + Import Dir... Import Filters - + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + Webpage (HTML)... File export menu @@ -1544,91 +1669,73 @@ exists already. Do you want to - + E&dit Edit menu - - Get page name from Confluence - Edit menu - - - - + Open linked map in background tab Edit menu - - Add image... - Edit menu - - - - + Goto linked map... Edit menu - + Select previous Edit menu - + Select next Edit menu - + Select default font Branch attribute - + Toolbars Toolbars overview in view menu - + Toggle Presentation mode View action - + Rotate counterclockwise View action - - Rotate rclockwise - View action - - - - + Tree editor View action - + Task editor View action - + Slide editor View action @@ -1640,55 +1747,131 @@ exists already. Do you want to - - Script output window - View action - - - - + Next slide View action - + Previous slide View action - + Map target SystemFlag - + View toolbar View Toolbar name - + Standard Flags toolbar Standard Flag Toolbar - + Status - ok,done Standardflag - + + Map properties + + + + + Follow reference + Context menu + + + + + Set &Background color and image + + + + + Views + Mainwindow view shortcut groups + + + + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + Fit view to selection View action - + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + Status - work in progress Standardflag @@ -1700,13 +1883,13 @@ exists already. Do you want to - + Set path for new maps Settings action - + Automatic layout Settings action @@ -1717,7 +1900,7 @@ exists already. Do you want to - + Show keyboard shortcuts Help action @@ -1735,31 +1918,30 @@ exists already. Do you want to - + Tasks Context menu - + XLinks Menu for file actions - Follow XLink Context menu - 跟随 XLink + 跟随 XLink - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard - + Selection toolbar Toolbar name @@ -1771,19 +1953,19 @@ exists already. Do you want to - + Colors toolbar Colors toolbar name - + Loading: %1 Progress dialog while loading maps - + Loaded %1 @@ -1794,24 +1976,19 @@ exists already. Do you want to - - Saving %1... - - - - + Save map as - + Couldn't save %1, because file exists and cannot be changed. - - + + Couldn't save %1, because of existing lockfile: @@ -1819,76 +1996,61 @@ because of existing lockfile: - + Save map as new default map - - - - - + + + + + - - - + + + Warning 警告 - + You have no permissions to write to - - Overwrite as new default map - - - - + Import Firefox Bookmarks into new map - - Open Freemind map - - - - - Couldn't find configuration for export to LibreOffice - - - - - - + + + Couldn't find a viewer to open %1. 无法找到阅读器以打开 %1。 - - + + + Please use Settings-> 请使用 "设置"-> - - + + Set application to open an URL 设置用于打开 URL 的应用程序 - Enter URL: - 请输入 URL: + 请输入 URL: - + HTML Filedialog @@ -1923,13 +2085,13 @@ because of existing lockfile: 设置到本地文档的 URL - + Couldn't set sleep time to %1. - + %1 items on map Info about map @@ -1966,24 +2128,24 @@ because of existing lockfile: - + Color of selection box Mainwindow - - + + Set application to open PDF files 设置用于打开 pdf 文件的应用程序 - + Load vym script - + Information @@ -1999,12 +2161,12 @@ because of existing lockfile: - + Please allow vym to download release notes! - + Allow @@ -2014,17 +2176,17 @@ because of existing lockfile: - + Thank you for enabling downloads! - + That's ok, though I would be happy to see many users working with vym and also on which platforms. - + Update information @@ -2046,55 +2208,49 @@ because of existing lockfile: - + Oh no! Standardflag 哦不! - + Main window Shortcut scope - + Firefox Bookmarks Import filters Firefox 书签 - + Remove only branch and keep its children Edit menu - + Formatting Shortcuts - - Views - Shortcuts - - - - + Modifier modes Shortcuts - + Call... Standardflag 打电话…… - + Very important! Standardflag 非常重要! @@ -2106,7 +2262,7 @@ because of existing lockfile: 非常不重要! - + Rose Standardflag 玫瑰 @@ -2118,36 +2274,36 @@ because of existing lockfile: 惊喜! - + Info Standardflag 信息 - + Firefox Bookmarks Firefox 书签 - + &Open... File menu 打开(&O)... - + Open Recent File menu 最近打开的文件 - + &Save... File menu 保存(&S)... - + Save &As... File menu 另存为(&A)... @@ -2159,13 +2315,13 @@ because of existing lockfile: 导入 - + Export File menu 导出 - + Image%1 File export menu 图象%1 @@ -2183,61 +2339,89 @@ because of existing lockfile: - - Repeat last export (%1) - - - - + &Close Map File menu 关闭导图(&C) + Exit + MainWindow shortcut groups + + + + E&xit File menu 退出(&X) - + + Miscellaneous + MainWindow shortcut groups + + + + + Undo/Redo + MainWindow shortcut groups + + + + + &Undo Edit menu 撤销(&U) - + &Redo Edit menu 重做(&R) - + + Repeat last action + Edit menu + + + + + &Copy Edit menu 复制(&C) - + + Cu&t Edit menu 剪切(&T) - + + &Paste Edit menu 粘贴(&P) - - + Delete Selection Edit menu 删除选中项 - + + Add + MainWindow shortcut groups + 添加 + + + Add branch as child Edit menu 添加子分支 @@ -2249,70 +2433,177 @@ because of existing lockfile: 添加父分支 + - Add branch above Edit menu 在上方添加分支 - - + + Add branch below Edit menu 在下方添加分支 - + + Move + MainWindow shortcut groups + + + + + Sort and display + MainWindow shortcut groups + + + + Scroll branch Edit menu 卷起分支 - + + Unscroll branch and subtree + Edit menu + + + + + Geometry of items + MainWindow shortcut groups + + + + + Rotate subtree clockwise + Edit menu + + + + + Rotate subtree counter-clockwise + Edit menu + + + + + URLs + Shortcuts in references context menu + + + + + Open all visible URLs in subtree + Edit menu + + + + + Open all URLs in subtree in private mode + Edit menu + + + + + Connect + Connection shortcuts in MainWindow + + + + + Get data from Jira for subtree + Edit menu + + + + + Set Jira query + Edit menu + + + + + Get page name and details from Confluence + Edit menu + + + + Get page name and details from Confluence for child pages + Edit menu + + + + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow + + + + + Tasks + Shortcuts for tasks in MainWindow + + + + + Add image + Edit and context menus + + + + + Item properties + Dialog to edit properties of selected item + + + + + Find... Edit menu 查找... - + Open URL Edit menu 打开 URL - Open URL in new tab Edit menu - 在新标签页打开 URL + 在新标签页打开 URL - + Open all URLs in subtree Edit menu 打开子树中的所有 URL - + Edit URL... Edit menu 编辑 URL... - + Use heading for URL Edit menu 将标题作为 URL - + Open linked map Edit menu 打开链接的导图 - + Open all vym links in subtree Edit menu 打开子树中的所有链接 @@ -2324,97 +2615,97 @@ because of existing lockfile: 编辑 vym 链接... - + Delete vym link Edit menu 删除 vym 链接... - + Hide in exports Edit menu 导出时隐藏 - + Add map (insert) Edit menu 添加导图(插入) - + Add map (replace) Edit menu 添加导图(替换) - + Save selection Edit menu 保存选中项 - + F&ormat Format menu 格式(&O) - + Pic&k color Edit menu 选取颜色(&K) - + Color &branch Edit menu 着色该分支(&B) - + Color sub&tree Edit menu 着色子树(&T) - + Hide link if object is not selected Branch attribute 当对象未选中时隐藏链接 - + &Use color of heading for link Branch attribute 让链接使用标题的颜色(&U) - + reset Zoom View action 正常大小 - + Zoom in View action 放大 - + Zoom out View action 缩小 - + Use modifier to draw xLinks Mode modifier 使用修饰键绘制 xLinks - + Set application to open pdf files Settings action 设置用于打开 pdf 文件的应用程序 @@ -2432,13 +2723,12 @@ because of existing lockfile: 添加分支后选中该分支 - Select existing heading Settings action - 选中已存在的标题文本 + 选中已存在的标题文本 - + Exclusive flags Settings action 互斥标记 @@ -2450,7 +2740,7 @@ because of existing lockfile: 使用隐藏标记 - + &Help Help menubar entry 帮助(&H) @@ -2486,31 +2776,31 @@ because of existing lockfile: 关于 QT - + Remove Context menu name 删除 - + Edit XLink Context menu name 编辑 XLink - + Follow XLink Context menu name 跟随 XLink - + Save image Context action 保存图象 - + &New map File menu 新建导图(&N) @@ -2522,31 +2812,30 @@ because of existing lockfile: 复制到新导图(&C) - + Add mapcenter Canvas context menu 添加图心 - + Sort children Edit menu 子分支排序 - + Edit local URL... Edit menu 编辑本地 URL... - Property window Dialog to edit properties of selection - 属性窗口 + 属性窗口 - + Linkstyle Curve 曲线链接样式 @@ -2556,7 +2845,7 @@ because of existing lockfile: 粗曲线链接样式 - + Set &Link Color 设置链接颜色(&L) @@ -2566,18 +2855,16 @@ because of existing lockfile: 设置选区颜色(&S) - Set &Background image - 设置背景图像(&B) + 设置背景图像(&B) - History Window View action - 历史窗口 + 历史窗口 - + Antialiasing View action 反锯齿 @@ -2589,19 +2876,19 @@ because of existing lockfile: 平滑位图变形 - + Next Map View action 下一导图 - + Previous Map View action 上一导图 - + @@ -2614,7 +2901,7 @@ because of existing lockfile: 注解 - + Link to another vym map SystemFlag 至另一 vym 导图的链接 @@ -2644,7 +2931,7 @@ because of existing lockfile: 我只是喜欢 ... - + Settings @@ -2655,13 +2942,7 @@ because of existing lockfile: - - Set application to zip/unzip files - Settings action - - - - + Set path for macros Settings action 设置宏路径 @@ -2691,30 +2972,29 @@ because of existing lockfile: 保存时备份 - + Animation Settings action 动画 - + Open VYM example maps Help action 打开 VYM 的例子导图 - + References (URLs, vymLinks, ...) Context menu name 引用 (URL, vym链接...) - Export as CSV - 导出为 CSV + 导出为 CSV - + Number of undo/redo levels: 撤消级别 : @@ -2750,7 +3030,7 @@ because of existing lockfile: - + (readonly) @@ -2765,19 +3045,19 @@ vym will create an empty map now. - + Saving the map failed: Couldn't rename map to %1 - + Couldn't save as default, failed to rename to %1 - + Link to another vym map 至另一 vym 导图的链接 @@ -2787,13 +3067,13 @@ Couldn't rename map to %1 - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -2805,26 +3085,20 @@ Couldn't rename map to %1 - + History for %1 Window Caption %1 的历史 - - Export in last used format (%1) to: %2 - status tip - - - - + Couldn't find the documentation %1 in: %2 在: %2 中找不到%1 的文档 - + Load vym example map 载入 vym 例子导图 @@ -2832,75 +3106,81 @@ Couldn't rename map to %1 MapEditor - + Map Editor Shortcut scope - + + Map Editors + Shortcut group + + + + Edit heading MapEditor 编辑标题 - + Print vym map MapEditor - - %1 items selected - + + Warning + 警告 NoteEditor - Note Editor Name of editor shown as window title - 注解编辑器 + 注解编辑器 QObject - + Export as AO report - - - + + + - - + + - + + - - - + + + Critical Export Error 严重导出错误 - + Could not write %1 无法写入 %1 - + Exporting to %1 will overwrite the existing file: %2 @@ -2928,7 +3208,7 @@ Couldn't rename map to %1 - + Trying to create directory for flags: @@ -2938,8 +3218,8 @@ Couldn't rename map to %1 - - + + Critical @@ -2959,20 +3239,19 @@ Couldn't rename map to %1 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3026,17 +3305,22 @@ Couldn't rename map to %1 - + Export as LibreOffice Impress presentation - + No objects in map! - + + Could not compress file %1 + + + + Couldn't read settings from "%1" @@ -3055,88 +3339,90 @@ Couldn't rename map to %1 无法读取 %1 - - - - - - - - - - - - - - - - - - Critical Error - 严重错误 - - - - Couldn't move existing file out of the way before saving. - + + Note Editor + Name of editor shown as window title + 注解编辑器 - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! + + Heading Editor + Name of editor shown as window title - - - zip didn't exit normally - zip 未正常退出 + + + + + + + + + + + + + + + Critical Error + 严重错误 - - Couldn't rename %1 back to %2 + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. - - Couldn't remove target of old symbolic link %1 + + Couldn't find tar tool to zip data. - - Couldn't rename output to target of old symbolic link %1 + + Couldn't find tar tool to unzip data. - - Couldn't link from %1 to target of old symbolic link %2 + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + - - Saved %1, but couldn't remove %2 - + + + + + zip didn't exit normally + zip 未正常退出 - - Couldn't start %1 tool to decompress data! + + Couldn't start tool to decompress data! + - + Could not start %1 无法启动 %1 - - + %1 didn't exit normally %1 未正常退出 - + + Images + 图象 + + + Overwrite 覆盖 @@ -3146,22 +3432,21 @@ The map could not be saved, please check if backup file is available or export a 取消 - + Warning 警告 - - - - - - - + + + + + + Error 错误 @@ -3184,7 +3469,7 @@ The map could not be saved, please check if backup file is available or export a (仍处于试验阶段) - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -3192,7 +3477,7 @@ Do you risk to overwrite its contents? 您希望冒险覆盖其内容吗? - + Warning: Version Problem @@ -3201,11 +3486,6 @@ Do you risk to overwrite its contents? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Couldn't find macros at %1. @@ -3234,32 +3514,21 @@ Do you risk to overwrite its contents? - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3271,12 +3540,12 @@ Do you risk to overwrite its contents? - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 @@ -3299,17 +3568,24 @@ Do you risk to overwrite its contents? - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor @@ -3334,13 +3610,13 @@ Do you risk to overwrite its contents? 保存 - + Warning 警告 - + Slide Mode in scriptEditor @@ -3364,7 +3640,13 @@ Do you risk to overwrite its contents? - + + Script Editor + Shortcut scope + + + + Couldn't get model to save script into slide! @@ -3374,12 +3656,12 @@ Do you risk to overwrite its contents? - + Macros saved to %1 - + Script saved to %1 @@ -3389,26 +3671,23 @@ Do you risk to overwrite its contents? 保存脚本 - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - 文件 %1 已存在。 + 文件 %1 已存在。 您希望覆盖它吗? - Overwrite - 覆盖 + 覆盖 - Cancel - 取消 + 取消 - + Load script 加载脚本 @@ -3427,7 +3706,7 @@ Do you want to overwrite it? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3463,11 +3742,17 @@ Do you want to overwrite it? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor @@ -3524,32 +3809,37 @@ Do you want to overwrite it? TextEditor - + &Import... 导入(&I)... - + &Export... 导出(&E)... - Export &As... (HTML) - 导出为(&A)... (HTML) + 导出为(&A)... (HTML) - + Export &As...(ASCII) 导出为(&A)... (ASCII) - + &Print... 打印(&P)... - + + Edit actions + TextEditor shortcut groups + + + + &Undo 撤销(&U) @@ -3564,46 +3854,65 @@ Do you want to overwrite it? 选择并复制全部(&A) - &Copy - 复制(&C) + 复制(&C) - Cu&t - 剪切(&T) + 剪切(&T) - &Paste - 粘贴(&P) + 粘贴(&P) - + &Delete All 删除全部(&D) - - - - Texteditor - Shortcuts + + Edi&t + + + + + &Copy + Edit menu + 复制(&C) + + + + Cu&t + Edit menu + 剪切(&T) + + + + &Paste + Edit menu + 粘贴(&P) + + + + Insert image + TextEditor - - Edi&t + + Format actions + TextEditor shortcut groups - + Font hints toolbar in texteditor - + &Font hint 字体微调(&F) @@ -3613,24 +3922,23 @@ Do you want to overwrite it? - + Fonts toolbar in texteditor - + Format toolbar in texteditor - &Color... - 颜色(&C)... + 颜色(&C)... - + &Bold 粗体(&B) @@ -3645,27 +3953,27 @@ Do you want to overwrite it? 下划线(&U) - + &Left 左对齐(&L) - + C&enter 居中(&E) - + &Right 右对齐(&R) - + &Justify 两端对齐(&J) - + &Settings 设置(&S) @@ -3685,96 +3993,152 @@ Do you want to overwrite it? 默认使用等宽字体(&F) - + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + Export Note to single file 导出注解至文件 + + + Text color + TextEditor windows + + + + + Text background color + TextEditor windows + + + + + Text editor background color + TextEditor windows + + - + Text editor default text color + TextEditor windows + + + + + Text editor default text background color + TextEditor windows + + + + + Load image + TextEditor + 载入图象 + + + + Overwrite 覆盖 - - + + File actions + TextEditor shortcut groups + + + + + &Text Color... + + + + + &Text background color... + + + + + Cancel 取消 - + Export Note to single file (ASCII) 导出注解至文件(ASCII) - + Print TextEditor 打印 - + Subs&cript 下标(&C) - + Su&perscript 上标(&P) - - Set RichText default background color - TextEditor - - - - - Set RichText default font color - TextEditor - - - - + Note Editor 注解编辑器 - + F&ormat 格式(&O) - + Edit Actions 编辑工具栏 - + Note Actions 注解 - Ready Statusbar message - 就绪 + 就绪 - + No filename available for this note. Statusbar message 该注解无可用文件名 - + &Note Menubar 注解(&N) - - + The file %1 exists already. Do you want to overwrite it? @@ -3783,7 +4147,7 @@ Do you want to overwrite it? 您希望覆盖它吗? - + Couldn't export note dialog 'save note as' 无法导出注解 @@ -3792,7 +4156,7 @@ Do you want to overwrite it? TreeEditor - + Select upper object Tree Editor @@ -3807,46 +4171,64 @@ Do you want to overwrite it? VymModel - + unknown user default name for map author in settings - + unnamed 未命名 - - - - + + + Critical Parse Error 严重解析错误 - - + + + + + Critical Load Error 严重载入错误 - + Couldn't create temporary directory before load 无法在载入前创建临时目录 - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. 无法在 .vym 存档中找到导图(*.xml)。 - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3856,35 +4238,75 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + 无法保存 + + + + Compressing %1 + + + + + + + Saved %1 + + + + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items + + + + compressed (vym default) 压缩(vym 默认) - - + + Cancel 取消 - + Save Error 保存错误 @@ -3904,65 +4326,60 @@ could not be renamed before saving 在保存时不能重命名 - + Critical Save Error - Couldn't create temporary directory before save - 无法在保存前创建临时目录 + 无法在保存前创建临时目录 - - - + Images 图象 - - + All Filedialog - Load image - 载入图象 + 载入图象 - + Save image 保存图象 - + The file %1 exists already. Do you want to overwrite it? 文件 %1 已存在。 您希望覆盖它吗? {1 ?} - + Overwrite 覆盖 - - + + Critical Error 严重错误 - + Couldn't save %1 - + Critical Import Error 严重导入错误 @@ -3972,13 +4389,13 @@ Do you want to overwrite it? 无法找到目录 %1 - + Choose directory structure to import 请选择要导入的目录结构 - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3987,24 +4404,18 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - - Could not find Jira ticket pattern in %1 - VymModel - - - - + Contacting Jira... VymModel - + Removed lockfile for %1 - + Couldn't remove lockfile for %1 @@ -4022,7 +4433,7 @@ Please only delete the lockfile, if you are sure nobody else is currently workin 警告 - + The file of the map on disk has changed: %1 @@ -4035,60 +4446,66 @@ Do you want to reload that map with the new file? 您想要从新文件中重新载入吗? - + Reload 重新载入 - + Ignore 忽略 - - + + + Warning 警告 - + Autosave disabled during undo. 在撤消时禁用自动保存。 - + Note FindAll in VymModel 注解 - New map New map - 新建导图 + 新建导图 - + Export map as image 将导图导出为图象 - + Couldn't save QImage %1 in format %2 - + Export map as PDF - + Export map as SVG - + + + Export to + 导出至 + + + Export map as XML @@ -4098,32 +4515,54 @@ Do you want to reload that map with the new file? 导出 XML 至目录 - + Critical Export Error 严重导出错误 - + + (still experimental) (仍处于试验阶段) - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export as csv - + + Received Jira data. VymModel - Load background image - 载入背景图像 + 载入背景图像 + + + + VymModelWrapper + + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + + + Critical Error + 严重错误 @@ -4148,13 +4587,13 @@ Do you want to reload that map with the new file? VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -4202,40 +4641,5 @@ Do you want to reload that map with the new file? Close 关闭 - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/lang/vym.zh_TW.ts b/lang/vym_zh_TW.ts similarity index 80% rename from lang/vym.zh_TW.ts rename to lang/vym_zh_TW.ts index 2eb28c2..9dfd496 100644 --- a/lang/vym.zh_TW.ts +++ b/lang/vym_zh_TW.ts @@ -4,7 +4,7 @@ AboutDialog - + Ok Ok Button 確定 @@ -48,6 +48,25 @@ + + ActionLogDialog + + + Logfile settings + Dialog to set if and where logfile is used + + + + + Logfiles + + + + + Set path to logfile + + + AttributeDialog @@ -55,6 +74,26 @@ 關閉 + + BackgroundDialog + + + Set background + Dialog to set background color or image + + + + + Map backgroundcolor + Map background dialog + + + + + Load background image + + + BranchPropertyEditor @@ -74,13 +113,13 @@ 垂直地含入圖像 - + Property Editor Window caption - + Name Branchprop window: Attribute name @@ -98,7 +137,7 @@ - + %1 days ago task related times @@ -116,11 +155,29 @@ task related times + + + Frame border color + Branch property dialog + + + + + Color of frame background + Branch property dialog + + ConfluenceAgent - + + + Update existing confluence page + + + + @@ -385,20 +442,11 @@ want to allow this in your system! - FindWidget + FindControlsWidget - + Find: - FindWidget - - - - - HeadingEditor - - - Heading Editor - Name of editor shown as window title + FindControlsWidget @@ -413,25 +461,25 @@ want to allow this in your system! 復原 - + Action Table with actions - + Comment Table with actions - + Undo action Table with actions - + Current state Current bar in history hwindow @@ -440,12 +488,14 @@ want to allow this in your system! JiraAgent - + + Warning 警告 - + + Authentication problem when contacting JIRA @@ -461,11 +511,21 @@ want to allow this in your system! 移除 - + Jira settings Jira settings dialog title + + + Email: + + + + + Username: + + LineEditDialog @@ -496,7 +556,7 @@ want to allow this in your system! Main - + Linkstyle Line 連結樣式 直線 @@ -506,82 +566,77 @@ want to allow this in your system! 連結樣式 粗線 - Set &Background Color - 設定背景顏色(&B) + 設定背景顏色(&B) - + &View 檢視(&V) - - + + Set application to open an URL 設定開啟 URL 的應用程式 - + Overwrite 覆寫 - - - - + + + Cancel 取消 - Couldn't save - 無法儲存 + 無法儲存 - Save modified map before closing it - 關閉已修改圖譜之前儲存它 + 關閉已修改圖譜之前儲存它 - Discard changes - 捨棄變更 + 捨棄變更 - - - - - + + + - + + + Critical Error 嚴重錯誤 - + Open anyway 無論如何都開啟 - + Critcal error 嚴重錯誤 - + Create 建立 - + VYM -Information: VYM - 資訊: - + Load vym map 載入 vym 圖譜 @@ -596,12 +651,12 @@ want to allow this in your system! 匯入:以 vym 圖譜置換所選 - + Add 加入 - + This map does not exist: %1 Do you want to create a new one? @@ -610,30 +665,29 @@ Do you want to create a new one? 您要建立一個新的嗎? - Saved %1 - 已儲存 %1 + 已儲存 %1 - - + + The file %1 exists already. Do you want to 檔案 %1 已經存在。您想要 - + The map %1 has been modified but not saved yet. Do you want to 圖譜 %1 已被修改但尚未儲存。您想要 - + Couldn't open map %1 無法開啟圖譜 %1 - + Take care! Standardflag 注意! @@ -663,13 +717,13 @@ exists already. Do you want to 不好 - + Time critical Standardflag 關鍵時間 - + Idea! Standardflag 點子! @@ -711,15 +765,19 @@ exists already. Do you want to 會有用處 - - + + Import 匯入 - - + + + + + + @@ -727,69 +785,67 @@ exists already. Do you want to - - - + (still experimental) (仍然是實驗性質) - + &Print 列印(&P) - - Export to - 匯出至 + 匯出至 - - - - - + + + + + - - - + + + Warning 警告 - - + + + Couldn't find a viewer to open %1. 找不到檢視器以開啟 %1。 - - + + + Please use Settings-> 請使用 設定值-> - - + + Set application to open PDF files 設定開啟 PDF 檔案的應用程式 - + Oh no! Standardflag 噢,不要! - + Call... Standardflag 呼叫… - + Very important! Standardflag 很重要! @@ -801,7 +857,7 @@ exists already. Do you want to 很不重要! - + Rose Standardflag 玫瑰 @@ -813,36 +869,60 @@ exists already. Do you want to 驚喜! - + Info Standardflag 資訊 - + Firefox Bookmarks Firefox 書籤 - + Search results list FindResultWidget - + File actions toolbar Toolbar for file actions - + &New map File menu - + + &Map + Map menu + + + + + Toggle window + Toggle visibility of editor windows overview in view menu + + + + + Focus window + Toggle visibility of editor windows overview in view menu + + + + + File actions + MainWindow shortcut groups + + + + &Copy to new map File menu @@ -854,19 +934,25 @@ exists already. Do you want to 開啟(&O)… - + Open Recent File menu 開啟最近使用 + &Clear + Clear recent files menu + + + + &Save... File menu 儲存(&S)… - + Save &As... File menu 另存新檔(&A)… @@ -878,232 +964,477 @@ exists already. Do you want to 匯入 - + Export File menu 匯出 - + + Exports + MainWindow shortcut groups + + + + + Repeat last export + + + + Image%1 File export menu - + + Map properties + + + + &Close Map File menu 關閉圖譜(&C) + Exit + MainWindow shortcut groups + + + + E&xit File menu 離開(&X) - - Edit actions toolbar - Toolbar name + + Miscellaneous + MainWindow shortcut groups - - &Undo - Edit menu - 復原(&U) + + Undo/Redo + MainWindow shortcut groups + - - &Redo + + Repeat last action Edit menu - 重做(&R) + - - &Copy - Edit menu - 複製(&C) + + Add + MainWindow shortcut groups + 加入 - - Cu&t - Edit menu - 剪下(&T) + + Move + MainWindow shortcut groups + - - &Paste - Edit menu - 貼上(&P) + + Sort and display + MainWindow shortcut groups + - - - Delete Selection + + Unscroll branch and subtree Edit menu - 刪除選擇 - - - - Add attribute - - Add mapcenter - Canvas context menu + + Geometry of items + MainWindow shortcut groups - - Add branch as child + + Rotate subtree clockwise Edit menu - 加入分支做為子項 + - - Add branch (insert) + + Rotate subtree counter-clockwise Edit menu - 加入分支 (插入) + - - Add branch above - Edit menu - 在上方加入分支 + URLs + Shortcuts in references context menu + - - Add branch below + Open all visible URLs in subtree Edit menu - 在下方加入分支 - - - - &Detach - Context menu - - Detach branch and use as mapcenter - Context menu + + Open all URLs in subtree in private mode + Edit menu - - Sort children - Edit menu + + Connect + Connection shortcuts in MainWindow - - Sort children backwards + + Get data from Jira for subtree Edit menu - - Scroll branch + + Set Jira query Edit menu - 捲曲分支 + - - Expand all branches + + Get page name and details from Confluence Edit menu - Expand one level + Get page name and details from Confluence for child pages Edit menu - - Collapse one level - Edit menu + + vymlinks - linking maps + Shortcuts for vymLinks in MainWindow - - Collapse unselected levels - Edit menu + + Tasks + Shortcuts for tasks in MainWindow - - Unscroll children - Edit menu + + Add image + Edit and context menus - - - - Find... - Edit menu - 尋找… - - Find duplicate URLs - Edit menu + Item properties + Dialog to edit properties of selected item - - Open URL - Edit menu - 開啟 URL + + Follow reference + Context menu + - - Open URL in new tab - Edit menu - 在新頁標中開啟 URL + + Set &Background color and image + - - Open all URLs in subtree (including scrolled branches) - Edit menu + + Views + Mainwindow view shortcut groups - + + Toggle mode to temporary hide parts + View action + + + + + Rotate clockwise + View action + + + + + Rotate view to selection + View action + + + + + Tree editor expand/collapse + Mainwindow view shortcut groups + + + + + Windows + Mainwindow view shortcut groups + + + + + Script output + View action + + + + + History window + View action + + + + + Presentation mode + Mainwindow presentation shortcut groups + + + + + Navigation between maps + Mainwindow view shortcut groups + + + + + Use modifier to pick color from another branch + Mode modifier + + + + + Load user flag + + + + + Jira + SystemFlag + + + + + Logfile settings + Settings action + + + + + Hierarchy + Context menu name + + + + + Geometry + Context menu name + + + + + Edit actions toolbar + Toolbar name + + + + + + &Undo + Edit menu + 復原(&U) + + + + &Redo + Edit menu + 重做(&R) + + + + + &Copy + Edit menu + 複製(&C) + + + + + Cu&t + Edit menu + 剪下(&T) + + + + + &Paste + Edit menu + 貼上(&P) + + + + Delete Selection + Edit menu + 刪除選擇 + + + + Add mapcenter + Canvas context menu + + + + + Add branch as child + Edit menu + 加入分支做為子項 + + + + Add branch (insert) + Edit menu + 加入分支 (插入) + + + + + Add branch above + Edit menu + 在上方加入分支 + + + + + Add branch below + Edit menu + 在下方加入分支 + + + + &Detach + Context menu + + + + + Detach branch and use as mapcenter + Context menu + + + + + Sort children + Edit menu + + + + + Sort children backwards + Edit menu + + + + + Scroll branch + Edit menu + 捲曲分支 + + + + Expand all branches + Edit menu + + + + + Expand one level + Edit menu + + + + + Collapse one level + Edit menu + + + + + Collapse unselected levels + Edit menu + + + + + + Find... + Edit menu + 尋找… + + + + Find duplicate URLs + Edit menu + + + + + Open URL + Edit menu + 開啟 URL + + + Open URL in new tab + Edit menu + 在新頁標中開啟 URL + + + Open all URLs in subtree Edit menu - + Edit URL... Edit menu 編輯 URL… - + Edit local URL... Edit menu - + Use heading for URL Edit menu 使用標頭做為 URL - + Open linked map Edit menu - + Open all vym links in subtree Edit menu @@ -1115,79 +1446,73 @@ exists already. Do you want to 編輯 vym 連結… - + Delete vym link Edit menu 刪除 vym 連結 - + Hide in exports Edit menu 隱藏在匯出中 - + Add timestamp Edit menu - + Add map (insert) Edit menu 加入圖譜 (插入) - + Add map (replace) Edit menu 加入圖譜 (置換) - + Save selection Edit menu 儲存所選 - + Remove children Edit menu - - Property window - Dialog to edit properties of selection - - - - + F&ormat Format menu 格式(&O) - + Pic&k color Edit menu 揀取顏色(&K) - + Color &branch Edit menu 顏色分支(&B) - + Color sub&tree Edit menu 顏色子樹(&T) - + Linkstyle Curve @@ -1203,7 +1528,7 @@ exists already. Do you want to 如果物件並未選取就隱藏連結 - + &Use color of heading for link Branch attribute 使用標頭的顏色做為連結(&U) @@ -1219,48 +1544,37 @@ exists already. Do you want to - - Set &Background image - - - - + Zoom in View action 放大 - + Zoom out View action 縮小 - + reset Zoom View action 重置縮放 - + Center on selection View action - + Editors toolbar Editor Toolbar name - - History Window - View action - - - - + Antialiasing View action @@ -1272,31 +1586,31 @@ exists already. Do you want to - + Next Map View action - + Previous Map View action - + Modifier modes toolbar Modifier Toolbar name - + Use modifier to draw xLinks Mode modifier 使用修飾鍵去繪製 xLinks - + @@ -1309,7 +1623,7 @@ exists already. Do you want to 註記 - + Link to another vym map SystemFlag 連結到另外的 vym 圖譜 @@ -1333,13 +1647,13 @@ exists already. Do you want to 在匯出的圖譜中隱藏物件 - + Standard Flags toolbar Standard Flag Toolbar - + Status - ok,done Standardflag @@ -1363,7 +1677,7 @@ exists already. Do you want to - + Set application to open pdf files Settings action 設定開啟 pdf 檔案的應用程式 @@ -1375,7 +1689,7 @@ exists already. Do you want to 設定開啟外部連結的應用程式 - + Set path for macros Settings action @@ -1405,19 +1719,18 @@ exists already. Do you want to - + Select branch after adding it Settings action 加入分支之後選取它 - Select existing heading Settings action - 選取現有標頭 + 選取現有標頭 - + Exclusive flags Settings action 互斥旗標 @@ -1446,7 +1759,7 @@ exists already. Do you want to - + &Help Help menubar entry 求助(&H) @@ -1476,38 +1789,38 @@ exists already. Do you want to 關於 QT - + Remove Context menu name 移除 - + References (URLs, vymLinks, ...) Context menu name - + Edit XLink Context menu name 編輯 XLink - + Save image Context action 儲存圖像 - + The map %1 is already opened.Opening the same map in multiple editors may lead to confusion when finishing working with vym.Do you want to - + PDF%1 File export menu @@ -1519,36 +1832,31 @@ to confusion when finishing working with vym.Do you want to - - Repeat last export (%1) - - - - + Grow selection Edit menu - + Shrink selection Edit menu - + Reset selection size Edit menu - + Toggle target... Edit menu - + Goto target... Edit menu @@ -1560,204 +1868,191 @@ to confusion when finishing working with vym.Do you want to - + Extract URLs from note Edit menu - + Map target SystemFlag - - Follow XLink - Context menu - - - - + Follow XLink Context menu name - + Firefox Bookmarks Import filters Firefox 書籤 - + Remove only branch and keep its children Edit menu - + Loading: %1 Progress dialog while loading maps - + E&dit Edit menu - + Select default font Branch attribute - + Toolbars Toolbars overview in view menu - + Undo and clipboard toolbar Toolbar for redo/undo and clipboard - + URLs and vymLinks toolbar Toolbar for URLs and vymlinks - + Colors toolbar Colors toolbar name - Enter URL: - 輸入 URL: + 輸入 URL: - + Images Filedialog 圖像 - + Select previous Edit menu - + Select next Edit menu - + Selection toolbar Toolbar name - + Task list TaskEditor - + Script Editor ScriptEditor - + Toggle task Edit menu - + Cycle task status Edit menu - + Reset sleep Task sleep - - - - - + + + + + Sleep %1 days Task sleep - + Sleep %1 day Task sleep - - + + Sleep %1 weeks Task sleep - + Select Select menu - + Unselect all Edit menu - + Rotate counterclockwise View action - - Rotate rclockwise - View action - - - - + Tree editor View action - + Task editor View action - + Slide editor View action @@ -1769,179 +2064,125 @@ to confusion when finishing working with vym.Do you want to - + Settings - + Show keyboard shortcuts Help action - + Tasks Context menu - + or File Dialog - + Save map as - + Property Editor PropertyEditor - + History window HistoryWidget - + Open linked map in background tab Edit menu - + Next slide View action - + Previous slide View action - + Main window Shortcut scope - - Main window - Shortcut group - - - - - Map Editors - Shortcut group - - - - + Text Editors Shortcut group - - &Map - Menu for file actions - - - - + &Restore last session Edit menu - - References Context menu - Shortcuts - - - - - vymlinks - linking maps - Shortcuts - - - - - Exports - Shortcuts - - - - - Tasks - Shortcuts - - - - + Removing parts of a map Shortcuts - + Various Shortcuts - + Selections Shortcuts - + Search functions Shortcuts - + Formatting Shortcuts - - Views - Shortcuts - - - - + Modifier modes Shortcuts - + Check for release notes and updates Settings action - - Set application to zip/unzip files - Settings action - - - - + Download and show release notes Help action @@ -1953,54 +2194,49 @@ to confusion when finishing working with vym.Do you want to - + XLinks Menu for file actions - - Properties - - - - + Move branch up Edit menu 向上移動分支 - + Move branch down Edit menu 向下移動分支 - + Map properties... Edit menu - + Note editor View action - + Heading editor View action - + Set author for new maps Settings action - + Number of visible parents in task editor Settings action @@ -2012,7 +2248,7 @@ to confusion when finishing working with vym.Do you want to - + Webpage (HTML)... File export menu @@ -2036,20 +2272,26 @@ to confusion when finishing working with vym.Do you want to - + Set path for new maps Settings action - + Debug info Option to show debugging info - - + + Untitled + Default name in FileSaveAs dialog + + + + + Couldn't save %1, because of existing lockfile: @@ -2057,18 +2299,7 @@ because of existing lockfile: - - Export as CSV - - - - - Couldn't find configuration for export to LibreOffice - - - - - + HTML Filedialog @@ -2097,13 +2328,18 @@ because of existing lockfile: - + + Enter Jira query: + + + + Couldn't set sleep time to %1. - + %1 items on map Info about map @@ -2140,7 +2376,17 @@ because of existing lockfile: - + + Load images + + + + + Set application to open external links + 設定開啟外部連結的應用程式 + + + Number of undo/redo levels: @@ -2176,40 +2422,34 @@ because of existing lockfile: - + (readonly) - + History for %1 Window Caption - - Export in last used format (%1) to: %2 - status tip - - - - + Couldn't find the documentation %1 in: %2 - + Load vym example map - + Please allow vym to download release notes! - + Allow @@ -2219,12 +2459,12 @@ because of existing lockfile: - + Thank you for enabling downloads! - + Update information @@ -2246,29 +2486,24 @@ because of existing lockfile: - + Script output window - + Save as default map File menu - - (experimental) - - - - + Import Dir... Import Filters - + Confluence (HTML)... File export menu @@ -2291,72 +2526,48 @@ because of existing lockfile: - + Move branch diagonally up Edit menu - + Move branch diagonally down Edit menu - - Get data from JIRA for subtree - Edit menu - - - - - Get page name from Confluence - Edit menu - - - - + Reset delta priority for visible tasks Reset delta - - Add image... - Edit menu - - - - + Goto linked map... Edit menu - + Toggle Presentation mode View action - + Fit view to selection View action - - Script output window - View action - - - - + &Connect - + Connect Shortcuts @@ -2368,54 +2579,41 @@ because of existing lockfile: - + Use modifier to select and reorder objects Mode modifier - - Format painter: pick color from another branch and apply - Mode modifier - - - - + Use modifier to move branches without linking Mode modifier - + Use modifier to move view without selecting Mode modifier - Images - 圖像 - - - - All - Filedialog - + 圖像 - + URL SystemFlag - + Hm... Standardflag - + Important Freemind flag @@ -2542,7 +2740,7 @@ because of existing lockfile: - + Confluence Credentials Settings action @@ -2554,13 +2752,13 @@ because of existing lockfile: - + Show keyboard macros Help action - + Select color (Press Shift for more options) @@ -2571,13 +2769,19 @@ because of existing lockfile: - + + Limited view toolbar + View Toolbar name + + + + User Flags toolbar user Flags Toolbar - + Couldn't load default map: %1 @@ -2587,60 +2791,45 @@ vym will create an empty map now. - + Loaded %1 - - Saving %1... - - - - + Couldn't save %1, because file exists and cannot be changed. - + Saving the map failed: Couldn't rename map to %1 - + Save map as new default map - + You have no permissions to write to - - Overwrite as new default map - - - - + Couldn't save as default, failed to rename to %1 - + Import Firefox Bookmarks into new map - - Open Freemind map - - - - + Link to another vym map 連結到另外的 vym 圖譜 @@ -2650,13 +2839,13 @@ Couldn't rename map to %1 - + Enter sleep time (number of days, hours with 'h' or date YYYY-MM-DD or DD.MM[.YYYY] task sleep time dialog - + tasks total Info about map @@ -2668,36 +2857,47 @@ Couldn't rename map to %1 - + Color of selection box Mainwindow - + Load vym script - + No SSL support available for this build of vym - + Dark theme Settings action - + Show scripting commands Help action - + + + Open %1 map + + + + + Enter Url: + + + + Information @@ -2707,12 +2907,58 @@ Couldn't rename map to %1 - + + Undo (%1) + + + + + Undo: %1 (%2) + + + + + Redo (%1) + + + + + Redo: %1 (%2) + + + + + Repeat last Export %1 +Format: %2 to +%3 + status tip + + + + + Branch + Context menu to follow links + + + + + Url + Context menu to follow links + + + + + Map + Context menu to follow links + + + + <html><h3>Do you allow vym to check online for updates or release notes?</h3>If you allow, vym will <ul><li>check once for release notes</li><li>check regulary for updates and notify you in case you should update, e.g. if there are important bug fixes available</li><li>receive a cookie with a random ID and send some anonymous data, like:<ul><li>vym version</li><li>platform name and the ID (e.g. "Windows" or "Linux")</li><li>if you are using dark theme</li></ul>This data is sent to me, Uwe Drechsel.<p>As vym developer I am motivated to see many people using vym. Of course I am curious to see, on which system vym is used. Maintaining each of the systems requires a lot of my (spare) time.</p> <p>No other data than above will be sent, especially no private data will be collected or sent.(Check the source code, if you don't believe.)</p></li></ul>If you do not allow, <ul><li>nothing will be downloaded and especially I will <b>not be motivated</b> to spend some more thousands of hours on developing a free software tool.</ul>Please allow vym to check for updates :-) - + That's ok, though I would be happy to see many users working with vym and also on which platforms. @@ -2720,25 +2966,31 @@ Couldn't rename map to %1 MapEditor - + + Map Editors + Shortcut group + + + + Edit heading MapEditor 編輯標頭 - + Print vym map MapEditor - - %1 items selected - + + Warning + 警告 - + Map Editor Shortcut scope @@ -2747,38 +2999,38 @@ Couldn't rename map to %1 NoteEditor - Note Editor Name of editor shown as window title - 註記編輯器 + 註記編輯器 QObject - - - - + + + + - - + + - + + - - - + + + Critical Export Error 重要匯出錯誤 - + Could not write %1 無法寫入 %1 @@ -2796,7 +3048,12 @@ Couldn't rename map to %1 匯出失敗。 - + + Could not compress file %1 + + + + Check "%1" in %2 在 %2 中檢查「%1」 @@ -2809,45 +3066,90 @@ Couldn't rename map to %1 無法讀取 %1 - - - - - - - - + + Note Editor + Name of editor shown as window title + 註記編輯器 + + + + Heading Editor + Name of editor shown as window title + + + + + + + + + - - - - - - - + + + + + + Critical Error 嚴重錯誤 - - + + Couldn't find tool to zip/unzip data,or your Windows version is older than Windows 10. + + + + + Couldn't find tar tool to zip data. + + + + + Couldn't find tar tool to unzip data. + + + + + Couldn't start to compress data! +The map could not be saved, please check if backup file is available or export as XML file! + + + + + + + + + zip didn't exit normally zip 並未正常離開 - + + Couldn't start tool to decompress data! + + + + + + Could not start %1 無法啟動 %1 - - + %1 didn't exit normally %1 並未正常離開 - + + Images + 圖像 + + + Overwrite 覆寫 @@ -2857,22 +3159,21 @@ Couldn't rename map to %1 取消 - + Warning 警告 - - - - - + - - - + + + + + + Error @@ -2910,7 +3211,7 @@ Couldn't rename map to %1 - + Trying to create directory for flags: @@ -2921,17 +3222,17 @@ Couldn't rename map to %1 - + Trying to save HTML file: - + No objects in map! - + The directory %1 is not empty. Do you risk to overwrite its contents? write directory @@ -2939,27 +3240,12 @@ Do you risk to overwrite its contents? 您要冒險覆寫它的內容嗎? - + Couldn't read settings from "%1" - - Couldn't move existing file out of the way before saving. - - - - - Couldn't rename %1 back to %2 - - - - - Saved %1, but couldn't remove %2 - - - - + Warning: Version Problem @@ -2968,11 +3254,6 @@ Do you risk to overwrite its contents? <h3>Map is newer than VYM</h3><p>The map you are just trying to load was saved using vym %1. The version of this vym is %2. If you run into problems after pressing the ok-button below, updating vym should help.</p> - - - <p>The map will be opened readonly, because not all information from new maps can be saved with this version of vym. Please be careful! - - Export as CSV @@ -2987,12 +3268,12 @@ Do you risk to overwrite its contents? - + Critical - + Could not find stylesheet %1 @@ -3053,55 +3334,39 @@ Do you risk to overwrite its contents? - + Export as LibreOffice Impress presentation - - - Couldn't remove target of old symbolic link %1 - - - - - Couldn't rename output to target of old symbolic link %1 - - - - - Couldn't link from %1 to target of old symbolic link %2 - - Export as AO report - + Export as Firefox bookmarks - + Could not export as Firefox bookmarks to %1 - - + Flag: %1 Alt tag in HTML export - + Flag: url Alt tag in HTML export - + Image: %1 Alt tag in HTML export @@ -3116,19 +3381,6 @@ Do you risk to overwrite its contents? Could not export as Markdown to %1 - - - - Couldn't start %1 tool to compress data! -The map could not be saved, please check if backup file is available or export as XML file! - - - - - Couldn't start %1 tool to decompress data! - - - Import Firefox bookmarks @@ -3148,39 +3400,28 @@ The map could not be saved, please check if backup file is available or export a - - Couldn't find tool to unzip data,or your Windows version is older than Windows 10. - - - - - Couldn't find tool to zip/unzip data. Please install on your platform and setpath in Settings menu: - - zip tool missing on Linux/Mac platform - - - - - + + Couldn't open "%1" . - + Existing lockfiles have been ignored for the maps listed below. Please check, if the maps might be openend in another instance of vym: - + Couldn't write macros to "%1" . + Couldn't read script from "%1" . @@ -3192,46 +3433,50 @@ The map could not be saved, please check if backup file is available or export a - + JIRA agent not setup. + + + %1 +Line %2, column %3 + Error message while parsing XML + + ScriptEditor - + Warning 警告 - + Save script - The file %1 exists already. Do you want to overwrite it? dialog 'save as' - 檔案 %1 已經存在。 + 檔案 %1 已經存在。 您要覆寫它嗎? {1 ?} - Overwrite - 覆寫 + 覆寫 - Cancel - 取消 + 取消 - + Load script @@ -3240,7 +3485,7 @@ Do you want to overwrite it? 儲存 - + Slide Mode in scriptEditor @@ -3252,7 +3497,13 @@ Do you want to overwrite it? - + + Script Editor + Shortcut scope + + + + Couldn't get model to save script into slide! @@ -3262,7 +3513,7 @@ Do you want to overwrite it? - + Script Mode in scriptEditor @@ -3274,12 +3525,12 @@ Do you want to overwrite it? - + Macros saved to %1 - + Script saved to %1 @@ -3294,7 +3545,7 @@ Do you want to overwrite it? TaskEditor - + Show only tasks from current map Filters in task Editor @@ -3330,11 +3581,17 @@ Do you want to overwrite it? Filters in task Editor + + + Task Editor + Shortcut group + + TaskModel - + Prio TaskEditor @@ -3391,22 +3648,22 @@ Do you want to overwrite it? TextEditor - + &Import... 匯入(&I)… - + &Export... 匯出(&E)… - + &Print... 列印(&P)… - + &Undo 復原(&U) @@ -3421,27 +3678,24 @@ Do you want to overwrite it? 全部選取並複製(&A) - &Copy - 複製(&C) + 複製(&C) - Cu&t - 剪下(&T) + 剪下(&T) - &Paste - 貼上(&P) + 貼上(&P) - + &Delete All 刪除全部(&D) - + &Settings 設定值(&S) @@ -3461,22 +3715,20 @@ Do you want to overwrite it? 定寬字型為預設(&F) - Export &As... (HTML) - 匯出為(HTML)(&A)… + 匯出為(HTML)(&A)… - + Export &As...(ASCII) 匯出為(ASCII)(&A)… - &Color... - 顏色(&C)… + 顏色(&C)… - + &Bold 粗體(&B) @@ -3491,108 +3743,171 @@ Do you want to overwrite it? 底線(&U) - + &Left 靠左(&L) - + C&enter 置中(&E) - + &Right 靠右(&R) - + &Justify 對齊(&J) - + Export Note to single file 匯出註記到單一檔案 - - + + Overwrite 覆寫 - - + + Cancel 取消 - + Export Note to single file (ASCII) 匯出註記到單一檔案 (ASCII) - + &Font hint 字型修飾(&F) - + Subs&cript 下標(&C) - + Su&perscript 上標(&P) - + Note Editor 註記編輯器 - + F&ormat 格式(&O) - - Ready - Statusbar message - - - - + No filename available for this note. Statusbar message - + Note Actions - + &Note Menubar + + + File actions + TextEditor shortcut groups + + + Edit actions + TextEditor shortcut groups + + + + Edit Actions 編輯動作 - + + &Copy + Edit menu + 複製(&C) + + + + Cu&t + Edit menu + 剪下(&T) + + + + &Paste + Edit menu + 貼上(&P) + + + + Insert image + TextEditor + + + + + Format actions + TextEditor shortcut groups + + + + &Richtext - - + + &Text Color... + + + + + &Text background color... + + + + + Set RichText mode editor background color + TextEditor + + + + + Set RichText mode default text color + TextEditor + + + + + Set RichText mode default text background color + TextEditor + + + + The file %1 exists already. Do you want to overwrite it? @@ -3602,65 +3917,81 @@ Do you want to overwrite it? ?} - + Couldn't export note dialog 'save note as' 無法匯出註記 - + Print TextEditor 列印 - - Font hints - toolbar in texteditor + + Text color + TextEditor windows - - Fonts - toolbar in texteditor + + Text background color + TextEditor windows - - Format - toolbar in texteditor + + Text editor background color + TextEditor windows - - - - Texteditor - Shortcuts + + Text editor default text color + TextEditor windows - - Edi&t + + Text editor default text background color + TextEditor windows - - Set RichText default background color + + Load image TextEditor + 載入圖像 + + + + Font hints + toolbar in texteditor - - Set RichText default font color - TextEditor + + Fonts + toolbar in texteditor + + + + + Format + toolbar in texteditor + + + + + Edi&t TreeEditor - + Select upper object Tree Editor @@ -3675,49 +4006,67 @@ Do you want to overwrite it? VymModel - + unnamed 未命名 - - - - + + + Critical Parse Error 嚴重的解析錯誤 - - + + + + + Critical Load Error 嚴重的載入錯誤 - + Couldn't create temporary directory before load - + + Uncompressing %1 + + + + + Loading %1 + + + + + Couldn't find %1 in map file. + + + + + Couldn't find a map (*.xml) in .vym archive. 在 .vym 檔案夾中找不到圖譜 (*.xml)。 - + compressed (vym default) 已壓縮 (vym 預設) - - + + Cancel 取消 - + Save Error 儲存錯誤 @@ -3735,30 +4084,21 @@ could not be renamed before saving - - Couldn't create temporary directory before save - - - - - - - + Images 圖像 - Load image - 載入圖像 + 載入圖像 - + Save image 儲存圖像 - + The file %1 exists already. Do you want to overwrite it? 檔案 %1 已經存在。 @@ -3766,12 +4106,12 @@ Do you want to overwrite it? ?} {1 ?} - + Overwrite 覆寫 - + Critical Import Error 嚴重的匯入錯誤 @@ -3781,13 +4121,13 @@ Do you want to overwrite it? 找不到目錄 %1 - + Choose directory structure to import 選擇目錄結構以匯入 - + The file of the map on disk has changed: %1 @@ -3796,82 +4136,129 @@ Do you want to reload that map with the new file? - + Reload - + Ignore - + Autosave disabled during undo. - + Note FindAll in VymModel 註記 - + + Could not setup JiraAgent to retrieve data from Jira + + + + Export map as image - + + + Export to + 匯出至 + + + Export XML to directory 匯出 XML 到目錄 - + Critical Export Error 重要匯出錯誤 - - Load background image + + Couldn't find configuration for export to LibreOffice Impress + + + + + + %1 items selected + Status message when selecting multiple items - + Export map as PDF - - + + Critical Error 嚴重錯誤 - + Couldn't save %1 無法儲存 %1 - + Couldn't save QImage %1 in format %2 - - + All Filedialog - - + + Couldn't access zipDir %1 + + + + + + Saving %1... + + + + + Couldn't save + 無法儲存 + + + + Compressing %1 + + + + + + + Saved %1 + + + + + + Warning 警告 - + + (still experimental) (仍然是實驗性質) @@ -3883,46 +4270,45 @@ Do you want to reload that map with the new file? - + Critical Save Error - + unknown user Default for lockfiles of maps - + Warning: Map already opended VymModel - New map New map - 新圖譜 + 新圖譜 - + Export map as SVG - + Export map as XML - + unknown user default name for map author in settings - + Cannot create lockfile of map! It will be opened in readonly mode. @@ -3935,7 +4321,7 @@ Do you want to reload that map with the new file? 警告 - + Map seems to be already opened in another vym instance! Map is locked by "%1" on "%2" @@ -3949,12 +4335,12 @@ Please only delete the lockfile, if you are sure nobody else is currently workin - + Couldn't remove lockfile for %1 - + The map %1 did not use the compressed vym file format. Writing it uncompressed will also write images @@ -3964,28 +4350,39 @@ Do you want to write the map - + uncompressed, potentially overwrite existing data - - Could not find Jira ticket pattern in %1 + + Contacting Jira... VymModel - - Contacting Jira... + + + Received Jira data. VymModel + + + VymModelWrapper - - Received Jira data. - VymModel + + + Saving the selection in map failed: +Couldn't rename map to %1 + + + + Critical Error + 嚴重錯誤 + VymProcess @@ -4009,13 +4406,13 @@ Do you want to write the map VymView - + Tree Editor Title of dockable editor widget - + Slide Editor Title of dockable editor widget @@ -4059,40 +4456,5 @@ Do you want to write the map Close 關閉 - - - zip settings - dialog window title - - - - - Path to 7z.exe - zip tool settings dialog - - - - - Set path to 7z to zip/unzip files - - - - - Set path to zip files - - - - - Set path to unzip files - - - - - - - - Status: %1 - - diff --git a/macros/macros.vys b/macros/macros.vys index 54ee4c7..364161c 100644 --- a/macros/macros.vys +++ b/macros/macros.vys @@ -4,26 +4,38 @@ //! Helper function to toggle frame -function toggle_frame_branch(map) +function toggle_frame_branch(color, msg) { map = vym.currentMap(); - b = map.selectedBranch(); + branches = map.selectedBranches(); - if (b.getFrameType(true) == "NoFrame" ) { - b.setFrameType (true, "RoundedRectangle"); - } else - b.setFrameType (true, "NoFrame"); + for (b of branches) { + if (b.getFrameType(true) == "NoFrame" ) { + b.setFrameType (true, "RoundedRectangle"); + b.setFrameBrushColor(true, color); + vym.statusMessage(msg); + } else { + b.setFrameType (true, "NoFrame"); + vym.statusMessage("No frame for branch"); + } + } } -function toggle_frame_subtree(map) +function toggle_frame_subtree(color, msg) { map = vym.currentMap(); - b = map.selectedBranch(); + branches = map.selectedBranches(); - if (b.getFrameType(false) == "NoFrame" ) { - b.setFrameType (false, "RoundedRectangle"); - } else - b.setFrameType (false, "NoFrame"); + for (b of branches) { + if (b.getFrameType(false) == "NoFrame" ) { + b.setFrameType (false, "RoundedRectangle"); + b.setFrameBrushColor(false, color); + vym.statusMessage(msg); + } else { + b.setFrameType (false, "NoFrame"); + vym.statusMessage("No frame for subtree"); + } + } } @@ -33,8 +45,9 @@ function colorBranchWithQuickColor(n) vym.selectQuickColor(n); c = vym.currentColor(); - b = map.selectedBranch(); - b.colorBranch(c); + branches = map.selectedBranches(); + for (b of branches) + b.colorBranch(c); } function colorSubtreeWithQuickColor(n) @@ -155,114 +168,49 @@ function macro_f12() //! Macro Shift + F1: Frame background light red function macro_shift_f1() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background light red"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#ffb3b4"); - vym.statusMessage(status); - + toggle_frame_branch ( "#ffb3b4", "Branch frame background light red" ); } //! Macro Shift + F2: Frame background light green function macro_shift_f2() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background light green"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#bdffd6"); - vym.statusMessage(status); + toggle_frame_branch ( "#bdffd6", "Branch frame background light green"); } //! Macro Shift + F3: Frame background light yellow function macro_shift_f3() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background light yellow"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#efefb3"); - vym.statusMessage(status); + toggle_frame_branch ( "#efefb3", "Branch frame background light yellow"); } //! Macro Shift + F4: Frame background light blue function macro_shift_f4() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background light blue"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#e2e6ff"); - vym.statusMessage(status); + toggle_frame_branch ( "#e2e6ff", "Branch frame background light blue"); } //! Macro Shift + F5: Frame background light grey function macro_shift_f5() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background light grey"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#d6d6d6"); - vym.statusMessage(status); + toggle_frame_branch ( "#d6d6d6", "Branch frame background light grey"); } //! Macro Shift + F6: Frame background purple function macro_shift_f6() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background purple"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#ffaaff"); - vym.statusMessage(status); + toggle_frame_branch ( "#ffaaff", "Branch frame background purple"); } //! Macro Shift + F7: Frame background white function macro_shift_f7() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType() == "NoFrame") { - status = "Background white"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor("#ffffff"); - vym.statusMessage(status); + toggle_frame_branch ( "#ffffff", "Branch frame background white"); } //! Macro Shift + F8: Frame background black function macro_shift_f8() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Background off"; - if (b.getFrameType(true) == "NoFrame") { - status = "Background black"; - } - toggle_frame_branch ( map ); - b.setFrameBrushColor(true, "#000000"); - vym.statusMessage(status); + toggle_frame_branch ( "#000000", "Branch frame background black"); } // Macro Shift + F9: @@ -290,114 +238,50 @@ function macro_shift_f12() //! Macro Ctrl + F1: Subtree background light red function macro_ctrl_f1() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background light red"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#ffb3b4"); - vym.statusMessage(status); + toggle_frame_subtree ( "#ffb3b4", "Branch frame background light red"); } //! Macro Ctrl + F2: Subtree background light green function macro_ctrl_f2() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background light green"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#bdffd6"); - vym.statusMessage(status); + toggle_frame_subtree ( "#bdffd6", "Branch frame background light green"); } //! Macro Ctrl + F3: Subtree background light yellow function macro_ctrl_f3() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "SUbtree background light yellow"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#efefb3"); - vym.statusMessage(status); + toggle_frame_subtree ( "#efefb3", "Branch frame background light yellow"); } //! Macro Ctrl + F4: Subtree background light blue function macro_ctrl_f4() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background light bluex"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#e2e6ff"); - vym.statusMessage(status); + toggle_frame_subtree ( "#e2e6ff", "Branch frame background light yellow"); } //! Macro Ctrl + F5: Subtree background light grey function macro_ctrl_f5() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background light grey"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#d6d6d6"); - vym.statusMessage(status); + toggle_frame_subtree ( "#d6d6d6", "Branch frame background light grey"); } //! Macro Ctrl + F6: Subtree background purple function macro_ctrl_f6() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background purple"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#ffaaff"); - vym.statusMessage(status); + toggle_frame_subtree ( "#ffaaff", "Branch frame background light purple"); } //! Macro Ctrl + F7: Subtree background white function macro_ctrl_f7() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background white"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#ffffff"); - vym.statusMessage(status); + toggle_frame_subtree ( "#ffffff", "Branch frame background light white"); } //! Macro Ctrl + F8: Subtree background black function macro_ctrl_f8() { - map = vym.currentMap(); - b = map.selectedBranch(); - status = "Subtree background off"; - if (b.getFrameType(false) == "NoFrame") { - status = "Subtree background black"; - } - toggle_frame_subtree ( map ); - b.setFrameBrushColor(false, "#000000"); - vym.statusMessage(status); + toggle_frame_subtree ( "#000000", "Branch frame background light black"); } //! Macro Ctrl + F9: diff --git a/src/branch-container.cpp b/src/branch-container.cpp index dddaacf..5b616f4 100644 --- a/src/branch-container.cpp +++ b/src/branch-container.cpp @@ -4,6 +4,7 @@ #include "branch-container.h" #include "branchitem.h" +#include "log.h" #include "flag-container.h" #include "flag.h" #include "flagrow-container.h" @@ -284,14 +285,6 @@ void BranchContainer::addToBranchesContainer(BranchContainer *bc) branchesContainer->addContainer(bc); } -void BranchContainer::updateImagesContainer() -{ - if (imagesContainer && imagesContainer->childItems().count() == 0) { - delete imagesContainer; - imagesContainer = nullptr; - } -} - void BranchContainer::createOuterContainer() { if (!outerContainer) { @@ -372,6 +365,7 @@ void BranchContainer::updateTransformations() void BranchContainer::updateChildrenStructure() { + logDebug("BC::updateChildrenStructure of " + info()); if (branchesContainerLayoutInt == List) { if (!listContainer) { // Create and setup a listContainer *below* the ornamentsContainer @@ -610,6 +604,14 @@ void BranchContainer::updateChildrenStructure() } } +void BranchContainer::updateImagesContainer() +{ + if (imagesContainer && imagesContainer->childItems().count() == 0) { + delete imagesContainer; + imagesContainer = nullptr; + } +} + void BranchContainer::updateImagesContainerParent() { if (outerContainer) diff --git a/src/branch-container.h b/src/branch-container.h index 5e120c5..8f0fe7c 100644 --- a/src/branch-container.h +++ b/src/branch-container.h @@ -48,7 +48,6 @@ class BranchContainer : public BranchContainerBase, public LinkableContainer { void addToBranchesContainer(BranchContainer *bc); private: - void updateImagesContainer(); //! Remove unused containers and add needed ones void createOuterContainer(); //! Used if only images have FloatingBounded layout void deleteOuterContainer(); void updateTransformations(); //! Update rotation and scaling @@ -57,6 +56,7 @@ class BranchContainer : public BranchContainerBase, public LinkableContainer { void updateChildrenStructure(); //! Depending on layouts of children, rearrange structure private: + void updateImagesContainer(); //! Remove unused containers and add needed ones void updateImagesContainerParent(); //! Set parent depending on outerContainer public: diff --git a/src/branchpropeditor.cpp b/src/branchpropeditor.cpp index 0671f60..ec4fbe8 100644 --- a/src/branchpropeditor.cpp +++ b/src/branchpropeditor.cpp @@ -5,12 +5,14 @@ #include "attributeitem.h" #include "branch-container.h" #include "branchitem.h" +#include "mainwindow.h" #include "settings.h" #include "task.h" #include "vymmodel.h" extern Settings settings; extern QString vymName; +extern Main *mainWindow; BranchPropertyEditor::BranchPropertyEditor(QWidget *parent) : QDialog(parent) @@ -100,6 +102,13 @@ BranchPropertyEditor::BranchPropertyEditor(QWidget *parent) break; } } + + QAction *a = new QAction(this); + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + a->setShortcut(Qt::CTRL | Qt::Key_D); + addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(closeWindow())); + } BranchPropertyEditor::~BranchPropertyEditor() @@ -113,6 +122,12 @@ BranchPropertyEditor::~BranchPropertyEditor() delete (attributeModel); } +void BranchPropertyEditor::closeWindow() +{ + parentWidget()->hide(); + mainWindow->satelliteVisibilityChanged(); +} + void BranchPropertyEditor::setItem(TreeItem *ti) { // Reset pointers to currently displayed TreeItem @@ -737,7 +752,6 @@ void BranchPropertyEditor::columnWidthAutoChanged() void BranchPropertyEditor::columnWidthChanged(int i) { - qDebug() << __func__; if (model) model->setHeadingColumnWidth(i); diff --git a/src/branchpropeditor.h b/src/branchpropeditor.h index 08fdd85..eccde54 100644 --- a/src/branchpropeditor.h +++ b/src/branchpropeditor.h @@ -24,6 +24,9 @@ class BranchPropertyEditor : public QDialog { BranchPropertyEditor(QWidget *parent = 0); ~BranchPropertyEditor(); + public slots: + void closeWindow(); + public: void setItem(TreeItem *); void setModel(VymModel *); diff --git a/src/container.cpp b/src/container.cpp index ae2ec65..ea7a1f5 100644 --- a/src/container.cpp +++ b/src/container.cpp @@ -7,6 +7,7 @@ #include "tmp-parent-container.h" #include "branchitem.h" +#include "log.h" #include "misc.h" #define qdbg() qDebug().nospace().noquote() @@ -22,6 +23,9 @@ Container::Container() Container::~Container() { //qdbg() << "Destr Container" << info() << this; + + // The destructor of QGraphicsItem will implicitely remove the container from + // parents set of children } void Container::copy(Container *other) @@ -157,7 +161,7 @@ QString Container::info (const QString &prefix) //+ QString(" a: %1").arg(qRound(rotation())) //+ QString(" scenePos: %1").arg(toS(scenePos(), 0)) //+ QString(" pos: %1").arg(toS(pos(), 0)) - //+ QString(" rect: %1").arg(toS(rect(), 0)) + + QString(" rect: %1").arg(toS(rect(), 0)) //+ QString(" sceneRect: %1").arg(toS(mapRectToScene(rect()), 0)) //+ QString(" vis: %1").arg(isVisible()); + QString(" Layout: %1").arg(layoutString()) @@ -445,10 +449,17 @@ QPointF Container::alignTo(PointName ownPointName, Container* targetContainer, P return mapFromItem(targetContainer, targetContainer->pointByName(targetPointName)) - pointByName(ownPointName); } +#include // FIXME-2 debugging void Container::addContainer(Container *c, int z) { if (childContainers().contains(c)) return; + if (!c) { // FIXME-2 debugging + logDebug("Container::addContainer adding 0 to " + info() + " would crash"); + QMessageBox::warning(0, "Warning", "Would have crashed now in ::addContainer"); + return; + } + c->setParentItem(this); if (z > 0) // Update z of container diff --git a/src/dockeditor.cpp b/src/dockeditor.cpp index 52f35ea..0d62be7 100644 --- a/src/dockeditor.cpp +++ b/src/dockeditor.cpp @@ -29,9 +29,3 @@ void DockEditor::changeTopLevel(bool topLevel) else setWindowTitle(editorTitle); } - -void DockEditor::closeEvent(QCloseEvent *event) -{ - // Pass event on to overloaded editors (TreeEditor, SlideEditor) - ((DockEditor*)widget())->closeEvent(event); -} diff --git a/src/dockeditor.h b/src/dockeditor.h index 0853eaf..28d57ee 100644 --- a/src/dockeditor.h +++ b/src/dockeditor.h @@ -17,9 +17,6 @@ class DockEditor : public QDockWidget { public slots: void changeTopLevel(bool topLevel); - protected: - void closeEvent(QCloseEvent *event); - private: QString editorTitle; VymModel *model; diff --git a/src/findcontrolswidget.cpp b/src/findcontrolswidget.cpp index 02760b8..c7b8770 100644 --- a/src/findcontrolswidget.cpp +++ b/src/findcontrolswidget.cpp @@ -15,6 +15,7 @@ extern Main *mainWindow; extern bool usingDarkTheme; extern QString iconTheme; +extern QString editorFocusInStyle; FindControlsWidget::FindControlsWidget(QWidget *) { @@ -29,6 +30,7 @@ FindControlsWidget::FindControlsWidget(QWidget *) findcombo->setMinimumWidth(250); findcombo->setMaxCount(10); findcombo->setEditable(true); + findcombo->setStyleSheet("QComboBox:focus{" + editorFocusInStyle + "}"); QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); findcombo->setSizePolicy(sizePolicy); diff --git a/src/findresulttreeview.cpp b/src/findresulttreeview.cpp index c5b615b..87efcc0 100644 --- a/src/findresulttreeview.cpp +++ b/src/findresulttreeview.cpp @@ -28,8 +28,7 @@ void FindResultTreeView::init() addAction(a); connect(a, SIGNAL(triggered()), this, SLOT(startEdit())); - - // FIXME-3 Set borders when in focus to editorFocusStyle + setStyleSheet("QTreeView:focus{" + editorFocusInStyle + "}"); } FindResultTreeView::~FindResultTreeView() diff --git a/src/findresultwidget.cpp b/src/findresultwidget.cpp index 7dc3a56..156ad79 100644 --- a/src/findresultwidget.cpp +++ b/src/findresultwidget.cpp @@ -37,6 +37,12 @@ FindResultWidget::FindResultWidget(QWidget *) connect(a, SIGNAL(triggered()), this, SLOT(closeWindow())); addAction(a); + a = new QAction("Switch focus", this); + a->setShortcut(Qt::Key_Tab); // Switch focus between QComboBox and QTreeView + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + connect(a, SIGNAL(triggered()), this, SLOT(switchFocus())); + addAction(a); + QVBoxLayout *mainLayout = new QVBoxLayout; mainLayout->addWidget(view); @@ -54,6 +60,19 @@ FindResultWidget::FindResultWidget(QWidget *) connect(resultsModel, SIGNAL(layoutChanged()), view, SLOT(expandAll())); } +void FindResultWidget::switchFocus() +{ + if (view->hasFocus()) + setFocus(); + else + view->setFocus(); +} + +void FindResultWidget::setFocus() +{ + findControlsWidget->setFocus(); +} + void FindResultWidget::addItem(TreeItem *ti) { if (ti) { @@ -98,7 +117,7 @@ void FindResultWidget::popup() { show(); parentWidget()->show(); - findControlsWidget->setFocus(); + view->setFocus(); } void FindResultWidget::cancelPressed() diff --git a/src/findresultwidget.h b/src/findresultwidget.h index fa7cc0d..682d0cb 100644 --- a/src/findresultwidget.h +++ b/src/findresultwidget.h @@ -19,6 +19,12 @@ class FindResultWidget : public QWidget { public: FindResultWidget(QWidget *parent = nullptr); + + public slots: + void switchFocus(); + + public: + void setFocus(); FindResultModel *getResultModel(); void addItem(TreeItem *ti); void addItem(const QString &s); diff --git a/src/heading-container.cpp b/src/heading-container.cpp index 1c43fc2..dabbd1a 100644 --- a/src/heading-container.cpp +++ b/src/heading-container.cpp @@ -47,7 +47,7 @@ void HeadingContainer::setHeading(const VymText &vt) { headingInt = vt; - QGraphicsTextItem *t; + QGraphicsTextItem *t; // FIXME-3 Consider using QGraphicsSimpleTextitem for plaintext (#184) QString s = vt.getText(); @@ -58,6 +58,7 @@ void HeadingContainer::setHeading(const VymText &vt) t = new QGraphicsTextItem(this); t->setHtml(s); t->setDefaultTextColor(headingColorInt); + t->setTextWidth(columnWidthInt * 10); // Assuming the average character has a width of approx. headingLines.append(t); // Translate line to move center to origin @@ -179,7 +180,7 @@ void HeadingContainer::setColor(const QColor &c) } } -void HeadingContainer::setColumnWidth(const int &i) +void HeadingContainer::setColumnWidth(const int &i) // FIXME-2 colWidth only used for plain text { columnWidthInt = i; setHeading(headingInt); diff --git a/src/headingeditor.cpp b/src/headingeditor.cpp index 1455a5f..ab5010d 100644 --- a/src/headingeditor.cpp +++ b/src/headingeditor.cpp @@ -4,9 +4,9 @@ extern Settings settings; extern QString vymName; -HeadingEditor::HeadingEditor(const QString &eName) : TextEditor(eName) +HeadingEditor::HeadingEditor(const QString &id, const QString &scope) : TextEditor(id, scope) { - editorName = eName; + // qDebug() << "Constr HE" << id << scope; setWindowTitle(""); setUseMapBackgroundColor(true); diff --git a/src/headingeditor.h b/src/headingeditor.h index af2670b..4a61062 100644 --- a/src/headingeditor.h +++ b/src/headingeditor.h @@ -6,7 +6,7 @@ class HeadingEditor : public TextEditor { Q_OBJECT public: - HeadingEditor(const QString &eName = "undefined"); + HeadingEditor(const QString &id, const QString &scope); ~HeadingEditor(); }; diff --git a/src/historywindow.cpp b/src/historywindow.cpp index 2d41b9d..2977a17 100644 --- a/src/historywindow.cpp +++ b/src/historywindow.cpp @@ -87,6 +87,11 @@ HistoryWindow::~HistoryWindow() ui.historyTable->columnWidth(i)); } +void HistoryWindow::setFocus() +{ + ui.historyTable->setFocus(); +} + void HistoryWindow::clearRow(int row) { QTableWidgetItem *it; diff --git a/src/historywindow.h b/src/historywindow.h index 639fd51..0c6c2f9 100644 --- a/src/historywindow.h +++ b/src/historywindow.h @@ -13,6 +13,7 @@ class HistoryWindow : public QDialog { public: HistoryWindow(QWidget *parent = 0); ~HistoryWindow(); + void setFocus(); void update(SimpleSettings &); void setStepsTotal(int); diff --git a/src/image-container.cpp b/src/image-container.cpp index e8dbaf1..2b64410 100644 --- a/src/image-container.cpp +++ b/src/image-container.cpp @@ -24,7 +24,7 @@ ImageContainer::ImageContainer() ImageContainer::~ImageContainer() { - //qDebug() << "Destr ImageContainer this=" << this << " imageType = " << imageType ; + // qDebug() << "Destr ImageContainer this=" << this << " imageType = " << imageType ; if (imageItem) imageItem->unlinkImageContainer(); } diff --git a/src/imageitem.cpp b/src/imageitem.cpp index 727a939..973530e 100644 --- a/src/imageitem.cpp +++ b/src/imageitem.cpp @@ -26,7 +26,7 @@ ImageItem::ImageItem():MapItem(nullptr) ImageItem::~ImageItem() { - //qDebug() << "Destr ImageItem " << this << " ic=" << imageContainer << " fpInZipDir=" << filePathInZipDir; + // qDebug() << "Destr ImageItem " << this << " ic=" << imageContainer << " fpInZipDir=" << filePathInZipDir; if (imageContainer) { delete imageContainer; diff --git a/src/imports.cpp b/src/imports.cpp index 6eca8b2..2701028 100644 --- a/src/imports.cpp +++ b/src/imports.cpp @@ -76,7 +76,8 @@ bool ImportFirefoxBookmarks::transform() QJsonObject jsobj = jsdoc.object(); QJsonArray jsarr = jsobj["children"].toArray(); - foreach (const QJsonValue &value, jsarr) { + for (auto value : jsarr) { + // For modifications also forwarding references with "auto && v" could be used parseJson (value, ParseMode::countBookmarks); } @@ -166,8 +167,8 @@ bool ImportFirefoxBookmarks::parseJson(QJsonValue jsval, ParseMode mode, BranchI if (jsobj.contains("children") && jsobj["children"].isArray()) { QJsonArray jsarr = jsobj["children"].toArray(); - foreach (const QJsonValue &val, jsarr) { - parseJson (val, mode, selbi); + for (auto value : jsarr) { + parseJson (value, mode, selbi); } if (selbi->depth() > 2) { diff --git a/src/log.cpp b/src/log.cpp new file mode 100644 index 0000000..d1dbcdb --- /dev/null +++ b/src/log.cpp @@ -0,0 +1,22 @@ +#include "log.h" + +#include "file.h" + +extern bool useActionLog; +extern QString actionLogPath; + +void logDebug(const QString &comment,const QString &area, const QString &func) +{ + if (!useActionLog) return; + + QString f; + if (!func.isEmpty()) + f = "::" + func; + + QString log = QString("\n// %1 [Debug %2] %3\n") + .arg(QDateTime::currentDateTime().toString(Qt::ISODateWithMs), f, comment); + + // std::cout << log.toStdString() << std::endl << std::flush; + + appendStringToFile(actionLogPath, log); +} diff --git a/src/log.h b/src/log.h new file mode 100644 index 0000000..2ef1fbe --- /dev/null +++ b/src/log.h @@ -0,0 +1,12 @@ +#ifndef DEBUG_H +#define DEBUG_H + +#include +#include + +extern bool useActionLog; +extern QString actionLogPath; + +void logDebug(const QString &comment,const QString &area = "", const QString &func = ""); + +#endif diff --git a/src/main.cpp b/src/main.cpp index 88949f7..732e6ec 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -55,7 +55,7 @@ NoteEditor *noteEditor; BranchPropertyEditor *branchPropertyEditor; // initialized in mainwindow -Main *mainWindow; +Main *mainWindow = nullptr; ScriptEditor *scriptEditor; ScriptOutput *scriptOutput; FindControlsWidget *findControlsWidget; @@ -541,12 +541,12 @@ int main(int argc, char *argv[]) bool ok; if (!localeName.isEmpty()) // Use localeName to load specific language - ok = vymTranslator.load(QString("vym.%1.qm").arg(localeName), vymTranslationsDir.path()); + ok = vymTranslator.load(QString("vym_%1.qm").arg(localeName), vymTranslationsDir.path()); else { ok = vymTranslator.load(QLocale(), "vym", ".", vymTranslationsDir.path(), ".qm"); if (!ok) // No system locale found, go for English - ok = vymTranslator.load(QString("vym.en.qm"), vymTranslationsDir.path()); + ok = vymTranslator.load(QString("vym_en.qm"), vymTranslationsDir.path()); } if (!ok) { @@ -575,9 +575,9 @@ int main(int argc, char *argv[]) userFlagsMaster->setPrefix("user/"); // Initialize editors - noteEditor = new NoteEditor(QObject::tr("Note Editor", "Name of editor shown as window title")); + noteEditor = new NoteEditor("NoteEditor", QObject::tr("Note Editor", "Name of editor shown as window title")); - headingEditor = new HeadingEditor(QObject::tr("Heading Editor", "Name of editor shown as window title")); + headingEditor = new HeadingEditor("HeadingEditor", QObject::tr("Heading Editor", "Name of editor shown as window title")); branchPropertyEditor = new BranchPropertyEditor(); // Initially read filenames of last session, before settings are @@ -589,7 +589,8 @@ int main(int argc, char *argv[]) actionLogPath = settings.value("/logfile/path", QDir::homePath() + "/vym.log").toString(); // Create MainWindow (after creating editors) - Main m; + // Main m; + mainWindow = new Main; // Add Escape-keys to editors (after creating MainWindow) QAction *a = new QAction("Cancel", noteEditor); @@ -604,6 +605,17 @@ int main(int argc, char *argv[]) headingEditor->connect(a, SIGNAL(triggered()), mainWindow, SLOT(escapePressed())); headingEditor->addAction(a); + a = new QAction("Cancel", taskEditor); + a->setShortcut(Qt::Key_Escape); // Escape in TaskEditor + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + taskEditor->connect(a, SIGNAL(triggered()), mainWindow, SLOT(escapePressed())); + taskEditor->addAction(a); + + a = new QAction("Cancel", branchPropertyEditor); + a->setShortcut(Qt::Key_Escape); // Escape in BranchPropertyEditor + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + branchPropertyEditor->connect(a, SIGNAL(triggered()), mainWindow, SLOT(escapePressed())); + branchPropertyEditor->addAction(a); // Check for zip tools zipToolAvailable = ZipAgent::checkZipTool(); @@ -627,8 +639,8 @@ int main(int argc, char *argv[]) QObject::tr("Couldn't find tar tool to unzip data. ")); #endif - m.setWindowIcon(QPixmap(":/vym.png")); - m.fileNew(); + mainWindow->setWindowIcon(QPixmap(":/vym.png")); + mainWindow->fileNew(); if (debug) // Show debug info AFTER creating MainWindow @@ -652,27 +664,27 @@ int main(int argc, char *argv[]) } if (options.isActive("batch")) - m.hide(); + mainWindow->hide(); else { // Paint Mainwindow first time qApp->processEvents(); - m.show(); + mainWindow->show(); } // Show release notes and afterwards updates - m.checkReleaseNotesAndUpdates(); + mainWindow->checkReleaseNotesAndUpdates(); if (options.isActive("shortcuts")) switchboard .printASCII(); // FIXME-5 global switchboard and exit after listing - m.loadCmdLine(); + mainWindow->loadCmdLine(); - //m.resize(1600, 900); // only for screencasts + //mainWindow->resize(1600, 900); // only for screencasts // Restore last session if (options.isActive("restore")) - m.fileRestoreSession(); + mainWindow->fileRestoreSession(); // Load script if (options.isActive("load")) { @@ -700,7 +712,7 @@ int main(int argc, char *argv[]) QMessageBox::warning(0, error, msg); return 0; } - m.runScript(scriptEditor->getScriptFile()); + mainWindow->runScript(scriptEditor->getScriptFile()); } // Enable some last minute cleanup @@ -708,13 +720,14 @@ int main(int argc, char *argv[]) // For benchmarking or if test script is done // we may want to quit instead of entering event loop - if (options.isActive("quit") || m.exitAfterScript()) - m.fileExitVYM(); + if (options.isActive("quit") || mainWindow->exitAfterScript()) + mainWindow->fileExitVYM(); else app.exec(); // Cleanup delete noteEditor; + delete mainWindow; removeDir(tmpVymDir); int s = warningCount + criticalCount + fatalCount; diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index c5006f5..4353555 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -148,6 +148,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) setWindowTitle(vymName + " - View Your Mind"); shortcutScope = tr("Main window", "Shortcut scope"); + switchboard.addScope("MainWindow", shortcutScope); // Sometimes we may need to remember old selections prevSelection = QUuid(); @@ -205,8 +206,6 @@ Main::Main(QWidget *parent) : QMainWindow(parent) layout->addWidget(tabWidget); - switchboard.addScope("MainWindow", tr("Main window", "Shortcut group")); - switchboard.addScope("MapEditor", tr("Map Editors", "Shortcut group")); switchboard.addScope("TextEditor", tr("Text Editors", "Shortcut group")); // Create main menus @@ -218,8 +217,10 @@ Main::Main(QWidget *parent) : QMainWindow(parent) viewMenu = menuBar()->addMenu(tr("&View")); toolbarsMenu = viewMenu->addMenu(tr("Toolbars", "Toolbars overview in view menu")); - windowsMenu = - viewMenu->addMenu(tr("Windows", "Editor windows overview in view menu")); + toggleWindowsMenu = + viewMenu->addMenu(tr("Toggle window", "Toggle visibility of editor windows overview in view menu")); + focusWindowsMenu = + viewMenu->addMenu(tr("Focus window", "Toggle visibility of editor windows overview in view menu")); viewMenu->addSeparator(); @@ -251,6 +252,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) dw->hide(); noteEditorDW = dw; addDockWidget(Qt::LeftDockWidgetArea, dw); + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); dw = new QDockWidget(); dw->setWidget(headingEditor); @@ -258,6 +260,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) dw->hide(); headingEditorDW = dw; addDockWidget(Qt::BottomDockWidgetArea, dw); + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); findResultWidget = new FindResultWidget(); dw = new QDockWidget(tr("Search results list", "FindResultWidget")); @@ -270,13 +273,13 @@ Main::Main(QWidget *parent) : QMainWindow(parent) connect(findResultWidget, SIGNAL(findPressed(QString, bool)), this, SLOT(editFindNext(QString, bool))); - scriptEditor = new ScriptEditor(this); dw = new QDockWidget(tr("Script Editor", "ScriptEditor")); dw->setWidget(scriptEditor); dw->setObjectName("ScriptEditor"); dw->hide(); addDockWidget(Qt::LeftDockWidgetArea, dw); + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); scriptOutput = new ScriptOutput(this); dw = new QDockWidget(tr("Script output window")); @@ -284,6 +287,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) dw->setObjectName("ScriptOutput"); dw->hide(); addDockWidget(Qt::BottomDockWidgetArea, dw); + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); dw = new QDockWidget(tr("Property Editor", "PropertyEditor")); dw->setWidget(branchPropertyEditor); @@ -291,6 +295,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) dw->hide(); addDockWidget(Qt::LeftDockWidgetArea, dw); branchPropertyEditorDW = dw; + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); historyWindow = new HistoryWindow(); dw = new QDockWidget(tr("History window", "HistoryWidget")); @@ -298,12 +303,11 @@ Main::Main(QWidget *parent) : QMainWindow(parent) dw->setObjectName("HistoryWidget"); dw->hide(); addDockWidget(Qt::RightDockWidgetArea, dw); - connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(updateActions())); + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); // Connect NoteEditor, so that we can update flags if text changes connect(noteEditor, SIGNAL(textHasChanged(VymText)), this, SLOT(updateNoteText(VymText))); - connect(noteEditor, SIGNAL(windowClosed()), this, SLOT(updateActions())); // FIXME-2 windowCLosed needed after all? // Connect heading editor connect(headingEditor, SIGNAL(textHasChanged(const VymText &)), this, @@ -319,7 +323,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) dw->setObjectName("TaskEditor"); dw->hide(); addDockWidget(Qt::TopDockWidgetArea, dw); - connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(updateActions())); + connect(dw, SIGNAL(visibilityChanged(bool)), this, SLOT(satelliteVisibilityChanged())); if (options.isActive("shortcutsLaTeX")) switchboard.printLaTeX(); @@ -347,8 +351,8 @@ Main::Main(QWidget *parent) : QMainWindow(parent) updateGeometry(); - windowSetTreeEditorsVisibility(settings.value("/mainwindow/view/showTreeEditors", true).toBool()); - windowSetSlideEditorsVisibility(settings.value("/mainwindow/view/showSlideEditors", false).toBool()); + setTreeEditorsVisibility(settings.value("/mainwindow/view/showTreeEditors", true).toBool()); + setSlideEditorsVisibility(settings.value("/mainwindow/view/showSlideEditors", false).toBool()); // After startup, schedule looking for updates AFTER // release notes have been downloaded @@ -371,7 +375,7 @@ Main::Main(QWidget *parent) : QMainWindow(parent) Main::~Main() { - //qDebug() << "Destr Mainwindow begin"; + // qDebug() << "Destr Mainwindow begin testmode=" << testmode; // Make sure there is no focus elsewhere, e.g. in BranchPropertyEditor // which could cause a crash. (Qt bug?) @@ -379,6 +383,7 @@ Main::~Main() // Save Settings + // FIXME-2 Save settings in destructor. Maybe move to separate function and call more often if (!testmode) { settings.setValue("/mainwindow/geometry", saveGeometry()); settings.setValue("/mainwindow/state", saveState()); // FIXME-3 use restoreDockWidget @@ -425,7 +430,7 @@ Main::~Main() delete userFlagsMaster; delete systemFlagsMaster; - //qDebug() << "Destr Mainwindow end"; + // qDebug() << "Destr Mainwindow end"; } void Main::loadCmdLine() @@ -442,7 +447,7 @@ void Main::loadCmdLine() removeProgressCounter(); } -void Main::logInfo(const QString &comment, const QString &caller) +void Main::logInfo(const QString &comment, const QString &caller) // FIXME-2 Replace everywhere with log.cpp ... { if (!useActionLog) return; @@ -514,6 +519,11 @@ void Main::removeProgressCounter() progressDialog.hide(); } +void Main::satelliteVisibilityChanged() +{ + updateActions(); +} + void Main::closeEvent(QCloseEvent *event) { if (tabWidget->count() > 0 && fileExitVYM()) @@ -1562,7 +1572,7 @@ void Main::setupAPI() } -void Main::cloneActionMapEditor(QAction *a) // FIXME-2 obsolete by mapEditorActions.append(...) ? +void Main::cloneActionMapEditor(QAction *a) // Add action to mapEditorActions and set context { a->setShortcutContext(Qt::WidgetShortcut); mapEditorActions.append(a); @@ -1663,7 +1673,7 @@ void Main::setupFileActions() connect(a, SIGNAL(triggered()), this, SLOT(fileImportFreemind())); fileImportMenu->addAction(a); - a = new QAction("IThoughts..." + tr("(still experimental"), this); + a = new QAction("IThoughts..." + tr("(still experimental)"), this); connect(a, SIGNAL(triggered()), this, SLOT(fileImportIThoughts())); fileImportMenu->addAction(a); @@ -2449,14 +2459,16 @@ void Main::setupEditActions() actionListBranches.append(a); actionLoadImage = a; - a = new QAction( - tr("Item property window", "Dialog to edit properties of selected item") + - QString("..."), - this); - a->setCheckable(true); + QString n = tr("Item properties", "Dialog to edit properties of selected item"); + a = new QAction(n, this) ; addAction(a); - switchboard.addAction(a, "mapTogglePropertyEditor", Qt::Key_B, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleProperty())); + switchboard.addAction(a, "mapFocusPropertyEditor", Qt::Key_B, shortcutScope, tag); + connect(a, SIGNAL(triggered()), this, SLOT(focusProperty())); + actionViewFocusPropertyEditor = a; + + a = new QAction(n, this) ; + a->setCheckable(true); + connect(a, SIGNAL(triggered()), this, SLOT(toggleProperty())); actionViewTogglePropertyEditor = a; } @@ -2523,6 +2535,7 @@ void Main::setupSelectActions() a->setShortcutContext(Qt::WidgetWithChildrenShortcut); selectMenu->addAction(a); switchboard.addAction(a, "Select first branch in siblings", Qt::Key_Home, shortcutScope, tag); + actionListBranches.append(a); addAction(a); connect(a, SIGNAL(triggered()), this, SLOT(editSelectFirstSibling())); @@ -2530,6 +2543,7 @@ void Main::setupSelectActions() a->setShortcutContext(Qt::WidgetWithChildrenShortcut); selectMenu->addAction(a); switchboard.addAction(a, "Select first branch in siblings", Qt::Key_0, shortcutScope, tag); // Alternative: VIM Select first + actionListBranches.append(a); addAction(a); connect(a, SIGNAL(triggered()), this, SLOT(editSelectFirstSibling())); @@ -2537,6 +2551,7 @@ void Main::setupSelectActions() a->setShortcutContext(Qt::WidgetWithChildrenShortcut); selectMenu->addAction(a); switchboard.addAction(a, "Select last branch in siblings", Qt::Key_End, shortcutScope, tag); + actionListBranches.append(a); addAction(a); connect(a, SIGNAL(triggered()), this, SLOT(editSelectLastSibling())); @@ -2544,6 +2559,7 @@ void Main::setupSelectActions() a->setShortcutContext(Qt::WidgetWithChildrenShortcut); selectMenu->addAction(a); switchboard.addAction(a, "Select last branch in siblings", Qt::Key_Dollar, shortcutScope, tag); + actionListBranches.append(a); addAction(a); connect(a, SIGNAL(triggered()), this, SLOT(editSelectLastSibling())); @@ -2838,82 +2854,117 @@ void Main::setupViewActions() // Editor and other windows tag = tr("Windows", "Mainwindow view shortcut groups"); - // a=noteEditorDW->toggleViewAction(); - a = new QAction(QPixmap(":/flag-note.svg"), - tr("Note editor", "View action"), this); + QString n = tr("Note editor", "View action"); + a = new QAction(QPixmap(":/flag-note.svg"), n, this); a->setShortcutContext(Qt::WidgetShortcut); - a->setCheckable(true); - windowsMenu->addAction(a); + focusWindowsMenu->addAction(a); mapEditorActions.append(a); - switchboard.addAction(a, "mapShowNoteEditor", Qt::Key_N, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowShowNoteEditor())); - actionViewToggleNoteEditor = a; // FIXME-3 rename action to show + switchboard.addAction(a, "mapFocusNoteEditor", Qt::Key_N, shortcutScope, tag); + connect(a, SIGNAL(triggered()), this, SLOT(focusNoteEditor())); + actionViewFocusNoteEditor = a; - // a=headingEditorDW->toggleViewAction(); - a = new QAction(QPixmap(":/headingeditor.png"), - tr("Heading editor", "View action"), this); + a = new QAction(QPixmap(":/flag-note.svg"), n, this); a->setCheckable(true); - a->setIcon(QPixmap(":/headingeditor.png")); + toggleWindowsMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(toggleNoteEditor())); + actionViewToggleNoteEditor = a; + // + n = tr("Heading editor", "View action"); + a = new QAction(QPixmap(":/headingeditor.png"), n, this); a->setShortcutContext(Qt::WidgetShortcut); mapEditorActions.append(a); - windowsMenu->addAction(a); - switchboard.addAction(a, "mapShowHeadingEditor", Qt::Key_E, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowShowHeadingEditor())); - actionViewToggleHeadingEditor = a; // FIXME-3 rename action to show + focusWindowsMenu->addAction(a); + switchboard.addAction(a, "mapFocusHeadingEditor", Qt::Key_E, shortcutScope, tag); + connect(a, SIGNAL(triggered()), this, SLOT(focusHeadingEditor())); + actionViewFocusHeadingEditor = a; + + a = new QAction(QPixmap(":/headingeditor.png"), n, this); + a->setCheckable(true); + mapEditorActions.append(a); + toggleWindowsMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(toggleHeadingEditor())); + actionViewToggleHeadingEditor = a; + n = tr("Tree editor", "View action"); // Original icon is "category" from KDE - a = new QAction(QPixmap(":/treeeditor.png"), - tr("Switch between Map editor and Tree editor", "View action"), this); + a = new QAction(QPixmap(":/treeeditor.png"), n, this); a->setCheckable(true); - windowsMenu->addAction(a); + toggleWindowsMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(toggleTreeEditors())); + actionViewToggleTreeEditors = a; + + a = new QAction(QPixmap(":/treeeditor.png"), n, this); + a->setShortcutContext(Qt::WidgetShortcut); + focusWindowsMenu->addAction(a); + mapEditorActions.append(a); switchboard.addAction(a, "switchTreeEditorAndMapEditor", Qt::Key_Tab, shortcutScope, tag); connect(a, SIGNAL(triggered()), this, SLOT(switchEditors())); actionViewSwitchEditors = a; - a = new QAction(QPixmap(":/taskeditor.png"), - tr("Task editor", "View action"), this); - a->setCheckable(true); + n = tr("Task editor", "View action"); + a = new QAction(QPixmap(":/taskeditor.png"), n, this); a->setShortcutContext(Qt::WidgetShortcut); mapEditorActions.append(a); - windowsMenu->addAction(a); - switchboard.addAction(a, "mapToggleTaskEditor", Qt::Key_Q, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleTaskEditor())); - actionViewToggleTaskEditor = a; // FIXME-3 rename action to show + focusWindowsMenu->addAction(a); + switchboard.addAction(a, "mapFocusTaskEditor", Qt::Key_Q, shortcutScope, tag); + connect(a, SIGNAL(triggered()), this, SLOT(focusTaskEditor())); + actionViewFocusTaskEditor = a; + + a = new QAction(QPixmap(":/taskeditor.png"), n, this); + a->setCheckable(true); + toggleWindowsMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(toggleTaskEditor())); + actionViewToggleTaskEditor = a; - a = new QAction(QPixmap(":/slideeditor.png"), - tr("Slide editor", "View action"), this); + n = tr("Slide editor", "View action"); + a = new QAction(QPixmap(":/slideeditor.png"), n, this); a->setCheckable(true); - windowsMenu->addAction(a); + toggleWindowsMenu->addAction(a); switchboard.addAction(a, "mapShowSlideEditor", shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowShowSlideEditors())); - actionViewShowSlideEditors = a; + connect(a, SIGNAL(triggered()), this, SLOT(toggleSlideEditors())); + actionViewToggleSlideEditors = a; + + n = tr("Script editor", "View action"); + a = new QAction(QPixmap(":/scripteditor.png"), n, this); + focusWindowsMenu->addAction(a); + switchboard.addAction(a, "mapFocusScriptEditor", Qt::SHIFT | Qt::Key_S, shortcutScope, tag); + connect(a, SIGNAL(triggered()), this, SLOT(focusScriptEditor())); + actionViewFocusScriptEditor = a; - a = new QAction(QPixmap(":/scripteditor.png"), - tr("Script editor", "View action"), this); + a = new QAction(QPixmap(":/scripteditor.png"), n, this); a->setCheckable(true); - windowsMenu->addAction(a); - switchboard.addAction(a, "mapToggleScriptEditor", Qt::SHIFT | Qt::Key_S, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleScriptEditor())); - actionViewToggleScriptEditor = a; // FIXME-3 show + toggleWindowsMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(toggleScriptEditor())); + actionViewToggleScriptEditor = a; - a = new QAction(QPixmap(), tr("Script output window", "View action"), this); + a = new QAction(QPixmap(), tr("Script output", "View action"), this); a->setCheckable(true); - windowsMenu->addAction(a); + toggleWindowsMenu->addAction(a); switchboard.addAction(a, "mapToggleScriptOutput", Qt::CTRL | Qt::SHIFT | Qt::Key_S, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleScriptOutput())); + connect(a, SIGNAL(triggered()), this, SLOT(toggleScriptOutput())); actionViewToggleScriptOutput = a; // FIXME-3 show - a = new QAction(QPixmap(":/history.png"), - tr("History Window", "View action"), this); + n = tr("History window", "View action"); + a = new QAction(QPixmap(":/history.png"), n, this); a->setShortcutContext(Qt::WidgetShortcut); - a->setCheckable(true); - windowsMenu->addAction(a); + focusWindowsMenu->addAction(a); mapEditorActions.append(a); +#if defined(Q_OS_MACOS) + switchboard.addAction(a, "mapToggleHistoryWindow", Qt::SHIFT | Qt::CTRL | Qt::Key_H, shortcutScope, tag); // Cmd-H not available on MacOS +#else switchboard.addAction(a, "mapToggleHistoryWindow", Qt::CTRL | Qt::Key_H, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleHistory())); +#endif + connect(a, SIGNAL(triggered()), this, SLOT(focusHistory())); + actionViewFocusHistoryWindow = a; + + a = new QAction(QPixmap(":/history.png"), n, this); + a->setCheckable(true); + toggleWindowsMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(toggleHistory())); actionViewToggleHistoryWindow = a; - windowsMenu->addAction(actionViewTogglePropertyEditor); + focusWindowsMenu->addAction(actionViewFocusPropertyEditor); + toggleWindowsMenu->addAction(actionViewTogglePropertyEditor); viewMenu->addSeparator(); @@ -2922,7 +2973,7 @@ void Main::setupViewActions() a->setCheckable(true); a->setChecked(settings.value("/mainwindow/view/AntiAlias", true).toBool()); viewMenu->addAction(a); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleAntiAlias())); + connect(a, SIGNAL(triggered()), this, SLOT(toggleAntiAlias())); actionViewToggleAntiAlias = a; a = new QAction(tr("Smooth pixmap transformations", "View action"), this); @@ -2932,7 +2983,7 @@ void Main::setupViewActions() settings.value("/mainwindow/view/SmoothPixmapTransformations", true) .toBool()); viewMenu->addAction(a); - connect(a, SIGNAL(triggered()), this, SLOT(windowToggleSmoothPixmap())); + connect(a, SIGNAL(triggered()), this, SLOT(toggleSmoothPixmap())); actionViewToggleSmoothPixmapTransform = a; viewMenu->addSeparator(); @@ -2966,13 +3017,13 @@ void Main::setupViewActions() a->setStatusTip(a->text()); viewMenu->addAction(a); switchboard.addAction(a, "mapPrevious", Qt::SHIFT | Qt::Key_Right, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowNextEditor())); + connect(a, SIGNAL(triggered()), this, SLOT(nextEditor())); a = new QAction(tr("Previous Map", "View action"), this); a->setStatusTip(a->text()); viewMenu->addAction(a); switchboard.addAction(a, "mapNext", Qt::SHIFT | Qt::Key_Left, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(windowPreviousEditor())); + connect(a, SIGNAL(triggered()), this, SLOT(previousEditor())); } // Connect Actions @@ -3667,7 +3718,7 @@ void Main::setupHelpActions() } // Context Menus -void Main::setupContextMenus() // FIXME-2 Use context menus add/remove also in Edit menu for better readability +void Main::setupContextMenus() { // Context menu for goto/move targets (populated on demand) targetsContextMenu = new QMenu(this); @@ -4068,9 +4119,9 @@ void Main::setupToolbars() editorsToolbar->setObjectName("editorsTB"); editorsToolbar->addAction(actionViewToggleNoteEditor); editorsToolbar->addAction(actionViewToggleHeadingEditor); - editorsToolbar->addAction(actionViewSwitchEditors); + editorsToolbar->addAction(actionViewToggleTreeEditors); editorsToolbar->addAction(actionViewToggleTaskEditor); - editorsToolbar->addAction(actionViewShowSlideEditors); + editorsToolbar->addAction(actionViewToggleSlideEditors); editorsToolbar->addAction(actionViewToggleScriptEditor); editorsToolbar->addAction(actionViewToggleHistoryWindow); @@ -4480,7 +4531,7 @@ bool Main::fileLoad(QString fn, const File::LoadMode &lmode, } editorChanged(); - vm->emitShowSelection(); + vm->emitShowSelection(false, false); statusBar()->showMessage(tr("Loaded %1").arg(fn)); } } @@ -5097,7 +5148,9 @@ bool Main::fileCloseMap(int i) } } + logInfo(__func__ + QString(" before removing tab %1 - %2").arg(i).arg(m->mapTitle())); // FIXME-2 debugging tabWidget->removeTab(i); + logInfo(__func__ + QString(" after removing tab %1 - %2").arg(i).arg(m->mapTitle())); // FIXME-2 debugging // Destroy stuff, order is important noteEditor->clear(); @@ -5152,7 +5205,7 @@ bool Main::fileExitVYM() if (backgroundZipProcesses > 0) qDebug() << __func__ << " has still running bg zips..."; else - qApp->quit(); + qApp->exit(0); return false; } @@ -6168,6 +6221,7 @@ void Main::editSelectNothing() void Main::editOpenFindResultWidget() { findResultWidget->popup(); + findResultWidget->setFocus(); } void Main::editFindNext(QString s, bool searchNotesFlag) @@ -6706,11 +6760,28 @@ bool Main::settingsJIRA() return false; } -void Main::windowShowNoteEditor() +void Main::focusMapEditor() { - if (!noteEditor->parentWidget()->isVisible()) - noteEditor->parentWidget()->show(); + VymView *vv = currentView(); + if (vv) + vv->setFocusMapEditor(); +} + +void Main::focusNoteEditor() +{ + noteEditor->parentWidget()->show(); noteEditor->setFocus(); + actionViewToggleNoteEditor->setChecked(true); +} + +void Main::toggleNoteEditor() +{ + if (noteEditor->parentWidget()->isVisible()) { + noteEditor->parentWidget()->hide(); + focusMapEditor(); + actionViewToggleNoteEditor->setChecked(false); + } else + focusNoteEditor(); } void Main::switchEditors() @@ -6720,7 +6791,7 @@ void Main::switchEditors() MapEditor *me = vv->getMapEditor(); if (me) { if (me->hasFocus()) { - windowSetTreeEditorsVisibility(true); + setTreeEditorsVisibility(true); vv->setFocusTreeEditor(); } else vv->setFocusMapEditor(); @@ -6728,87 +6799,143 @@ void Main::switchEditors() } } -void Main::windowSetTreeEditorsVisibility(bool b) +void Main::toggleTreeEditors() +{ + bool b = !settings.value("/mainwindow/view/showTreeEditors", true).toBool(); + setTreeEditorsVisibility(b); +} + +void Main::setTreeEditorsVisibility(bool b) { // Close *all* TreeEditors in each VymView and update vym settings settings.setValue("/mainwindow/view/showTreeEditors", b); - for (int i = 0; i < tabWidget->count(); i++) - ((VymView*)tabWidget->widget(i))->setTreeEditorVisibility(b); + for (int i = 0; i < tabWidget->count(); i++) { + logInfo(__func__ + QString(" Setting vis in vymview %1 to %2").arg(i, b)); // FIXME-2 debugging + if (!((VymView*)tabWidget->widget(i))) { + logInfo("Main::setTreeEditorsVisibility: Fatal. widget i is nullptr"); // FIXME-2 debugging + QMessageBox::warning(0, "Warning", "Would have crashed now in setTEVis, please notify development team!"); + } + else + ((VymView*)tabWidget->widget(i))->setTreeEditorVisibility(b); + } + updateActions(); +} + +void Main::focusTaskEditor() +{ + taskEditor->parentWidget()->show(); + actionViewToggleTaskEditor->setChecked(true); + taskEditor->setFocus(); } -void Main::windowToggleTaskEditor() +void Main::toggleTaskEditor() { if (taskEditor->parentWidget()->isVisible()) { taskEditor->parentWidget()->hide(); actionViewToggleTaskEditor->setChecked(false); - } - else { - taskEditor->parentWidget()->show(); - actionViewToggleTaskEditor->setChecked(true); - } + } else + focusTaskEditor(); } -void Main::windowShowSlideEditors() +void Main::toggleSlideEditors() { - windowSetSlideEditorsVisibility(true); + bool b = !settings.value("/mainwindow/view/showSlideEditors", false).toBool(); + setSlideEditorsVisibility(b); + + if (b) { + VymView *vv = currentView(); + if (vv) + vv->setFocusSlideEditor(); + } else + setFocusMapEditor(); } -void Main::windowSetSlideEditorsVisibility(bool b) +void Main::setSlideEditorsVisibility(bool b) { settings.setValue("/mainwindow/view/showSlideEditors", b); for (int i = 0; i < tabWidget->count(); i++) ((VymView*)tabWidget->widget(i))->setSlideEditorVisibility(b); + updateActions(); +} + +void Main::focusScriptEditor() +{ + scriptEditor->parentWidget()->show(); + actionViewToggleScriptEditor->setChecked(true); + scriptEditor->setFocus(); } -void Main::windowToggleScriptEditor() +void Main::toggleScriptEditor() { if (scriptEditor->parentWidget()->isVisible()) { scriptEditor->parentWidget()->hide(); actionViewToggleScriptEditor->setChecked(false); - } - else { - scriptEditor->parentWidget()->show(); - actionViewToggleScriptEditor->setChecked(true); - } + } else + focusScriptEditor(); } -void Main::windowToggleScriptOutput() +void Main::focusScriptOutput() +{ + scriptOutput->parentWidget()->show(); + actionViewToggleScriptOutput->setChecked(true); + // Currently ScriptEditor gets focus, when output is toggled + // scriptOutput->setFocus(); + focusScriptEditor(); +} +void Main::toggleScriptOutput() { if (scriptOutput->parentWidget()->isVisible()) { scriptOutput->parentWidget()->hide(); actionViewToggleScriptOutput->setChecked(false); - } - else { - scriptOutput->parentWidget()->show(); - actionViewToggleScriptOutput->setChecked(true); - } + } else + focusScriptOutput(); } -void Main::windowToggleHistory() +void Main::focusHistory() +{ + historyWindow->parentWidget()->show(); + historyWindow->setFocus(); +} + +void Main::toggleHistory() { if (historyWindow->parentWidget()->isVisible()) historyWindow->parentWidget()->hide(); else - historyWindow->parentWidget()->show(); + focusHistory(); } -void Main::windowToggleProperty() +void Main::focusProperty() +{ + branchPropertyEditor->parentWidget()->show(); + branchPropertyEditor->setFocus(); + branchPropertyEditor->setModel(currentModel()); +} +void Main::toggleProperty() { if (branchPropertyEditor->parentWidget()->isVisible()) branchPropertyEditor->parentWidget()->hide(); else - branchPropertyEditor->parentWidget()->show(); - branchPropertyEditor->setModel(currentModel()); + focusProperty(); } -void Main::windowShowHeadingEditor() +void Main::focusHeadingEditor() { - if (!headingEditor->parentWidget()->isVisible()) - headingEditor->parentWidget()->show(); + headingEditor->parentWidget()->show(); headingEditor->setFocus(); + actionViewToggleHeadingEditor->setChecked(true); } -void Main::windowToggleAntiAlias() +void Main::toggleHeadingEditor() +{ + if (headingEditor->parentWidget()->isVisible()) { + headingEditor->parentWidget()->hide(); + actionViewToggleHeadingEditor->setChecked(false); + } else + focusHeadingEditor(); +} + +void Main::toggleAntiAlias() { bool b = actionViewToggleAntiAlias->isChecked(); MapEditor *me; @@ -6826,7 +6953,7 @@ bool Main::hasSmoothPixmapTransform() return actionViewToggleSmoothPixmapTransform->isChecked(); } -void Main::windowToggleSmoothPixmap() +void Main::toggleSmoothPixmap() { bool b = actionViewToggleSmoothPixmapTransform->isChecked(); MapEditor *me; @@ -6863,13 +6990,16 @@ void Main::updateNoteText(const VymText &vt) void Main::updateNoteEditor(TreeItem *ti) { if (ti) { - if (!ti->hasEmptyNote()) - noteEditor->setNote(ti->getNote()); - else - noteEditor->clear(); // Also sets empty state + VymNote note = ti->getNote(); + if (!note.isEmpty()) { + noteEditor->setNote(note); // fileName is set implicitly from note + } else { + noteEditor->clear(); // Also sets empty state + } + noteEditor->setFileNameHint(ti->headingText()); } else noteEditor->setInactive(); - noteEditor->setEditorTitle(); + noteEditor->setTitle(); } void Main::updateHeadingEditor(TreeItem *ti) @@ -6888,7 +7018,7 @@ void Main::updateHeadingEditor(TreeItem *ti) } headingEditor->setVymText(selti->heading()); - headingEditor->setEditorTitle(); + headingEditor->setTitle(); } } @@ -6962,7 +7092,7 @@ void Main::updateDockWidgetTitles(VymModel *model) noteEditor->setVymText(bi->getNote()); } - noteEditor->setEditorTitle(s); + noteEditor->setTitle(s); } } @@ -6971,6 +7101,10 @@ void Main::updateActions() // updateActions is also called when satellites are closed actionViewToggleNoteEditor->setChecked( noteEditor->parentWidget()->isVisible()); + actionViewToggleHeadingEditor->setChecked( + headingEditor->parentWidget()->isVisible()); + actionViewToggleTreeEditors->setChecked( + settings.value("/mainwindow/view/showTreeEditors", true).toBool()); actionViewToggleTaskEditor->setChecked( taskEditor->parentWidget()->isVisible()); actionViewToggleHistoryWindow->setChecked( @@ -6979,6 +7113,8 @@ void Main::updateActions() branchPropertyEditor->parentWidget()->isVisible()); actionViewToggleScriptEditor->setChecked( scriptEditor->parentWidget()->isVisible()); + actionViewToggleSlideEditors->setChecked( + settings.value("/mainwindow/view/showSlideEditors", true).toBool()); if (JiraAgent::available()) actionGetJiraDataSubtree->setEnabled(true); @@ -7067,6 +7203,12 @@ void Main::updateActions() foreach (QAction *a, actionListItems) a->setEnabled(false); + // Ideally we would get targets from model first, but + // avoid iterating whole tree, so just enable + // bool b = m->getTargets().isEmpty(); + actionGoToTarget->setEnabled(true); + actionGoToTargetLinkedMap->setEnabled(true); + // Link style in context menu switch (m->mapDesign()->linkStyle(1)) { // FIXME-4 Currently global for map, all depths case LinkObj::Line: @@ -7571,13 +7713,13 @@ bool Main::gotoWindow(const int &n) return false; } -void Main::windowNextEditor() +void Main::nextEditor() { if (tabWidget->currentIndex() < tabWidget->count()) tabWidget->setCurrentIndex(tabWidget->currentIndex() + 1); } -void Main::windowPreviousEditor() +void Main::previousEditor() { if (tabWidget->currentIndex() > 0) tabWidget->setCurrentIndex(tabWidget->currentIndex() - 1); @@ -8131,8 +8273,8 @@ void Main::escapePressed() { if (presentationMode) togglePresentationMode(); - else - setFocusMapEditor(); + + setFocusMapEditor(); } void Main::togglePresentationMode() diff --git a/src/mainwindow.h b/src/mainwindow.h index c51bc00..c7e61c9 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -60,6 +60,8 @@ class Main : public QMainWindow { void fileNew(); void fileNewCopy(); + void satelliteVisibilityChanged(); + protected: void closeEvent(QCloseEvent *); @@ -345,22 +347,31 @@ class Main : public QMainWindow { bool settingsConfluence(); bool settingsJIRA(); - void windowShowNoteEditor(); + void focusMapEditor(); + void focusNoteEditor(); + void toggleNoteEditor(); + void toggleTreeEditors(); void switchEditors(); - void windowSetTreeEditorsVisibility(bool); - void windowToggleTaskEditor(); - void windowShowSlideEditors(); - void windowSetSlideEditorsVisibility(bool); - void windowToggleScriptEditor(); - void windowToggleScriptOutput(); - void windowToggleHistory(); - void windowToggleProperty(); - void windowShowHeadingEditor(); + void setTreeEditorsVisibility(bool); + void focusTaskEditor(); + void toggleTaskEditor(); + void toggleSlideEditors(); + void setSlideEditorsVisibility(bool); + void focusScriptEditor(); + void toggleScriptEditor(); + void focusScriptOutput(); + void toggleScriptOutput(); + void focusHistory(); + void toggleHistory(); + void focusProperty(); + void toggleProperty(); + void focusHeadingEditor(); + void toggleHeadingEditor(); void updateHistory(SimpleSettings &); - void windowToggleAntiAlias(); + void toggleAntiAlias(); bool isAliased(); bool hasSmoothPixmapTransform(); - void windowToggleSmoothPixmap(); + void toggleSmoothPixmap(); void clearScriptOutput(); void updateHeading(const VymText &vt); void updateNoteText(const VymText &vt); @@ -392,8 +403,8 @@ class Main : public QMainWindow { bool gotoWindow(const int &n); private slots: - void windowNextEditor(); - void windowPreviousEditor(); + void nextEditor(); + void previousEditor(); void nextSlide(); void previousSlide(); @@ -482,7 +493,8 @@ class Main : public QMainWindow { QList quickColors; QMenu *toolbarsMenu; - QMenu *windowsMenu; + QMenu *toggleWindowsMenu; + QMenu *focusWindowsMenu; QMenu *branchAddContextMenu; QMenu *branchGeometryContextMenu; @@ -671,15 +683,31 @@ class Main : public QMainWindow { QAction *actionFormatLinkStylePolyParabel; QAction *actionFormatHideLinkUnselected; + QAction *actionViewFocusNoteEditor; QAction *actionViewToggleNoteEditor; + + QAction *actionViewFocusHeadingEditor; QAction *actionViewToggleHeadingEditor; + + QAction *actionViewFocusTaskEditor; QAction *actionViewToggleTaskEditor; + QAction *actionViewSwitchEditors; - QAction *actionViewShowSlideEditors; + QAction *actionViewToggleTreeEditors; + QAction *actionViewToggleSlideEditors; + + QAction *actionViewFocusScriptEditor; QAction *actionViewToggleScriptEditor; + + QAction *actionViewFocusScriptOutput; QAction *actionViewToggleScriptOutput; + + QAction *actionViewFocusHistoryWindow; QAction *actionViewToggleHistoryWindow; + + QAction *actionViewFocusPropertyEditor; QAction *actionViewTogglePropertyEditor; + QAction *actionViewToggleAntiAlias; QAction *actionViewToggleSmoothPixmapTransform; QAction *actionViewCenter; diff --git a/src/mapeditor.cpp b/src/mapeditor.cpp index ee3993c..7d4dd39 100644 --- a/src/mapeditor.cpp +++ b/src/mapeditor.cpp @@ -47,7 +47,6 @@ MapEditor::MapEditor(VymModel *vm) { // qDebug() << "Constructor ME " << this; - QString shortcutScope = tr("Map Editor", "Shortcut scope"); mapScene = new QGraphicsScene(nullptr); mapScene->setBackgroundBrush(QBrush(Qt::white, Qt::SolidPattern)); //mapScene->setItemIndexMethod(QGraphicsScene::NoIndex); // FIXME-4 Avoiding crashes... @@ -128,6 +127,9 @@ MapEditor::MapEditor(VymModel *vm) // Shortcuts and actions QAction *a; + QString shortcutScope = tr("Map Editor", "Shortcut scope"); + switchboard.addScope("MapEditor", tr("Map Editors", "Shortcut group")); + a = new QAction("Select upper branch", this); a->setShortcut(Qt::Key_Up); a->setShortcutContext(Qt::WidgetShortcut); @@ -277,6 +279,8 @@ void MapEditor::ensureAreaVisibleAnimated( bool rotated, qreal new_rotation) { + qDebug() << __func__ << "scaled=" << scaled << "rotated=" <heading(); if (heading.isRichText() || selbi->headingPlain().contains("\n")) { // RichText heading is edited in its own editor, continue there - mainWindow->windowShowHeadingEditor(); + mainWindow->focusHeadingEditor(); ensureSelectionVisibleAnimated(); return; } @@ -1943,7 +1952,7 @@ void MapEditor::mousePressEvent(QMouseEvent *e) // FIXME-3 Drop down dialog, if model->getUrl(), e->modifiers() & Qt::AltModifier); } else if (sysFlagName == "system-note") - mainWindow->windowShowNoteEditor(); + mainWindow->focusNoteEditor(); else if (sysFlagName == "hideInExport") model->toggleHideExport(); else if (sysFlagName.startsWith("system-task-")) diff --git a/src/my-textedit.cpp b/src/my-textedit.cpp new file mode 100644 index 0000000..de6c640 --- /dev/null +++ b/src/my-textedit.cpp @@ -0,0 +1,82 @@ +#include +#include +#include + +#include "mainwindow.h" + +#include "my-textedit.h" + +extern Main *mainWindow; + +MyTextEdit::MyTextEdit(QWidget *parent) +{ + //qDebug() << "Constr MyTextEdit"; + QAction *a = new QAction(QPixmap(":/flag-url.svg"), tr("Open URL", "TextEdit menu"), + this); + addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(openUrlTriggered())); + actionOpenUrl = a; + + a = new QAction(tr("Insert or edit URL", "TextEdit menu"), this); + addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(editUrlTriggered())); + actionEditUrl = a; + + setRichTextMode(false); +} + +bool MyTextEdit::richTextMode() +{ + return richTextModeInt; +} + +void MyTextEdit::setRichTextMode(bool b) +{ + richTextModeInt = b; + actionOpenUrl->setEnabled(richTextModeInt); + actionEditUrl->setEnabled(richTextModeInt); +} + +void MyTextEdit::mousePressEvent(QMouseEvent *e) +{ + if (e->button() == Qt::LeftButton && e->modifiers() & Qt::ControlModifier) { + if (mainWindow) { + QString url = anchorAt(e->pos()); + mainWindow->openUrl(url); + + // Note used currently: text + // QTextCursor c = cursorForPosition(e->pos()); + // QString text = c.block().text(); + } + + } else + QTextEdit::mousePressEvent(e); +} + +void MyTextEdit::contextMenuEvent(QContextMenuEvent *e) +{ + QMenu *menu = createStandardContextMenu(); + + if (richTextModeInt) { + menu->addSeparator(); + menu->addAction(actionOpenUrl); + menu->addAction(actionEditUrl); // FIXME-4 also add image actions + } + + lastContextMenuPositionInt = e->pos(); + menu->exec(e->globalPos()); + delete menu; +} + +void MyTextEdit::openUrlTriggered() +{ + if (mainWindow) + // mainWindow is created AFTER editors, so in theory mainWindow might still be nullptr + mainWindow->openUrl(anchorAt(lastContextMenuPositionInt)); +} + +void MyTextEdit::editUrlTriggered() +{ + emit editUrlCursor(cursorForPosition(lastContextMenuPositionInt)); +} + diff --git a/src/my-textedit.h b/src/my-textedit.h new file mode 100644 index 0000000..0bd607a --- /dev/null +++ b/src/my-textedit.h @@ -0,0 +1,34 @@ +#ifndef MY_TEXTEDIT_H +#define MY_TEXTEDIT_H + +#include + +class MyTextEdit : public QTextEdit { + Q_OBJECT + + public: + MyTextEdit(QWidget *parent = nullptr); + bool richTextMode(); + void setRichTextMode(bool b); + + protected: + void mousePressEvent(QMouseEvent *); + void contextMenuEvent(QContextMenuEvent *); + + private: + bool richTextModeInt; + + private: + QAction *actionOpenUrl; + QAction *actionEditUrl; + QPoint lastContextMenuPositionInt; + + private slots: + void openUrlTriggered(); + void editUrlTriggered(); + + signals: + void editUrlCursor(QTextCursor); +}; + +#endif diff --git a/src/noteeditor.cpp b/src/noteeditor.cpp index 4b9318c..fd246ad 100644 --- a/src/noteeditor.cpp +++ b/src/noteeditor.cpp @@ -8,10 +8,8 @@ extern Settings settings; extern QString vymName; -NoteEditor::NoteEditor(const QString &eName) : TextEditor(eName) +NoteEditor::NoteEditor(const QString &id, const QString &scope) : TextEditor(id, scope) { - editorName = eName; - setWindowTitle(""); menuBar()->show(); @@ -29,7 +27,7 @@ VymNote NoteEditor::getNote() else note.setPlainText(getText()); note.setFontHint(getFontHint()); - note.setFilenameHint(getFilenameHint()); + note.setFileName(fileName()); return note; } @@ -41,5 +39,5 @@ void NoteEditor::setNote(const VymNote ¬e) setPlainText(note.getText()); setFontHint(note.getFontHint()); } - setFilenameHint(note.getFilenameHint()); + setFileName(note.fileName()); } diff --git a/src/noteeditor.h b/src/noteeditor.h index df4cd9b..d6d4e3b 100644 --- a/src/noteeditor.h +++ b/src/noteeditor.h @@ -8,7 +8,7 @@ class VymNote; class NoteEditor : public TextEditor { Q_OBJECT public: - NoteEditor(const QString &eName = "undefined"); + NoteEditor(const QString &id, const QString &scope); ~NoteEditor(); VymNote getNote(); diff --git a/src/scripteditor.cpp b/src/scripteditor.cpp index 41f711e..4f6f66f 100644 --- a/src/scripteditor.cpp +++ b/src/scripteditor.cpp @@ -10,6 +10,7 @@ #include "mainwindow.h" #include "options.h" +#include "shortcuts.h" #include "settings.h" #include "slideitem.h" #include "slidemodel.h" @@ -28,6 +29,8 @@ extern Main *mainWindow; extern Options options; extern Settings settings; extern QFont fixedFont; +extern QString editorFocusInStyle; +extern Switchboard switchboard; ScriptEditor::ScriptEditor(QWidget *parent) : QWidget(parent) { @@ -95,6 +98,20 @@ ScriptEditor::ScriptEditor(QWidget *parent) : QWidget(parent) highlighterSlide->addKeywords(list); highlighterFile->addKeywords(list); + codeEditor->setStyleSheet("QPlainTextEdit {" + editorFocusInStyle + "}"); + slideEditor->setStyleSheet("QPlainTextEdit {" + editorFocusInStyle + "}"); + macroEditor->setStyleSheet("QPlainTextEdit {" + editorFocusInStyle + "}"); + + QString shortcutScope = parentWidget()->windowTitle(); + switchboard.addScope("MainWindow", shortcutScope); + + QAction *a = new QAction("Close window", this); + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + switchboard.addAction(a, "textCloseWindow", Qt::CTRL | Qt::Key_D, shortcutScope, "Misc"); // FIXME-3 translation? + connect(a, SIGNAL(triggered()), this, SLOT(closeWindow())); + //fileMenu->addAction(a); + addAction(a); + // QAction *a = new QAction( tr( "Save","ScriptEditor" ), ui.editor); // a->setShortcut (Qt::CTRL | Qt::Key_S ); // a->setShortcutContext (Qt::WidgetWithChildrenShortcut); @@ -102,6 +119,20 @@ ScriptEditor::ScriptEditor(QWidget *parent) : QWidget(parent) // connect( a, SIGNAL( triggered() ), this, SLOT( saveSlide() ) ); } +void ScriptEditor::setFocus() { + switch (ui.modeTabWidget->currentIndex()) { + case 0: + slideEditor->setFocus(); + break; + case 1: + macroEditor->setFocus(); + break; + case 2: + codeEditor->setFocus(); + break; + } +} + QString ScriptEditor::getScriptFile() { return codeEditor->toPlainText(); } void ScriptEditor::saveSlide() @@ -132,6 +163,13 @@ void ScriptEditor::setSlideScript(uint model_id, uint slide_id, slideEditor->setPlainText(s); } +void ScriptEditor::closeWindow() +{ + parentWidget()->hide(); + mainWindow->updateActions(); + qDebug() << "SE::closeWindow"; +} + void ScriptEditor::runMacro() { emit runScript(macroEditor->toPlainText()); } void ScriptEditor::runSlide() { emit runScript(slideEditor->toPlainText()); } diff --git a/src/scripteditor.h b/src/scripteditor.h index 948be36..72dd89f 100644 --- a/src/scripteditor.h +++ b/src/scripteditor.h @@ -20,10 +20,12 @@ class ScriptEditor : public QWidget { public: ScriptEditor(QWidget *parent = 0); + void setFocus(); QString getScriptFile(); void setSlideScript(uint vymModelID, uint slideID, const QString &); public slots: + void closeWindow(); void runMacro(); void runSlide(); void runScript(); diff --git a/src/scriptoutput.cpp b/src/scriptoutput.cpp index cf9dcea..2ac5a55 100644 --- a/src/scriptoutput.cpp +++ b/src/scriptoutput.cpp @@ -2,7 +2,7 @@ ScriptOutput::ScriptOutput(QWidget *parent) : QWidget(parent) { - editor = new QTextEdit(this); + editor = new QTextEdit(this); // FIXME-4 use QTextBrowser and add button to clear browser layout = new QVBoxLayout; layout->addWidget(editor); setLayout(layout); @@ -14,6 +14,11 @@ ScriptOutput::~ScriptOutput() delete editor; } +void ScriptOutput::setFocus() { //FIXME-5 missing implementation + // qDebug() << "SO::setFOcus"; + // Currently ScriptEditor gets focus, when output is toggled +} + void ScriptOutput::clear() { editor->clear(); } void ScriptOutput::setText(const QString &text) { editor->setText(text); } diff --git a/src/scriptoutput.h b/src/scriptoutput.h index e6dfeab..000f5e3 100644 --- a/src/scriptoutput.h +++ b/src/scriptoutput.h @@ -9,6 +9,7 @@ class ScriptOutput : public QWidget { public: ScriptOutput(QWidget *parent); ~ScriptOutput(); + void setFocus(); void clear(); void setText(const QString &text); QString text(); diff --git a/src/shortcuts.cpp b/src/shortcuts.cpp index 45a6151..9795560 100644 --- a/src/shortcuts.cpp +++ b/src/shortcuts.cpp @@ -28,12 +28,8 @@ Switchboard::Switchboard() {} void Switchboard::addScope(QString scopeIdentifier, QString scopeName) { - if (scopesMap.contains(scopeIdentifier)) { - qDebug() << "Warning switchboard: Shortcut scope " << scopeIdentifier - << " already exists"; - return; - } - scopesMap.insert(scopeIdentifier, scopeName); + if (!scopesMap.contains(scopeIdentifier)) + scopesMap.insert(scopeIdentifier, scopeName); } void Switchboard::addAction(QAction *action, diff --git a/src/slideeditor.cpp b/src/slideeditor.cpp index c761b84..9dce789 100644 --- a/src/slideeditor.cpp +++ b/src/slideeditor.cpp @@ -33,7 +33,7 @@ SlideEditor::SlideEditor(VymModel *m) slideControl = new SlideControlWidget(this); connect(slideControl, SIGNAL(takeSnapshot()), this, SLOT(addSlide())); connect(slideControl, SIGNAL(editButtonPressed()), mainWindow, - SLOT(windowToggleScriptEditor())); + SLOT(toggleScriptEditor())); connect(slideControl, SIGNAL(deleteButtonPressed()), this, SLOT(deleteSlide())); connect(slideControl, SIGNAL(previousButtonPressed()), this, @@ -79,9 +79,14 @@ void SlideEditor::closeEvent(QCloseEvent *event) closeWindow(); } +void SlideEditor::setFocus() +{ + view->setFocus(); +} + void SlideEditor::closeWindow() { - mainWindow->windowSetSlideEditorsVisibility(false); + mainWindow->setSlideEditorsVisibility(false); } void SlideEditor::previousSlide() diff --git a/src/slideeditor.h b/src/slideeditor.h index c8e87e6..1f54e6d 100644 --- a/src/slideeditor.h +++ b/src/slideeditor.h @@ -19,6 +19,7 @@ class SlideEditor : public QWidget { virtual void closeEvent(QCloseEvent *event); public slots: + void setFocus(); void closeWindow(); void previousSlide(); void nextSlide(); diff --git a/src/taskeditor.cpp b/src/taskeditor.cpp index 4d30d31..f2c3605 100644 --- a/src/taskeditor.cpp +++ b/src/taskeditor.cpp @@ -14,6 +14,7 @@ #include "branchitem.h" #include "mainwindow.h" +#include "shortcuts.h" #include "task.h" #include "taskfiltermodel.h" #include "taskmodel.h" @@ -24,6 +25,8 @@ extern Settings settings; extern QMenu *taskContextMenu; extern TaskModel *taskModel; +extern Switchboard switchboard; + extern QString editorFocusInStyle; TaskEditor::TaskEditor(QWidget *) @@ -111,6 +114,16 @@ TaskEditor::TaskEditor(QWidget *) connect(a, SIGNAL(triggered()), this, SLOT(toggleFilterFlags3())); actionToggleFilterFlags3 = a; + // Shortcuts + QString shortcutScope = tr("Task Editor", "Shortcut group"); + switchboard.addScope("TaskEditor", shortcutScope); + + a = new QAction("Close window", this); + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + switchboard.addAction(a, "taskEditorCloseWindow", Qt::CTRL | Qt::Key_D, shortcutScope, ""); + connect(a, SIGNAL(triggered()), this, SLOT(closeWindow())); + view->addAction(a); + // Clone actions defined in MainWindow foreach (QAction *qa, mainWindow->taskEditorActions) { a = new QAction(this); @@ -221,6 +234,11 @@ TaskEditor::~TaskEditor() } } +void TaskEditor::setFocus() +{ + view->setFocus(); +} + void TaskEditor::setMapName(const QString &n) { currentMapName = n; @@ -300,8 +318,7 @@ void TaskEditor::showSelection() QModelIndexList list = view->selectionModel()->selectedIndexes(); if (list.count() > 0) // Usually whole row is selected, so just go for first cell - view->scrollTo(taskModel->index(taskModel->getTask(list.first())), - QAbstractItemView::EnsureVisible); + view->scrollTo(list.first(), QAbstractItemView::EnsureVisible); } bool TaskEditor::select(Task *task) @@ -426,6 +443,8 @@ void TaskEditor::selectionChanged(const QItemSelection &selected, if (m != mainWindow->currentModel()) mainWindow->gotoModel(m); } + + showSelection(); } } @@ -434,6 +453,12 @@ void TaskEditor::contextMenuEvent(QContextMenuEvent *e) taskContextMenu->popup(e->globalPos()); } +void TaskEditor::closeWindow() +{ + parentWidget()->hide(); + emit windowClosed(); +} + void TaskEditor::toggleFilterMap() { setFilterMap(); } void TaskEditor::toggleFilterActive() { setFilterActive(); } diff --git a/src/taskeditor.h b/src/taskeditor.h index 7458f0e..77a360d 100644 --- a/src/taskeditor.h +++ b/src/taskeditor.h @@ -18,6 +18,7 @@ class TaskEditor : public QWidget { public: TaskEditor(QWidget *parent = nullptr); ~TaskEditor(); + void setFocus(); void setMapName(const QString &); bool isUsedFilterMap(); void setFilterMap(); @@ -35,6 +36,12 @@ class TaskEditor : public QWidget { void showSelection(); void contextMenuEvent(QContextMenuEvent *e); + signals: + void windowClosed(); + + public slots: + void closeWindow(); + private slots: void cellClicked(QModelIndex); void headerContextMenu(); @@ -52,6 +59,7 @@ class TaskEditor : public QWidget { private: QTableView *view; TaskFilterModel *filterActiveModel; + QString shortcutScope; QString currentMapName; QAction *actionToggleFilterMap; QAction *actionToggleFilterActive; diff --git a/src/taskmodel.cpp b/src/taskmodel.cpp index c5b6b9f..4cb302e 100644 --- a/src/taskmodel.cpp +++ b/src/taskmodel.cpp @@ -179,7 +179,7 @@ QVariant TaskModel::data(const QModelIndex &index, int role) const return t->getPriorityDelta(); else if (index.column() == 8) { BranchItem *bi = tasks.at(index.row())->getBranch(); - return bi->headingPlainWithParents(showParentsLevel); + return bi->headingText(); } } if (role == Qt::ForegroundRole && bi) diff --git a/src/texteditor.cpp b/src/texteditor.cpp index 196be31..65e8bb1 100644 --- a/src/texteditor.cpp +++ b/src/texteditor.cpp @@ -13,13 +13,14 @@ #include #include #include -#include #include #include "file.h" #include "mainwindow.h" +#include "my-textedit.h" #include "settings.h" #include "shortcuts.h" +#include "url-dialog.h" extern Main *mainWindow; extern Settings settings; @@ -44,13 +45,16 @@ extern bool debug; /////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////// -TextEditor::TextEditor(const QString eName) // FEATURE #137 insert images with drag & drop +TextEditor::TextEditor(const QString &id, const QString &scope) // FEATURE #137 insert images with drag & drop // https://stackoverflow.com/questions/3254652/several-ways-of-placing-an-image-in-a-qtextedit { - //qDebug() << "TE::constr of " << eName; + //qDebug() << "TE::constr of " << id << scope; + editorId = id; + shortcutScope = scope; + statusBar()->hide(); // Hide sizeGrip on default, which comes with statusBar - editor = new QTextEdit(this); + editor = new MyTextEdit(this); editor->setFocus(); editor->setTabStopDistance(20); // unit is pixel, default would be 80 editor->setAutoFillBackground(true); @@ -61,26 +65,20 @@ TextEditor::TextEditor(const QString eName) // FEATURE #137 insert images with connect(editor, SIGNAL(currentCharFormatChanged(const QTextCharFormat &)), this, SLOT(formatChanged(const QTextCharFormat &))); + connect(editor, SIGNAL(textChanged()), this, SLOT(editorChanged())); - QAction *a = new QAction("Close window", this); - a->setShortcutContext(Qt::WidgetWithChildrenShortcut); - a->setShortcut(Qt::CTRL | Qt::Key_D); - connect(a, SIGNAL(triggered()), this, SLOT(closeWindow())); - //fileMenu->addAction(a); - editor->addAction(a); + connect(editor, SIGNAL(editUrlCursor(QTextCursor)), this, SLOT(insertOrEditUrl(QTextCursor))); + setWindowIcon(QPixmap(":/vym-editor.png")); // Load settings - init (eName); - setWindowIcon(QPixmap(":/vym-editor.png")); + init (); // Various states - richTextMode = false; blockChangedSignal = false; blockTextUpdate = false; setInactive(); - editorName = "Text editor"; - setEditorTitle(""); + setTitle(""); menuBar()->setNativeMenuBar(false); } @@ -88,7 +86,7 @@ TextEditor::TextEditor(const QString eName) // FEATURE #137 insert images with TextEditor::~TextEditor() { // Save Settings - QString n = QString("/satellite/%1/").arg(shortcutScope); + QString n = QString("/satellite/%1/").arg(editorId); settings.setValue(n + "geometry/size", size()); settings.setValue(n + "geometry/pos", pos()); settings.setValue(n + "state", saveState(0)); @@ -107,11 +105,9 @@ TextEditor::~TextEditor() settings.setValue(n + "colors/richTextForeground", colorRichTextForeground.name()); } -void TextEditor::init(const QString &scope) +void TextEditor::init() { - shortcutScope = scope; - - QString n = QString("/satellite/%1/").arg(shortcutScope); + QString n = QString("/satellite/%1/").arg(editorId); colorRichTextEditorBackground = QColor::fromString( settings.value(n + "colors/richTextEditorBackground", vymBaseColor.name()).toString()); @@ -136,7 +132,7 @@ void TextEditor::init(const QString &scope) restoreState(settings.value(n + "state", 0).toByteArray()); - filenameHint = ""; + fileNameInt = ""; fixedFontInt = fixedFont; varFontInt = varFont; QString s = @@ -159,6 +155,8 @@ void TextEditor::init(const QString &scope) clear(); } +void TextEditor::setFocus() { editor->setFocus(); } + bool TextEditor::isEmpty() { if (editor->toPlainText().length() > 0) @@ -167,21 +165,17 @@ bool TextEditor::isEmpty() return true; } -void TextEditor::setEditorTitle(const QString &s) +void TextEditor::setTitle(const QString &s) { - editorTitle = (s.isEmpty()) ? editorName : editorName + ": " + s; + QString windowTitle = (s.isEmpty()) ? shortcutScope : shortcutScope + ": " + s; // Set title of parent dockWidget if (parentWidget()) - parentWidget()->setWindowTitle(editorTitle); + parentWidget()->setWindowTitle(windowTitle); - setWindowTitle(editorTitle); + setWindowTitle(windowTitle); } -QString TextEditor::getEditorTitle() { return editorTitle; } - -void TextEditor::setEditorName(const QString &s) { editorName = s; } - void TextEditor::setFont(const QFont &font) { blockChangedSignal = true; @@ -228,28 +222,17 @@ QString TextEditor::getFontHintDefault() return "var"; } -void TextEditor::setFilename(const QString &fn) +void TextEditor::setFileName(const QString &fn) { - if (state == filledEditor) { - if (fn.isEmpty()) { - filename = ""; - mainWindow->statusMessage( - tr("No filename available for this note.", "Statusbar message")); - } - else { - filename = fn; - mainWindow->statusMessage( - tr(QString("Current filename is %1").arg(filename).toUtf8(), - "Statusbar message")); - } - } + fileNameInt = fn; } -QString TextEditor::getFilename() { return filename; } +QString TextEditor::fileName() { return fileNameInt; } -void TextEditor::setFilenameHint(const QString &fnh) { filenameHint = fnh; } - -QString TextEditor::getFilenameHint() { return filenameHint; } +void TextEditor::setFileNameHint(const QString &fnh) +{ + fileNameHintInt = fnh; +} QString TextEditor::getText() { @@ -325,8 +308,6 @@ void TextEditor::setTextCursor(const QTextCursor &cursor) QTextCursor TextEditor::getTextCursor() { return editor->textCursor(); } -void TextEditor::setFocus() { editor->setFocus(); } - void TextEditor::setupFileActions() { QToolBar *tb = addToolBar(tr("Note Actions")); @@ -348,21 +329,13 @@ void TextEditor::setupFileActions() a = new QAction(QPixmap(QString(":/document-export-%1").arg(iconTheme)), tr("&Export..."), this); a->setShortcutContext(Qt::WidgetWithChildrenShortcut); switchboard.addAction(a, "textSave", Qt::CTRL | Qt::Key_S, shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(textExport())); + connect(a, SIGNAL(triggered()), this, SLOT(textExportAs())); tb->addAction(a); fileMenu->addAction(a); addAction(a); filledEditorActions << a; actionFileExport = a; - a = new QAction(tr("Export &As...(ASCII)"), this); - switchboard.addAction(a, "textExportAsASCII", shortcutScope, tag); - connect(a, SIGNAL(triggered()), this, SLOT(textExportText())); - fileMenu->addAction(a); - addAction(a); - filledEditorActions << a; - actionFileExportText = a; - fileMenu->addSeparator(); a = new QAction(QPixmap(QString(":/document-print-%1.svg").arg(iconTheme)), tr("&Print..."), this); switchboard.addAction(a, "textPrint", Qt::CTRL | Qt::Key_P, shortcutScope, tag); @@ -378,6 +351,13 @@ void TextEditor::setupFileActions() tb->addAction(a); filledEditorActions << a; actionFileDeleteAll = a; + + a = new QAction("Close window", editor); + a->setShortcutContext(Qt::WidgetWithChildrenShortcut); + switchboard.addAction(a, "textCloseWindow", Qt::CTRL | Qt::Key_D, shortcutScope, tag); + connect(a, SIGNAL(triggered()), this, SLOT(closeWindow())); + fileMenu->addAction(a); + editor->addAction(a); } void TextEditor::setupEditActions() @@ -445,12 +425,20 @@ void TextEditor::setupEditActions() filledEditorActions << a; actionEditPaste = a; + a = new QAction(QPixmap(QString(":/flag-url.svg")), tr("Insert or edit URL", "TextEditor") + "...", this); + editMenu->addAction(a); + connect(a, SIGNAL(triggered()), this, SLOT(insertOrEditUrl())); + editMenu->addAction(a); + editToolBar->addAction(a); + filledEditorRichTextActions << a; + actionInsertOrEditUrl = a; + a = new QAction(QPixmap(QString(":/insert-image-%1.svg").arg(iconTheme)), tr("Insert image", "TextEditor") + "...", this); editMenu->addAction(a); connect(a, SIGNAL(triggered()), this, SLOT(insertImage())); editMenu->addAction(a); editToolBar->addAction(a); - filledEditorActions << a; + filledEditorRichTextActions << a; actionInsertImage = a; } @@ -704,16 +692,10 @@ void TextEditor::textLoad() } } -void TextEditor::closeEvent(QCloseEvent *ce) -{ - ce->accept(); // TextEditor can be reopened with show() - closeWindow(); -} - bool TextEditor::eventFilter(QObject *obj, QEvent *ev) { + //qDebug() << "TE::eventFilter obj=" << obj << " ev=" << ev; if (obj == editor) { - // qDebug() << "TE::eventFilter ev=" << ev; if (ev->type() == QEvent::FocusIn) { //editor->setFrameStyle(QFrame::Box); editor->setStyleSheet("QTextEdit {" + editorFocusInStyle + "}"); @@ -763,11 +745,10 @@ void TextEditor::editorChanged() void TextEditor::setRichText(const QString &t) { blockChangedSignal = true; - richTextMode = true; + editor->setRichTextMode(true); editor->setReadOnly(false); editor->setHtml(t); actionFormatRichText->setChecked(true); - actionInsertImage->setEnabled(true); // Update state including colors updateState(); @@ -779,12 +760,11 @@ void TextEditor::setRichText(const QString &t) void TextEditor::setPlainText(const QString &t) { blockChangedSignal = true; - richTextMode = false; + editor->setRichTextMode(false); editor->setReadOnly(false); editor->setPlainText(t); actionFormatRichText->setChecked(false); - actionInsertImage->setEnabled(false); // Reset also text format QTextCharFormat textformat; @@ -842,6 +822,8 @@ void TextEditor::clear() editor->clear(); setState(emptyEditor); + fileNameInt.clear(); + blockChangedSignal = blockChangedOrg; } @@ -849,7 +831,6 @@ void TextEditor::closeWindow() { parentWidget()->hide(); emit windowClosed(); - return; } void TextEditor::deleteAll() @@ -859,11 +840,25 @@ void TextEditor::deleteAll() void TextEditor::textExportAs() { - QTextCharFormat f = editor->currentCharFormat(); + QString text, postfix; + if (actionFormatRichText->isChecked()) { + text = editor->toHtml(); + postfix = ".html"; + } else { + text = editor->toPlainText(); + postfix = ".txt"; + } + + QString fn; + if (fileNameInt.isEmpty()) + fn = fileNameHintInt + postfix; + else + fn = fileNameInt; QString caption = tr("Export Note to single file"); - QString fn = QFileDialog::getSaveFileName( - this, caption, QString(), "VYM Note (HTML) (*.html);;All files (*)", + + fn = QFileDialog::getSaveFileName( + this, caption, fn, "VYM Note (HTML) (*.html);VYM Note (Text) (*.txt);All files (*)", 0, QFileDialog::DontConfirmOverwrite); if (!fn.isEmpty()) { @@ -878,80 +873,21 @@ void TextEditor::textExportAs() mb.addButton(tr("Cancel"), QMessageBox::RejectRole); mb.exec(); if (mb.clickedButton() != overwriteButton) return; - - // save - filename = fn; - textExport(); - return; - } - else { - filename = fn; - textExport(); - return; } - } - mainWindow->statusMessage( - tr("Couldn't export note ", "dialog 'save note as'") + fn); -} - -void TextEditor::textExport() -{ - if (filename.isEmpty()) { - textExportAs(); - return; - } - - QString text; - if (actionFormatRichText->isChecked()) - text = editor->toHtml(); - else - text = editor->toPlainText(); - - QFile f(filename); - if (!f.open(QIODevice::WriteOnly)) { - mainWindow->statusMessage(QString("Could not write to %1").arg(filename)); - return; - } - - QTextStream t(&f); - t << text; - f.close(); - - editor->document()->setModified(false); - - mainWindow->statusMessage(QString("Note exported as %1").arg(filename)); -} - -void TextEditor::textExportText() -{ - QString fn, s; - if (!filenameHint.isEmpty()) { - if (!filenameHint.contains(".txt")) - s = filenameHint + ".txt"; - else - s = filenameHint; - } - else - s = QString(); - QString caption = tr("Export Note to single file (ASCII)"); - fn = QFileDialog::getSaveFileName( - this, caption, s, "VYM Note (ASCII) (*.txt);;All files (*)"); - if (!fn.isEmpty()) { - QFile file(fn); + fileNameInt = fn; - // Already tested in QFileDialog, if we may overwrite in case file exists already + QFile f(fileNameInt); + if (!f.open(QIODevice::WriteOnly)) { + mainWindow->statusMessage(QString("Could not write to %1").arg(fileNameInt)); + return; + } - if (!file.open(QIODevice::WriteOnly)) - mainWindow->statusMessage( - QString("Could not write to %1").arg(filename)); - else { - QTextStream t(&file); - t << getVymText().getTextASCII(); - file.close(); + QTextStream t(&f); + t << text; + f.close(); - mainWindow->statusMessage(QString("Note exported as %1").arg(fn)); - } + mainWindow->statusMessage(QString("Note exported as %1").arg(fileNameInt)); } } @@ -985,6 +921,11 @@ void TextEditor::toggleFonthint() emit textHasChanged(getVymText()); } +bool TextEditor::richTextMode() +{ + return editor->richTextMode(); +} + void TextEditor::setRichTextMode(bool b) { if (b) { @@ -1215,10 +1156,13 @@ void TextEditor::updateActions() b = (state == filledEditor && actionFormatRichText->isChecked()) ? true : false; foreach (QAction* a, filledEditorRichTextActions) - a->setEnabled(b); + { + a->setEnabled(b); // FIXME-3 Only on Mac not greyed out when disabled. Qt bug? + // qDebug() << "Setting action " << a << " to " << b; + } actionFormatRichText->setEnabled(true); - if (richTextMode) { + if (richTextMode()) { actionFormatUseFixedFont->setEnabled(false); // FIXME-3 Maybe even hide it in RT mode fontToolBar->show(); formatToolBar->show(); @@ -1308,6 +1252,76 @@ void TextEditor::selectRichTextBackgroundColor() setRichTextBackgroundColor(col); } +void TextEditor::insertOrEditUrl() +{ + insertOrEditUrl(editor->textCursor()); +} + +void TextEditor::insertOrEditUrl(QTextCursor cursor) +{ + QTextCharFormat fmt = cursor.charFormat(); + QString url; + QString text; + bool edit = false; + int anchorStart; + int anchorEnd; + + if (fmt.isAnchor()) { + QString plainText = editor->toPlainText(); + url = fmt.anchorHref(); + edit = true; + + // Find beginning of URL in block + int pos = cursor.position(); + int pos_org = pos; + anchorStart = pos; + while (!cursor.atBlockStart() && pos == anchorStart) { + pos--; + cursor.setPosition(pos); + if (cursor.charFormat().isAnchor()) + anchorStart = pos; + } + + // Find end of URL in block + pos = pos_org; + anchorEnd = pos; + while (!cursor.atBlockEnd() && pos == anchorEnd) { + pos++; + cursor.setPosition(pos); + if (cursor.charFormat().isAnchor()) + anchorEnd = pos; + } + text = plainText.slice(anchorStart - 1, anchorEnd - anchorStart + 1); + } + + UrlDialog dia (this); + dia.setUrl(url); + dia.setText(text); + if (dia.exec()) { + url = dia.url(); + fmt = cursor.charFormat(); + if (!url.isEmpty()) { + fmt.setAnchor(true); + fmt.setAnchorHref(url); + fmt.setFontUnderline(true); + } else { + fmt.setAnchor(false); + fmt.setFontUnderline(false); + } + + if (edit) { + cursor.setPosition(anchorStart - 1); + cursor.movePosition( + QTextCursor::NextCharacter, + QTextCursor::KeepAnchor, + anchorEnd - anchorStart + 1); + cursor.removeSelectedText(); + cursor.insertText(dia.text(), fmt); + } else + cursor.insertText(dia.text(), fmt); + } +} + void TextEditor::insertImage() { QStringList imagePaths = openImageDialog(tr("Load image", "TextEditor")); diff --git a/src/texteditor.h b/src/texteditor.h index 9ef3d50..75d2351 100644 --- a/src/texteditor.h +++ b/src/texteditor.h @@ -5,7 +5,8 @@ #include #include #include "vymtext.h" -class QTextEdit; + +class MyTextEdit; class QComboBox; enum EditorState { inactiveEditor, emptyEditor, filledEditor }; @@ -13,22 +14,20 @@ enum EditorState { inactiveEditor, emptyEditor, filledEditor }; class TextEditor : public QMainWindow { Q_OBJECT public: - TextEditor(const QString eName = "undefinedEditorName"); + TextEditor(const QString &id, const QString &scope); ~TextEditor(); - void init(const QString &ename); + void init(); + void setFocus(); bool isEmpty(); - void setEditorName(const QString &); - void setEditorTitle(const QString &t = ""); - QString getEditorTitle(); + void setTitle(const QString &t = ""); void setFont(const QFont &); void setFontHint(const QString &); QString getFontHint(); QString getFontHintDefault(); - void setFilename(const QString &); - QString getFilename(); - void setFilenameHint(const QString &); - QString getFilenameHint(); + void setFileName(const QString &); + QString fileName(); + void setFileNameHint(const QString &); QString getText(); VymText getVymText(); @@ -36,14 +35,12 @@ class TextEditor : public QMainWindow { bool findText(const QString &, const QTextDocument::FindFlags &, int i); void setTextCursor(const QTextCursor &cursor); QTextCursor getTextCursor(); - void setFocus(); protected: void setupFileActions(); void setupEditActions(); void setupFormatActions(); void setupSettingsActions(); - void closeEvent(QCloseEvent *); bool eventFilter(QObject *obj, QEvent *ev); public slots: @@ -69,11 +66,10 @@ class TextEditor : public QMainWindow { private slots: void textLoad(); void textExportAs(); - void textExport(); - void textExportText(); void textPrint(); void textEditUndo(); void toggleFonthint(); + bool richTextMode(); void setRichTextMode(bool b); void toggleRichText(); void setFixedFont(); @@ -99,6 +95,8 @@ class TextEditor : public QMainWindow { void selectRichTextEditorBackgroundColor(); void selectRichTextForegroundColor(); void selectRichTextBackgroundColor(); + void insertOrEditUrl(); + void insertOrEditUrl(QTextCursor); void insertImage(); public: @@ -110,19 +108,16 @@ class TextEditor : public QMainWindow { protected: QString shortcutScope; // used for settings and shortcut scopes - QTextEdit *editor; + MyTextEdit *editor; QPoint lastPos; // save last position of window - QString editorName; // Name of editor, e.g. note editor, heading editor, ... - QString editorTitle; // window title: Editor name + selected branch - QString filename; - QString filenameHint; + QString editorId; // Name of editor, e.g. NoteEditor or HeadingEditor + QString fileNameInt; + QString fileNameHintInt; // E.g. heading of branch for notes EditorState state; bool blockChangedSignal; bool blockTextUpdate; // Set *while* textHasChanged is still being emitted - bool richTextMode; - QColor colorRichTextEditorBackground; QColor colorRichTextBackground; QColor colorRichTextForeground; @@ -152,6 +147,7 @@ class TextEditor : public QMainWindow { *actionFilePrint, *actionFileDeleteAll, *actionEditUndo, *actionEditRedo, *actionEditCopy, *actionEditCut, *actionEditPaste, *actionSelectAll, + *actionInsertOrEditUrl, *actionInsertImage, *actionFormatUseFixedFont, *actionFormatRichText, *actionSettingsVarFont, *actionSettingsFixedFont, diff --git a/src/treeeditor.cpp b/src/treeeditor.cpp index 79a4751..c968567 100644 --- a/src/treeeditor.cpp +++ b/src/treeeditor.cpp @@ -105,15 +105,11 @@ void TreeEditor::contextMenuEvent(QContextMenuEvent *e) { e->accept(); } -void TreeEditor::closeEvent(QCloseEvent *event) -{ - closeWindow(); -} - void TreeEditor::closeWindow() { + qDebug() << __func__; // Close *all* TreeEditors in each VymView and update vym settings - mainWindow->windowSetTreeEditorsVisibility(false); + mainWindow->setTreeEditorsVisibility(false); } void TreeEditor::cursorUp() diff --git a/src/treeeditor.h b/src/treeeditor.h index 9f38a8e..313d056 100644 --- a/src/treeeditor.h +++ b/src/treeeditor.h @@ -19,7 +19,6 @@ class TreeEditor : public QTreeView { protected: virtual void contextMenuEvent(QContextMenuEvent *e); - virtual void closeEvent(QCloseEvent *event); public slots: void closeWindow(); diff --git a/src/treemodel.cpp b/src/treemodel.cpp index a6ed465..191986b 100644 --- a/src/treemodel.cpp +++ b/src/treemodel.cpp @@ -279,8 +279,8 @@ bool TreeModel::removeRows(int row, int count, const QModelIndex &parent) for (int i = row; i <= last; i++) { ti = pi->childItemByRow(row); - pi->removeChild(row); // does not delete object! - delete ti; + pi->removeChild(row); // Does not delete object yet + delete ti; // Deletes object } return true; } diff --git a/src/url-dialog.cpp b/src/url-dialog.cpp new file mode 100644 index 0000000..f01b8b0 --- /dev/null +++ b/src/url-dialog.cpp @@ -0,0 +1,37 @@ +#include "url-dialog.h" + +UrlDialog::UrlDialog(QWidget *parent) : QDialog(parent) +{ + ui.setupUi(this); + connect(ui.urlLE, SIGNAL(textEdited(const QString &)), this, SLOT(updateText(QString))); + connect(ui.textLE, SIGNAL(textEdited(const QString &)), this, SLOT(textEdited())); + updateTextWithUrl = true; +} + +void UrlDialog::setUrl(const QString &s) +{ + ui.urlLE->setText(s); +} + +QString UrlDialog::url() {return ui.urlLE->text();} + +void UrlDialog::setText(const QString &s) +{ + ui.textLE->setText(s); + updateTextWithUrl = false; +} + +QString UrlDialog::text() {return ui.textLE->text();} + +void UrlDialog::textEdited() +{ + updateTextWithUrl = false; +} + +void UrlDialog::updateText(const QString &s) +{ + // Only update text with url, if it has not been + // explicitely set so far + if (updateTextWithUrl) + ui.textLE->setText(s); +} diff --git a/src/url-dialog.h b/src/url-dialog.h new file mode 100644 index 0000000..92229fa --- /dev/null +++ b/src/url-dialog.h @@ -0,0 +1,29 @@ +#ifndef URLDIALOG_H +#define URLDIALOG_H + +#include "ui_url-dialog.h" + +/* \brief Dialog to display and edit Urls */ + +class UrlDialog : public QDialog { + Q_OBJECT + + public: + UrlDialog(QWidget *parent = 0); + + virtual QString url(); + virtual QString text(); + bool isReadOnly(); + + public slots: + virtual void setUrl(const QString &s); + virtual void setText(const QString &s); + void textEdited(); + void updateText(const QString &s); + + private: + Ui::UrlDialog ui; + bool updateTextWithUrl; +}; + +#endif diff --git a/src/version.h b/src/version.h index 187f027..98e19f2 100644 --- a/src/version.h +++ b/src/version.h @@ -1,8 +1,9 @@ #ifndef VERSION_H #define VERSION_H -#define __VYM_VERSION "2.9.598" -#define __VYM_BUILD_DATE "2025-09-25" +#define __VYM_VERSION "2.9.604" +#define __VYM_BUILD_DATE "2027-01-20" + #define __VYM_NAME "VYMng" // FIXME "next generation" in in window title #define __VYM_HOME "http://www.insilmaril.de/vym" diff --git a/src/vymmodel.cpp b/src/vymmodel.cpp index 41b14bd..1b8a4ed 100644 --- a/src/vymmodel.cpp +++ b/src/vymmodel.cpp @@ -120,14 +120,20 @@ VymModel::VymModel() VymModel::~VymModel() { - //qDebug() << "Destr VymModel begin this=" << this << " " << mapName << "zipAgent=" << zipAgent; - //logInfo("VymModel about to be destroyed", __func__); + // qDebug() << "Destr VymModel begin this=" << this << " " << mapName << "zipAgent=" << zipAgent; mapEditor = nullptr; repositionBlocked = true; + autosaveTimer->stop(); - filePath.clear(); fileChangedTimer->stop(); + taskAlarmTimer->stop(); + + delete(autosaveTimer); + delete(fileChangedTimer); + delete(taskAlarmTimer); + + filePath.clear(); vymLock.releaseLock(); @@ -464,6 +470,8 @@ bool VymModel::loadMap(QString fname, const File::LoadMode &lmode, BranchItem *insertBranch, int insertPos) { + qDebug() << "a) Loading " << fname; + bool noError = true; // Get updated zoomFactor, before applying one read from file in the end @@ -719,14 +727,19 @@ bool VymModel::loadMap(QString fname, const File::LoadMode &lmode, if (lmode != File::NewMap) emitUpdateQueries(); + qDebug() << "b) Loaded " << fname; if (mapEditor) { mapEditor->setZoomFactorTarget(zoomFactor); mapEditor->setRotationTarget(mapRotationInt); } + qDebug() << "c) Loaded " << fname; qApp->processEvents(); // Update view (scene()->update() is not enough) isLoadingInt = false; + + qDebug() << "d) Loaded " << fname; + return noError; } @@ -1139,7 +1152,7 @@ void VymModel::importDir() fd.setAcceptMode(QFileDialog::AcceptOpen); if (fd.exec() == QDialog::Accepted && !fd.selectedFiles().isEmpty()) { - importDir(fd.selectedFiles().first()); + importDir(fd.selectedFiles().constFirst()); reposition(); } } @@ -2133,9 +2146,9 @@ void VymModel::test() // Forces pulling together BranchItem *bi = bc->getBranchItem(); + /* double weight = (bi->branchCount() + 1) * 10; - /* for (int i = 0; i < bi->branchCount(); i++) { BranchItem *obi = bi->getBranchNum(i); BranchContainer *obc = obi->getBranchContainer(); @@ -2647,50 +2660,52 @@ void VymModel::setJiraQuery(const QString &query_new, BranchItem *bi) setAttribute(bi, "Jira.query", query_new); } -void VymModel::setFrameAutoDesign(const bool &useInnerFrame, const bool &b, BranchItem *bi) +void VymModel::setFrameAutoDesign(const bool &useInnerFrame, const bool &newAutoDesign, BranchItem *bi) { QList selbis = getSelectedBranches(bi); - BranchContainer *bc; foreach (BranchItem *selbi, selbis) { - QString uif = toS(useInnerFrame); - QString b_undo = toS(!b); - QString b_redo = toS(b); - QString uc = QString("setFrameAutoDesign (%1, %2);").arg(uif).arg(b_undo); - QString rc = QString("setFrameAutoDesign (%1, %2);").arg(uif).arg(b_redo); + BranchContainer *bc = selbi->getBranchContainer(); + if (bc->frameAutoDesign(useInnerFrame) != newAutoDesign) { + QString uif = toS(useInnerFrame); + QString b_undo = toS(!newAutoDesign); + QString b_redo = toS(newAutoDesign); + QString uc = QString("setFrameAutoDesign (%1, %2);").arg(uif, b_undo); + QString rc = QString("setFrameAutoDesign (%1, %2);").arg(uif, b_redo); - QString comment = QString("Set automatic design of frame to '%1'").arg(toS(b)); + QString comment = QString("Set automatic design of frame to '%1'").arg(toS(newAutoDesign)); - logAction(rc, comment, __func__); + logAction(rc, comment, __func__); - saveStateBeginScript(comment); // setFrameAD, calls setFrame* functions + saveStateBeginScript(comment); // setFrameAD, calls setFrame* functions - bc = selbi->getBranchContainer(); - bc->setFrameAutoDesign(useInnerFrame, b); - if (b) { - setFrameType(useInnerFrame, mapDesignInt->frameType(useInnerFrame, selbi->depth()), selbi); - setFramePenColor(useInnerFrame, mapDesignInt->framePenColor(useInnerFrame, selbi->depth()), selbi); - setFramePenWidth(useInnerFrame, mapDesignInt->framePenWidth(useInnerFrame, selbi->depth()), selbi); - setFrameBrushColor(useInnerFrame, mapDesignInt->frameBrushColor(useInnerFrame, selbi->depth()), selbi); - } + bc->setFrameAutoDesign(useInnerFrame, newAutoDesign); + if (newAutoDesign) { + setFrameType(useInnerFrame, mapDesignInt->frameType(useInnerFrame, selbi->depth()), selbi); + setFramePenColor(useInnerFrame, mapDesignInt->framePenColor(useInnerFrame, selbi->depth()), selbi); + setFramePenWidth(useInnerFrame, mapDesignInt->framePenWidth(useInnerFrame, selbi->depth()), selbi); + setFrameBrushColor(useInnerFrame, mapDesignInt->frameBrushColor(useInnerFrame, selbi->depth()), selbi); + } - emitDataChanged(selbi); - branchPropertyEditor->updateControls(); + emitDataChanged(selbi); + branchPropertyEditor->updateControls(); - saveStateBranch(selbi, uc, rc, comment); - saveStateEndScript(); + saveStateBranch(selbi, uc, rc, comment); + saveStateEndScript(); + } } } void VymModel::setFrameType(const bool &useInnerFrame, const FrameContainer::FrameType &t, BranchItem *bi) { QList selbis = getSelectedBranches(bi); - BranchContainer *bc; foreach (BranchItem *selbi, selbis) { - bc = selbi->getBranchContainer(); + BranchContainer *bc = selbi->getBranchContainer(); if (bc->frameType(useInnerFrame) == t) - break; + continue; + + setFrameAutoDesign(useInnerFrame, false, selbi); QString uif = toS(useInnerFrame); @@ -2764,6 +2779,8 @@ void VymModel::setFramePenColor(const bool &useInnerFrame, const QColor &col, Br foreach (BranchItem *selbi, selbis) { BranchContainer *bc = selbi->getBranchContainer(); if (bc->frameType(useInnerFrame) != FrameContainer::NoFrame) { + setFrameAutoDesign(useInnerFrame, false, selbi); + QString uif = toS(useInnerFrame); QString colorNameOld = bc->framePenColor(useInnerFrame).name(); QString uc = QString("setFramePenColor (%1, \"%2\");").arg(uif, colorNameOld); @@ -2790,6 +2807,8 @@ void VymModel::setFrameBrushColor( foreach (BranchItem *selbi, selbis) { BranchContainer *bc = selbi->getBranchContainer(); if (bc->frameType(useInnerFrame) != FrameContainer::NoFrame) { + setFrameAutoDesign(useInnerFrame, false, selbi); + QString uif = toS(useInnerFrame); QString colorNameOld = bc->framePenColor(useInnerFrame).name(); QString uc = QString("setFrameBrushColor (%1, \"%2\");").arg(uif, colorNameOld); @@ -2814,7 +2833,9 @@ void VymModel::setFramePadding( QList selbis = getSelectedBranches(bi); foreach (BranchItem *selbi, selbis) { BranchContainer *bc = selbi->getBranchContainer(); - if (bc->frameType(useInnerFrame) != FrameContainer::NoFrame) { + if (i != bc->framePadding(useInnerFrame)) { + setFrameAutoDesign(useInnerFrame, false, selbi); + QString uif = toS(useInnerFrame); QString uc = QString("setFramePadding (%1, \"%2\");").arg(uif).arg(bc->framePadding(useInnerFrame)); QString rc = QString("setFramePadding (%1, \"%2\");").arg(uif).arg(i); @@ -2839,7 +2860,9 @@ void VymModel::setFramePenWidth( QList selbis = getSelectedBranches(bi); foreach (BranchItem *selbi, selbis) { BranchContainer *bc = selbi->getBranchContainer(); - if (bc->frameType(useInnerFrame) != FrameContainer::NoFrame) { + if (i != bc->framePenWidth(useInnerFrame)) { + setFrameAutoDesign(useInnerFrame, false, selbi); + QString uif = toS(useInnerFrame); QString uc = QString("setFramePenWidth (%1, \"%2\");").arg(uif).arg(bc->framePenWidth(useInnerFrame)); QString rc = QString("setFramePenWidth (%1, \"%2\");").arg(uif).arg(i); @@ -3007,6 +3030,7 @@ void VymModel::rotateSubtree(qreal a) foreach (BranchItem *selbi, selbis) { BranchContainer *bc = selbi->getBranchContainer(); + setRotationAutoDesign(false, selbi); qreal a_old = bc->rotationSubtree(); qreal a_new = a_old + a; QString uc = QString("setRotationSubtree(\"%1\");").arg(toS(a_old, 1)); @@ -4317,10 +4341,10 @@ BranchItem *VymModel::addMapCenter(bool interactive) BranchItem *newbi = addMapCenterAtPos(contextPos, interactive); - if (interactive && mapEditor) + if (interactive && mapEditor) { mapEditor->editHeading(newbi); - - emitShowSelection(); + emitShowSelection(); + } emitUpdateLayout(); return newbi; @@ -4329,6 +4353,8 @@ BranchItem *VymModel::addMapCenter(bool interactive) BranchItem *VymModel::addMapCenterAtPos(QPointF absPos, bool interactive) // createMapCenter could then probably be merged with createBranch { + Q_UNUSED(interactive); + // Create TreeItem QModelIndex parix = index(rootItem); @@ -5042,6 +5068,8 @@ TreeItem *VymModel::deleteItem(TreeItem *ti) int n = ti->row(); beginRemoveRows(parentIndex, n, n); bool r = removeRows(n, 1, parentIndex); // Deletes object! + if (!r) + qWarning() << "removeRows failed in " << __func__; endRemoveRows(); emit layoutChanged(); @@ -6416,7 +6444,6 @@ bool VymModel::exportLastAvailable(QString &description, QString &command, re.setPattern("exportMap\\((\".*)\\)"); QRegularExpressionMatch match = re.match(command); if (match.hasMatch()) { - QString matched = match.captured(1); // matched == "23 def" command = QString("vym.currentMap().exportMap([%1]);").arg(match.captured(1)); settings.setLocalValue(filePath, "/export/last/command", command); qDebug() << "Rewriting last export command to version " << vymVersion << " format: " << command; @@ -6570,9 +6597,16 @@ bool VymModel::centerOnID(const QString &id) TreeItem *ti = findUuid(QUuid(id)); if (ti && (ti->hasTypeBranch() || ti->hasTypeImage())) { - Container *c = ((MapItem*)ti)->getContainer(); - if (c && zoomFactor > 0 ) { - mapEditor->setViewCenterTarget(c->mapToScene(c->rect().center()), zoomFactor, + QPointF p_center; + if (ti->hasTypeBranch()) + p_center = ((BranchItem*)ti)->getBranchContainer()->ornamentsSceneRect().center(); + else { + Container *c; + c = ((MapItem*)ti)->getContainer(); + p_center = c->mapToScene(c->rect().center()); + } + if (zoomFactor > 0 ) { + mapEditor->setViewCenterTarget(p_center, zoomFactor, mapRotationInt, animDuration, animCurve); return true; @@ -6893,8 +6927,6 @@ QColor VymModel::backgroundColor() void VymModel::setBackgroundColor(QColor col) { - QColor oldcol = mapDesignInt->backgroundColor(); - saveStateBeginScript("Set background color"); // Save background image in script if (hasBackgroundImage()) @@ -6992,8 +7024,6 @@ void VymModel::unsetBackgroundImage() if (!saveStateBlocked) { QString uc, rc, com; - bool saveOldImage = false; - QString oldImagePath = "images/background-image-old.png"; uc = QString("map.loadBackgroundImage(\"HISTORY_PATH/%1\");").arg(oldImagePath); @@ -7414,6 +7444,11 @@ void VymModel::updateSelection(QItemSelection newsel, QItemSelection dsel) void VymModel::setSelectionModel(QItemSelectionModel *sm) { selModel = sm; } +int VymModel::selectedItemsCount() +{ + return selModel->selectedIndexes().count(); +} + QItemSelectionModel *VymModel::getSelectionModel() { return selModel; } void VymModel::setSelectionBlocked(bool b) { selectionBlocked = b; } @@ -7614,6 +7649,7 @@ void VymModel::appendSelectionToHistory() // FIXME-3 history unable to cope with void VymModel::emitShowSelection(bool scaled, bool rotated) { + //qDebug() << "VM::" << __func__ << "scaled=" << scaled << "rotated=" << rotated; if (!repositionBlocked) emit showSelection(scaled, rotated); } @@ -8039,8 +8075,8 @@ SlideItem *VymModel::addSlide() // FIXME-3 missing saveState void VymModel::deleteSlide(SlideItem *si) // FIXME-3 missing saveState { if (si) { - QString s = "" + si->saveToDir() + ""; /* + QString s = "" + si->saveToDir() + ""; int pos = si->row(); saveStateold(File::PartOfMap, getSelectString(), // FIXME deleteAddSlide QString("addMapInsert (\"PATH\",%1)").arg(pos), diff --git a/src/vymmodel.h b/src/vymmodel.h index 2364bfd..bad7d1a 100644 --- a/src/vymmodel.h +++ b/src/vymmodel.h @@ -825,6 +825,7 @@ class VymModel : public TreeModel { public: void setSelectionModel(QItemSelectionModel *); // Set common selectionModel QItemSelectionModel *getSelectionModel(); + int selectedItemsCount(); //! Number of selected items void setSelectionBlocked(bool); bool isSelectionBlocked(); diff --git a/src/vymtext.cpp b/src/vymtext.cpp index 0d104ec..95af057 100644 --- a/src/vymtext.cpp +++ b/src/vymtext.cpp @@ -27,7 +27,7 @@ VymText::VymText(const QString &s) bool VymText::operator==(const VymText &other) { if (text == other.text && fonthint == other.fonthint && - textmode == other.textmode && filenamehint == other.filenamehint && + textmode == other.textmode && fileNameInt == other.fileNameInt && color == other.color) return true; else @@ -40,7 +40,7 @@ void VymText::copy(const VymText &other) { text = other.text; fonthint = other.fonthint; - filenamehint = other.filenamehint; + fileNameInt = other.fileNameInt; textmode = other.textmode; color = other.color; } @@ -49,7 +49,7 @@ void VymText::clear() { text = ""; fonthint = ""; - filenamehint = ""; + fileNameInt = ""; textmode = AutoText; color = Qt::black; } @@ -215,9 +215,9 @@ QString VymText::getFontHint() const return fonthint; } -void VymText::setFilenameHint(const QString &s) { filenamehint = s; } +void VymText::setFileName(const QString &s) { fileNameInt = s; } -QString VymText::getFilenameHint() const { return filenamehint; } +QString VymText::fileName() const { return fileNameInt; } bool VymText::isEmpty() const { diff --git a/src/vymtext.h b/src/vymtext.h index 3695673..6e0bb4e 100644 --- a/src/vymtext.h +++ b/src/vymtext.h @@ -31,8 +31,8 @@ class VymText : public XMLObj { bool isRichText() const; void setFontHint(const QString &); QString getFontHint() const; - void setFilenameHint(const QString &); - QString getFilenameHint() const; + void setFileName(const QString &); + QString fileName() const; bool isEmpty() const; void setColor(QColor color); QColor getColor(); @@ -42,7 +42,7 @@ class VymText : public XMLObj { protected: QString text; QString fonthint; - QString filenamehint; + QString fileNameInt; TextMode textmode; QColor color; // used for plaintext }; diff --git a/src/vymview.cpp b/src/vymview.cpp index 3e24b45..71b4d6c 100644 --- a/src/vymview.cpp +++ b/src/vymview.cpp @@ -46,6 +46,7 @@ VymView::VymView(VymModel *m) de->setAllowedAreas(Qt::AllDockWidgetAreas); de->setVisible(settings.value("/mainwindow/view/showTreeEditors", true).toBool()); addDockWidget(Qt::LeftDockWidgetArea, de); + connect(de, SIGNAL(visibilityChanged(bool)), this, SLOT(treeEditorVisibilityChanged())); treeEditorDE = de; // Create good old MapEditor @@ -63,9 +64,8 @@ VymView::VymView(VymModel *m) de->setAllowedAreas(Qt::AllDockWidgetAreas); de->setVisible(settings.value("/mainwindow/view/showSlideEditors", false).toBool()); addDockWidget(Qt::RightDockWidgetArea, de); + connect(de, SIGNAL(visibilityChanged(bool)), this, SLOT(slideEditorVisibilityChanged())); slideEditorDE = de; - connect(slideEditorDE, SIGNAL(visibilityChanged(bool)), mainWindow, - SLOT(updateActions())); // Connect selections @@ -172,7 +172,11 @@ void VymView::changeSelection(const QItemSelection &newsel, mainWindow->changeSelection(model, newsel, desel); mainWindow->updateDockWidgetTitles(model); - showSelection(false, false); + //qDebug() << "VymView::changeSel"; + if (model->selectedItemsCount() < 4) + // Only show all selected items for a few items + // to avoid massive zooming out + showSelection(false, false); } void VymView::updateDockWidgetTitles() @@ -286,6 +290,11 @@ void VymView::showSelection(bool scaled, bool rotated) mapEditor->ensureSelectionVisibleAnimated(scaled, rotated); } +void VymView::treeEditorVisibilityChanged() +{ + mainWindow->setTreeEditorsVisibility(treeEditorDE->isVisible()); +} + void VymView::setTreeEditorVisibility(bool b) { if (b) @@ -294,6 +303,11 @@ void VymView::setTreeEditorVisibility(bool b) treeEditorDE->hide(); } +void VymView::slideEditorVisibilityChanged() +{ + mainWindow->setSlideEditorsVisibility(slideEditorDE->isVisible()); +} + void VymView::setSlideEditorVisibility(bool b) { if (b) @@ -304,3 +318,4 @@ void VymView::setSlideEditorVisibility(bool b) void VymView::setFocusMapEditor() { mapEditor->setFocus(); } void VymView::setFocusTreeEditor() { treeEditor->setFocus(); } +void VymView::setFocusSlideEditor() { slideEditor->setFocus(); } diff --git a/src/vymview.h b/src/vymview.h index 06a1442..72826a1 100644 --- a/src/vymview.h +++ b/src/vymview.h @@ -32,10 +32,13 @@ class VymView : public QMainWindow { void collapseOneLevel(); void collapseUnselected(); void showSelection(bool scaled, bool rotated); + void treeEditorVisibilityChanged(); void setTreeEditorVisibility(bool); + void slideEditorVisibilityChanged(); void setSlideEditorVisibility(bool); void setFocusMapEditor(); void setFocusTreeEditor(); + void setFocusSlideEditor(); private: VymModel *model; diff --git a/src/xml-vym.cpp b/src/xml-vym.cpp index d7948ba..b9490c1 100644 --- a/src/xml-vym.cpp +++ b/src/xml-vym.cpp @@ -423,7 +423,7 @@ void VymReader::readBranchOrMapCenter(File::LoadMode loadModeBranch, int insertP xml.name() == QLatin1String("note")) readHeadingOrVymNote(); else if (xml.name() == QLatin1String("branch")) { - if (lastBranch && lastBranch->depth() < 3) { + if (lastBranch && lastBranch->depth() < 3 && false) { // FIXME-2 Updates during load disabled for now. Too many selectionCHanges // Some graphical repainting during loading of map lastBranch->updateVisuals(); model->select(lastBranch); -- 2.47.3