From ed1b11a93228f46bec9216c3e38183d232d6f51d Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 14:20:33 +0100
Subject: [PATCH 01/16] Restore empty trash from menu (#2239)
---
novelwriter/gui/projtree.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/novelwriter/gui/projtree.py b/novelwriter/gui/projtree.py
index 2bc13a41..9c64127c 100644
--- a/novelwriter/gui/projtree.py
+++ b/novelwriter/gui/projtree.py
@@ -177,6 +177,7 @@ class GuiProjectView(QWidget):
self.projTree.addAction(trash)
rename.triggered.connect(self.renameTreeItem)
delete.triggered.connect(self.projTree.processDeleteRequest)
+ trash.triggered.connect(self.projTree.emptyTrash)
return
##
From 32feba3d1773b8f96bf0c6a02d823c14a9014ef8 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 15:19:39 +0100
Subject: [PATCH 02/16] Fix typos in changelog
---
CHANGELOG.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b2586cff..15a3b1fd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -246,7 +246,7 @@ careful when using this version on live writing projects, and make sure you take
markup processing and syntax highlighting. It is both slightly faster, and there are issues with
text encoding in at least some versions of Qt6 or PyQt6. PRs #2028 and #2043.
* Preparation for Qt6: Added a wrapper function for connecting signals to slots that has a
- different function signature. Python lambdas generate warnings inn Qt6. PR #2075.
+ different function signature. Python lambdas generate warnings in Qt6. PR #2075.
* Refactored manuscript formats and moved most of the processing to the Tokenizer class to simplify
the format classes and also make them more consistent. PRs #2060, #2061 and #2062.
* The document builder has been refactored to support more generalised format classes. PR #2047.
@@ -1126,7 +1126,7 @@ _These Release Notes also include the changes from the 2.2 Beta 1 and 2.2 RC 1 r
of 1 second. PR #1634.
* The document viewer panel now shows the importance label next to each entry, and double-clicking
an entry will open it in the viewer. All entries also now show the content in tooltips so that
- the columns can be shrunk to only view the icon if there is too little space. Issue #16220.
+ the columns can be shrunk to only view the icon if there is too little space. Issue #1620.
PR #1639.
* The editor toolbar no longer uses the same buttons for markdown and shortcodes style formatting.
They have each received their separate buttons. Some additional space has been added between the
From 2157dc8a353f8004313c6301eb429b7dade19077 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 16:33:19 +0100
Subject: [PATCH 03/16] Block dropping items on invisible root
---
novelwriter/core/itemmodel.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/novelwriter/core/itemmodel.py b/novelwriter/core/itemmodel.py
index 9cd82c39..7fc79cb9 100644
--- a/novelwriter/core/itemmodel.py
+++ b/novelwriter/core/itemmodel.py
@@ -379,7 +379,9 @@ class ProjectModel(QAbstractItemModel):
row: int, column: int, parent: QModelIndex
) -> bool:
"""Check if mime data can be dropped on the current location."""
- return data.hasFormat(nwConst.MIME_HANDLE) and action == Qt.DropAction.MoveAction
+ if parent.isValid() and parent.internalPointer() is not self._root:
+ return data.hasFormat(nwConst.MIME_HANDLE) and action == Qt.DropAction.MoveAction
+ return False
def dropMimeData(
self, data: QMimeData, action: Qt.DropAction,
From 1431944c4966890500b78fccedcdb6e14400f82f Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 16:38:41 +0100
Subject: [PATCH 04/16] Add test coverage of root item drop
---
tests/test_core/test_core_itemmodel.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/test_core/test_core_itemmodel.py b/tests/test_core/test_core_itemmodel.py
index 6c60d9ed..b6e111d5 100644
--- a/tests/test_core/test_core_itemmodel.py
+++ b/tests/test_core/test_core_itemmodel.py
@@ -358,11 +358,12 @@ def testCoreItemModel_ProjectModel_DragNDrop(mockGUI, mockRnd, fncPath):
novel.item.itemHandle, folder.item.itemHandle, scene.item.itemHandle,
]
- # Check that drop is possible
+ # Check that drop is possible, but only with valid items and not on root
invalidMime = QMimeData()
invalidMime.setData("plain/text", b"foobar")
assert model.canDropMimeData(invalidMime, Qt.DropAction.MoveAction, 0, 0, novelIdx) is False
+ assert model.canDropMimeData(sceneMime, Qt.DropAction.MoveAction, 0, 0, rootIdx) is False
assert model.canDropMimeData(sceneMime, Qt.DropAction.MoveAction, 0, 0, novelIdx) is True
# Drop the scene on the novel folder
From 6d9b1f7b36573c1dc93d81479088a634de70f8bf Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 16:44:08 +0100
Subject: [PATCH 05/16] Make the model parent call a little more robust
---
novelwriter/core/itemmodel.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/novelwriter/core/itemmodel.py b/novelwriter/core/itemmodel.py
index 7fc79cb9..70354163 100644
--- a/novelwriter/core/itemmodel.py
+++ b/novelwriter/core/itemmodel.py
@@ -328,7 +328,7 @@ class ProjectModel(QAbstractItemModel):
def parent(self, index: QModelIndex) -> QModelIndex:
"""Get the parent model index of another index."""
- if index.isValid() and (parent := index.internalPointer().parent()):
+ if index.isValid() and (node := index.internalPointer()) and (parent := node.parent()):
return self.createIndex(parent.row(), 0, parent)
return QModelIndex()
From a0a8ea85c970b7a5fd4f91291fd7a432462f06ad Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 16:58:21 +0100
Subject: [PATCH 06/16] Add Czech translation
---
i18n/nw_cs_CZ.ts | 5112 ++++++++++++++++++++
novelwriter/assets/i18n/project_cs_CZ.json | 118 +
2 files changed, 5230 insertions(+)
create mode 100644 i18n/nw_cs_CZ.ts
create mode 100644 novelwriter/assets/i18n/project_cs_CZ.json
diff --git a/i18n/nw_cs_CZ.ts b/i18n/nw_cs_CZ.ts
new file mode 100644
index 00000000..938e76db
--- /dev/null
+++ b/i18n/nw_cs_CZ.ts
@@ -0,0 +1,5112 @@
+
+
+
+
+ Builds
+
+
+ Document Filters
+ Filtry dokumentu
+
+
+
+ Novel Documents
+ Dokumenty románu
+
+
+
+ Project Notes
+ Poznámky projektu
+
+
+
+ Inactive Documents
+ Neaktivní dokumenty
+
+
+
+ Headings
+ Záhlaví
+
+
+
+ Partition Format
+ Formát oddílů
+
+
+
+ Chapter Format
+ Formát kapitol
+
+
+
+ Unnumbered Format
+ Nečíslovaný formát
+
+
+
+ Scene Format
+ Formát scény
+
+
+
+ Alt. Scene Format
+ Alt. formát scény
+
+
+
+ Section Format
+ Formát sekce
+
+
+
+ Title Styling
+ Stylování názvu
+
+
+
+ Partition Styling
+ Stylování oddílů
+
+
+
+ Chapter Styling
+ Stylování kapitoly
+
+
+
+ Scene Styling
+ Stylování scén
+
+
+
+ Text Content
+ Obsah
+
+
+
+ Include Synopsis
+ Zahrnout synopsi
+
+
+
+ Include Comments
+ Zahrnout komentáře
+
+
+
+ Include Keywords
+ Zahrnout klíčová slova
+
+
+
+ Include Body Text
+ Zahrnout text těla
+
+
+
+ Ignore These Keywords
+ Ignorovat tato klíčová slova
+
+
+
+ Add Titles for Notes
+ Přidat názvy pro poznámky
+
+
+
+ Text Format
+ Formátování textu
+
+
+
+ Text Font
+ Písmo
+
+
+
+ Line Height
+ Výška řádku
+
+
+
+ Justify Text Margins
+ Zarovnat textové okraje
+
+
+
+ Replace Unicode Characters
+ Nahradit znaky Unicode
+
+
+
+ Replace Tabs with Spaces
+ Nahradit tabulátor mezerami
+
+
+
+ Preserve Hard Line Breaks
+ Zachovat zalomení řádku
+
+
+
+ Apply Dialogue Highlighting
+ Použít zvýraznění dialogu
+
+
+
+ First Line Indent
+ Odsazení prvního řádku
+
+
+
+ Enable Indent
+ Povolit odsazení
+
+
+
+ Indent Width
+ Šířka odsazení
+
+
+
+ Indent First Paragraph
+ Odsazení prvního odstavce
+
+
+
+ Text Margins
+ Textové okraje
+
+
+
+ Title and Partition
+ Název a oddíl
+
+
+
+ Heading 1 and Chapter
+ Nadpis 1 a Kapitola
+
+
+
+ Heading 2 and Scene
+ Nadpis 2 a Scéna
+
+
+
+ Heading 3 and Section
+ Nadpis 3 a kapitola
+
+
+
+ Heading 4
+ Nadpis 4
+
+
+
+ Text Paragraph
+ Odstavec textu
+
+
+
+ Scene Separator
+ Oddělovač scén
+
+
+
+ Page Layout
+ Rozložení stránky
+
+
+
+ Unit
+ Jednotka
+
+
+
+ Page Size
+ Velikost stránky
+
+
+
+ Page Margins
+ Okraje stránky
+
+
+
+ Document Style
+ Styl dokumentu
+
+
+
+ Page Header
+ Záhlaví stránky
+
+
+
+ Page Counter Offset
+ Odsazení počtu stránek
+
+
+
+ Add Colours to Headings
+ Přidat barvy k nadpisům
+
+
+
+ Increase Size of Headings
+ Zvýšit velikost záhlaví
+
+
+
+ Bold Headings
+ Tučné záhlaví
+
+
+
+ HTML Options
+ Možnosti HTML
+
+
+
+ Add CSS Styles
+ Přidat CSS styly
+
+
+
+ Preserve Tab Characters
+ Zachovat znaky tabulátoru
+
+
+
+ Common
+
+
+ in the future
+ v budoucnu
+
+
+
+ just now
+ právě teď
+
+
+
+ a minute ago
+ před minutou
+
+
+
+ {0} minutes ago
+ před {0} minutami
+
+
+
+ an hour ago
+ před hodinou
+
+
+
+ {0} hours ago
+ před {0} hodinami
+
+
+
+ a day ago
+ před jedním dnem
+
+
+
+ {0} days ago
+ před {0} dny
+
+
+
+ a week ago
+ před týdnem
+
+
+
+ {0} weeks ago
+ před {0} týdny
+
+
+
+ a month ago
+ před měsícem
+
+
+
+ {0} months ago
+ před {0} měsíci
+
+
+
+ a year ago
+ před rokem
+
+
+
+ {0} years ago
+ před {0} lety
+
+
+
+ Constant
+
+
+
+ Title
+ Název
+
+
+
+ Heading 1 (Partition)
+ Nadpís 1 (Oddíl)
+
+
+
+ Heading 2 (Chapter)
+ Nadpis 2 (Kapitola)
+
+
+
+ Heading 3 (Scene)
+ Nadpis 3 (Scéna)
+
+
+
+ Heading 4 (Section)
+ Nadpis 4 (Sekce)
+
+
+
+ Text Paragraph
+ Odstavec textu
+
+
+
+ Scene Separator
+ Oddělovač scén
+
+
+
+
+
+ None
+ Žádný
+
+
+
+ Novel
+ Román
+
+
+
+
+ Plot
+ Zápletka
+
+
+
+
+ Characters
+ Postavy
+
+
+
+
+ Locations
+ Lokality
+
+
+
+
+ Timeline
+ Časová osa
+
+
+
+
+ Objects
+ Objekty
+
+
+
+
+ Entities
+ Subjekty
+
+
+
+
+
+ Custom
+ Vlastní
+
+
+
+ Archive
+ Archiv
+
+
+
+ Templates
+ Šablony
+
+
+
+ Trash
+ Koš
+
+
+
+
+ Novel Document
+ Dokument románu
+
+
+
+
+ Project Note
+ Poznámka projektu
+
+
+
+ Root Folder
+ Kořenová složka
+
+
+
+ Folder
+ Složky
+
+
+
+ Novel Title Page
+ Titulní stránka románu
+
+
+
+ Novel Chapter
+ Kapitola románu
+
+
+
+ Novel Scene
+ Scéna románu
+
+
+
+ Novel Section
+ Sekce románu
+
+
+
+ Active
+ Aktivní
+
+
+
+ Inactive
+ Neaktivní
+
+
+
+ Tag
+ Štítek
+
+
+
+ Point of View
+ Úhel pohledu
+
+
+
+
+ Focus
+ Zaměření
+
+
+
+ Story
+ Příběh
+
+
+
+ Mentions
+ Zmínky
+
+
+
+ Level
+ Úroveň
+
+
+
+ Document
+ Dokument
+
+
+
+ Line
+ Řádek
+
+
+
+ Status
+ Stav
+
+
+
+ Chars
+ Znaky
+
+
+
+ Words
+ Slova
+
+
+
+ Pars
+ Pars
+
+
+
+ POV
+ POV
+
+
+
+ Synopsis
+ Synopse
+
+
+
+ Open Document (.odt)
+ Open Dokument (.odt)
+
+
+
+ Flat Open Document (.fodt)
+ Flat Open Dokument (.fodt)
+
+
+
+ Microsoft Word Document (.docx)
+ Dokument Microsoft Word (.docx)
+
+
+
+ HTML 5 (.html)
+ HTML 5 (.html)
+
+
+
+ novelWriter Markup (.txt)
+ novelWriter Markup (.txt)
+
+
+
+ Standard Markdown (.md)
+ Standard Markdown (.md)
+
+
+
+ Extended Markdown (.md)
+ Extended Markdown (.md)
+
+
+
+ Portable Document Format (.pdf)
+ Portable Document Format (.pdf)
+
+
+
+ JSON + HTML 5 (.json)
+ JSON + HTML 5 (.json)
+
+
+
+ JSON + novelWriter Markup (.json)
+ JSON + novelWriter Markup (.json)
+
+
+
+ Text files
+ Textový soubor
+
+
+
+ Markdown files
+ Soubory Markdown
+
+
+
+ novelWriter files
+ novelWriter soubory
+
+
+
+ CSV files
+ CSV soubory
+
+
+
+ All files
+ Všechny soubory
+
+
+
+ Millimetres
+ Milimetry
+
+
+
+ Centimetres
+ Centimetry
+
+
+
+ Inches
+ Palce
+
+
+
+ A4
+ A4
+
+
+
+ A5
+ A5
+
+
+
+ A6
+ A6
+
+
+
+ US Legal
+ US Legal
+
+
+
+ US Letter
+ US Letter
+
+
+
+ Straight single quotation mark
+ Jednoduchá uvozovka
+
+
+
+ Straight double quotation mark
+ Dvojitá uvozovka
+
+
+
+ Left single quotation mark
+ Levá jednoduchá uvozovka
+
+
+
+ Right single quotation mark
+ Pravá jednoduchá uvozovka
+
+
+
+ Single low-9 quotation mark
+ Jednoduchá uvozovka s nízkými hodnotami
+
+
+
+ Single high-reversed-9 quotation mark
+ Jednoduchá uvozovka s vysokými hodnotami
+
+
+
+ Left double quotation mark
+ Levá dvojitá uvozovka
+
+
+
+ Right double quotation mark
+ Pravá dvojitá uvozovka
+
+
+
+ Double low-9 quotation mark
+ Dvojítá uvzozovka s nízkými hodnotami
+
+
+
+ Double high-reversed-9 quotation mark
+ Dvojítá uvozovka s vysokými hodnotami
+
+
+
+ Double low-reversed-9 quotation mark
+ Dvojítá uvozovka s nízkými hodnotami
+
+
+
+ Single left-pointing angle quotation mark
+ Jednoduchá úhlová uvozovka směřující vlevo
+
+
+
+ Single right-pointing angle quotation mark
+ Jednoduchá úhlová uvozovka směřující vpravo
+
+
+
+ Double left-pointing angle quotation mark
+ Dvojitá úhlová uvozovka směřující vlevo
+
+
+
+ Double right-pointing angle quotation mark
+ Dvojitá úhlová uvozovka směřující vpravo
+
+
+
+ Left corner bracket
+ Levý roh závorky
+
+
+
+ Right corner bracket
+ Pravý roh závorky
+
+
+
+ Left white corner bracket
+ Levý bílý roh závorky
+
+
+
+ Right white corner bracket
+ Pravý bílý roh závorky
+
+
+
+ GuiAbout
+
+
+ About novelWriter
+ O novelWriteru
+
+
+
+ This application is licenced under {0}
+ Tato aplikace je licencována pod {0}
+
+
+
+ Credits
+ Poděkování
+
+
+
+ GuiBuildSettings
+
+
+
+ Manuscript Build Settings
+ Nastavení sestavení Manuscriptu
+
+
+
+ Name
+ Název
+
+
+
+ General
+ Obecné
+
+
+
+ Selection
+ Výběr
+
+
+
+ Headings
+ Záhlaví
+
+
+
+ Formatting
+ Formátování
+
+
+
+ GuiDictionaries
+
+
+ Add Dictionaries
+ Přidat slovníky
+
+
+
+ Download a dictionary from one of the links, and add it below.
+ Stáhněte si slovník z jednoho z odkazů a přidejte jej níže.
+
+
+
+ Add Dictionary
+ Přidat slovník
+
+
+
+ Dictionary install location
+ Umístění instalace slovníku
+
+
+
+ Additional dictionaries found: {0}
+ Počet dalších slovníků: {0}
+
+
+
+ Free or Libre Office extension
+ Zdarma nebo Libre Office rozšíření
+
+
+
+ Browse Files
+ Procházet soubory
+
+
+
+ Could not process dictionary file
+ Soubor slovníku nelze zpracovat
+
+
+
+ Added: {0} [{1}B]
+ Přidáno: {0} [{1}B]
+
+
+
+ GuiDocEditFooter
+
+
+ Line: {0} ({1})
+ Řádek: {0} ({1})
+
+
+
+ Words: {0} ({1})
+ Slova: {0} ({1})
+
+
+
+ Words: {0} selected
+ Slova: {0} vybráno
+
+
+
+ Status
+ Stav
+
+
+
+ GuiDocEditHeader
+
+
+ Toggle Tool Bar
+ Přepnout nástrojovou lištu
+
+
+
+ Outline
+ Podtržený
+
+
+
+ Search
+ Hledat
+
+
+
+ Toggle Focus Mode
+ Přepnout režim soustředění
+
+
+
+ Close
+ Zavřít
+
+
+
+ GuiDocEditSearch
+
+
+ Search for
+ Najít
+
+
+
+ Replace with
+ Nahradit
+
+
+
+ Search
+ Hledat
+
+
+
+ Case Sensitive
+ Rozlišovat velká a malá písmena
+
+
+
+ Whole Words Only
+ Pouze celá slova
+
+
+
+ RegEx Mode
+ RegEx režim
+
+
+
+ Loop Search
+ Hledání ve smyčce
+
+
+
+ Search Next File
+ Hledat další soubor
+
+
+
+ Preserve Case
+ Preserve Case
+
+
+
+ Close Search
+ Ukončit hledání
+
+
+
+ Find in current document
+ Najít v aktuálním dokumentu
+
+
+
+ Find and replace in current document
+ Najít a nahradit v aktuálním dokumentu
+
+
+
+ GuiDocEditor
+
+
+ Opened Document: {0}
+ Otevřený dokument: {0}
+
+
+
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?
+ Tento dokument byl změněn mimo novelWriter, když byl otevřen. Přepsat soubor na disku?
+
+
+
+ Could not save document.
+ Dokument nelze uložit.
+
+
+
+ Saved Document: {0}
+ Uložený dokument: {0}
+
+
+
+ Spell checking requires the package PyEnchant. It does not appear to be installed.
+ Kontrola pravopisu vyžaduje balíček PyEnchant. Zdá se, že není nainstalován.
+
+
+
+ Spell check complete
+ Kontrola pravopisu dokončena
+
+
+
+ Document Details
+ Podrobnosti o dokumentu
+
+
+
+ Created: {0}
+ Vytvořeno: {0}
+
+
+
+ Updated: {0}
+ Aktualizováno: {0}
+
+
+
+ File Location: {0}
+ Umístění souboru: {0}
+
+
+
+ Set as Document Name
+ Nastavit jako název dokumentu
+
+
+
+ Open URL
+ Otevřít URL
+
+
+
+ Follow Tag
+ Sledovat štítek
+
+
+
+ Create Note for Tag
+ Vytvořit poznámku pro štítek
+
+
+
+ Cut
+ Vyjmout
+
+
+
+ Copy
+ Kopírovat
+
+
+
+ Paste
+ Vložit
+
+
+
+ Select All
+ Vybrat vše
+
+
+
+ Select Word
+ Vybrat slovo
+
+
+
+ Select Paragraph
+ Vybrat odstavec
+
+
+
+ Spelling Suggestion(s)
+ Návrhy opravy
+
+
+
+ No Suggestions
+ Žádné návrhy
+
+
+
+ Ignore Word
+ Ignorovat slovo
+
+
+
+ Add Word to Dictionary
+ Přidat slovo do slovníku
+
+
+
+ Please select some text before calling replace quotes.
+ Vyberte prosím nějaký text před voláním nahrazujících uvozovek.
+
+
+
+ Do you want to create a new project note for the tag '{0}'?
+ Chcete vytvořit novou poznámku projektu pro značku '{0}'?
+
+
+
+ GuiDocMerge
+
+
+ Merge Documents
+ Sloučit dokumenty
+
+
+
+ Documents to Merge
+ Dokumenty k sloučení
+
+
+
+ Drag and drop items to change the order, or uncheck to exclude.
+ Přetáhněte předměty, chcete-li změnit řazení, nebo zrušte zaškrtnutí políčka.
+
+
+
+ Move merged items to Trash
+ Přesunout sloučené položky do koše
+
+
+
+ GuiDocSplit
+
+
+ Split Document
+ Rozdělit dokument
+
+
+
+ Document Headings
+ Nadpisy dokumentu
+
+
+
+ Select the maximum level to split into files.
+ Vyberte maximální úroveň pro rozdělení do souborů.
+
+
+
+ Split on Heading Level 1 (Partition)
+ Rozdělit Nadpis úrovně 1 (Díl)
+
+
+
+ Split up to Heading Level 2 (Chapter)
+ Rozdělit na Nadpis úrovně 2 (Kapitola)
+
+
+
+ Split up to Heading Level 3 (Scene)
+ Rozdělit na Nadpis úrovně 3 (Scéna)
+
+
+
+ Split up to Heading Level 4 (Section)
+ Rozdělit na Nadpis úrovně 4 (Sekce)
+
+
+
+ Split into a new folder
+ Rozdělit do nové složky
+
+
+
+ Create document hierarchy
+ Vytvořit hierarchii dokumentu
+
+
+
+ Move split document to Trash
+ Přesunout rozdělený dokument do koše
+
+
+
+ GuiDocToolBar
+
+
+ Markdown Bold
+ Markdown Tučně
+
+
+
+ Markdown Italic
+ Markdown Kurzíva
+
+
+
+ Markdown Strikethrough
+ Markdown Přeškrtnuté
+
+
+
+ Shortcode Bold
+ Shortcode Tučně
+
+
+
+ Shortcode Italic
+ Shortcode Kurzíva
+
+
+
+ Shortcode Strikethrough
+ Shortcode Přeškrtnuté
+
+
+
+ Shortcode Underline
+ Shortcode Podtržené
+
+
+
+ Shortcode Highlight
+ Shortcode Zvýraznění
+
+
+
+ Shortcode Superscript
+ Shortcode Horní index
+
+
+
+ Shortcode Subscript
+ Shortcode Dolní index
+
+
+
+ GuiDocViewFooter
+
+
+ Show/Hide Viewer Panel
+ Zobrazit/skrýt panel
+
+
+
+ Comments
+ Komentáře
+
+
+
+ Show Comments
+ Zobrazit komentáře
+
+
+
+ Synopsis
+ Synopse
+
+
+
+ Show Synopsis Comments
+ Zobrazit komentáře Synopsis
+
+
+
+ GuiDocViewHeader
+
+
+ Outline
+ Podtržený
+
+
+
+ Go Backward
+ Jít zpět
+
+
+
+ Go Forward
+ Jít vpřed
+
+
+
+ Open in Editor
+ Otevřít v editoru
+
+
+
+ Reload
+ Obnovit
+
+
+
+ Close
+ Zavřít
+
+
+
+ GuiDocViewer
+
+
+ An error occurred while generating the preview.
+ Došlo k chybě při generování náhledu.
+
+
+
+ Copy
+ Kopírovat
+
+
+
+ Select All
+ Vybrat vše
+
+
+
+ Select Word
+ Vybrat slovo
+
+
+
+ Select Paragraph
+ Vybrat odstavec
+
+
+
+ GuiDocViewerPanel
+
+
+ Hide Inactive Tags
+ Skrýt neaktivní štítky
+
+
+
+ References
+ Odkazy
+
+
+
+ GuiEditLabel
+
+
+ Item Label
+ Popisek položky
+
+
+
+ Label
+ Popisek
+
+
+
+ GuiItemDetails
+
+
+ Label
+ Popisek
+
+
+
+ Status
+ Stav
+
+
+
+ Class
+ Třída
+
+
+
+ Usage
+ Použití
+
+
+
+ GuiLipsum
+
+
+ Insert Placeholder Text
+ Vložit plovoucí text
+
+
+
+ Insert Lorem Ipsum Text
+ Vložit Lorem Ipsum text
+
+
+
+ Number of paragraphs
+ Počet odstavců
+
+
+
+ Randomise order
+ Náhodné řazení
+
+
+
+ Insert
+ Vložit
+
+
+
+ GuiMain
+
+
+ novelWriter is ready ...
+ novelWriter je připraven ...
+
+
+
+ You are now running novelWriter version {0}.
+ Nyní používáte novelWriter verze {0}.
+
+
+
+ Please check the {0}release notes{1} for further details.
+ Pro více informací si prosím zkontrolujte poznámky k vydání {0}{1}.
+
+
+
+ Close the current project?
+ Zavřít současný projekt?
+
+
+
+
+ Changes are saved automatically.
+ Změny jsou uloženy automaticky.
+
+
+
+ Backup the current project?
+ Zálohovat aktuální projekt?
+
+
+
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?
+ Projekt je již otevřen jinou instancí novelWriter, a je proto uzamčen. Chcete přesto přepsat zámek a pokračovat?
+
+
+
+ Note: If the program or the computer previously crashed, the lock can safely be overridden. However, overriding it is not recommended if the project is open in another instance of novelWriter. Doing so may corrupt the project.
+ Poznámka: Pokud program nebo počítač dříve havaroval, může být zámek bezpečně přepsán. Nicméně přepsání se nedoporučuje, pokud je projekt otevřen v jiném novelWriter. Může to poškodit projekt.
+
+
+
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.
+ Projekt byl uzamčen počítačem{0}' ({1} {2}), naposledy aktivním na {3}.
+
+
+
+ The project index is outdated or broken. Rebuilding index.
+ Index projektu je zastaralý nebo nefunkční. Obnovte index.
+
+
+
+ Import File
+ Import souboru
+
+
+
+ Could not read file. The file must be an existing text file.
+ Nelze přečíst soubor. Soubor musí být textový soubor.
+
+
+
+ Please open a document to import the text file into.
+ Otevřete prosím dokument pro importování textového souboru.
+
+
+
+ Importing the file will overwrite the current content of the document. Do you want to proceed?
+ Import souboru přepíše aktuální obsah dokumentu. Chcete pokračovat?
+
+
+
+ Indexing completed in {0} ms
+ Indexování dokončeno za {0} ms
+
+
+
+ The project index has been successfully rebuilt.
+ Index projektu byl úspěšně obnoven.
+
+
+
+ Could not initialise the dialog.
+ Nelze inicializovat dialog.
+
+
+
+ Do you want to exit novelWriter?
+ Chcete ukončit novelWriter?
+
+
+
+ Some changes will not be applied until novelWriter has been restarted.
+ Některé změny nebudou aplikovány, dokud nebude novelWriter restartován.
+
+
+
+ Could not find the reference for tag '{0}'. It either doesn't exist, or the index is out of date. The index can be updated from the Tools menu, or by pressing {1}.
+ Nelze najít odkaz na štítek '{0}'. Buď neexistuje, nebo je index zastaralý. Index lze aktualizovat z nabídky Nástroje nebo stisknutím {1}.
+
+
+
+ GuiMainMenu
+
+
+ &Project
+ &Projekt
+
+
+
+ Create or Open Project
+ Vytvořit nebo otevřít projekt
+
+
+
+ Save Project
+ Uložit projekt
+
+
+
+ Close Project
+ Zavřít projekt
+
+
+
+ Project Settings
+ Nastavení projektu
+
+
+
+ Novel Details
+ Detaily románu
+
+
+
+ Rename Item
+ Přejmenovat položku
+
+
+
+ Delete Item
+ Smazat položku
+
+
+
+ Empty Trash
+ Vysypat koš
+
+
+
+ Exit
+ Ukončit
+
+
+
+ &Document
+ &Dokument
+
+
+
+ Open Document
+ Otevřít dokument
+
+
+
+ Save Document
+ Uložit dokument
+
+
+
+ Close Document
+ Zavřít dokument
+
+
+
+ View Document
+ Zobrazit dokument
+
+
+
+ Close Document View
+ Zavřít zobrazení dokumentu
+
+
+
+ Show File Details
+ Zobrazit podrobnosti o souboru
+
+
+
+ Import Text from File
+ Importovat text ze souboru
+
+
+
+ &Edit
+ &Upravit
+
+
+
+ Undo
+ Zpět
+
+
+
+ Redo
+ Opakovat
+
+
+
+ Cut
+ Vyjmout
+
+
+
+ Copy
+ Kopírovat
+
+
+
+ Paste
+ Vložit
+
+
+
+ Select All
+ Vybrat vše
+
+
+
+ Select Paragraph
+ Vybrat odstavec
+
+
+
+ &View
+ &Zobrazit
+
+
+
+ Go to Tree View
+ Přejít do stromového zobrazení
+
+
+
+ Go to Document
+ Přejít na dokument
+
+
+
+ Go to Outline
+ Přejít na osnovu
+
+
+
+ Navigate Backward
+ Přejít zpět
+
+
+
+ Navigate Forward
+ Přejít vpřed
+
+
+
+ Focus Mode
+ Režim soustředění
+
+
+
+ Full Screen Mode
+ Režim celé obrazovky
+
+
+
+ &Insert
+ &Vložit
+
+
+
+ Dashes
+ Pomlčky
+
+
+
+ Short Dash
+ Krátká pomlčka
+
+
+
+ Long Dash
+ Dlouhá pomlčka
+
+
+
+ Horizontal Bar
+ Horizontální lišta
+
+
+
+ Figure Dash
+ Pomlčka
+
+
+
+ Quote Marks
+ Uvozovky
+
+
+
+ Left Single Quote
+ Levá jednoduchá citace
+
+
+
+ Right Single Quote
+ Pravá jednoduchá citace
+
+
+
+ Left Double Quote
+ Levá dvojitá citace
+
+
+
+ Right Double Quote
+ Pravá dvojitá citace
+
+
+
+ Alternative Apostrophe
+ Alternativní apostrof
+
+
+
+ General Punctuation
+ Obecná interpunkce
+
+
+
+ Ellipsis
+ Elipsa
+
+
+
+ Prime
+ Primární
+
+
+
+ Double Prime
+ Dvojitý znak '
+
+
+
+ White Spaces
+ Bílé mezery
+
+
+
+ Non-Breaking Space
+ Nezlomitelná mezera
+
+
+
+ Thin Space
+ Úzká mezera
+
+
+
+ Thin Non-Breaking Space
+ Úzká nezlomitelná mezera
+
+
+
+ Other Symbols
+ Ostatní symboly
+
+
+
+ List Bullet
+ Seznam odrážek
+
+
+
+ Hyphen Bullet
+ Pomlčka Bullet
+
+
+
+ Flower Mark
+ Značka květiny
+
+
+
+ Per Mille
+ Promile
+
+
+
+ Degree Symbol
+ Znak stupně
+
+
+
+ Minus Sign
+ Značka mínusu
+
+
+
+ Times Sign
+ Značka násobení
+
+
+
+ Division Sign
+ Značka dělení
+
+
+
+ Tags and References
+ Štítky a odkazy
+
+
+
+ Special Comments
+ Speciální komentáře
+
+
+
+ Synopsis Comment
+ Synopsis komentář
+
+
+
+ Short Description Comment
+ Krátký popis komentáře
+
+
+
+ Word/Character Count
+ Počet slov/znaků
+
+
+
+ Breaks and Vertical Space
+ Přerušení a vertikální mezera
+
+
+
+ Page Break
+ Konec stránky
+
+
+
+ Forced Line Break
+ Vynucené zalomení řádku
+
+
+
+ Vertical Space (Single)
+ Vertikální mezera (Single)
+
+
+
+ Vertical Space (Multi)
+ Vertikální mezera (Multi)
+
+
+
+ Placeholder Text
+ Zástupný text
+
+
+
+ Footnote
+ Poznámka pod čarou
+
+
+
+ &Format
+ &Formát
+
+
+
+ Bold
+ Tučné
+
+
+
+ Italic
+ Kurzíva
+
+
+
+ Strikethrough
+ Přeškrtnuté
+
+
+
+ Wrap Double Quotes
+ Obalení dvojitých uvozovek
+
+
+
+ Wrap Single Quotes
+ Obalení jednoduchých uvozovek
+
+
+
+ More Formats ...
+ Další formáty...
+
+
+
+ Bold (Shortcode)
+ Tučné (Shortcode)
+
+
+
+ Italics (Shortcode)
+ Kurzíva (Shortcode)
+
+
+
+ Strikethrough (Shortcode)
+ Přeškrtnuté (Shortcode)
+
+
+
+ Underline
+ Podtržené
+
+
+
+ Highlight
+ Zvýraznění
+
+
+
+ Superscript
+ Horní index
+
+
+
+ Subscript
+ Dolní index
+
+
+
+ Novel Title
+ Název románu
+
+
+
+ Unnumbered Chapter
+ Neočíslovaná kapitola
+
+
+
+ Alternative Scene
+ Alternativní scéna
+
+
+
+ Align Left
+ Zarovnat vlevo
+
+
+
+ Align Centre
+ Zarovnat na střed
+
+
+
+ Align Right
+ Zarovnat doprava
+
+
+
+ Indent Left
+ Odsazení zleva
+
+
+
+ Indent Right
+ Odsazení zprava
+
+
+
+ Toggle Comment
+ Přepnutí komentáře
+
+
+
+ Toggle Ignore Text
+ Přepnutí ignorování textu
+
+
+
+ Remove Block Format
+ Odstranit formát bloku
+
+
+
+ Replace Straight Single Quotes
+ Nahradit rovné jednoduché uvozovky
+
+
+
+ Replace Straight Double Quotes
+ Nahradit rovné dvojité uvozovky
+
+
+
+ Remove In-Paragraph Breaks
+ Odstranit zlomy v odstavci
+
+
+
+ &Search
+ &Hledat
+
+
+
+ Find
+ Najít
+
+
+
+ Replace
+ Nahradit
+
+
+
+ Find Next
+ Najít další
+
+
+
+ Find Previous
+ Najít předchozí
+
+
+
+ Replace Next
+ Nahradit další
+
+
+
+ Find in Project
+ Najít v projektu
+
+
+
+ &Tools
+ &Nástroje
+
+
+
+ Check Spelling
+ Kontrolovat pravopis
+
+
+
+ Spell Check Language
+ Jazyk kontroly pravopisu
+
+
+
+ Default
+ Výchozí
+
+
+
+ Re-Run Spell Check
+ Znovu spustit kontrolu pravopisu
+
+
+
+ Project Word List
+ Seznam slov projektu
+
+
+
+ Add Dictionaries
+ Přidat slovníky
+
+
+
+ Rebuild Index
+ Znovu vytvořit Index
+
+
+
+ Backup Project
+ Záloha projektu
+
+
+
+ Build Manuscript
+ Vytvořit rukopis
+
+
+
+ Writing Statistics
+ Statistiky psaní
+
+
+
+ Preferences
+ Nastavení
+
+
+
+ &Help
+ &Nápověda
+
+
+
+ About novelWriter
+ O novelWriter
+
+
+
+ About Qt5
+ O Qt5
+
+
+
+ User Manual (Online)
+ Uživatelská příručka (Online)
+
+
+
+ User Manual (PDF)
+ Uživatelská příručka (PDF)
+
+
+
+ Report an Issue (GitHub)
+ Nahlásit problém (GitHub)
+
+
+
+ Ask a Question (GitHub)
+ Položit otázku (GitHub)
+
+
+
+ The novelWriter Website
+ Webová stránka novelWriter
+
+
+
+ GuiMainStatus
+
+
+
+ None
+ Žádný
+
+
+
+ Editor
+ Editor
+
+
+
+ Project
+ Projekt
+
+
+
+ Session Time
+ Čas relace
+
+
+
+ Words: {0} ({1})
+ Slova: {0} ({1})
+
+
+
+ Project word count (session change)
+ Počet slov v projektu (změna relaceí)
+
+
+
+ Novel word count (session change)
+ Počet slov v románu (změna relace)
+
+
+
+ GuiManuscript
+
+
+ Build Manuscript
+ Sestavit rukopis
+
+
+
+ Add New Build
+ Přidat novou sestavu
+
+
+
+ Delete Selected Build
+ Odstranit vybrané sestavení
+
+
+
+ Duplicate Selected Build
+ Duplikovat vybrané sestavení
+
+
+
+ Edit Selected Build
+ Upravit vybraný sestavení
+
+
+
+ Builds
+ Sestavit
+
+
+
+ Details
+ Podrobnosti
+
+
+
+ Outline
+ Podtržený
+
+
+
+ Preview
+ Náhled
+
+
+
+ Print
+ Tisk
+
+
+
+ Build
+ Sestavit
+
+
+
+ Close
+ Zavřít
+
+
+
+ Show Page Breaks
+ Zobrazit zarážky stránky
+
+
+
+
+ My Manuscript
+ Můj rukopis
+
+
+
+ GuiManuscriptBuild
+
+
+ Build Manuscript
+ Sestavit rukopis
+
+
+
+ Output Format
+ Výstupní formát
+
+
+
+ Table of Contents
+ Obsah
+
+
+
+ Path
+ Cesta
+
+
+
+ File Name
+ Názvu souboru
+
+
+
+ Reset file name to default
+ Obnovit název souboru na výchozí
+
+
+
+ Open Folder
+ Otevřít složku
+
+
+
+ &Build
+ &Sestavit
+
+
+
+ Select Folder
+ Vyberte složku
+
+
+
+ Output folder does not exist.
+ Výstupní složka neexistuje.
+
+
+
+ The file already exists. Do you want to overwrite it?
+ Soubor již existuje. Chcete jej přepsat?
+
+
+
+ GuiNovelDetails
+
+
+
+ Novel Details
+ Detaily románu
+
+
+
+ Overview
+ Přehled
+
+
+
+ Contents
+ Obsah
+
+
+
+ GuiNovelToolBar
+
+
+ Outline of {0}
+ Přehled z {0}
+
+
+
+ Novel Root
+ Root Románu
+
+
+
+ Refresh
+ Aktualizovat
+
+
+
+ Last Column
+ Poslední sloupec
+
+
+
+ Hidden
+ Nezobrazovat
+
+
+
+ Point of View Character
+ Úhel pohledu postavy
+
+
+
+ Focus Character
+ Zaměřit se na postavu
+
+
+
+ Novel Plot
+ Děj románu
+
+
+
+
+ Column Size
+ Velikost sloupce
+
+
+
+ More Options
+ Více možností
+
+
+
+ Maximum column size in %
+ Maximální velikost sloupce v %
+
+
+
+ GuiNovelTree
+
+
+ No meta data
+ Žádná meta data
+
+
+
+ GuiOutlineDetails
+
+
+
+
+ Title
+ Název
+
+
+
+ Chapter
+ Kapitola
+
+
+
+ Scene
+ Scéna
+
+
+
+ Section
+ Sekce
+
+
+
+ Document
+ Dokument
+
+
+
+ Status
+ Stav
+
+
+
+ Synopsis
+ Synopse
+
+
+
+ Title Details
+ Podrobnosti titulu
+
+
+
+ Reference Tags
+ Referenční štítky
+
+
+
+ GuiOutlineHeaderMenu
+
+
+ Select Columns
+ Vybrat sloupce
+
+
+
+ GuiOutlineToolBar
+
+
+ Outline of
+ Přehled z
+
+
+
+ Refresh
+ Aktualizovat
+
+
+
+ Export CSV
+ Exportovat do CSV
+
+
+
+ GuiOutlineTree
+
+
+ Save Outline As
+ Uložit osnovu jako
+
+
+
+ GuiPreferences
+
+
+
+ Preferences
+ Nastavení
+
+
+
+ Search
+ Hledat
+
+
+
+ General
+ Obecné
+
+
+
+ Appearance
+ Vzhled
+
+
+
+ Display language
+ Jazyk zobrazení
+
+
+
+
+ Requires restart to take effect.
+ Vyžaduje restartování, aby se projevil.
+
+
+
+ Colour theme
+ Barevný motiv
+
+
+
+ General colour theme and icons.
+ Základní barevný motiv a ikony.
+
+
+
+ Application font
+ Písmo aplikace
+
+
+
+ Hide vertical scroll bars in main windows
+ Skrýt vertikální posuvné lišty v hlavních oknech
+
+
+
+
+ Scrolling available with mouse wheel and keys only.
+ Rolování je k dispozici pouze s kolečkem myši a klávesami.
+
+
+
+ Hide horizontal scroll bars in main windows
+ Skrýt horizontální posuvné lišty v hlavních oknech
+
+
+
+ Use the system's font selection dialog
+ Použít dialogové okno výběru písma systému
+
+
+
+ Turn off to use the Qt font dialog, which may have more options.
+ Vypněte pro použití dialogového okna Qt, který může mít více možností.
+
+
+
+ Document Style
+ Styl dokumentu
+
+
+
+ Document colour theme
+ Barevný motiv dokumentu
+
+
+
+ Colour theme for the editor and viewer.
+ Barevný motiv pro editor a prohlížeč.
+
+
+
+ Document font
+ Písmo dokumentu
+
+
+
+
+
+ Applies to both document editor and viewer.
+ Vztahuje se jak na editor, tak na prohlížeč.
+
+
+
+ Emphasise partition and chapter labels
+ Zdůraznění oddílů a nápisů kapitoly
+
+
+
+ Makes them stand out in the project tree.
+ Udělá je mimo stromu projektů.
+
+
+
+ Show full path in document header
+ Zobrazit úplnou cestu v záhlaví dokumentu
+
+
+
+ Add the parent folder names to the header.
+ Přidat názvy nadřazených složek do záhlaví.
+
+
+
+ Include project notes in status bar word count
+ Zahrnout poznámky projektu do počtu slov ve stavové liště
+
+
+
+ Behaviour
+ Chování
+
+
+
+ Save document interval
+ Interval ukládání dokumentu
+
+
+
+ How often the document is automatically saved.
+ Jak často se dokument automaticky uloží.
+
+
+
+
+ seconds
+ sekundy
+
+
+
+ Save project interval
+ Interval ukládání projektu
+
+
+
+ How often the project is automatically saved.
+ Jak často se projekt automaticky uloží.
+
+
+
+ Ask before exiting novelWriter
+ Zeptat se před ukončením NovelWriter
+
+
+
+ Only applies when a project is open.
+ Platí pouze v případě, že je projekt otevřený.
+
+
+
+ Project Backup
+ Zálohování projektu
+
+
+
+ Browse
+ Procházet
+
+
+
+ Backup storage location
+ Umístění úložiště zálohy
+
+
+
+
+ Path: {0}
+ Cesta: {0}
+
+
+
+ Run backup when the project is closed
+ Spustit zálohu, když je projekt uzavřen
+
+
+
+ Can be overridden for individual projects in Project Settings.
+ Lze přepsat pro jednotlivé projekty v Nastavení projektu.
+
+
+
+ Ask before running backup
+ Zeptat se před spuštěním zálohy
+
+
+
+ If off, backups will run in the background.
+ Pokud je vypnuto, zálohy běží na pozadí.
+
+
+
+ Session Timer
+ Čas relace
+
+
+
+ Pause the session timer when not writing
+ Pozastavit časovač relace, když se nepíše
+
+
+
+ Also pauses when the application window does not have focus.
+ Také pozastaví, když se okno aplikace přesune na pozadí.
+
+
+
+ Editor inactive time before pausing timer
+ Editovat neaktivní čas před pozastavením
+
+
+
+ User activity includes typing and changing the content.
+ Uživatelská aktivita zahrnuje psaní a změnu obsahu.
+
+
+
+ minutes
+ minuty
+
+
+
+ Writing
+ Psaní
+
+
+
+ Text Flow
+ Flow textu
+
+
+
+ Maximum text width in "Normal Mode"
+ Maximální šířka textu v "Normálním režimu"
+
+
+
+ Set to 0 to disable this feature.
+ Nastavte na 0 pro vypnutí této funkce.
+
+
+
+
+
+
+ px
+ px
+
+
+
+ Maximum text width in "Focus Mode"
+ Maximální šířka textu v režimu Soustředění
+
+
+
+ The maximum width cannot be disabled.
+ Maximální šířka nemůže být vypnuta.
+
+
+
+ Hide document footer in "Focus Mode"
+ Skrýt zápatí dokumentu v režimu „Soustředění“
+
+
+
+ Hide the information bar in the document editor.
+ Skrýt informační panel v editoru dokumentu.
+
+
+
+ Justify the text margins
+ Zarovnat textové okraje
+
+
+
+ Minimum text margin
+ Minimální textová marže
+
+
+
+ Tab width
+ Šířka tabulátoru
+
+
+
+ The width of a tab key press in the editor and viewer.
+ Šířka tabulátoru po jeho stisknutí v editoru a prohlížeči.
+
+
+
+ Text Editing
+ Editace textu
+
+
+
+ Spell check language
+ Jazyk kontroly pravopisu
+
+
+
+ Available languages are determined by your system.
+ Dostupné jazyky závisí na systému.
+
+
+
+ Auto-select word under cursor
+ Automatický výběr slova pod kurzorem
+
+
+
+ Apply formatting to word under cursor if no selection is made.
+ Použít formátování na slovo pod kurzorem, pokud není proveden žádný výběr.
+
+
+
+ Show tabs and spaces
+ Zobrazit tabulátory a mezery
+
+
+
+ Show line endings
+ Zobrazit konce řádků
+
+
+
+ Editor Scrolling
+ Posouvání editorů
+
+
+
+ Scroll past end of the document
+ Posunutí za konec dokumentu
+
+
+
+ Also centres the cursor when scrolling.
+ Při posouvání také vycentruje kurzor.
+
+
+
+ Typewriter style scrolling when you type
+ Styl psaní ve stylu psacích strojů
+
+
+
+ Keeps the cursor at a fixed vertical position.
+ Udržuje kurzor v pevné svislé poloze.
+
+
+
+ Minimum position for Typewriter scrolling
+ Minimální pozice posunu psacích strojů
+
+
+
+ Percentage of the editor height from the top.
+ Procento výšky editoru v horní části.
+
+
+
+ Text Highlighting
+ Zvýraznění textu
+
+
+
+ None
+ Žádný
+
+
+
+ Single Quotes
+ Jednoduché uvozovky
+
+
+
+ Double Quotes
+ Dvojité uvozovky
+
+
+
+ Both
+ Obojí
+
+
+
+ Highlight dialogue
+ Zvýraznit dialog
+
+
+
+ Applies to the selected quote styles.
+ Použije se na vybraný styl uvozovek.
+
+
+
+ Alternative dialogue symbols
+ Alternativní symboly dialogu
+
+
+
+ Custom highlighting of dialogue text.
+ Vlastní zvýraznění textu dialogu.
+
+
+
+ Allow open-ended dialogue
+ Povolit otevřený dialog
+
+
+
+ Highlight dialogue line with no closing quote.
+ Zvýraznit čáru dialogu bez uzávěrky.
+
+
+
+ Dialogue line symbols
+ Symboly Dialogové linie
+
+
+
+ Lines starting with any of these symbols are dialogue.
+ Řádky začínající některým z těchto symbolů jsou dialogy.
+
+
+
+ Narrator break symbol
+ Narrator break symbol
+
+
+
+ Symbol to indicate a narrator break in dialogue.
+ Symbol označující přerušení v dialogu.
+
+
+
+ Alternating dialogue/narration symbol
+ Alternativní dialog/narration symbol
+
+
+
+ Alternates dialogue highlighting within any paragraph.
+ Aleternativní dialog zdůrazňující v kterémkoli odstavci.
+
+
+
+ Add highlight colour to emphasised text
+ Přidat barvu do zvýrazněného textu
+
+
+
+
+ Applies to the document editor only.
+ Platí pouze pro editor dokumentů.
+
+
+
+ Highlight multiple or trailing spaces
+ Zvýraznění vícenásobných nebo koncových mezer
+
+
+
+ Text Automation
+ Automatizace textu
+
+
+
+ Auto-replace text as you type
+ Automaticky nahradit text při psaní
+
+
+
+ Allow the editor to replace symbols as you type.
+ Umožnit editoru nahradit symboly při psaní.
+
+
+
+ Auto-replace single quotes
+ Automaticky nahradit jednoduché uvozovky
+
+
+
+
+ Try to guess which is an opening or a closing quote.
+ Pokuste se odhadnout, co je otevření nebo zavření citátu.
+
+
+
+ Auto-replace double quotes
+ Automaticky nahradit dvojité uvozovky
+
+
+
+ Auto-replace dashes
+ Automaticky nahradit pomlčky
+
+
+
+ Double and triple hyphens become short and long dashes.
+ Dvojité a trojité pomlčky jsou krátké a dlouhé pomlčky.
+
+
+
+ Auto-replace dots
+ Automaticky nahradit tečky
+
+
+
+ Three consecutive dots become ellipsis.
+ Tři po sobě jdoucí tečky se stávají elipsy.
+
+
+
+ Insert non-breaking space before
+ Vložte mezeru před
+
+
+
+ Automatically add space before any of these symbols.
+ Automaticky přidat mezeru před kterýmkoli z těchto symbolů.
+
+
+
+ Insert non-breaking space after
+ Vložte mezeru za
+
+
+
+ Automatically add space after any of these symbols.
+ Automaticky přidat mezeru za kterýmkoli z těchto symbolů.
+
+
+
+ Use thin space instead
+ Místo toho použít tenkou mezeru
+
+
+
+ Inserts a thin space instead of a regular space.
+ Vloží tenkou mezeru místo obvyklé mezery.
+
+
+
+ Quotation Style
+ Styl citace
+
+
+
+ Single quote open style
+ Styl otevřené jednoduché citace
+
+
+
+ The symbol to use for a leading single quote.
+ Symbol, který se má použít pro úvodní jednoduchou uvozovku.
+
+
+
+ Single quote close style
+ Styl uzavření jednoduché citace
+
+
+
+ The symbol to use for a trailing single quote.
+ Symbol, který se použije pro koncovou jednoduchou uvozovku.
+
+
+
+ Double quote open style
+ Otevřený styl dvojitých uvozovek
+
+
+
+ The symbol to use for a leading double quote.
+ Symbol, který se použije pro úvodní dvojitou uvozovku.
+
+
+
+ Double quote close style
+ Styl uzavření dvojité citace
+
+
+
+ The symbol to use for a trailing double quote.
+ Symbol, který se použije pro koncovou dvojitou uvozovku.
+
+
+
+ Backup Directory
+ Adresář záloh
+
+
+
+ GuiProjectSearch
+
+
+ Project Search
+ Vyhledat projekt
+
+
+
+ Case Sensitive
+ Rozlišovat velká a malá písmena
+
+
+
+ Whole Words Only
+ Pouze celá slova
+
+
+
+ RegEx Mode
+ RegEx režim
+
+
+
+ Search for
+ Najít
+
+
+
+ GuiProjectSettings
+
+
+
+ Project Settings
+ Nastavení projektu
+
+
+
+ Settings
+ Nastavení
+
+
+
+ Status
+ Stavy
+
+
+
+ Importance
+ Důležitost
+
+
+
+ Auto-Replace
+ Automaticky nahradit
+
+
+
+ GuiProjectToolBar
+
+
+ Project Content
+ Obsah projektu
+
+
+
+ Quick Links
+ Rychlé odkazy
+
+
+
+ Move Up
+ Posunout nahoru
+
+
+
+ Move Down
+ Posunout dolu
+
+
+
+ Add Item
+ Přidat položku
+
+
+
+ Expand All
+ Rozbalit Vše
+
+
+
+ Collapse All
+ Sbalit vše
+
+
+
+ Empty Trash
+ Vysypat koš
+
+
+
+ More Options
+ Více možností
+
+
+
+ GuiProjectTree
+
+
+ Did not find anywhere to add the file or folder!
+ Nikde nelze přidat soubor nebo složku!
+
+
+
+ Cannot add new files or folders to the Trash folder.
+ Do Koše nelze přidat nové soubory nebo složky.
+
+
+
+ New Note
+ Nová poznámka
+
+
+
+ New Chapter
+ Nová kapitola
+
+
+
+ New Scene
+ Nová scéna
+
+
+
+ New Document
+ Nový dokument
+
+
+
+ New Folder
+ Nová složka
+
+
+
+ No documents selected for merging.
+ Pro sloučení nebyly vybrány žádné dokumenty.
+
+
+
+ Merged
+ Sloučený
+
+
+
+
+ Could not write document content.
+ Nelze zapsat obsah dokumentu.
+
+
+
+ Do you want to duplicate this document?
+ Chcete duplikovat tento dokument?
+
+
+
+ Do you want to duplicate this item and all child items?
+ Chcete duplikovat tuto položku a všechny podřízené položky?
+
+
+
+ Could not duplicate all items.
+ Nelze duplikovat všechny položky.
+
+
+
+ Root folders can only be deleted when they are empty.
+ Kořenové složky mohou být odstraněny, pouze pokud jsou prázdné.
+
+
+
+ Permanently delete selected item(s)?
+ Trvale odstranit vybrané položky?
+
+
+
+ Move selected item(s) to Trash?
+ Přesunout vybrané položky do koše?
+
+
+
+ The Trash folder is already empty.
+ Složka Koš je již prázdná.
+
+
+
+ Permanently delete {0} file(s) from Trash?
+ Trvale zmazat soubory z koše? Počet: {0}?
+
+
+
+ GuiQuoteSelect
+
+
+ Select Quote Style
+ Vyberte styl citace
+
+
+
+ GuiSideBar
+
+
+ Project Tree View
+ Zobrazení stromu projektu
+
+
+
+ Novel Tree View
+ Zobrazení stromu Románu
+
+
+
+ Project Search
+ Vyhledat v projektu
+
+
+
+ Novel Outline View
+ Zobrazení obrysu románu
+
+
+
+ Build Manuscript
+ Sestavit rukopis
+
+
+
+ Novel Details
+ Detaily románu
+
+
+
+ Writing Statistics
+ Statistiky psaní
+
+
+
+ Settings
+ Nastavení
+
+
+
+ GuiWelcome
+
+
+ Welcome
+ Vítejte
+
+
+
+ List
+ Seznam
+
+
+
+ New
+ Nový
+
+
+
+ Browse
+ Procházet
+
+
+
+ Cancel
+ Zrušit
+
+
+
+ Create
+ Vytvořit
+
+
+
+ Open
+ Otevřít
+
+
+
+ GuiWordList
+
+
+
+ Project Word List
+ Seznam slov projektu
+
+
+
+ Import words from text file
+ Import slov z textového souboru
+
+
+
+ Export words to text file
+ Exportovat slova do textového souboru
+
+
+
+ Add Word
+ Přidat slovo
+
+
+
+ Remove Word
+ Odstranit slovo
+
+
+
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.
+ Poznámka: Importovaný soubor musí být prostý textový soubor s kódováním UTF-8 nebo ASCII.
+
+
+
+ Import File
+ Import souboru
+
+
+
+ Export File
+ Export souboru
+
+
+
+ GuiWritingStats
+
+
+ Writing Statistics
+ Statistiky psaní
+
+
+
+ Session Start
+ Začátek relace
+
+
+
+ Length
+ Délka
+
+
+
+ Idle
+ Neaktivní
+
+
+
+ Words
+ Slova
+
+
+
+ Histogram
+ Histogram
+
+
+
+ Sum Totals
+ Celkem
+
+
+
+ Total Time:
+ Celkový čas:
+
+
+
+ Idle Time:
+ Doba nečinnosti:
+
+
+
+ Filtered Time:
+ Doba filtrování:
+
+
+
+ Novel Word Count:
+ Počet slov Románu:
+
+
+
+ Notes Word Count:
+ Počet slov poznámek:
+
+
+
+ Total Word Count:
+ Celkový počet slov:
+
+
+
+ Filters
+ Filtry
+
+
+
+ Count novel files
+ Počítat soubory románu
+
+
+
+ Count note files
+ Počítat soubory poznámek
+
+
+
+ Hide zero word count
+ Skrýt nulový počet slov
+
+
+
+ Hide negative word count
+ Skrýt záporný počet slov
+
+
+
+ Group entries by day
+ Seskupit záznamy podle dne
+
+
+
+ Show idle time
+ Zobrazit čas nečinnosti
+
+
+
+ Word count cap for the histogram
+ Limit počtu slov pro histogram
+
+
+
+ Save As
+ Uložit jako
+
+
+
+ JSON Data File (.json)
+ Datový soubor JSON (.json)
+
+
+
+ CSV Data File (.csv)
+ Datový soubor CSV (.csv)
+
+
+
+ JSON Data File
+ Datový soubor JSON
+
+
+
+ CSV Data File
+ Datový soubor CSV
+
+
+
+ Save Data As
+ Uložit data jako
+
+
+
+ {0} file successfully written to:
+ Soubor {0} byl úspěšně zapsán do:
+
+
+
+ Failed to write {0} file.
+ Nepodařilo se zapsat soubor {0}.
+
+
+
+ NWProject
+
+
+ Could not delete document file.
+ Nelze odstranit soubor dokumentu.
+
+
+
+ Not a known project file format.
+ Neznámý formát souboru projektu.
+
+
+
+
+
+
+ Path: {0}
+ Cesta: {0}
+
+
+
+ Project file not found.
+ Soubor projektu nebyl nalezen.
+
+
+
+ Failed to open project.
+ Nepodařilo se otevřít projekt.
+
+
+
+ Unknown
+ Neznámý
+
+
+
+ Project file does not appear to be a novelWriterXML file.
+ Soubor projektu se nezdá být soubor novelWriterXML.
+
+
+
+ Unknown or unsupported novelWriter project file format. The project cannot be opened by this version of novelWriter. The file was saved with novelWriter version {0}.
+ Neznámý nebo nepodporovaný formát projektu novelWriter. Projekt nemůže být otevřen touto verzí novelWriter. Soubor byl uložen s novelWriter verzí {0}.
+
+
+
+ Failed to parse project xml.
+ Nepodařilo se analyzovat xml projektu.
+
+
+
+ The file format of your project is about to be updated. If you proceed, older versions of novelWriter will no longer be able to open this project. Continue?
+ Formát souboru vašeho projektu bude brzy aktualizován. Pokud budete pokračovat, starší verze novelWriteru již nebudou moci tento projekt otevřít. Pokračovat?
+
+
+
+ This project was saved by a newer version of novelWriter, version {0}. This is version {1}. If you continue to open the project, some attributes and settings may not be preserved, but the overall project should be fine. Continue opening the project?
+ Tento projekt byl uložen novější verzí novelWriter, verze {0}. Toto je verze {1}. Pokud budete pokračovat v otevírání projektu, některé atributy a nastavení nemusí být zachovány, ale celkový projekt by měl být v pořádku. Pokračovat v otevírání projektu?
+
+
+
+ Recovered
+ Obnoveno
+
+
+
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.
+ Nalezeno {0} osiřelých souborů v projektu. {1} soubor(y) byly obnoveny.
+
+
+
+ Opened Project: {0}
+ Otevřený dokument: {0}
+
+
+
+ There is no project open.
+ Žádný projekt není otevřen.
+
+
+
+ Failed to save project.
+ Nepodařilo se uložit projekt.
+
+
+
+ Saved Project: {0}
+ Uložený projekt: {0}
+
+
+
+ Backing up project ...
+ Zálohování projektu ...
+
+
+
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.
+ Projekt nelze zálohovat, protože není nastaven žádný název projektu. Prosím nastavte název projektu v nastavení projektu.
+
+
+
+ Could not create backup folder.
+ Složku zálohy nelze vytvořit.
+
+
+
+ Created a backup of your project of size {0}B.
+ Vytvořena záloha vašeho projektu o velikosti {0}B.
+
+
+
+ Could not write backup archive.
+ Nelze zapsat záložní archiv.
+
+
+
+ Project backed up to '{0}'
+ Projekt byl zálohován na '{0}'
+
+
+
+
+ New
+ Nový
+
+
+
+ Note
+ Poznámka
+
+
+
+ Draft
+ Návrh
+
+
+
+ Finished
+ Dokončeno
+
+
+
+ Minor
+ Méně závažná
+
+
+
+ Major
+ Závažná
+
+
+
+ Main
+ Hlavní
+
+
+
+ NovelSelector
+
+
+ All Novel Folders
+ Všechny složky románu
+
+
+
+ ProjectBuilder
+
+
+ The target folder is not empty. Please choose another folder.
+ Cílová složka není prázdná. Zvolte prosím jinou složku.
+
+
+
+ An error occurred while trying to create the project.
+ Nastala chyba při vytváření projektu.
+
+
+
+ New Project
+ Nový projekt
+
+
+
+ Title Page
+ Titulek
+
+
+
+ Address
+ Adresa
+
+
+
+ By
+ Od
+
+
+
+ Word Count
+ Počet slov
+
+
+
+ Summary of the chapter.
+ Shrnutí kapitoly.
+
+
+
+ Summary of the scene.
+ Shrnutí scény.
+
+
+
+ A short description.
+ Stručný popis.
+
+
+
+ Chapter {0}
+ Kapitola {0}
+
+
+
+
+ Scene {0}
+ Scéna {0}
+
+
+
+ Main Plot
+ Hlavní zápletka
+
+
+
+ Protagonist
+ Protagonista
+
+
+
+ Main Location
+ Hlavní lokace
+
+
+
+
+ The target folder already exists. Please choose another folder.
+ Cílová složka již existuje. Zvolte prosím jinou složku.
+
+
+
+ Could not copy project files.
+ Nelze zkopírovat soubory projektu.
+
+
+
+ Failed to create a new example project.
+ Nepodařilo se vytvořit nový příklad projektu.
+
+
+
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.
+ Nepodařilo se vytvořit nový příklad projektu. Nelze najít potřebné soubory. Zdá se, že v této instalaci chybí.
+
+
+
+ QDialogButtonBox
+
+
+ OK
+ Ok
+
+
+
+ QGnomeTheme
+
+
+ &OK
+ &Ok
+
+
+
+ &Save
+ &Uložit
+
+
+
+ &Cancel
+ &Zrušit
+
+
+
+ &Close
+ &Zavřít
+
+
+
+ Close without Saving
+ Zavřít bez uložení
+
+
+
+ QPlatformTheme
+
+
+ OK
+ Ok
+
+
+
+ Save
+ Uložit
+
+
+
+ Save All
+ Uložit vše
+
+
+
+ Open
+ Otevřít
+
+
+
+ &Yes
+ &Ano
+
+
+
+ Yes to &All
+ Ano pro všechny
+
+
+
+ &No
+ &Ne
+
+
+
+ N&o to All
+ N&e pro všechny
+
+
+
+ Abort
+ Přerušit
+
+
+
+ Retry
+ Opakovat
+
+
+
+ Ignore
+ Ignorovat
+
+
+
+ Close
+ Zavřít
+
+
+
+ Cancel
+ Zrušit
+
+
+
+ Discard
+ Zahodit
+
+
+
+ Help
+ Nápověda
+
+
+
+ Apply
+ Použít
+
+
+
+ Reset
+ Resetovat
+
+
+
+ Restore Defaults
+ Obnovit výchozí
+
+
+
+ Shape
+
+
+ Square
+ Čtverec
+
+
+
+ Triangle
+ Trojúhelník
+
+
+
+ Nabla
+ Nabla
+
+
+
+ Diamond
+ Kosočtverec
+
+
+
+ Pentagon
+ Pětiúhelník
+
+
+
+ Hexagon
+ Šestiúhelník
+
+
+
+ Star
+ Hvězdička
+
+
+
+ Pacman
+ Pacman
+
+
+
+ 1/4 Circle
+ 1/4 kružnice
+
+
+
+ Half Circle
+ Půlkruh
+
+
+
+ 3/4 Circle
+ 3/4 kružnice
+
+
+
+ Full Circle
+ Úplný kruh
+
+
+
+ 1 Bar
+ 1 čára
+
+
+
+ 2 Bars
+ 2 čáry
+
+
+
+ 3 Bars
+ 3 čáry
+
+
+
+ 4 Bars
+ 4 čáry
+
+
+
+ 1 Block
+ 1 blok
+
+
+
+ 2 Blocks
+ 2 bloky
+
+
+
+ 3 Blocks
+ 3 bloky
+
+
+
+ 4 Blocks
+ 4 bloky
+
+
+
+ SharedData
+
+
+ novelWriter Project File or Zip File
+ soubor projektu novelWriter nebo soubor Zip
+
+
+
+ novelWriter Project File
+ soubor projektu novelWriter
+
+
+
+ Open Project
+ Otevřít Projekt
+
+
+
+ Select Font
+ Vybrat písmo
+
+
+
+ Stats
+
+
+ Characters
+ Znaky
+
+
+
+ Characters in Text
+ Znaky v textu
+
+
+
+ Characters in Headings
+ Znaky v nadpisech
+
+
+
+ Paragraphs
+ Odstavce
+
+
+
+ Headings
+ Nadpisy
+
+
+
+ Characters, No Spaces
+ Znaky, žádné mezery
+
+
+
+ Characters in Text, No Spaces
+ Znaky v textu, bez mezer
+
+
+
+ Characters in Headings, No Spaces
+ Znaky v nadpisech, žádné mezery
+
+
+
+ Words
+ Slova
+
+
+
+ Words in Text
+ Slova v textu
+
+
+
+ Words in Headings
+ Slova v nadpisech
+
+
+
+ VersionInfoWidget
+
+
+ Latest Version: {0}
+ Poslední verze: {0}
+
+
+
+ Checking ...
+ Probíhá kontrola...
+
+
+
+ Download from {0}
+ Stáhnout z {0}
+
+
+
+ Version
+ Verze
+
+
+
+ Released on
+ Vydáno dne
+
+
+
+ Release Notes
+ Poznámky k verzi
+
+
+
+ Check Now
+ Zkontrolovat nyní
+
+
+
+ Failed
+ Neúspěšné
+
+
+
+ _ContentsPage
+
+
+ Table of Contents
+ Obsah
+
+
+
+ Title
+ Název
+
+
+
+ Words
+ Slova
+
+
+
+ Pages
+ Stránky
+
+
+
+ Page
+ Stránka
+
+
+
+ Progress
+ Pokrok
+
+
+
+ Words per page
+ Slova na stránku
+
+
+
+ First page offset
+ Odsazení první stránky
+
+
+
+ Chapters on odd pages
+ Kapitoly na lichých stránkách
+
+
+
+ Untitled
+ Nepojmenované
+
+
+
+ END
+ KONEC
+
+
+
+ _DetailsWidget
+
+
+ Setting
+ Nastavení
+
+
+
+ Value
+ Hodnota
+
+
+
+ Name
+ Jméno
+
+
+
+ Selection
+ Výběr
+
+
+
+ Title
+ Název
+
+
+
+ Hidden
+ Skryté
+
+
+
+ _FilterTab
+
+
+ Included in manuscript
+ Zahrnuto v rukopisu
+
+
+
+ Excluded from manuscript
+ Vyloučeno z rukopisu
+
+
+
+ Always included
+ Vždy zahrnuto
+
+
+
+ Always excluded
+ Vždy vyloučeno
+
+
+
+ Reset to default
+ Obnovit výchozí
+
+
+
+ Mark selection as
+ Označit výběr jako
+
+
+
+ Select Root Folders
+ Vybrat kořenové složky
+
+
+
+ _GuiAlert
+
+
+ Information
+ Informace
+
+
+
+ Warning
+ Varování
+
+
+
+ Error
+ Chyba
+
+
+
+ Question
+ Otázka
+
+
+
+ _HeadingsTab
+
+
+ Hide
+ Skrýt
+
+
+
+
+ Editing: {0}
+ Upravování {0}
+
+
+
+
+ None
+ Žádný
+
+
+
+ Title
+ Název
+
+
+
+ Chapter Number
+ Číslo kapitoly
+
+
+
+ Chapter Number (Word)
+ Číslo kapitoly (Word)
+
+
+
+ Chapter Number (Upper Case Roman)
+ Číslo kapitoly (Velká písmena Roman)
+
+
+
+ Chapter Number (Lower Case Roman)
+ Číslo kapitoly (Horní index Roman)
+
+
+
+ Scene Number (In Chapter)
+ Číslo scény (v kapitole)
+
+
+
+ Scene Number (Absolute)
+ Číslo scény (absolutní)
+
+
+
+ Point of View Character
+ Úhel pohledu postavy
+
+
+
+ Focus Character
+ Zaměřit se na postavu
+
+
+
+ Insert
+ Vložit
+
+
+
+ Apply
+ Použít
+
+
+
+ Centre
+ Střed
+
+
+
+ Page Break
+ Konec stránky
+
+
+
+ _NewProjectForm
+
+
+ Required
+ Vyžadováno
+
+
+
+ Optional
+ Volitelné
+
+
+
+ Create a fresh project
+ Vytvořit nový projekt
+
+
+
+ Create an example project
+ Vytvořit ukázkový projekt
+
+
+
+ Copy an existing project
+ Kopírovat existující projekt
+
+
+
+ Project Name
+ Název projektu
+
+
+
+ Author
+ Autor
+
+
+
+ Project Path
+ Cesta k projektu
+
+
+
+ Prefill Project
+ Projekt, předvyplnit
+
+
+
+ Set to 0 to only add scenes
+ Nastavte na 0 pro přidání pouze scén
+
+
+
+ Add {0} chapter documents
+ Přidat dokumenty kapitoly {0}
+
+
+
+ Add {0} scene documents (to each chapter)
+ Přidat dokumenty scény {0} (do každé kapitoly)
+
+
+
+ Add a folder for plot notes
+ Přidání složky pro poznámky k příběhu
+
+
+
+ Add a folder for character notes
+ Přidat složku pro poznámky postav
+
+
+
+ Add a folder for location notes
+ Přidat složku pro poznámky k lokaci
+
+
+
+ Add example notes to the above
+ Přidat příklady k výše uvedeným poznámkám
+
+
+
+ Chapters and Scenes
+ Kapitoly a scény
+
+
+
+ Project Notes
+ Poznámky projektu
+
+
+
+ Create New Project
+ Vytvořit nový projekt
+
+
+
+ Select Project Folder
+ Vybrat složku projektu
+
+
+
+ Fresh Project
+ Nový projekt
+
+
+
+ Example Project
+ Ukázkový projekt
+
+
+
+ Template: {0}
+ Šablona: {0}
+
+
+
+ _NewProjectPage
+
+
+ A project name is required.
+ Je vyžadován název projektu.
+
+
+
+ _OpenProjectPage
+
+
+ The project path is not reachable.
+ Cesta projektu není dostupná.
+
+
+
+ Path
+ Cesta
+
+
+
+ Remove '{0}' from the recent projects list? The project files will not be deleted.
+ Odstranit '{0}' ze seznamu nedávných projektů? Soubory projektu nebudou smazány.
+
+
+
+ Open Project
+ Otevřít Projekt
+
+
+
+ Remove Project
+ Odebrat projekt
+
+
+
+ _OverviewPage
+
+
+ Project
+ Projekt
+
+
+
+
+ Name
+ Jméno
+
+
+
+ Revisions
+ Revize
+
+
+
+ Editing Time
+ Čas úpravy
+
+
+
+
+ Word Count
+ Počet slov
+
+
+
+ In Novels
+ V Románu
+
+
+
+ In Notes
+ V poznámkách
+
+
+
+ Selected Novel
+ Vybraný Román
+
+
+
+ Chapters
+ Kapitoly
+
+
+
+ Scenes
+ Scény
+
+
+
+ _PreviewWidget
+
+
+ Press the "Preview" button to generate ...
+ Stiskněte tlačítko "Náhled" pro vygenerování ...
+
+
+
+ Processing ...
+ Zpracovávám...
+
+
+
+ Done
+ Hotovo
+
+
+
+ Built
+ Sestaveno
+
+
+
+ No Preview
+ Bez náhledu
+
+
+
+ _ProjectListModel
+
+
+ Word Count
+ Počet slov
+
+
+
+ Last Opened
+ Naposledy otevřené
+
+
+
+ _ReplacePage
+
+
+ Text Auto-Replace for Preview and Build
+ Automatické nahrazení textu pro náhled a sestavení
+
+
+
+ Keyword
+ Klíčové slovo
+
+
+
+ Replace With
+ Nahradit za
+
+
+
+ Select item to edit
+ Vybrat položky k úpravě
+
+
+
+ _SettingsPage
+
+
+ Project name
+ Název projektu
+
+
+
+ Changing this will affect the backup path.
+ Změna ovlivní cestu zálohy.
+
+
+
+ Author(s)
+ Autor(ři)
+
+
+
+
+ Only used when building the manuscript.
+ Používá se pouze při sestavení rukopisu.
+
+
+
+ Project language
+ Jazyk projektu
+
+
+
+ Default
+ Výchozí
+
+
+
+ Spell check language
+ Jazyk kontroly pravopisu
+
+
+
+
+ Overrides main preferences.
+ Přepíše hlavní nastavení.
+
+
+
+ Disable backup on close
+ Zakázat zálohování při zavření
+
+
+
+ _StatusPage
+
+
+ Status
+ Stavy
+
+
+
+ Novel Document Status Levels
+ Úrovně stavu dokumentu Románu
+
+
+
+ Importance
+ Důležitost
+
+
+
+ Project Note Importance Levels
+ Úrovně důležitosti poznámky projektu
+
+
+
+ Not in use
+ Nevyužívá se
+
+
+
+ Used once
+ Použito jednou
+
+
+
+ Used by {0} items
+ Použito celkem {0}
+
+
+
+ Select Colour
+ Vyberte barvu
+
+
+
+ Label
+ Popisek
+
+
+
+ Usage
+ Použití
+
+
+
+ Add Label
+ Přidat štítek
+
+
+
+ Delete Label
+ Smazat štítek
+
+
+
+ Move Up
+ Posunout nahoru
+
+
+
+ Move Down
+ Posunout dolu
+
+
+
+ Import Labels
+ Importovat štítky
+
+
+
+ Export Labels
+ Exportova popisky
+
+
+
+ Select item to edit
+ Vybrat položky k úpravě
+
+
+
+ Colour
+ Barva
+
+
+
+ Circles ...
+ Koláčový...
+
+
+
+ Bars ...
+ Sloupcový...
+
+
+
+ Blocks ...
+ Blokový...
+
+
+
+ Shape
+ Tvar
+
+
+
+ New Item
+ Nová položka
+
+
+
+ Cannot delete a status item that is in use.
+ Nelze odstranit statuv, který se používá.
+
+
+
+ Import File
+ Import souboru
+
+
+
+ Export File
+ Export souboru
+
+
+
+ _TreeContextMenu
+
+
+ Empty Trash
+ Vysypat koš
+
+
+
+ Rename
+ Přejmenovat
+
+
+
+ Duplicate
+ Duplikovat
+
+
+
+ Open Document
+ Otevřít dokument
+
+
+
+ View Document
+ Zobrazit dokument
+
+
+
+ Create New ...
+ Vytvořit nový...
+
+
+
+ Rename to Heading
+ Přejmenování nadpisu
+
+
+
+ Set Active to ...
+ Nastavení Aktivní na ...
+
+
+
+ Toggle Active
+ Přepnutí na aktivní
+
+
+
+ Set Status to ...
+ Nastavit stav na ...
+
+
+
+
+ Manage Labels ...
+ Správa štítků...
+
+
+
+ Set Importance to ...
+ Nastavit důležitost na...
+
+
+
+ Transform ...
+ Transformovat ...
+
+
+
+
+
+
+ Convert to {0}
+ Převést na {0}
+
+
+
+ Merge Child Items into Self
+ Sloučit podřízené položky do sebe
+
+
+
+ Merge Child Items into New
+ Sloučit podřízené položky do nového
+
+
+
+ Merge Documents in Folder
+ Sloučit dokumenty do složky
+
+
+
+ Split Document by Headings
+ Rozdělit dokument podle nadpisu
+
+
+
+ Expand All
+ Rozbalit Vše
+
+
+
+ Collapse All
+ Sbalit vše
+
+
+
+ Delete Permanently
+ Trvale odstranit
+
+
+
+ Move to Trash
+ Přesunout do Koše
+
+
+
+ Do you want to convert the folder to a {0}? This action cannot be reversed.
+ Chcete převést složku na {0}? Tuto akci nelze vrátit zpět.
+
+
+
+ _UpdatableMenu
+
+
+ From Template
+ Ze šablony
+
+
+
+ _ViewPanelBackRefs
+
+
+ Document
+ Dokument
+
+
+
+ First Heading
+ První položka
+
+
+
+ _ViewPanelKeyWords
+
+
+ Tag
+ Štítek
+
+
+
+ Importance
+ Důležitý
+
+
+
+ Document
+ Dokument
+
+
+
+ Heading
+ Nadpis
+
+
+
+ Short Description
+ Krátký popis
+
+
+
diff --git a/novelwriter/assets/i18n/project_cs_CZ.json b/novelwriter/assets/i18n/project_cs_CZ.json
new file mode 100644
index 00000000..9281da8f
--- /dev/null
+++ b/novelwriter/assets/i18n/project_cs_CZ.json
@@ -0,0 +1,118 @@
+{
+ "Synopsis": "Synopse",
+ "Short Description": "Krátký popis",
+ "Footnotes": "Poznámky pod čarou",
+ "Comment": "Komentář",
+ "Notes": "Poznámka",
+ "Tag": "Štítek",
+ "Point of View": "Úhel pohledu",
+ "Focus": "Zaměření",
+ "Characters": "Postavy",
+ "Plot": "Zápletka",
+ "Timeline": "Časová osa",
+ "Locations": "Lokality",
+ "Objects": "Objekty",
+ "Entities": "Subjekty",
+ "Custom": "Vlastní",
+ "New Page": "Nová stránka",
+ "0": "Nula",
+ "1": "Jedna",
+ "2": "Dva",
+ "3": "Tři",
+ "4": "Čtyři",
+ "5": "Pět",
+ "6": "Šest",
+ "7": "Sedm",
+ "8": "Osm",
+ "9": "Devět",
+ "10": "Deset",
+ "11": "Jedenáct",
+ "12": "Dvanáct",
+ "13": "Třináct",
+ "14": "Čtrnáct",
+ "15": "Patnáct",
+ "16": "Šestnáct",
+ "17": "Sedmnáct",
+ "18": "Osmnáct",
+ "19": "Devatenáct",
+ "20": "Dvacet",
+ "21": "Dvacet jedna",
+ "22": "Dvacet dva",
+ "23": "Dvacet tři",
+ "24": "Dvacet čtyři",
+ "25": "Dvacet pět",
+ "26": "Dvacet šest",
+ "27": "Dvacet sedm",
+ "28": "Dvacet osm",
+ "29": "Dvacet devět",
+ "30": "Třicet",
+ "31": "Třicet jedna",
+ "32": "Třicet dva",
+ "33": "Třicet tři",
+ "34": "Třicet čtyři",
+ "35": "Třicet pět",
+ "36": "Třicet šest",
+ "37": "Třicet sedm",
+ "38": "Třicet osm",
+ "39": "Třicet devět",
+ "40": "Čtyřicet",
+ "41": "Čtyřicet jedna",
+ "42": "Čtyřicet dva",
+ "43": "Čtyřicet tři",
+ "44": "Čtyřicet čtyři",
+ "45": "Čtyřicet pět",
+ "46": "Čtyřicet šest",
+ "47": "Čtyřicet sedm",
+ "48": "Deset osm",
+ "49": "Čtyřicet devět",
+ "50": "Padesát",
+ "51": "Padesát jedna",
+ "52": "Padesát dva",
+ "53": "Padesát tři",
+ "54": "Padesát čtyři",
+ "55": "Padesát pět",
+ "56": "Padesát šest",
+ "57": "Padesát sedm",
+ "58": "Padesát osm",
+ "59": "Padesát devět",
+ "60": "Šedesát",
+ "61": "Šedesát jedna",
+ "62": "Šedesát dva",
+ "63": "Šedesát tři",
+ "64": "Šedesát čtyři",
+ "65": "Šedesát pět",
+ "66": "Šedesát šest",
+ "67": "Šedesát sedm",
+ "68": "Šedesát osm",
+ "69": "Šedesát devět",
+ "70": "Sedmdesát",
+ "71": "Sedmdesát jedna",
+ "72": "Sedmdesát dva",
+ "73": "Sedmdesát tři",
+ "74": "Sedmdesát čtyři",
+ "75": "Sedmdesát pět",
+ "76": "Sedmdesát šest",
+ "77": "Sedmdesát sedm",
+ "78": "Sedmnáct osm",
+ "79": "Sedmdesát devět",
+ "80": "Osmdesát",
+ "81": "Osmdesát jedna",
+ "82": "Osmdesát dva",
+ "83": "Osmdesát tři",
+ "84": "Osmdesát čtyři",
+ "85": "Osmdesát pět",
+ "86": "Osmdesát šest",
+ "87": "Osmdesát sedm",
+ "88": "Osmdesát osum",
+ "89": "Osmdesát devět",
+ "90": "Devadesát",
+ "91": "Devadesát jedna",
+ "92": "Devadesát dva",
+ "93": "Devadesát tři",
+ "94": "Devadesát čtyři",
+ "95": "Devadesát pět",
+ "96": "Devadesát šest",
+ "97": "Devadesát sedm",
+ "98": "Devadesát osm",
+ "99": "Devadesát devět"
+}
From d72c84a3d12f29e547ffc186c69cbf02cb006c99 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 16:58:56 +0100
Subject: [PATCH 07/16] Update Italian, Polish and Brazilian Portuguese
---
i18n/nw_it_IT.ts | 534 +++++++++++++++++++++++------------------------
i18n/nw_pl_PL.ts | 534 +++++++++++++++++++++++------------------------
i18n/nw_pt_BR.ts | 534 +++++++++++++++++++++++------------------------
3 files changed, 801 insertions(+), 801 deletions(-)
diff --git a/i18n/nw_it_IT.ts b/i18n/nw_it_IT.ts
index 0add3580..f06a7691 100644
--- a/i18n/nw_it_IT.ts
+++ b/i18n/nw_it_IT.ts
@@ -355,7 +355,7 @@
Constant
-
+ TitleTitolo
@@ -391,405 +391,405 @@
Separatore di scena
-
-
-
+
+
+ NoneNessuno
-
+ NovelRomanzo
-
-
+
+ PlotTrama
-
-
+
+ CharactersPersonaggi
-
-
+
+ LocationsLuoghi
-
-
+
+ TimelineSequenza temporale
-
-
+
+ ObjectsOggetti
-
-
+
+ EntitiesEntità
-
-
-
+
+
+ CustomPersonalizzato
-
+ ArchiveArchivio
-
+ TemplatesModelli
-
+ TrashCestino
-
-
+
+ Novel DocumentDocumento del romanzo
-
-
+
+ Project NoteNota del progetto
-
+ Root FolderCartella principale
-
+ FolderCartella
-
+ Novel Title PagePagina del titolo del romanzo
-
+ Novel ChapterCapitolo del romanzo
-
+ Novel SceneScena del romanzo
-
+ Novel SectionSezione del romanzo
-
+ ActiveAttivo
-
+ InactiveInattivo
-
+ TagEtichetta
-
+ Point of ViewPunto di vista
-
-
+
+ FocusFocus
-
+ StoryStoria
-
+ MentionsMenzioni
-
+ LevelLivello
-
+ DocumentDocumento
-
+ LineRighe
-
+ StatusStato
-
+ CharsCaratteri
-
+ WordsParole
-
+ ParsParagrafi
-
+ POVPOV
-
+ SynopsisSommario
-
+ Open Document (.odt)Documento Aperto (.odt)
-
+ Flat Open Document (.fodt)Apri documento piatto (.fodt)
-
+ Microsoft Word Document (.docx)Documento Microsoft Word (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)novelWriter Markup (.txt)
-
+ Standard Markdown (.md)Standard Markdown (.md)
-
+ Extended Markdown (.md)Extended Markdown (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter Markup (.json)
-
+ Text filesFile di testo
-
+ Markdown filesFile Markdown
-
+ novelWriter filesFile di novelWriter
-
+ CSV filesFile CSV
-
+ All filesTutti i file
-
+ MillimetresMillimetri
-
+ CentimetresCentimetri
-
+ InchesPollici
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalUS Legale
-
+ US LetterUS Lettera
-
+ Straight single quotation markVirgoletta singola diritta
-
+ Straight double quotation markVirgolette doppie diritte
-
+ Left single quotation markVirgoletta singola a sinistra
-
+ Right single quotation markVirgoletta singola a destra
-
+ Single low-9 quotation markSingola virgoletta bassa 9
-
+ Single high-reversed-9 quotation markSingola virgoletta alta inversa-9
-
+ Left double quotation markVirgolette doppie a sinistra
-
+ Right double quotation markVirgolette doppie a destra
-
+ Double low-9 quotation markDoppie virgolette basse 9
-
+ Double high-reversed-9 quotation markDoppie virgolette alte inverse 9
-
+ Double low-reversed-9 quotation markDoppie virgolette basse inverse 9
-
+ Single left-pointing angle quotation markVirgoletta singola ad angolo sinistro (<)
-
+ Single right-pointing angle quotation markVirgoletta singola ad angolo destro (>)
-
+ Double left-pointing angle quotation markVirgolette doppie ad angolo sinistro (<<)
-
+ Double right-pointing angle quotation markVirgolette doppie ad angolo destro (>>)
-
+ Left corner bracketStaffa angolare sinistra
-
+ Right corner bracketStaffa angolare destra
-
+ Left white corner bracketStaffa angolare bianca sinistra
-
+ Right white corner bracketStaffa angolare bianca destra
@@ -897,22 +897,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Riga: {0} ({1})
-
+ Words: {0} ({1})Parole: {0} ({1})
-
+ Words: {0} selectedParole: {0} selezionate
-
+ StatusStato
@@ -920,27 +920,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarAttiva/disattiva la Barra degli strumenti
-
+ OutlineStruttura
-
+ SearchCerca
-
+ Toggle Focus ModeAttiva/Disattiva modalità Focus
-
+ CloseChiudi
@@ -948,62 +948,62 @@
GuiDocEditSearch
-
+ Search forRicerca
-
+ Replace withSostituisci con
-
+ SearchCerca
-
+ Case SensitiveConsidera maiuscole/minuscole
-
+ Whole Words OnlySolo parole intere
-
+ RegEx ModeModalità RegEx
-
+ Loop SearchRicerca a ciclo continuo
-
+ Search Next FileCerca nel file successivo
-
+ Preserve CaseNon considerare maiuscole/minuscole
-
+ Close SearchChiudi ricerca
-
+ Find in current documentTrova nel documento corrente
-
+ Find and replace in current documentTrova e sostituisci nel documento corrente
@@ -1011,132 +1011,132 @@
GuiDocEditor
-
+ Opened Document: {0}Documento aperto: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Questo documento è stato cambiato al di fuori di novelWriter mentre era aperto. Sovrascrivere il file su disco?
-
+ Could not save document.Impossibile salvare il documento.
-
+ Saved Document: {0}Documento salvato: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.Il controllo ortografico richiede il pacchetto PyEnchant. Non sembra essere installato.
-
+ Spell check completeControllo ortografico completo
-
+ Document DetailsDettagli del documento
-
+ Created: {0}Creato: {0}
-
+ Updated: {0}Aggiornato: {0}
-
+ File Location: {0}Posizione del file: {0}
-
+ Set as Document NameImposta come nome del documento
-
+ Open URLApri URL
-
+ Follow TagSegui i Tag
-
+ Create Note for TagCrea una nota per il Tag
-
+ CutTaglia
-
+ CopyCopia
-
+ PasteIncolla
-
+ Select AllSeleziona tutto
-
+ Select WordSeleziona parola
-
+ Select ParagraphSeleziona paragrafo
-
+ Spelling Suggestion(s)Suggerimento(i) ortografico(i)
-
+ No SuggestionsNessun suggerimento
-
+ Ignore WordIgnora parola
-
+ Add Word to DictionaryAggiungi parola al dizionario
-
+ Please select some text before calling replace quotes.Per favore seleziona del testo prima di chiedere il cambio di virgolette.
-
+ Do you want to create a new project note for the tag '{0}'?Vuoi creare una nuova nota di progetto per il tag '{0}'?
@@ -1220,52 +1220,52 @@
GuiDocToolBar
-
+ Markdown BoldMarkdown grassetto
-
+ Markdown ItalicMarkdown corsivo
-
+ Markdown StrikethroughMarkdown barrato
-
+ Shortcode BoldShortcode grassetto
-
+ Shortcode ItalicShortcode corsivo
-
+ Shortcode StrikethroughShortcode barrato
-
+ Shortcode UnderlineShortcode sottolineato
-
+ Shortcode HighlightEvidenziazione
-
+ Shortcode SuperscriptShortcode apice
-
+ Shortcode SubscriptShortcode pendice
@@ -2196,38 +2196,38 @@
GuiMainStatus
-
-
+
+ NoneNessuno
-
+ EditorEditor
-
+ ProjectProgetto
-
+ Session TimeDurata della sessione
-
+ Words: {0} ({1})Parole: {0} ({1})
-
+ Project word count (session change)Conteggio parole del progetto (modifica sessione)
-
+ Novel word count (session change)Conteggio parole del romanzo (modifica sessione)
@@ -2664,7 +2664,7 @@
Behaviour
-
+ Comportamento
@@ -2695,12 +2695,12 @@
Ask before exiting novelWriter
-
+ Chiedi prima di uscire da novelWriterOnly applies when a project is open.
-
+ Si applica solo quando il progetto è aperto.
@@ -3204,47 +3204,47 @@
GuiProjectToolBar
-
+ Project ContentContenuto del progetto
-
+ Quick LinksCollegamenti rapidi
-
+ Move UpSposta su
-
+ Move DownSposta giù
-
+ Add ItemAggiungi elemento
-
+ Expand AllEspandi tutto
-
+ Collapse AllCollassa tutto
-
+ Empty TrashSvuota il cestino
-
+ More OptionsAltre opzioni
@@ -3252,93 +3252,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!Non è stato trovato alcun posto dove aggiungere il file o la cartella!
-
+ Cannot add new files or folders to the Trash folder.Impossibile aggiungere nuovi file o cartelle alla cartella Cestino.
-
+ New NoteNuova nota
-
+ New ChapterNuovo capitolo
-
+ New SceneNuova scena
-
+ New DocumentNuovo documento
-
+ New FolderNuova cartella
-
+ No documents selected for merging.Nessun documento selezionato per la fusione.
-
+ MergedUniti
-
-
+
+ Could not write document content.Impossibile scrivere il contenuto del documento.
-
+ Do you want to duplicate this document?Vuoi duplicare questo documento?
-
+ Do you want to duplicate this item and all child items?Vuoi duplicare questo elemento e tutti gli elementi figli?
-
+ Could not duplicate all items.Impossibile duplicare tutti gli elementi.
-
+ Root folders can only be deleted when they are empty.Le cartelle radice possono essere eliminate solo quando sono vuote.
-
+ Permanently delete selected item(s)?Eliminare permanentemente gli elementi selezionati?
-
+ Move selected item(s) to Trash?Spostare gli elementi selezionati nel cestino?
-
+ The Trash folder is already empty.La cartella Cestino è già vuota.
-
+ Permanently delete {0} file(s) from Trash?Eliminare definitivamente {0} file(s) dal cestino?
@@ -3637,7 +3637,7 @@
Non è un formato conosciuto di file di progetto.
-
+
@@ -3685,98 +3685,98 @@
Questo progetto è stato salvato da una versione più recente di novelWriter, versione {0}. Questa è la versione {1}. Se si continua ad aprire il progetto, alcuni attributi e impostazioni potrebbero non essere preservati, ma il progetto complessivo dovrebbe andare bene. Continuare ad aprire il progetto?
-
+ RecoveredRipristinato
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.Trovati {0} file orfani nel progetto. {1} file sono stati recuperati ...
-
+ Opened Project: {0}Progetto aperto: {0}
-
+ There is no project open.Non c'è nessun progetto aperto.
-
+ Failed to save project.Salvataggio del progetto non riuscito.
-
+ Saved Project: {0}Progetto salvato: {0}
-
+ Backing up project ...Crea una copia di backup ...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Impossibile eseguire il backup del progetto perché nessun nome del progetto è impostato. Si prega di impostare un nome del progetto nelle impostazioni del progetto.
-
+ Could not create backup folder.Impossibile creare la cartella di backup.
-
+ Created a backup of your project of size {0}B.Creato un backup del progetto di dimensione {0}B.
-
+ Could not write backup archive.Impossibile scrivere l'archivio di backup.
-
+ Project backed up to '{0}'Eseguito il backup del progetto su '{0}'
-
+ NewNuovo
-
+ NoteNota
-
+ DraftBozza
-
+ FinishedFinito
-
+ MinorMinore
-
+ MajorMaggiore
-
+ MainPrincipale
@@ -4021,102 +4021,102 @@
Shape
-
+ SquareQuadrato
-
+ TriangleTriangolo
-
+ NablaTriangolo capovolto
-
+ DiamondDiamante
-
+ PentagonPentagono
-
+ HexagonEsagono
-
+ StarStella
-
+ PacmanPacman
-
+ 1/4 Circle1/4 di cerchio
-
+ Half CircleMezzo cerchio
-
+ 3/4 Circle3/4 di cerchio
-
+ Full CircleCerchio intero
-
+ 1 Bar1 barra
-
+ 2 Bars2 barre
-
+ 3 Bars3 barre
-
+ 4 Bars4 barre
-
+ 1 Block1 blocco
-
+ 2 Blocks2 blocchi
-
+ 3 Blocks3 blocchi
-
+ 4 Blocks4 blocchi
@@ -4147,57 +4147,57 @@
Stats
-
+ CharactersCaratteri
-
+ Characters in TextCaratteri nel testo
-
+ Characters in HeadingsCaratteri nelle intestazioni
-
+ ParagraphsParagrafi
-
+ HeadingsIntestazioni
-
+ Characters, No SpacesCaratteri, esclusi gli spazi
-
+ Characters in Text, No SpacesCaratteri nel testo, esclusi gli spazi
-
+ Characters in Headings, No SpacesCaratteri nelle intestazioni, esclusi gli spazi
-
+ WordsParole
-
+ Words in TextParole nel testo
-
+ Words in HeadingsParole nelle intestazioni
@@ -4941,121 +4941,121 @@
_TreeContextMenu
-
+ Empty TrashSvuota il cestino
-
+ RenameRinomina
-
+ DuplicateDuplica
-
+ Open DocumentApri documento
-
+ View DocumentVisualizza documento
-
+ Create New ...Crea nuovo ...
-
+ Rename to HeadingRinomina nell'intestazione
-
+ Set Active to ...Imposta attività su ...
-
+ Toggle ActiveCommuta Attiva/Disattiva
-
+ Set Status to ...Imposta lo stato su ...
-
-
+
+ Manage Labels ...Gestisci Etichette ...
-
+ Set Importance to ...Imposta l'importanza su ...
-
+ Transform ...Trasforma ...
-
-
-
-
+
+
+
+ Convert to {0}Converti in {0}
-
+ Merge Child Items into SelfFondi elementi figli
-
+ Merge Child Items into NewFondi elementi figli in uno nuovo
-
+ Merge Documents in FolderFondi i documenti nella cartella
-
+ Split Document by HeadingsDividi il documento alle intestazioni
-
+ Expand AllEspandi tutto
-
+ Collapse AllCollassa tutto
-
+ Delete PermanentlyElimina definitivamente
-
+ Move to TrashSposta nel cestino
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Vuoi convertire la cartella in un {0}? Questa azione non può essere annullata.
@@ -5063,7 +5063,7 @@
_UpdatableMenu
-
+ From TemplateDal modello
diff --git a/i18n/nw_pl_PL.ts b/i18n/nw_pl_PL.ts
index be1a09f3..6f9cb1d3 100644
--- a/i18n/nw_pl_PL.ts
+++ b/i18n/nw_pl_PL.ts
@@ -355,7 +355,7 @@
Constant
-
+ TitleTytuł
@@ -391,405 +391,405 @@
Odstęp między scenami
-
-
-
+
+
+ NoneNIC
-
+ NovelPowieść
-
-
+
+ PlotFabuła
-
-
+
+ CharactersPostacie
-
-
+
+ LocationsMiejsca
-
-
+
+ TimelineLinia czasu
-
-
+
+ ObjectsObiekty
-
-
+
+ EntitiesPodmioty
-
-
-
+
+
+ CustomRóżne
-
+ ArchiveArchiwum
-
+ TemplatesSzablony
-
+ TrashKosz
-
-
+
+ Novel DocumentDokument powieści
-
-
+
+ Project NoteNotatka projektu
-
+ Root FolderKatalog bazowy
-
+ FolderKatalog
-
+ Novel Title PageStrona tytułowa powieści
-
+ Novel ChapterRozdział powieści
-
+ Novel SceneScena
-
+ Novel SectionSekcja
-
+ ActiveAktywny
-
+ InactiveNieaktywny
-
+ TagZnacznik
-
+ Point of ViewPunkt widzenia
-
-
+
+ FocusSkupienie
-
+ StoryHistoria
-
+ MentionsWzmianka
-
+ LevelPoziom
-
+ DocumentDokument
-
+ LineWiersz
-
+ StatusStatus
-
+ CharsZnaki
-
+ WordsSłowa
-
+ ParsAkapity
-
+ POVPunkt widzenia
-
+ SynopsisStreszczenie
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ Microsoft Word Document (.docx)Dokument Word Microsoft (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)novelWriter Markup (.txt)
-
+ Standard Markdown (.md)Standard Markdown (.md)
-
+ Extended Markdown (.md)Extended Markdown (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter Markup (.json)
-
+ Text filesPliki tekstowe
-
+ Markdown filesPliki Markdown
-
+ novelWriter filesPliki novelWriter
-
+ CSV filesPliki CSV
-
+ All filesWszystkie pliki
-
+ MillimetresMilimetry
-
+ CentimetresCentymetry
-
+ InchesCale
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalUS Legal
-
+ US LetterUS Letter
-
+ Straight single quotation markAmerykański cudzysłów pojedynczy
-
+ Straight double quotation markAmerykański cudzysłów podwójny
-
+ Left single quotation markCudzysłów definicyjny lewy
-
+ Right single quotation markCudzysłów definicyjny prawy
-
+ Single low-9 quotation markPolski cudzysłów pojedynczy lewy
-
+ Single high-reversed-9 quotation markPolski cudzysłów definicyjny lewy
-
+ Left double quotation markCudzysłów amerykański lewy
-
+ Right double quotation markCudzysłów apostrofowy prawy
-
+ Double low-9 quotation markCudzysłów apostrofowy lewy
-
+ Double high-reversed-9 quotation markPodwójny odwrócony cudzysłów górny
-
+ Double low-reversed-9 quotation markPodwójny odwrócony cudzysłów dolny
-
+ Single left-pointing angle quotation markPojedynczy cudzysłów ostrokątny lewy
-
+ Single right-pointing angle quotation markPojedynczy cudzysłów ostrokątny prawy
-
+ Double left-pointing angle quotation markPodwójny cudzysłów ostrokątny lewy
-
+ Double right-pointing angle quotation markPodwójny cudzysłów ostrokątny prawy
-
+ Left corner bracketLewy nawias narożnikowy
-
+ Right corner bracketPrawy nawias narożnikowy
-
+ Left white corner bracketLewy nawias narożnikowy biały
-
+ Right white corner bracketPrawy nawias narożnikowy biały
@@ -897,22 +897,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Wiersz: {0} ({1})
-
+ Words: {0} ({1})Słowa: {0} ({1})
-
+ Words: {0} selectedSłowa: {0} wybranych
-
+ StatusStatus
@@ -920,27 +920,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarPrzełącz pasek narzędzi
-
+ OutlineZarys
-
+ SearchSzukaj
-
+ Toggle Focus ModePrzełącz tryb skupienia
-
+ CloseZamknij
@@ -948,62 +948,62 @@
GuiDocEditSearch
-
+ Search forWyszukaj
-
+ Replace withZastąp przez
-
+ SearchSzukaj
-
+ Case SensitiveWielkość znaków
-
+ Whole Words OnlyTylko pełne słowa
-
+ RegEx ModeWyrażenia regularne
-
+ Loop SearchWyszukiwanie w pętli
-
+ Search Next FilePrzeszukuj następny plik
-
+ Preserve CaseZachowaj wielkość liter
-
+ Close SearchZamknij wyszukiwanie
-
+ Find in current documentZnajdź w bieżącym dokumencie
-
+ Find and replace in current documentZnajdź i zastąp w bieżącym dokumencie
@@ -1011,132 +1011,132 @@
GuiDocEditor
-
+ Opened Document: {0}Otwarto dokument: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Dokument został zmieniony poza programem, kiedy ten był otwarty. Czy nadpisać plik na dysku?
-
+ Could not save document.Nie można zapisać dokumentu.
-
+ Saved Document: {0}Zapisano dokument: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.Sprawdzanie pisowni wymaga pakietu PyEnchant. Wygląda na to, że nie jest on zainstalowany.
-
+ Spell check completeSprawdzanie pisowni zakończone
-
+ Document DetailsSzczegóły dokumentu
-
+ Created: {0}Utworzono: {0}
-
+ Updated: {0}Zaktualizowano: {0}
-
+ File Location: {0}Lokalizacja pliku: {0}
-
+ Set as Document NameUstaw jako nazwę dokumentu
-
+ Open URLOtwórz adres URL
-
+ Follow TagPodążaj za znacznikiem
-
+ Create Note for TagStwórz notatkę dla znacznika
-
+ CutWytnij
-
+ CopyKopiuj
-
+ PasteWklej
-
+ Select AllZaznacz wszystko
-
+ Select WordZaznacz słowo
-
+ Select ParagraphZaznacz akapit
-
+ Spelling Suggestion(s)Podpowiedzi pisowni
-
+ No SuggestionsBrak podpowiedzi
-
+ Ignore WordIgnoruj słowo
-
+ Add Word to DictionaryDodaj słowo do słownika
-
+ Please select some text before calling replace quotes.Zaznacz tekst przed wywołaniem zastępowania cudzysłowów.
-
+ Do you want to create a new project note for the tag '{0}'?Czy chcesz stworzyć nową notatkę dla znacznika '{0}'?
@@ -1220,52 +1220,52 @@
GuiDocToolBar
-
+ Markdown BoldPogrubienie Markdown
-
+ Markdown ItalicKursywa Markdown
-
+ Markdown StrikethroughPrzekreślenie Markdown
-
+ Shortcode BoldPogrubienie Shortcode
-
+ Shortcode ItalicKursywa Shortcode
-
+ Shortcode StrikethroughPrzekreślenie Shortcode
-
+ Shortcode UnderlinePodkreślenie Shortcode
-
+ Shortcode HighlightPodświetlenie Shortcode
-
+ Shortcode SuperscriptIndeks górny Shortcode
-
+ Shortcode SubscriptIndeks dolny Shortcode
@@ -2196,38 +2196,38 @@
GuiMainStatus
-
-
+
+ NoneŻaden
-
+ EditorEdytor
-
+ ProjectProjekt
-
+ Session TimeCzas sesji
-
+ Words: {0} ({1})Słowa: {0} ({1})
-
+ Project word count (session change)Ilość słów w projekcie (zmiana w czasie sesji)
-
+ Novel word count (session change)Ilość słów w powieści (zmiana w czasie sesji)
@@ -2664,7 +2664,7 @@
Behaviour
-
+ Zachowanie
@@ -2695,12 +2695,12 @@
Ask before exiting novelWriter
-
+ Zapytaj przed wyjściem z programu novelWriterOnly applies when a project is open.
-
+ Dotyczy tylko sytuacji, kiedy jest otwarty projekt.
@@ -3204,47 +3204,47 @@
GuiProjectToolBar
-
+ Project ContentZawartość projektu
-
+ Quick LinksSzybkie linki
-
+ Move UpPrzenieś wyżej
-
+ Move DownPrzenieś niżej
-
+ Add ItemDodaj element
-
+ Expand AllMaksymalizuj wszystko
-
+ Collapse AllMinimalizuj wszystko
-
+ Empty TrashOpróżnij kosz
-
+ More OptionsWięcej opcji
@@ -3252,93 +3252,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!Nie można znaleźć miejsca na dodanie pliku lub katalogu!
-
+ Cannot add new files or folders to the Trash folder.Nie można dodawać nowych plików ani katalogów do katalogu Kosz.
-
+ New NoteNowa notatka
-
+ New ChapterNowy rozdział
-
+ New SceneNowa scena
-
+ New DocumentNowy dokument
-
+ New FolderNowy katalog
-
+ No documents selected for merging.Nie wybrano dokumentów do połączenia.
-
+ MergedPołączono
-
-
+
+ Could not write document content.Nie można zapisać zawartości dokumentu.
-
+ Do you want to duplicate this document?Czy chcesz powielić ten dokument?
-
+ Do you want to duplicate this item and all child items?Czy chcesz powielić ten element i wszystkie elementy podrzędne?
-
+ Could not duplicate all items.Nie można powielić wszystkich elementów.
-
+ Root folders can only be deleted when they are empty.Katalogi bazowe mogą być usuwane tylko wtedy, gdy są puste.
-
+ Permanently delete selected item(s)?Trwale usunąć zaznaczone element(y)?
-
+ Move selected item(s) to Trash?Przenieść zaznaczone element(y) do kosza?
-
+ The Trash folder is already empty.Katalog Kosz jest już pusty.
-
+ Permanently delete {0} file(s) from Trash?Trwale usunąć {0} plik(ów) z kosza?
@@ -3637,7 +3637,7 @@
Nieznany format pliku dokumentu.
-
+
@@ -3685,98 +3685,98 @@
Ten projekt został zapisany w nowszej wersji novelWriter, wersja {0}. To jest wersja {1}. Jeśli będziesz kontynuować, niektóre właściwości i ustawienia mogą nie zostać zachowane, ale cały projekt nie powinie ulec uszkodzeniu. Czy kontynuować otwieranie projektu?
-
+ RecoveredPrzywrócono
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.Znaleziono {0} osierocony(ch) plik(ów). Przywrócono {1} plik(ów).
-
+ Opened Project: {0}Otwarto projekt: {0}
-
+ There is no project open.Żaden projekt nie jest otwarty.
-
+ Failed to save project.Nie udało się zapisać projektu.
-
+ Saved Project: {0}Zapisano projekt: {0}
-
+ Backing up project ...Wykonywanie kopii zapasowej projektu...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Nie można wykonać kopii zapasowej projektu, ponieważ nie została ustawiona nazwa projektu. Proszę podać nazwę projektu w ustawieniach projektu.
-
+ Could not create backup folder.Nie można utworzyć katalogu kopii zapasowych.
-
+ Created a backup of your project of size {0}B.Utworzono kopię zapasową projektu o rozmiarze {0}B.
-
+ Could not write backup archive.Nie można zapisać archiwum kopii zapasowej.
-
+ Project backed up to '{0}'Kopia zapasowa projektu utworzona w '{0}'
-
+ NewNowy
-
+ NoteNotatka
-
+ DraftSzkic
-
+ FinishedUkończony
-
+ MinorPoboczny
-
+ MajorWażny
-
+ MainGłówny
@@ -4021,102 +4021,102 @@
Shape
-
+ SquareKwadrat
-
+ TriangleTrójkąt
-
+ NablaNabla
-
+ DiamondDiament
-
+ PentagonPięciokąt
-
+ HexagonSześciokąt
-
+ StarGwiazda
-
+ PacmanPacman
-
+ 1/4 CircleĆwierć koła
-
+ Half CirclePół koła
-
+ 3/4 Circle3/4 koła
-
+ Full CirclePełne koło
-
+ 1 Bar1 pasek
-
+ 2 Bars2 paski
-
+ 3 Bars3 paski
-
+ 4 Bars4 paski
-
+ 1 Block1 bloczek
-
+ 2 Blocks2 bloczki
-
+ 3 Blocks3 bloczki
-
+ 4 Blocks4 bloczki
@@ -4147,57 +4147,57 @@
Stats
-
+ CharactersZnaki
-
+ Characters in TextZnaki w tekście
-
+ Characters in HeadingsZnaki w nagłówkach
-
+ ParagraphsAkapity
-
+ HeadingsNagłówki
-
+ Characters, No SpacesZnaki bez spacji
-
+ Characters in Text, No SpacesZnaki w tekście bez spacji
-
+ Characters in Headings, No SpacesZnaki w nagłówkach bez spacji
-
+ WordsSłowa
-
+ Words in TextSłowa w tekście
-
+ Words in HeadingsSłowa w nagłówkach
@@ -4941,121 +4941,121 @@
_TreeContextMenu
-
+ Empty TrashOpróżnij kosz
-
+ RenameZmień nazwę
-
+ DuplicatePowiel
-
+ Open DocumentOtwórz dokument
-
+ View DocumentPodgląd dokumentu
-
+ Create New ...Utwórz nowy...
-
+ Rename to HeadingZmień na nazwę nagłówka
-
+ Set Active to ...Ustaw aktywność jako...
-
+ Toggle ActivePrzełącz aktywność
-
+ Set Status to ...Ustaw status jako...
-
-
+
+ Manage Labels ...Zarządzaj etykietami...
-
+ Set Importance to ...Ustaw ważność jako...
-
+ Transform ...Przekształć...
-
-
-
-
+
+
+
+ Convert to {0}Zmień na {0}
-
+ Merge Child Items into SelfPołącz elementy podrzędne razem
-
+ Merge Child Items into NewPołącz elementy podrzędne jako nowy dokument
-
+ Merge Documents in FolderPołącz dokumenty w katalogu
-
+ Split Document by HeadingsPodziel dokument według nagłówków
-
+ Expand AllMaksymalizuj wszystko
-
+ Collapse AllMinimalizuj wszystko
-
+ Delete PermanentlyUsuń trwale
-
+ Move to TrashPrzenieś do kosza
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Czy chcesz przekształcić katalog na {0}? Tego działania nie można cofnąć.
@@ -5063,7 +5063,7 @@
_UpdatableMenu
-
+ From TemplateZ szablonu
diff --git a/i18n/nw_pt_BR.ts b/i18n/nw_pt_BR.ts
index 7b3e860d..0c03ec5e 100644
--- a/i18n/nw_pt_BR.ts
+++ b/i18n/nw_pt_BR.ts
@@ -355,7 +355,7 @@
Constant
-
+ TitleTítulo
@@ -391,405 +391,405 @@
Separador de cena
-
-
-
+
+
+ NoneNenhum
-
+ NovelLivro
-
-
+
+ PlotEnredo
-
-
+
+ CharactersPersonagens
-
-
+
+ LocationsLugares
-
-
+
+ TimelineLinha do tempo
-
-
+
+ ObjectsObjetos
-
-
+
+ EntitiesEntidades
-
-
-
+
+
+ CustomOutros
-
+ ArchiveArquivados
-
+ TemplatesModelos
-
+ TrashLixeira
-
-
+
+ Novel DocumentDocumento do livro
-
-
+
+ Project NoteNotas do projeto
-
+ Root FolderDiretório-raiz
-
+ FolderDiretório
-
+ Novel Title PageFolha de rosto do livro
-
+ Novel ChapterCapítulo do livro
-
+ Novel SceneCena do livro
-
+ Novel SectionSeção do livro
-
+ ActiveAtivo
-
+ InactiveInativo
-
+ TagEtiqueta
-
+ Point of ViewPonto de vista
-
-
+
+ FocusFoco
-
+ StoryHistória
-
+ MentionsMenções
-
+ LevelNível
-
+ DocumentDocumento
-
+ LineLinha
-
+ StatusEstado
-
+ CharsCaracteres
-
+ WordsPalavras
-
+ ParsParágrafos
-
+ POVPonto de vista
-
+ SynopsisSinopse
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ Microsoft Word Document (.docx)Documento do Microsoft Word (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)Markup do novelWriter (.txt)
-
+ Standard Markdown (.md)Markdown padrão (.md)
-
+ Extended Markdown (.md)Markdown estendido (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + Markup do novelWriter (.json)
-
+ Text filesArquivos de texto
-
+ Markdown filesArquivos Markdown
-
+ novelWriter filesArquivos do novelWriter
-
+ CSV filesArquivos CSV
-
+ All filesTodos os arquivos
-
+ MillimetresMilímetros
-
+ CentimetresCentímetros
-
+ InchesPolegadas
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalOfício
-
+ US LetterCarta
-
+ Straight single quotation markAspas simples retas
-
+ Straight double quotation markAspas duplas retas
-
+ Left single quotation markAspas simples à esquerda
-
+ Right single quotation markAspas simples à direita
-
+ Single low-9 quotation markAspas 9-baixo simples
-
+ Single high-reversed-9 quotation markAspas 9-alto-invertido simples
-
+ Left double quotation markAspas duplas à esquerda
-
+ Right double quotation markAspas duplas à direita
-
+ Double low-9 quotation markAspas 9-baixo duplas
-
+ Double high-reversed-9 quotation markAspas 9-alto-invertido duplas
-
+ Double low-reversed-9 quotation markAspas 9-baixo-invertido duplas
-
+ Single left-pointing angle quotation markAspas angulares simples à esquerda
-
+ Single right-pointing angle quotation markAspas angulares simples à direita
-
+ Double left-pointing angle quotation markAspas angulares duplas apontando à esquerda
-
+ Double right-pointing angle quotation markAspas angulares duplas apontando à direita
-
+ Left corner bracketColchete de canto à esquerda
-
+ Right corner bracketRight corner bracket
-
+ Left white corner bracketColchete branco de canto à esquerda
-
+ Right white corner bracketColchete branco de canto à direita
@@ -897,22 +897,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Linha: {0} ({1})
-
+ Words: {0} ({1})Palavras: {0} ({1})
-
+ Words: {0} selectedPalavras: {0} selecionadas
-
+ StatusEstado
@@ -920,27 +920,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarExibir/ocultar barra de ferramentas
-
+ OutlineEstrutura
-
+ SearchPesquisa
-
+ Toggle Focus ModeAlternar o modo de foco
-
+ CloseFechar
@@ -948,62 +948,62 @@
GuiDocEditSearch
-
+ Search forPesquisar por
-
+ Replace withSubstituir por
-
+ SearchPesquisa
-
+ Case SensitiveDiferenciar maiúsculas e minúsculas
-
+ Whole Words OnlyApenas palavras inteiras
-
+ RegEx ModeExpressão regular
-
+ Loop SearchPesquisa iterativa
-
+ Search Next FilePesquisar no documento seguinte
-
+ Preserve CasePreservar maiúsculas e minúsculas
-
+ Close SearchFechar pesquisa
-
+ Find in current documentEncontrar no documento atual
-
+ Find and replace in current documentEncontrar e substituir no documento atual
@@ -1011,132 +1011,132 @@
GuiDocEditor
-
+ Opened Document: {0}Documento aberto: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Este documento foi alterado fora do novelWriter enquanto estava aberto. Sobrescrever o arquivo no disco?
-
+ Could not save document.Não foi possível salvar o documento.
-
+ Saved Document: {0}Documento salvo: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.A verificação ortográfica requer o pacote PyEnchant. Ele não parece estar instalado.
-
+ Spell check completeVerificação ortográfica concluída
-
+ Document DetailsDetalhes do documento
-
+ Created: {0}Criado em: {0}
-
+ Updated: {0}Atualizado em: {0}
-
+ File Location: {0}Caminho do arquivo: {0}
-
+ Set as Document NameDefinir como nome do documento
-
+ Open URLAbrir URL
-
+ Follow TagSeguir etiqueta
-
+ Create Note for TagCriar nota para a etiqueta
-
+ CutRecortar
-
+ CopyCopiar
-
+ PasteColar
-
+ Select AllSelecionar tudo
-
+ Select WordSelecionar palavra
-
+ Select ParagraphSelecionar parágrafo
-
+ Spelling Suggestion(s)Sugestão(ões) de ortografia
-
+ No SuggestionsSem sugestões
-
+ Ignore WordIgnorar palavra
-
+ Add Word to DictionaryAdicionar palavra ao dicionário
-
+ Please select some text before calling replace quotes.Por favor, selecione algum texto antes de usar a substituição de aspas.
-
+ Do you want to create a new project note for the tag '{0}'?Deseja criar uma nova nota de projeto para a etiqueta '{0}'?
@@ -1220,52 +1220,52 @@
GuiDocToolBar
-
+ Markdown BoldNegrito (em Markdown)
-
+ Markdown ItalicItálico (em Markdown)
-
+ Markdown StrikethroughTachado (em Markdown)
-
+ Shortcode BoldNegrito (código)
-
+ Shortcode ItalicItálico (código)
-
+ Shortcode StrikethroughTachado (código)
-
+ Shortcode UnderlineSublinhado (código)
-
+ Shortcode HighlightDestaque (em código)
-
+ Shortcode SuperscriptSobrescrito (código)
-
+ Shortcode SubscriptSubscrito (código)
@@ -2196,38 +2196,38 @@
GuiMainStatus
-
-
+
+ NoneNenhum
-
+ EditorEditor
-
+ ProjectProjeto
-
+ Session TimeDuração da sessão
-
+ Words: {0} ({1})Palavras: {0} ({1})
-
+ Project word count (session change)Contagem de palavras do projeto (alterações na sessão atual)
-
+ Novel word count (session change)Contagem de palavras do livro (alterações na sessão atual)
@@ -2664,7 +2664,7 @@
Behaviour
-
+ Comportamento
@@ -2695,12 +2695,12 @@
Ask before exiting novelWriter
-
+ Perguntar antes de sair do novelWriterOnly applies when a project is open.
-
+ Só se aplica quando há um projeto aberto.
@@ -3204,47 +3204,47 @@
GuiProjectToolBar
-
+ Project ContentConteúdo do projeto
-
+ Quick LinksLigações rápidas
-
+ Move UpMover para cima
-
+ Move DownMover para baixo
-
+ Add ItemAdicionar item
-
+ Expand AllExpandir tudo
-
+ Collapse AllRecolher tudo
-
+ Empty TrashEsvaziar a lixeira
-
+ More OptionsMais opções
@@ -3252,93 +3252,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!Não foi possível encontrar nenhum lugar para adicionar o arquivo ou diretório!
-
+ Cannot add new files or folders to the Trash folder.Não é possível adicionar novos arquivos ou diretórios à lixeira.
-
+ New NoteNova nota
-
+ New ChapterNovo capítulo
-
+ New SceneNova cena
-
+ New DocumentNovo documento
-
+ New FolderNovo diretório
-
+ No documents selected for merging.Nenhum documento selecionado para combinar.
-
+ MergedCombinado
-
-
+
+ Could not write document content.Não foi possível escrever o conteúdo do documento.
-
+ Do you want to duplicate this document?Deseja duplicar este documento?
-
+ Do you want to duplicate this item and all child items?Deseja duplicar este item e todos seus subitens?
-
+ Could not duplicate all items.Não foi possível duplicar todos os itens.
-
+ Root folders can only be deleted when they are empty.Os diretórios-raiz só podem ser excluídos quando estiverem vazios.
-
+ Permanently delete selected item(s)?Excluir permanentemente o(s) item(ns) selecionado(s)?
-
+ Move selected item(s) to Trash?Mover item(ns) selecionado(s) para a lixeira?
-
+ The Trash folder is already empty.O diretório da lixeira já está vazio.
-
+ Permanently delete {0} file(s) from Trash?Permanentemente remover {0} arquivo(s) da lixeira?
@@ -3637,7 +3637,7 @@
Não é um formato conhecido de arquivo de projeto.
-
+
@@ -3685,98 +3685,98 @@
O projeto foi salvo por uma versão mais nova do novelWriter, versão {0}. Esta é a versão {1}. Caso deseje abrir o projeto, alguns atributos e configurações podem não ser preservados, mas o projeto deve funcionar corretamente. Continuar?
-
+ RecoveredRecuperado
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.Encontrado(s) {0} arquivo(s) órfão(s) no projeto. {1} arquivo(s) recuperado(s).
-
+ Opened Project: {0}Projeto aberto: {0}
-
+ There is no project open.Não há um projeto aberto.
-
+ Failed to save project.Houve uma falha ao salvar o projeto.
-
+ Saved Project: {0}Projeto salvo: {0}
-
+ Backing up project ...Criando uma cópia de segurança do projeto...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Não foi possível criar a cópia de segurança do projeto porque o nome do projeto não está definido. Por favor, defina-o nas configurações do projeto.
-
+ Could not create backup folder.Não foi possível criar o diretório da cópia de segurança.
-
+ Created a backup of your project of size {0}B.Foi criado uma cópia de segurança do seu projeto com {0}B de tamanho.
-
+ Could not write backup archive.Não foi possível escrever o arquivo da cópia de segurança.
-
+ Project backed up to '{0}'Cópia de segurança do projeto criada em '{0}'
-
+ NewNovo
-
+ NoteNota
-
+ DraftRascunho
-
+ FinishedFinalizado
-
+ MinorMenor
-
+ MajorMaior
-
+ MainPrincipal
@@ -4021,102 +4021,102 @@
Shape
-
+ SquareQuadrado
-
+ TriangleTriângulo
-
+ NablaNabla
-
+ DiamondDiamante
-
+ PentagonPentágono
-
+ HexagonHexágono
-
+ StarEstrela
-
+ PacmanPacman
-
+ 1/4 Circle1/4 de círculo
-
+ Half CircleMeio círculo
-
+ 3/4 Circle3/4 de círculo
-
+ Full CircleCírculo completo
-
+ 1 Bar1 barra
-
+ 2 Bars2 barras
-
+ 3 Bars3 barras
-
+ 4 Bars4 barras
-
+ 1 Block1 bloco
-
+ 2 Blocks2 blocos
-
+ 3 Blocks3 blocos
-
+ 4 Blocks4 blocos
@@ -4147,57 +4147,57 @@
Stats
-
+ CharactersCaracteres
-
+ Characters in TextCaracteres no texto
-
+ Characters in HeadingsCaracteres em cabeçalhos
-
+ ParagraphsParágrafos
-
+ HeadingsCabeçalhos
-
+ Characters, No SpacesCaracteres, sem espaços
-
+ Characters in Text, No SpacesCaracteres no texto, sem espaços
-
+ Characters in Headings, No SpacesCaracteres em cabeçalhos, sem espaços
-
+ WordsPalavras
-
+ Words in TextPalavras no texto
-
+ Words in HeadingsPalavras em cabeçalhos
@@ -4941,121 +4941,121 @@
_TreeContextMenu
-
+ Empty TrashEsvaziar a lixeira
-
+ RenameRenomear
-
+ DuplicateDuplicar
-
+ Open DocumentAbrir documento
-
+ View DocumentVer documento
-
+ Create New ...Criar novo ...
-
+ Rename to HeadingRenomear para título
-
+ Set Active to ...Definir inclusão como...
-
+ Toggle ActiveAlternar inclusão
-
+ Set Status to ...Definir estado como...
-
-
+
+ Manage Labels ...Gerenciar rótulos ...
-
+ Set Importance to ...Definir importância como...
-
+ Transform ...Transformar ...
-
-
-
-
+
+
+
+ Convert to {0}Converter em {0}
-
+ Merge Child Items into SelfCombinar subitens neste documento
-
+ Merge Child Items into NewCombinar subitens em um novo documento
-
+ Merge Documents in FolderCombinar documentos no diretório
-
+ Split Document by HeadingsDividir documento por cabeçalhos
-
+ Expand AllExpandir tudo
-
+ Collapse AllRecolher tudo
-
+ Delete PermanentlyExcluir permanentemente
-
+ Move to TrashMover para a lixeira
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Deseja converter o diretório em {0}? Esta ação não pode ser desfeita.
@@ -5063,7 +5063,7 @@
_UpdatableMenu
-
+ From TemplateDo modelo
From 96b3656176e1e3d8a2982e90cf8d02f5c1de994c Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 17:12:58 +0100
Subject: [PATCH 08/16] Bump version, update changelog, and update credits
---
CHANGELOG.md | 38 ++++++++++++++++++++++++++
CREDITS.md | 1 +
novelwriter/__init__.py | 6 ++--
novelwriter/assets/text/credits_en.htm | 1 +
4 files changed, 43 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 15a3b1fd..ddf61bf6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,43 @@
# novelWriter Changelog
+## Version 2.6.2 [2025-02-16]
+
+### Release Notes
+
+This is a patch release that fixes a few issues with the project tree. The Empty Trash option in
+the menu now works again, It is no longer possible to accidentally drag and drop project items onto
+the root of the project tree.
+
+In addition, a Czech translation has been added by Tomáš Zmek, and the Italian, Polish and
+Brazilian Portuguese translations have been updated.
+
+### Detailed Changelog
+
+**Bugfixes**
+
+* Fixed a bug where alternative scene formats were ignored when splitting a document. Issue #2233.
+ PR #2234.
+* Fixed the Empty Trash menu entry in the Project menu. It was not connected to the project tree
+ and therefore selecting it did nothing. Issue #2239. PR #2242.
+* Fixed a bug where it was possible to drag items to the root levels as long as they were dropped
+ between existing root items. This action is now properly blocked. PR #2242.
+
+**Improvements**
+
+* Added an extra check in the project tree item model that can prevent a crash in certain
+ circumstances when moving multiple project items. It is probably a corner case caused by
+ competing garbage collectors in Python and Qt, but the additional check should handle. PR #2242.
+
+**Internationalisation**
+
+* Add Czech translation by Tomáš Zmek. PR #2244.
+* Updated Italian, Polish and Brazilian Portuguese translations. PR #2244.
+
+See the [translation activity stream](https://crowdin.com/project/novelwriter/activity-stream) for
+more details.
+
+----
+
## Version 2.6.1 [2025-02-02]
### Release Notes
diff --git a/CREDITS.md b/CREDITS.md
index 39ff5f68..ddeda7eb 100644
--- a/CREDITS.md
+++ b/CREDITS.md
@@ -21,6 +21,7 @@ The artwork on the Welcome dialog was created by Louis Durrant.
The default language is English (UK) with English (US) as an option. These are the original
translators for the languages currently available:
+* **Czech:** Tomáš Zmek (perteus)
* **Dutch:** Martijn van der Kleijn (mvdkleijn)
* **French:** Jan Lüdke (jyhelle)
* **German:** Myian (HeyMyian)
diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py
index 111444fd..80151344 100644
--- a/novelwriter/__init__.py
+++ b/novelwriter/__init__.py
@@ -47,9 +47,9 @@ __license__ = "GPLv3"
__author__ = "Veronica Berglyd Olsen"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
-__version__ = "2.6.1"
-__hexversion__ = "0x020601f0"
-__date__ = "2025-02-02"
+__version__ = "2.6.2"
+__hexversion__ = "0x020602f0"
+__date__ = "2025-02-16"
__status__ = "Stable"
__domain__ = "novelwriter.io"
diff --git a/novelwriter/assets/text/credits_en.htm b/novelwriter/assets/text/credits_en.htm
index 6ca34707..5e2e6ba5 100644
--- a/novelwriter/assets/text/credits_en.htm
+++ b/novelwriter/assets/text/credits_en.htm
@@ -26,6 +26,7 @@
translators for the languages currently available:
+
Czech: Tomáš Zmek (perteus)
Dutch: Martijn van der Kleijn (mvdkleijn)
French: Jan Lüdke (jyhelle)
German: Myian (HeyMyian)
From c9d44ccec07149f2cd146f466b0c997b63944fd9 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 17:14:40 +0100
Subject: [PATCH 09/16] Fix typo in changelog
---
CHANGELOG.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ddf61bf6..3ebc5acf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,9 +4,9 @@
### Release Notes
-This is a patch release that fixes a few issues with the project tree. The Empty Trash option in
-the menu now works again, It is no longer possible to accidentally drag and drop project items onto
-the root of the project tree.
+This is a patch release that fixes a few issues with the project tree: The Empty Trash option in
+the menu now works again, and it is no longer possible to accidentally drag and drop project items
+onto the root of the project tree.
In addition, a Czech translation has been added by Tomáš Zmek, and the Italian, Polish and
Brazilian Portuguese translations have been updated.
From cd1c7a3b0bf744aa09055bb377903dbff98dd2a6 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 17:21:47 +0100
Subject: [PATCH 10/16] Make a minor change to windows build
---
pkgutils.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/pkgutils.py b/pkgutils.py
index 03e07af4..b090629b 100755
--- a/pkgutils.py
+++ b/pkgutils.py
@@ -1081,7 +1081,7 @@ def makeWindowsEmbedded(args: argparse.Namespace) -> None:
delQt5 = [
"Qt5Bluetooth", "Qt5DBus", "Qt5Designer", "Qt5Designer", "Qt5Help", "Qt5Location",
- "Qt5Multimedia", "Qt5MultimediaWidgets", "Qt5Network", "Qt5Nfc", "Qt5OpenGL",
+ "Qt5Multimedia", "Qt5MultimediaWidgets", "Qt5Network", "Qt5Nfc",
"Qt5Positioning", "Qt5PositioningQuick", "Qt5Qml", "Qt5QmlModels", "Qt5QmlWorkerScript",
"Qt5Quick", "Qt5Quick3D", "Qt5Quick3DAssetImport", "Qt5Quick3DRender",
"Qt5Quick3DRuntimeRender", "Qt5Quick3DUtils", "Qt5QuickControls2", "Qt5QuickParticles",
@@ -1101,7 +1101,6 @@ def makeWindowsEmbedded(args: argparse.Namespace) -> None:
qt5Dir / "qml",
plugDir / "geoservices",
plugDir / "playlistformats",
- plugDir / "renderers",
plugDir / "sensorgestures",
plugDir / "sensors",
plugDir / "sqldrivers",
From a6be3f9081fe79c465a258f6a26b4a38709e260f Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 19:08:00 +0100
Subject: [PATCH 11/16] Allow specifying context to trConst i18n function
(#2246)
---
novelwriter/constants.py | 6 ++++--
novelwriter/dialogs/projectsettings.py | 2 +-
novelwriter/gui/itemdetails.py | 6 +++---
novelwriter/gui/mainmenu.py | 2 +-
novelwriter/gui/outline.py | 6 +++---
novelwriter/tools/manuscript.py | 22 +++++++++++-----------
6 files changed, 23 insertions(+), 21 deletions(-)
diff --git a/novelwriter/constants.py b/novelwriter/constants.py
index 6ed952bf..ee2f4481 100644
--- a/novelwriter/constants.py
+++ b/novelwriter/constants.py
@@ -23,6 +23,8 @@ along with this program. If not, see .
"""
from __future__ import annotations
+from typing import Literal
+
from PyQt5.QtCore import QT_TRANSLATE_NOOP, QCoreApplication
from novelwriter.enum import (
@@ -30,9 +32,9 @@ from novelwriter.enum import (
)
-def trConst(text: str) -> str:
+def trConst(text: str, context: Literal["Constant", "Stats", "Shape"] = "Constant") -> str:
"""Wrapper function for locally translating constants."""
- return QCoreApplication.translate("Constant", text)
+ return QCoreApplication.translate(context, text)
class nwConst:
diff --git a/novelwriter/dialogs/projectsettings.py b/novelwriter/dialogs/projectsettings.py
index a610373b..950eda3d 100644
--- a/novelwriter/dialogs/projectsettings.py
+++ b/novelwriter/dialogs/projectsettings.py
@@ -409,7 +409,7 @@ class _StatusPage(NFixedPage):
def buildMenu(menu: QMenu, items: dict[nwStatusShape, str]) -> None:
for shape, label in items.items():
icon = NWStatus.createIcon(self._iPx, iColor, shape)
- action = menu.addAction(icon, trConst(label))
+ action = menu.addAction(icon, trConst(label, "Shape"))
action.triggered.connect(qtLambda(self._selectShape, shape))
self._icons[shape] = icon
diff --git a/novelwriter/gui/itemdetails.py b/novelwriter/gui/itemdetails.py
index feb09938..91a24256 100644
--- a/novelwriter/gui/itemdetails.py
+++ b/novelwriter/gui/itemdetails.py
@@ -65,9 +65,9 @@ class GuiItemDetails(QWidget):
fntValue = self.font()
fntValue.setPointSizeF(0.9*fPt)
- trStats1 = trConst(nwLabels.STATS_NAME[nwStats.CHARS])
- trStats2 = trConst(nwLabels.STATS_NAME[nwStats.WORDS])
- trStats3 = trConst(nwLabels.STATS_NAME[nwStats.PARAGRAPHS])
+ trStats1 = trConst(nwLabels.STATS_NAME[nwStats.CHARS], "Stats")
+ trStats2 = trConst(nwLabels.STATS_NAME[nwStats.WORDS], "Stats")
+ trStats3 = trConst(nwLabels.STATS_NAME[nwStats.PARAGRAPHS], "Stats")
# Label
self.labelName = QLabel(self.tr("Label"), self)
diff --git a/novelwriter/gui/mainmenu.py b/novelwriter/gui/mainmenu.py
index 02527c2b..f925fa72 100644
--- a/novelwriter/gui/mainmenu.py
+++ b/novelwriter/gui/mainmenu.py
@@ -601,7 +601,7 @@ class GuiMainMenu(QMenuBar):
self.mInsField = self.insMenu.addMenu(self.tr("Word/Character Count"))
for field in nwStats.ALL_FIELDS:
value = nwShortcode.FIELD_VALUE.format(field)
- action = self.mInsField.addAction(trConst(nwLabels.STATS_NAME[field]))
+ action = self.mInsField.addAction(trConst(nwLabels.STATS_NAME[field], "Stats"))
action.triggered.connect(qtLambda(self.requestDocInsertText.emit, value))
# Insert > Breaks and Vertical Space
diff --git a/novelwriter/gui/outline.py b/novelwriter/gui/outline.py
index 8bb59d8f..dd7fea6c 100644
--- a/novelwriter/gui/outline.py
+++ b/novelwriter/gui/outline.py
@@ -815,9 +815,9 @@ class GuiOutlineDetails(QScrollArea):
bFont = SHARED.theme.guiFontB
- trStats1 = trConst(nwLabels.STATS_NAME[nwStats.CHARS])
- trStats2 = trConst(nwLabels.STATS_NAME[nwStats.WORDS])
- trStats3 = trConst(nwLabels.STATS_NAME[nwStats.PARAGRAPHS])
+ trStats1 = trConst(nwLabels.STATS_NAME[nwStats.CHARS], "Stats")
+ trStats2 = trConst(nwLabels.STATS_NAME[nwStats.WORDS], "Stats")
+ trStats3 = trConst(nwLabels.STATS_NAME[nwStats.PARAGRAPHS], "Stats")
# Details Area
self.titleLabel = QLabel(self.tr("Title"), self)
diff --git a/novelwriter/tools/manuscript.py b/novelwriter/tools/manuscript.py
index 367c4ff3..4d28b605 100644
--- a/novelwriter/tools/manuscript.py
+++ b/novelwriter/tools/manuscript.py
@@ -1037,17 +1037,17 @@ class _StatsWidget(QWidget):
hPx = CONFIG.pxInt(12)
vPx = CONFIG.pxInt(4)
- trAllChars = trConst(nwLabels.STATS_NAME[nwStats.CHARS])
- trTextChars = trConst(nwLabels.STATS_NAME[nwStats.CHARS_TEXT])
- trTitleChars = trConst(nwLabels.STATS_NAME[nwStats.CHARS_TITLE])
- trParagraphCount = trConst(nwLabels.STATS_NAME[nwStats.PARAGRAPHS])
- trTitleCount = trConst(nwLabels.STATS_NAME[nwStats.TITLES])
- trAllWordChars = trConst(nwLabels.STATS_NAME[nwStats.WCHARS_ALL])
- trTextWordChars = trConst(nwLabels.STATS_NAME[nwStats.WCHARS_TEXT])
- trTitleWordChars = trConst(nwLabels.STATS_NAME[nwStats.WCHARS_TITLE])
- trAllWords = trConst(nwLabels.STATS_NAME[nwStats.WORDS])
- trTextWords = trConst(nwLabels.STATS_NAME[nwStats.WORDS_TEXT])
- trTitleWords = trConst(nwLabels.STATS_NAME[nwStats.WORDS_TITLE])
+ trAllChars = trConst(nwLabels.STATS_NAME[nwStats.CHARS], "Stats")
+ trTextChars = trConst(nwLabels.STATS_NAME[nwStats.CHARS_TEXT], "Stats")
+ trTitleChars = trConst(nwLabels.STATS_NAME[nwStats.CHARS_TITLE], "Stats")
+ trParagraphCount = trConst(nwLabels.STATS_NAME[nwStats.PARAGRAPHS], "Stats")
+ trTitleCount = trConst(nwLabels.STATS_NAME[nwStats.TITLES], "Stats")
+ trAllWordChars = trConst(nwLabels.STATS_NAME[nwStats.WCHARS_ALL], "Stats")
+ trTextWordChars = trConst(nwLabels.STATS_NAME[nwStats.WCHARS_TEXT], "Stats")
+ trTitleWordChars = trConst(nwLabels.STATS_NAME[nwStats.WCHARS_TITLE], "Stats")
+ trAllWords = trConst(nwLabels.STATS_NAME[nwStats.WORDS], "Stats")
+ trTextWords = trConst(nwLabels.STATS_NAME[nwStats.WORDS_TEXT], "Stats")
+ trTitleWords = trConst(nwLabels.STATS_NAME[nwStats.WORDS_TITLE], "Stats")
# Minimal Form
self.minWordCount = QLabel(self)
From e9a73ee785f8225b520e5e050a7d5e6596f6818c Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 19:50:02 +0100
Subject: [PATCH 12/16] Revert back to using constant as context for shapes
---
novelwriter/constants.py | 42 +++++++++++++-------------
novelwriter/dialogs/projectsettings.py | 2 +-
2 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/novelwriter/constants.py b/novelwriter/constants.py
index ee2f4481..91a8c08e 100644
--- a/novelwriter/constants.py
+++ b/novelwriter/constants.py
@@ -32,7 +32,7 @@ from novelwriter.enum import (
)
-def trConst(text: str, context: Literal["Constant", "Stats", "Shape"] = "Constant") -> str:
+def trConst(text: str, context: Literal["Constant", "Stats"] = "Constant") -> str:
"""Wrapper function for locally translating constants."""
return QCoreApplication.translate(context, text)
@@ -372,32 +372,32 @@ class nwLabels:
nwBuildFmt.J_NWD: ".json",
}
SHAPES_PLAIN = {
- nwStatusShape.SQUARE: QT_TRANSLATE_NOOP("Shape", "Square"),
- nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("Shape", "Triangle"),
- nwStatusShape.NABLA: QT_TRANSLATE_NOOP("Shape", "Nabla"),
- nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("Shape", "Diamond"),
- nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("Shape", "Pentagon"),
- nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("Shape", "Hexagon"),
- nwStatusShape.STAR: QT_TRANSLATE_NOOP("Shape", "Star"),
- nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("Shape", "Pacman"),
+ nwStatusShape.SQUARE: QT_TRANSLATE_NOOP("Constant", "Square"),
+ nwStatusShape.TRIANGLE: QT_TRANSLATE_NOOP("Constant", "Triangle"),
+ nwStatusShape.NABLA: QT_TRANSLATE_NOOP("Constant", "Nabla"),
+ nwStatusShape.DIAMOND: QT_TRANSLATE_NOOP("Constant", "Diamond"),
+ nwStatusShape.PENTAGON: QT_TRANSLATE_NOOP("Constant", "Pentagon"),
+ nwStatusShape.HEXAGON: QT_TRANSLATE_NOOP("Constant", "Hexagon"),
+ nwStatusShape.STAR: QT_TRANSLATE_NOOP("Constant", "Star"),
+ nwStatusShape.PACMAN: QT_TRANSLATE_NOOP("Constant", "Pacman"),
}
SHAPES_CIRCLE = {
- nwStatusShape.CIRCLE_Q: QT_TRANSLATE_NOOP("Shape", "1/4 Circle"),
- nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("Shape", "Half Circle"),
- nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("Shape", "3/4 Circle"),
- nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("Shape", "Full Circle"),
+ nwStatusShape.CIRCLE_Q: QT_TRANSLATE_NOOP("Constant", "1/4 Circle"),
+ nwStatusShape.CIRCLE_H: QT_TRANSLATE_NOOP("Constant", "Half Circle"),
+ nwStatusShape.CIRCLE_T: QT_TRANSLATE_NOOP("Constant", "3/4 Circle"),
+ nwStatusShape.CIRCLE: QT_TRANSLATE_NOOP("Constant", "Full Circle"),
}
SHAPES_BARS = {
- nwStatusShape.BARS_1: QT_TRANSLATE_NOOP("Shape", "1 Bar"),
- nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("Shape", "2 Bars"),
- nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("Shape", "3 Bars"),
- nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("Shape", "4 Bars"),
+ nwStatusShape.BARS_1: QT_TRANSLATE_NOOP("Constant", "1 Bar"),
+ nwStatusShape.BARS_2: QT_TRANSLATE_NOOP("Constant", "2 Bars"),
+ nwStatusShape.BARS_3: QT_TRANSLATE_NOOP("Constant", "3 Bars"),
+ nwStatusShape.BARS_4: QT_TRANSLATE_NOOP("Constant", "4 Bars"),
}
SHAPES_BLOCKS = {
- nwStatusShape.BLOCK_1: QT_TRANSLATE_NOOP("Shape", "1 Block"),
- nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("Shape", "2 Blocks"),
- nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("Shape", "3 Blocks"),
- nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("Shape", "4 Blocks"),
+ nwStatusShape.BLOCK_1: QT_TRANSLATE_NOOP("Constant", "1 Block"),
+ nwStatusShape.BLOCK_2: QT_TRANSLATE_NOOP("Constant", "2 Blocks"),
+ nwStatusShape.BLOCK_3: QT_TRANSLATE_NOOP("Constant", "3 Blocks"),
+ nwStatusShape.BLOCK_4: QT_TRANSLATE_NOOP("Constant", "4 Blocks"),
}
FILE_FILTERS = {
"*.txt": QT_TRANSLATE_NOOP("Constant", "Text files"),
diff --git a/novelwriter/dialogs/projectsettings.py b/novelwriter/dialogs/projectsettings.py
index 950eda3d..a610373b 100644
--- a/novelwriter/dialogs/projectsettings.py
+++ b/novelwriter/dialogs/projectsettings.py
@@ -409,7 +409,7 @@ class _StatusPage(NFixedPage):
def buildMenu(menu: QMenu, items: dict[nwStatusShape, str]) -> None:
for shape, label in items.items():
icon = NWStatus.createIcon(self._iPx, iColor, shape)
- action = menu.addAction(icon, trConst(label, "Shape"))
+ action = menu.addAction(icon, trConst(label))
action.triggered.connect(qtLambda(self._selectShape, shape))
self._icons[shape] = icon
From 8b238f376716aebc30d8b28efbe478a1bd9d1904 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sun, 16 Feb 2025 20:23:10 +0100
Subject: [PATCH 13/16] Update translation files
---
i18n/nw_base.ts | 681 +++++++-------
i18n/nw_cs_CZ.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_de_DE.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_en_US.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_es_419.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_fr_FR.ts | 705 +++++++--------
i18n/nw_it_IT.ts | 2211 ++++++++++++++++++++++-----------------------
i18n/nw_ja_JP.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_nb_NO.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_nl_NL.ts | 705 +++++++--------
i18n/nw_pl_PL.ts | 2209 ++++++++++++++++++++++----------------------
i18n/nw_pt_BR.ts | 2207 ++++++++++++++++++++++----------------------
i18n/nw_ru_RU.ts | 703 +++++++-------
i18n/nw_zh_CN.ts | 703 +++++++-------
14 files changed, 11662 insertions(+), 11704 deletions(-)
diff --git a/i18n/nw_base.ts b/i18n/nw_base.ts
index 91065050..4b2dff1f 100644
--- a/i18n/nw_base.ts
+++ b/i18n/nw_base.ts
@@ -355,441 +355,541 @@
Constant
-
-
+
+ Title
-
+ Heading 1 (Partition)
-
+ Heading 2 (Chapter)
-
+ Heading 3 (Scene)
-
+ Heading 4 (Section)
-
+ Text Paragraph
-
+ Scene Separator
-
-
-
+
+
+ None
-
- Novel
-
-
-
-
-
- Plot
-
-
-
-
- Characters
+ Novel
- Locations
+ Plot
- Timeline
-
-
-
-
-
- Objects
+ Characters
-
- Entities
+
+ Locations
+
+
+
+
+
+ Timeline
-
- Custom
-
-
-
-
- Archive
-
-
-
-
- Templates
-
-
-
-
- Trash
-
-
-
-
-
- Novel Document
-
-
-
-
-
- Project Note
-
-
-
-
- Root Folder
-
-
-
-
- Folder
-
-
-
-
- Novel Title Page
-
-
-
-
- Novel Chapter
-
-
-
-
- Novel Scene
-
-
-
-
- Novel Section
-
-
-
-
- Active
-
-
-
-
- Inactive
-
-
-
-
- Tag
-
-
-
-
- Point of View
-
-
-
-
-
- Focus
+ Objects
+
+ Entities
+
+
+
+
+
+
+ Custom
+
+
+
+
+ Archive
+
+
+
+
+ Templates
+
+
+
+
+ Trash
+
+
+
+
+
+ Novel Document
+
+
+
+
+
+ Project Note
+
+
+
+
+ Root Folder
+
+
+
+
+ Folder
+
+
+
+
+ Novel Title Page
+
+
+
+
+ Novel Chapter
+
+
+
+
+ Novel Scene
+
+
+
+
+ Novel Section
+
+
+
+
+ Active
+
+
+
+
+ Inactive
+
+
+
+
+ Tag
+
+
+
+
+ Point of View
+
+
+
+
+
+ Focus
+
+
+
+ Story
-
+ Mentions
-
+ Level
-
+ Document
-
+ Line
-
+ Status
-
+ Chars
-
+ Words
-
+ Pars
-
+ POV
-
+ Synopsis
-
+ Open Document (.odt)
-
+ Flat Open Document (.fodt)
-
+ Microsoft Word Document (.docx)
-
+ HTML 5 (.html)
-
+ novelWriter Markup (.txt)
-
+ Standard Markdown (.md)
-
+ Extended Markdown (.md)
-
+ Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)
-
- Text files
+
+ Square
-
- Markdown files
+
+ Triangle
+
+
+
+
+ Nabla
+
+
+
+
+ Diamond
+
+
+
+
+ Pentagon
+
+
+
+
+ Hexagon
+
+
+
+
+ Star
+
+
+
+
+ Pacman
+
+
+
+
+ 1/4 Circle
+
+
+
+
+ Half Circle
+
+
+
+
+ 3/4 Circle
+
+
+
+
+ Full Circle
+
+
+
+
+ 1 Bar
+
+
+
+
+ 2 Bars
+
+
+
+
+ 3 Bars
+
+
+
+
+ 4 Bars
+
+
+
+
+ 1 Block
+
+
+
+
+ 2 Blocks
+
+
+
+
+ 3 Blocks
+
+
+
+
+ 4 Blocks
- novelWriter files
+ Text files
- CSV files
+ Markdown files
+ novelWriter files
+
+
+
+
+ CSV files
+
+
+
+ All files
-
+ Millimetres
-
+ Centimetres
-
+ Inches
-
+ A4
-
+ A5
-
+ A6
-
+ US Legal
-
+ US Letter
-
+ Straight single quotation mark
-
+ Straight double quotation mark
-
+ Left single quotation mark
-
+ Right single quotation mark
-
+ Single low-9 quotation mark
-
+ Single high-reversed-9 quotation mark
-
+ Left double quotation mark
-
+ Right double quotation mark
-
+ Double low-9 quotation mark
-
+ Double high-reversed-9 quotation mark
-
+ Double low-reversed-9 quotation mark
-
+ Single left-pointing angle quotation mark
-
+ Single right-pointing angle quotation mark
-
+ Double left-pointing angle quotation mark
-
+ Double right-pointing angle quotation mark
-
+ Left corner bracket
-
+ Right corner bracket
-
+ Left white corner bracket
-
+ Right white corner bracket
@@ -3204,47 +3304,47 @@
GuiProjectToolBar
-
+ Project Content
-
+ Quick Links
-
+ Move Up
-
+ Move Down
-
+ Add Item
-
+ Expand All
-
+ Collapse All
-
+ Empty Trash
-
+ More Options
@@ -3252,93 +3352,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!
-
+ Cannot add new files or folders to the Trash folder.
-
+ New Note
-
+ New Chapter
-
+ New Scene
-
+ New Document
-
+ New Folder
-
+ No documents selected for merging.
-
+ Merged
-
-
+
+ Could not write document content.
-
+ Do you want to duplicate this document?
-
+ Do you want to duplicate this item and all child items?
-
+ Could not duplicate all items.
-
+ Root folders can only be deleted when they are empty.
-
+ Permanently delete selected item(s)?
-
+ Move selected item(s) to Trash?
-
+ The Trash folder is already empty.
-
+ Permanently delete {0} file(s) from Trash?
@@ -4018,109 +4118,6 @@
-
- Shape
-
-
- Square
-
-
-
-
- Triangle
-
-
-
-
- Nabla
-
-
-
-
- Diamond
-
-
-
-
- Pentagon
-
-
-
-
- Hexagon
-
-
-
-
- Star
-
-
-
-
- Pacman
-
-
-
-
- 1/4 Circle
-
-
-
-
- Half Circle
-
-
-
-
- 3/4 Circle
-
-
-
-
- Full Circle
-
-
-
-
- 1 Bar
-
-
-
-
- 2 Bars
-
-
-
-
- 3 Bars
-
-
-
-
- 4 Bars
-
-
-
-
- 1 Block
-
-
-
-
- 2 Blocks
-
-
-
-
- 3 Blocks
-
-
-
-
- 4 Blocks
-
-
- SharedData
@@ -4147,57 +4144,57 @@
Stats
-
+ Characters
-
+ Characters in Text
-
+ Characters in Headings
-
+ Paragraphs
-
+ Headings
-
+ Characters, No Spaces
-
+ Characters in Text, No Spaces
-
+ Characters in Headings, No Spaces
-
+ Words
-
+ Words in Text
-
+ Words in Headings
@@ -4941,121 +4938,121 @@
_TreeContextMenu
-
+ Empty Trash
-
+ Rename
-
+ Duplicate
-
+ Open Document
-
+ View Document
-
+ Create New ...
-
+ Rename to Heading
-
+ Set Active to ...
-
+ Toggle Active
-
+ Set Status to ...
-
-
+
+ Manage Labels ...
-
+ Set Importance to ...
-
+ Transform ...
-
-
-
-
+
+
+
+ Convert to {0}
-
+ Merge Child Items into Self
-
+ Merge Child Items into New
-
+ Merge Documents in Folder
-
+ Split Document by Headings
-
+ Expand All
-
+ Collapse All
-
+ Delete Permanently
-
+ Move to Trash
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.
@@ -5063,7 +5060,7 @@
_UpdatableMenu
-
+ From Template
diff --git a/i18n/nw_cs_CZ.ts b/i18n/nw_cs_CZ.ts
index 938e76db..f5abb8ac 100644
--- a/i18n/nw_cs_CZ.ts
+++ b/i18n/nw_cs_CZ.ts
@@ -4,277 +4,277 @@
Builds
-
+ Document FiltersFiltry dokumentu
-
+ Novel DocumentsDokumenty románu
-
+ Project NotesPoznámky projektu
-
+ Inactive DocumentsNeaktivní dokumenty
-
+ HeadingsZáhlaví
-
+ Partition FormatFormát oddílů
-
+ Chapter FormatFormát kapitol
-
+ Unnumbered FormatNečíslovaný formát
-
+ Scene FormatFormát scény
-
+ Alt. Scene FormatAlt. formát scény
-
+ Section FormatFormát sekce
-
+ Title StylingStylování názvu
-
+ Partition StylingStylování oddílů
-
+ Chapter StylingStylování kapitoly
-
+ Scene StylingStylování scén
-
+ Text ContentObsah
-
+ Include SynopsisZahrnout synopsi
-
+ Include CommentsZahrnout komentáře
-
+ Include KeywordsZahrnout klíčová slova
-
+ Include Body TextZahrnout text těla
-
+ Ignore These KeywordsIgnorovat tato klíčová slova
-
+ Add Titles for NotesPřidat názvy pro poznámky
-
+ Text FormatFormátování textu
-
+ Text FontPísmo
-
+ Line HeightVýška řádku
-
+ Justify Text MarginsZarovnat textové okraje
-
+ Replace Unicode CharactersNahradit znaky Unicode
-
+ Replace Tabs with SpacesNahradit tabulátor mezerami
-
+ Preserve Hard Line BreaksZachovat zalomení řádku
-
+ Apply Dialogue HighlightingPoužít zvýraznění dialogu
-
+ First Line IndentOdsazení prvního řádku
-
+ Enable IndentPovolit odsazení
-
+ Indent WidthŠířka odsazení
-
+ Indent First ParagraphOdsazení prvního odstavce
-
+ Text MarginsTextové okraje
-
+ Title and PartitionNázev a oddíl
-
+ Heading 1 and ChapterNadpis 1 a Kapitola
-
+ Heading 2 and SceneNadpis 2 a Scéna
-
+ Heading 3 and SectionNadpis 3 a kapitola
-
+ Heading 4Nadpis 4
-
+ Text ParagraphOdstavec textu
-
+ Scene SeparatorOddělovač scén
-
+ Page LayoutRozložení stránky
-
+ UnitJednotka
-
+ Page SizeVelikost stránky
-
+ Page MarginsOkraje stránky
-
+ Document StyleStyl dokumentu
-
+ Page HeaderZáhlaví stránky
-
+ Page Counter OffsetOdsazení počtu stránek
-
+ Add Colours to HeadingsPřidat barvy k nadpisům
-
+ Increase Size of HeadingsZvýšit velikost záhlaví
-
+ Bold HeadingsTučné záhlaví
-
+ HTML OptionsMožnosti HTML
-
+ Add CSS StylesPřidat CSS styly
-
+ Preserve Tab CharactersZachovat znaky tabulátoru
@@ -282,72 +282,72 @@
Common
-
+ in the futurev budoucnu
-
+ just nowprávě teď
-
+ a minute agopřed minutou
-
+ {0} minutes agopřed {0} minutami
-
+ an hour agopřed hodinou
-
+ {0} hours agopřed {0} hodinami
-
+ a day agopřed jedním dnem
-
+ {0} days agopřed {0} dny
-
+ a week agopřed týdnem
-
+ {0} weeks agopřed {0} týdny
-
+ a month agopřed měsícem
-
+ {0} months agopřed {0} měsíci
-
+ a year agopřed rokem
-
+ {0} years agopřed {0} lety
@@ -355,441 +355,541 @@
Constant
-
-
+
+ TitleNázev
-
+ Heading 1 (Partition)Nadpís 1 (Oddíl)
-
+ Heading 2 (Chapter)Nadpis 2 (Kapitola)
-
+ Heading 3 (Scene)Nadpis 3 (Scéna)
-
+ Heading 4 (Section)Nadpis 4 (Sekce)
-
+ Text ParagraphOdstavec textu
-
+ Scene SeparatorOddělovač scén
-
-
-
+
+
+ NoneŽádný
-
+ NovelRomán
-
-
+
+ PlotZápletka
-
-
+
+ CharactersPostavy
-
-
+
+ LocationsLokality
-
-
+
+ TimelineČasová osa
-
-
+
+ ObjectsObjekty
-
-
+
+ EntitiesSubjekty
-
-
-
+
+
+ CustomVlastní
-
+ ArchiveArchiv
-
+ TemplatesŠablony
-
+ TrashKoš
-
-
+
+ Novel DocumentDokument románu
-
-
+
+ Project NotePoznámka projektu
-
+ Root FolderKořenová složka
-
+ FolderSložky
-
+ Novel Title PageTitulní stránka románu
-
+ Novel ChapterKapitola románu
-
+ Novel SceneScéna románu
-
+ Novel SectionSekce románu
-
+ ActiveAktivní
-
+ InactiveNeaktivní
-
+ TagŠtítek
-
+ Point of ViewÚhel pohledu
-
-
+
+ FocusZaměření
-
+ StoryPříběh
-
+ MentionsZmínky
-
+ LevelÚroveň
-
+ DocumentDokument
-
+ LineŘádek
-
+ StatusStav
-
+ CharsZnaky
-
+ WordsSlova
-
+ ParsPars
-
+ POVPOV
-
+ SynopsisSynopse
-
+ Open Document (.odt)Open Dokument (.odt)
-
+ Flat Open Document (.fodt)Flat Open Dokument (.fodt)
-
+ Microsoft Word Document (.docx)Dokument Microsoft Word (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)novelWriter Markup (.txt)
-
+ Standard Markdown (.md)Standard Markdown (.md)
-
+ Extended Markdown (.md)Extended Markdown (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter Markup (.json)
-
+
+ Square
+ Čtverec
+
+
+
+ Triangle
+ Trojúhelník
+
+
+
+ Nabla
+ Nabla
+
+
+
+ Diamond
+ Kosočtverec
+
+
+
+ Pentagon
+ Pětiúhelník
+
+
+
+ Hexagon
+ Šestiúhelník
+
+
+
+ Star
+ Hvězdička
+
+
+
+ Pacman
+ Pacman
+
+
+
+ 1/4 Circle
+ 1/4 kružnice
+
+
+
+ Half Circle
+ Půlkruh
+
+
+
+ 3/4 Circle
+ 3/4 kružnice
+
+
+
+ Full Circle
+ Úplný kruh
+
+
+
+ 1 Bar
+ 1 čára
+
+
+
+ 2 Bars
+ 2 čáry
+
+
+
+ 3 Bars
+ 3 čáry
+
+
+
+ 4 Bars
+ 4 čáry
+
+
+
+ 1 Block
+ 1 blok
+
+
+
+ 2 Blocks
+ 2 bloky
+
+
+
+ 3 Blocks
+ 3 bloky
+
+
+
+ 4 Blocks
+ 4 bloky
+
+
+ Text filesTextový soubor
-
+ Markdown filesSoubory Markdown
-
+ novelWriter filesnovelWriter soubory
-
+ CSV filesCSV soubory
-
+ All filesVšechny soubory
-
+ MillimetresMilimetry
-
+ CentimetresCentimetry
-
+ InchesPalce
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalUS Legal
-
+ US LetterUS Letter
-
+ Straight single quotation markJednoduchá uvozovka
-
+ Straight double quotation markDvojitá uvozovka
-
+ Left single quotation markLevá jednoduchá uvozovka
-
+ Right single quotation markPravá jednoduchá uvozovka
-
+ Single low-9 quotation markJednoduchá uvozovka s nízkými hodnotami
-
+ Single high-reversed-9 quotation markJednoduchá uvozovka s vysokými hodnotami
-
+ Left double quotation markLevá dvojitá uvozovka
-
+ Right double quotation markPravá dvojitá uvozovka
-
+ Double low-9 quotation markDvojítá uvzozovka s nízkými hodnotami
-
+ Double high-reversed-9 quotation markDvojítá uvozovka s vysokými hodnotami
-
+ Double low-reversed-9 quotation markDvojítá uvozovka s nízkými hodnotami
-
+ Single left-pointing angle quotation markJednoduchá úhlová uvozovka směřující vlevo
-
+ Single right-pointing angle quotation markJednoduchá úhlová uvozovka směřující vpravo
-
+ Double left-pointing angle quotation markDvojitá úhlová uvozovka směřující vlevo
-
+ Double right-pointing angle quotation markDvojitá úhlová uvozovka směřující vpravo
-
+ Left corner bracketLevý roh závorky
-
+ Right corner bracketPravý roh závorky
-
+ Left white corner bracketLevý bílý roh závorky
-
+ Right white corner bracketPravý bílý roh závorky
@@ -797,17 +897,17 @@
GuiAbout
-
+ About novelWriterO novelWriteru
-
+ This application is licenced under {0}Tato aplikace je licencována pod {0}
-
+ CreditsPoděkování
@@ -815,33 +915,33 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsNastavení sestavení Manuscriptu
-
+ NameNázev
-
+ GeneralObecné
-
+ SelectionVýběr
-
+ HeadingsZáhlaví
-
+ FormattingFormátování
@@ -849,47 +949,47 @@
GuiDictionaries
-
+ Add DictionariesPřidat slovníky
-
+ Download a dictionary from one of the links, and add it below.Stáhněte si slovník z jednoho z odkazů a přidejte jej níže.
-
+ Add DictionaryPřidat slovník
-
+ Dictionary install locationUmístění instalace slovníku
-
+ Additional dictionaries found: {0}Počet dalších slovníků: {0}
-
+ Free or Libre Office extensionZdarma nebo Libre Office rozšíření
-
+ Browse FilesProcházet soubory
-
+ Could not process dictionary fileSoubor slovníku nelze zpracovat
-
+ Added: {0} [{1}B]Přidáno: {0} [{1}B]
@@ -897,22 +997,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Řádek: {0} ({1})
-
+ Words: {0} ({1})Slova: {0} ({1})
-
+ Words: {0} selectedSlova: {0} vybráno
-
+ StatusStav
@@ -920,27 +1020,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarPřepnout nástrojovou lištu
-
+ OutlinePodtržený
-
+ SearchHledat
-
+ Toggle Focus ModePřepnout režim soustředění
-
+ CloseZavřít
@@ -948,62 +1048,62 @@
GuiDocEditSearch
-
+ Search forNajít
-
+ Replace withNahradit
-
+ SearchHledat
-
+ Case SensitiveRozlišovat velká a malá písmena
-
+ Whole Words OnlyPouze celá slova
-
+ RegEx ModeRegEx režim
-
+ Loop SearchHledání ve smyčce
-
+ Search Next FileHledat další soubor
-
+ Preserve CasePreserve Case
-
+ Close SearchUkončit hledání
-
+ Find in current documentNajít v aktuálním dokumentu
-
+ Find and replace in current documentNajít a nahradit v aktuálním dokumentu
@@ -1011,132 +1111,132 @@
GuiDocEditor
-
+ Opened Document: {0}Otevřený dokument: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Tento dokument byl změněn mimo novelWriter, když byl otevřen. Přepsat soubor na disku?
-
+ Could not save document.Dokument nelze uložit.
-
+ Saved Document: {0}Uložený dokument: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.Kontrola pravopisu vyžaduje balíček PyEnchant. Zdá se, že není nainstalován.
-
+ Spell check completeKontrola pravopisu dokončena
-
+ Document DetailsPodrobnosti o dokumentu
-
+ Created: {0}Vytvořeno: {0}
-
+ Updated: {0}Aktualizováno: {0}
-
+ File Location: {0}Umístění souboru: {0}
-
+ Set as Document NameNastavit jako název dokumentu
-
+ Open URLOtevřít URL
-
+ Follow TagSledovat štítek
-
+ Create Note for TagVytvořit poznámku pro štítek
-
+ CutVyjmout
-
+ CopyKopírovat
-
+ PasteVložit
-
+ Select AllVybrat vše
-
+ Select WordVybrat slovo
-
+ Select ParagraphVybrat odstavec
-
+ Spelling Suggestion(s)Návrhy opravy
-
+ No SuggestionsŽádné návrhy
-
+ Ignore WordIgnorovat slovo
-
+ Add Word to DictionaryPřidat slovo do slovníku
-
+ Please select some text before calling replace quotes.Vyberte prosím nějaký text před voláním nahrazujících uvozovek.
-
+ Do you want to create a new project note for the tag '{0}'?Chcete vytvořit novou poznámku projektu pro značku '{0}'?
@@ -1144,22 +1244,22 @@
GuiDocMerge
-
+ Merge DocumentsSloučit dokumenty
-
+ Documents to MergeDokumenty k sloučení
-
+ Drag and drop items to change the order, or uncheck to exclude.Přetáhněte předměty, chcete-li změnit řazení, nebo zrušte zaškrtnutí políčka.
-
+ Move merged items to TrashPřesunout sloučené položky do koše
@@ -1167,52 +1267,52 @@
GuiDocSplit
-
+ Split DocumentRozdělit dokument
-
+ Document HeadingsNadpisy dokumentu
-
+ Select the maximum level to split into files.Vyberte maximální úroveň pro rozdělení do souborů.
-
+ Split on Heading Level 1 (Partition)Rozdělit Nadpis úrovně 1 (Díl)
-
+ Split up to Heading Level 2 (Chapter)Rozdělit na Nadpis úrovně 2 (Kapitola)
-
+ Split up to Heading Level 3 (Scene)Rozdělit na Nadpis úrovně 3 (Scéna)
-
+ Split up to Heading Level 4 (Section)Rozdělit na Nadpis úrovně 4 (Sekce)
-
+ Split into a new folderRozdělit do nové složky
-
+ Create document hierarchyVytvořit hierarchii dokumentu
-
+ Move split document to TrashPřesunout rozdělený dokument do koše
@@ -1220,52 +1320,52 @@
GuiDocToolBar
-
+ Markdown BoldMarkdown Tučně
-
+ Markdown ItalicMarkdown Kurzíva
-
+ Markdown StrikethroughMarkdown Přeškrtnuté
-
+ Shortcode BoldShortcode Tučně
-
+ Shortcode ItalicShortcode Kurzíva
-
+ Shortcode StrikethroughShortcode Přeškrtnuté
-
+ Shortcode UnderlineShortcode Podtržené
-
+ Shortcode HighlightShortcode Zvýraznění
-
+ Shortcode SuperscriptShortcode Horní index
-
+ Shortcode SubscriptShortcode Dolní index
@@ -1273,27 +1373,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelZobrazit/skrýt panel
-
+ CommentsKomentáře
-
+ Show CommentsZobrazit komentáře
-
+ SynopsisSynopse
-
+ Show Synopsis CommentsZobrazit komentáře Synopsis
@@ -1301,32 +1401,32 @@
GuiDocViewHeader
-
+ OutlinePodtržený
-
+ Go BackwardJít zpět
-
+ Go ForwardJít vpřed
-
+ Open in EditorOtevřít v editoru
-
+ ReloadObnovit
-
+ CloseZavřít
@@ -1334,27 +1434,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.Došlo k chybě při generování náhledu.
-
+ CopyKopírovat
-
+ Select AllVybrat vše
-
+ Select WordVybrat slovo
-
+ Select ParagraphVybrat odstavec
@@ -1362,12 +1462,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsSkrýt neaktivní štítky
-
+ ReferencesOdkazy
@@ -1375,12 +1475,12 @@
GuiEditLabel
-
+ Item LabelPopisek položky
-
+ LabelPopisek
@@ -1388,22 +1488,22 @@
GuiItemDetails
-
+ LabelPopisek
-
+ StatusStav
-
+ ClassTřída
-
+ UsagePoužití
@@ -1411,27 +1511,27 @@
GuiLipsum
-
+ Insert Placeholder TextVložit plovoucí text
-
+ Insert Lorem Ipsum TextVložit Lorem Ipsum text
-
+ Number of paragraphsPočet odstavců
-
+ Randomise orderNáhodné řazení
-
+ InsertVložit
@@ -1439,103 +1539,103 @@
GuiMain
-
+ novelWriter is ready ...novelWriter je připraven ...
-
+ You are now running novelWriter version {0}.Nyní používáte novelWriter verze {0}.
-
+ Please check the {0}release notes{1} for further details.Pro více informací si prosím zkontrolujte poznámky k vydání {0}{1}.
-
+ Close the current project?Zavřít současný projekt?
-
-
+
+ Changes are saved automatically.Změny jsou uloženy automaticky.
-
+ Backup the current project?Zálohovat aktuální projekt?
-
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?Projekt je již otevřen jinou instancí novelWriter, a je proto uzamčen. Chcete přesto přepsat zámek a pokračovat?
-
+ Note: If the program or the computer previously crashed, the lock can safely be overridden. However, overriding it is not recommended if the project is open in another instance of novelWriter. Doing so may corrupt the project.Poznámka: Pokud program nebo počítač dříve havaroval, může být zámek bezpečně přepsán. Nicméně přepsání se nedoporučuje, pokud je projekt otevřen v jiném novelWriter. Může to poškodit projekt.
-
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.Projekt byl uzamčen počítačem{0}' ({1} {2}), naposledy aktivním na {3}.
-
+ The project index is outdated or broken. Rebuilding index.Index projektu je zastaralý nebo nefunkční. Obnovte index.
-
+ Import FileImport souboru
-
+ Could not read file. The file must be an existing text file.Nelze přečíst soubor. Soubor musí být textový soubor.
-
+ Please open a document to import the text file into.Otevřete prosím dokument pro importování textového souboru.
-
+ Importing the file will overwrite the current content of the document. Do you want to proceed?Import souboru přepíše aktuální obsah dokumentu. Chcete pokračovat?
-
+ Indexing completed in {0} msIndexování dokončeno za {0} ms
-
+ The project index has been successfully rebuilt.Index projektu byl úspěšně obnoven.
-
+ Could not initialise the dialog.Nelze inicializovat dialog.
-
+ Do you want to exit novelWriter?Chcete ukončit novelWriter?
-
+ Some changes will not be applied until novelWriter has been restarted.Některé změny nebudou aplikovány, dokud nebude novelWriter restartován.
-
+ Could not find the reference for tag '{0}'. It either doesn't exist, or the index is out of date. The index can be updated from the Tools menu, or by pressing {1}.Nelze najít odkaz na štítek '{0}'. Buď neexistuje, nebo je index zastaralý. Index lze aktualizovat z nabídky Nástroje nebo stisknutím {1}.
@@ -1543,652 +1643,652 @@
GuiMainMenu
-
+ &Project&Projekt
-
+ Create or Open ProjectVytvořit nebo otevřít projekt
-
+ Save ProjectUložit projekt
-
+ Close ProjectZavřít projekt
-
+ Project SettingsNastavení projektu
-
+ Novel DetailsDetaily románu
-
+ Rename ItemPřejmenovat položku
-
+ Delete ItemSmazat položku
-
+ Empty TrashVysypat koš
-
+ ExitUkončit
-
+ &Document&Dokument
-
+ Open DocumentOtevřít dokument
-
+ Save DocumentUložit dokument
-
+ Close DocumentZavřít dokument
-
+ View DocumentZobrazit dokument
-
+ Close Document ViewZavřít zobrazení dokumentu
-
+ Show File DetailsZobrazit podrobnosti o souboru
-
+ Import Text from FileImportovat text ze souboru
-
+ &Edit&Upravit
-
+ UndoZpět
-
+ RedoOpakovat
-
+ CutVyjmout
-
+ CopyKopírovat
-
+ PasteVložit
-
+ Select AllVybrat vše
-
+ Select ParagraphVybrat odstavec
-
+ &View&Zobrazit
-
+ Go to Tree ViewPřejít do stromového zobrazení
-
+ Go to DocumentPřejít na dokument
-
+ Go to OutlinePřejít na osnovu
-
+ Navigate BackwardPřejít zpět
-
+ Navigate ForwardPřejít vpřed
-
+ Focus ModeRežim soustředění
-
+ Full Screen ModeRežim celé obrazovky
-
+ &Insert&Vložit
-
+ DashesPomlčky
-
+ Short DashKrátká pomlčka
-
+ Long DashDlouhá pomlčka
-
+ Horizontal BarHorizontální lišta
-
+ Figure DashPomlčka
-
+ Quote MarksUvozovky
-
+ Left Single QuoteLevá jednoduchá citace
-
+ Right Single QuotePravá jednoduchá citace
-
+ Left Double QuoteLevá dvojitá citace
-
+ Right Double QuotePravá dvojitá citace
-
+ Alternative ApostropheAlternativní apostrof
-
+ General PunctuationObecná interpunkce
-
+ EllipsisElipsa
-
+ PrimePrimární
-
+ Double PrimeDvojitý znak '
-
+ White SpacesBílé mezery
-
+ Non-Breaking SpaceNezlomitelná mezera
-
+ Thin SpaceÚzká mezera
-
+ Thin Non-Breaking SpaceÚzká nezlomitelná mezera
-
+ Other SymbolsOstatní symboly
-
+ List BulletSeznam odrážek
-
+ Hyphen BulletPomlčka Bullet
-
+ Flower MarkZnačka květiny
-
+ Per MillePromile
-
+ Degree SymbolZnak stupně
-
+ Minus SignZnačka mínusu
-
+ Times SignZnačka násobení
-
+ Division SignZnačka dělení
-
+ Tags and ReferencesŠtítky a odkazy
-
+ Special CommentsSpeciální komentáře
-
+ Synopsis CommentSynopsis komentář
-
+ Short Description CommentKrátký popis komentáře
-
+ Word/Character CountPočet slov/znaků
-
+ Breaks and Vertical SpacePřerušení a vertikální mezera
-
+ Page BreakKonec stránky
-
+ Forced Line BreakVynucené zalomení řádku
-
+ Vertical Space (Single)Vertikální mezera (Single)
-
+ Vertical Space (Multi)Vertikální mezera (Multi)
-
+ Placeholder TextZástupný text
-
+ FootnotePoznámka pod čarou
-
+ &Format&Formát
-
+ BoldTučné
-
+ ItalicKurzíva
-
+ StrikethroughPřeškrtnuté
-
+ Wrap Double QuotesObalení dvojitých uvozovek
-
+ Wrap Single QuotesObalení jednoduchých uvozovek
-
+ More Formats ...Další formáty...
-
+ Bold (Shortcode)Tučné (Shortcode)
-
+ Italics (Shortcode)Kurzíva (Shortcode)
-
+ Strikethrough (Shortcode)Přeškrtnuté (Shortcode)
-
+ UnderlinePodtržené
-
+ HighlightZvýraznění
-
+ SuperscriptHorní index
-
+ SubscriptDolní index
-
+ Novel TitleNázev románu
-
+ Unnumbered ChapterNeočíslovaná kapitola
-
+ Alternative SceneAlternativní scéna
-
+ Align LeftZarovnat vlevo
-
+ Align CentreZarovnat na střed
-
+ Align RightZarovnat doprava
-
+ Indent LeftOdsazení zleva
-
+ Indent RightOdsazení zprava
-
+ Toggle CommentPřepnutí komentáře
-
+ Toggle Ignore TextPřepnutí ignorování textu
-
+ Remove Block FormatOdstranit formát bloku
-
+ Replace Straight Single QuotesNahradit rovné jednoduché uvozovky
-
+ Replace Straight Double QuotesNahradit rovné dvojité uvozovky
-
+ Remove In-Paragraph BreaksOdstranit zlomy v odstavci
-
+ &Search&Hledat
-
+ FindNajít
-
+ ReplaceNahradit
-
+ Find NextNajít další
-
+ Find PreviousNajít předchozí
-
+ Replace NextNahradit další
-
+ Find in ProjectNajít v projektu
-
+ &Tools&Nástroje
-
+ Check SpellingKontrolovat pravopis
-
+ Spell Check LanguageJazyk kontroly pravopisu
-
+ DefaultVýchozí
-
+ Re-Run Spell CheckZnovu spustit kontrolu pravopisu
-
+ Project Word ListSeznam slov projektu
-
+ Add DictionariesPřidat slovníky
-
+ Rebuild IndexZnovu vytvořit Index
-
+ Backup ProjectZáloha projektu
-
+ Build ManuscriptVytvořit rukopis
-
+ Writing StatisticsStatistiky psaní
-
+ PreferencesNastavení
-
+ &Help&Nápověda
-
+ About novelWriterO novelWriter
-
+ About Qt5O Qt5
-
+ User Manual (Online)Uživatelská příručka (Online)
-
+ User Manual (PDF)Uživatelská příručka (PDF)
-
+ Report an Issue (GitHub)Nahlásit problém (GitHub)
-
+ Ask a Question (GitHub)Položit otázku (GitHub)
-
+ The novelWriter WebsiteWebová stránka novelWriter
@@ -2196,38 +2296,38 @@
GuiMainStatus
-
-
+
+ NoneŽádný
-
+ EditorEditor
-
+ ProjectProjekt
-
+ Session TimeČas relace
-
+ Words: {0} ({1})Slova: {0} ({1})
-
+ Project word count (session change)Počet slov v projektu (změna relaceí)
-
+ Novel word count (session change)Počet slov v románu (změna relace)
@@ -2235,73 +2335,73 @@
GuiManuscript
-
+ Build ManuscriptSestavit rukopis
-
+ Add New BuildPřidat novou sestavu
-
+ Delete Selected BuildOdstranit vybrané sestavení
-
+ Duplicate Selected BuildDuplikovat vybrané sestavení
-
+ Edit Selected BuildUpravit vybraný sestavení
-
+ BuildsSestavit
-
+ DetailsPodrobnosti
-
+ OutlinePodtržený
-
+ PreviewNáhled
-
+ PrintTisk
-
+ BuildSestavit
-
+ CloseZavřít
-
+ Show Page BreaksZobrazit zarážky stránky
-
-
+
+ My ManuscriptMůj rukopis
@@ -2309,57 +2409,57 @@
GuiManuscriptBuild
-
+ Build ManuscriptSestavit rukopis
-
+ Output FormatVýstupní formát
-
+ Table of ContentsObsah
-
+ PathCesta
-
+ File NameNázvu souboru
-
+ Reset file name to defaultObnovit název souboru na výchozí
-
+ Open FolderOtevřít složku
-
+ &Build&Sestavit
-
+ Select FolderVyberte složku
-
+ Output folder does not exist.Výstupní složka neexistuje.
-
+ The file already exists. Do you want to overwrite it?Soubor již existuje. Chcete jej přepsat?
@@ -2367,18 +2467,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsDetaily románu
-
+ OverviewPřehled
-
+ ContentsObsah
@@ -2386,58 +2486,58 @@
GuiNovelToolBar
-
+ Outline of {0}Přehled z {0}
-
+ Novel RootRoot Románu
-
+ RefreshAktualizovat
-
+ Last ColumnPoslední sloupec
-
+ HiddenNezobrazovat
-
+ Point of View CharacterÚhel pohledu postavy
-
+ Focus CharacterZaměřit se na postavu
-
+ Novel PlotDěj románu
-
-
+
+ Column SizeVelikost sloupce
-
+ More OptionsVíce možností
-
+ Maximum column size in %Maximální velikost sloupce v %
@@ -2445,7 +2545,7 @@
GuiNovelTree
-
+ No meta dataŽádná meta data
@@ -2453,49 +2553,49 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleNázev
-
+ ChapterKapitola
-
+ SceneScéna
-
+ SectionSekce
-
+ DocumentDokument
-
+ StatusStav
-
+ SynopsisSynopse
-
+ Title DetailsPodrobnosti titulu
-
+ Reference TagsReferenční štítky
@@ -2503,7 +2603,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsVybrat sloupce
@@ -2511,17 +2611,17 @@
GuiOutlineToolBar
-
+ Outline ofPřehled z
-
+ RefreshAktualizovat
-
+ Export CSVExportovat do CSV
@@ -2529,7 +2629,7 @@
GuiOutlineTree
-
+ Save Outline AsUložit osnovu jako
@@ -2537,609 +2637,609 @@
GuiPreferences
-
-
+
+ PreferencesNastavení
-
+ SearchHledat
-
+ GeneralObecné
-
+ AppearanceVzhled
-
+ Display languageJazyk zobrazení
-
-
+
+ Requires restart to take effect.Vyžaduje restartování, aby se projevil.
-
+ Colour themeBarevný motiv
-
+ General colour theme and icons.Základní barevný motiv a ikony.
-
+ Application fontPísmo aplikace
-
+ Hide vertical scroll bars in main windowsSkrýt vertikální posuvné lišty v hlavních oknech
-
-
+
+ Scrolling available with mouse wheel and keys only.Rolování je k dispozici pouze s kolečkem myši a klávesami.
-
+ Hide horizontal scroll bars in main windowsSkrýt horizontální posuvné lišty v hlavních oknech
-
+ Use the system's font selection dialogPoužít dialogové okno výběru písma systému
-
+ Turn off to use the Qt font dialog, which may have more options.Vypněte pro použití dialogového okna Qt, který může mít více možností.
-
+ Document StyleStyl dokumentu
-
+ Document colour themeBarevný motiv dokumentu
-
+ Colour theme for the editor and viewer.Barevný motiv pro editor a prohlížeč.
-
+ Document fontPísmo dokumentu
-
-
-
+
+
+ Applies to both document editor and viewer.Vztahuje se jak na editor, tak na prohlížeč.
-
+ Emphasise partition and chapter labelsZdůraznění oddílů a nápisů kapitoly
-
+ Makes them stand out in the project tree.Udělá je mimo stromu projektů.
-
+ Show full path in document headerZobrazit úplnou cestu v záhlaví dokumentu
-
+ Add the parent folder names to the header.Přidat názvy nadřazených složek do záhlaví.
-
+ Include project notes in status bar word countZahrnout poznámky projektu do počtu slov ve stavové liště
-
+ BehaviourChování
-
+ Save document intervalInterval ukládání dokumentu
-
+ How often the document is automatically saved.Jak často se dokument automaticky uloží.
-
-
+
+ secondssekundy
-
+ Save project intervalInterval ukládání projektu
-
+ How often the project is automatically saved.Jak často se projekt automaticky uloží.
-
+ Ask before exiting novelWriterZeptat se před ukončením NovelWriter
-
+ Only applies when a project is open.Platí pouze v případě, že je projekt otevřený.
-
+ Project BackupZálohování projektu
-
+ BrowseProcházet
-
+ Backup storage locationUmístění úložiště zálohy
-
-
+
+ Path: {0}Cesta: {0}
-
+ Run backup when the project is closedSpustit zálohu, když je projekt uzavřen
-
+ Can be overridden for individual projects in Project Settings.Lze přepsat pro jednotlivé projekty v Nastavení projektu.
-
+ Ask before running backupZeptat se před spuštěním zálohy
-
+ If off, backups will run in the background.Pokud je vypnuto, zálohy běží na pozadí.
-
+ Session TimerČas relace
-
+ Pause the session timer when not writingPozastavit časovač relace, když se nepíše
-
+ Also pauses when the application window does not have focus.Také pozastaví, když se okno aplikace přesune na pozadí.
-
+ Editor inactive time before pausing timerEditovat neaktivní čas před pozastavením
-
+ User activity includes typing and changing the content.Uživatelská aktivita zahrnuje psaní a změnu obsahu.
-
+ minutesminuty
-
+ WritingPsaní
-
+ Text FlowFlow textu
-
+ Maximum text width in "Normal Mode"Maximální šířka textu v "Normálním režimu"
-
+ Set to 0 to disable this feature.Nastavte na 0 pro vypnutí této funkce.
-
-
-
-
+
+
+
+ pxpx
-
+ Maximum text width in "Focus Mode"Maximální šířka textu v režimu Soustředění
-
+ The maximum width cannot be disabled.Maximální šířka nemůže být vypnuta.
-
+ Hide document footer in "Focus Mode"Skrýt zápatí dokumentu v režimu „Soustředění“
-
+ Hide the information bar in the document editor.Skrýt informační panel v editoru dokumentu.
-
+ Justify the text marginsZarovnat textové okraje
-
+ Minimum text marginMinimální textová marže
-
+ Tab widthŠířka tabulátoru
-
+ The width of a tab key press in the editor and viewer.Šířka tabulátoru po jeho stisknutí v editoru a prohlížeči.
-
+ Text EditingEditace textu
-
+ Spell check languageJazyk kontroly pravopisu
-
+ Available languages are determined by your system.Dostupné jazyky závisí na systému.
-
+ Auto-select word under cursorAutomatický výběr slova pod kurzorem
-
+ Apply formatting to word under cursor if no selection is made.Použít formátování na slovo pod kurzorem, pokud není proveden žádný výběr.
-
+ Show tabs and spacesZobrazit tabulátory a mezery
-
+ Show line endingsZobrazit konce řádků
-
+ Editor ScrollingPosouvání editorů
-
+ Scroll past end of the documentPosunutí za konec dokumentu
-
+ Also centres the cursor when scrolling.Při posouvání také vycentruje kurzor.
-
+ Typewriter style scrolling when you typeStyl psaní ve stylu psacích strojů
-
+ Keeps the cursor at a fixed vertical position.Udržuje kurzor v pevné svislé poloze.
-
+ Minimum position for Typewriter scrollingMinimální pozice posunu psacích strojů
-
+ Percentage of the editor height from the top.Procento výšky editoru v horní části.
-
+ Text HighlightingZvýraznění textu
-
+ NoneŽádný
-
+ Single QuotesJednoduché uvozovky
-
+ Double QuotesDvojité uvozovky
-
+ BothObojí
-
+ Highlight dialogueZvýraznit dialog
-
+ Applies to the selected quote styles.Použije se na vybraný styl uvozovek.
-
+ Alternative dialogue symbolsAlternativní symboly dialogu
-
+ Custom highlighting of dialogue text.Vlastní zvýraznění textu dialogu.
-
+ Allow open-ended dialoguePovolit otevřený dialog
-
+ Highlight dialogue line with no closing quote.Zvýraznit čáru dialogu bez uzávěrky.
-
+ Dialogue line symbolsSymboly Dialogové linie
-
+ Lines starting with any of these symbols are dialogue.Řádky začínající některým z těchto symbolů jsou dialogy.
-
+ Narrator break symbolNarrator break symbol
-
+ Symbol to indicate a narrator break in dialogue.Symbol označující přerušení v dialogu.
-
+ Alternating dialogue/narration symbolAlternativní dialog/narration symbol
-
+ Alternates dialogue highlighting within any paragraph.Aleternativní dialog zdůrazňující v kterémkoli odstavci.
-
+ Add highlight colour to emphasised textPřidat barvu do zvýrazněného textu
-
-
+
+ Applies to the document editor only.Platí pouze pro editor dokumentů.
-
+ Highlight multiple or trailing spacesZvýraznění vícenásobných nebo koncových mezer
-
+ Text AutomationAutomatizace textu
-
+ Auto-replace text as you typeAutomaticky nahradit text při psaní
-
+ Allow the editor to replace symbols as you type.Umožnit editoru nahradit symboly při psaní.
-
+ Auto-replace single quotesAutomaticky nahradit jednoduché uvozovky
-
-
+
+ Try to guess which is an opening or a closing quote.Pokuste se odhadnout, co je otevření nebo zavření citátu.
-
+ Auto-replace double quotesAutomaticky nahradit dvojité uvozovky
-
+ Auto-replace dashesAutomaticky nahradit pomlčky
-
+ Double and triple hyphens become short and long dashes.Dvojité a trojité pomlčky jsou krátké a dlouhé pomlčky.
-
+ Auto-replace dotsAutomaticky nahradit tečky
-
+ Three consecutive dots become ellipsis.Tři po sobě jdoucí tečky se stávají elipsy.
-
+ Insert non-breaking space beforeVložte mezeru před
-
+ Automatically add space before any of these symbols.Automaticky přidat mezeru před kterýmkoli z těchto symbolů.
-
+ Insert non-breaking space afterVložte mezeru za
-
+ Automatically add space after any of these symbols.Automaticky přidat mezeru za kterýmkoli z těchto symbolů.
-
+ Use thin space insteadMísto toho použít tenkou mezeru
-
+ Inserts a thin space instead of a regular space.Vloží tenkou mezeru místo obvyklé mezery.
-
+ Quotation StyleStyl citace
-
+ Single quote open styleStyl otevřené jednoduché citace
-
+ The symbol to use for a leading single quote.Symbol, který se má použít pro úvodní jednoduchou uvozovku.
-
+ Single quote close styleStyl uzavření jednoduché citace
-
+ The symbol to use for a trailing single quote.Symbol, který se použije pro koncovou jednoduchou uvozovku.
-
+ Double quote open styleOtevřený styl dvojitých uvozovek
-
+ The symbol to use for a leading double quote.Symbol, který se použije pro úvodní dvojitou uvozovku.
-
+ Double quote close styleStyl uzavření dvojité citace
-
+ The symbol to use for a trailing double quote.Symbol, který se použije pro koncovou dvojitou uvozovku.
-
+ Backup DirectoryAdresář záloh
@@ -3147,27 +3247,27 @@
GuiProjectSearch
-
+ Project SearchVyhledat projekt
-
+ Case SensitiveRozlišovat velká a malá písmena
-
+ Whole Words OnlyPouze celá slova
-
+ RegEx ModeRegEx režim
-
+ Search forNajít
@@ -3175,28 +3275,28 @@
GuiProjectSettings
-
-
+
+ Project SettingsNastavení projektu
-
+ SettingsNastavení
-
+ StatusStavy
-
+ ImportanceDůležitost
-
+ Auto-ReplaceAutomaticky nahradit
@@ -3204,47 +3304,47 @@
GuiProjectToolBar
-
+ Project ContentObsah projektu
-
+ Quick LinksRychlé odkazy
-
+ Move UpPosunout nahoru
-
+ Move DownPosunout dolu
-
+ Add ItemPřidat položku
-
+ Expand AllRozbalit Vše
-
+ Collapse AllSbalit vše
-
+ Empty TrashVysypat koš
-
+ More OptionsVíce možností
@@ -3252,93 +3352,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!Nikde nelze přidat soubor nebo složku!
-
+ Cannot add new files or folders to the Trash folder.Do Koše nelze přidat nové soubory nebo složky.
-
+ New NoteNová poznámka
-
+ New ChapterNová kapitola
-
+ New SceneNová scéna
-
+ New DocumentNový dokument
-
+ New FolderNová složka
-
+ No documents selected for merging.Pro sloučení nebyly vybrány žádné dokumenty.
-
+ MergedSloučený
-
-
+
+ Could not write document content.Nelze zapsat obsah dokumentu.
-
+ Do you want to duplicate this document?Chcete duplikovat tento dokument?
-
+ Do you want to duplicate this item and all child items?Chcete duplikovat tuto položku a všechny podřízené položky?
-
+ Could not duplicate all items.Nelze duplikovat všechny položky.
-
+ Root folders can only be deleted when they are empty.Kořenové složky mohou být odstraněny, pouze pokud jsou prázdné.
-
+ Permanently delete selected item(s)?Trvale odstranit vybrané položky?
-
+ Move selected item(s) to Trash?Přesunout vybrané položky do koše?
-
+ The Trash folder is already empty.Složka Koš je již prázdná.
-
+ Permanently delete {0} file(s) from Trash?Trvale zmazat soubory z koše? Počet: {0}?
@@ -3346,7 +3446,7 @@
GuiQuoteSelect
-
+ Select Quote StyleVyberte styl citace
@@ -3354,42 +3454,42 @@
GuiSideBar
-
+ Project Tree ViewZobrazení stromu projektu
-
+ Novel Tree ViewZobrazení stromu Románu
-
+ Project SearchVyhledat v projektu
-
+ Novel Outline ViewZobrazení obrysu románu
-
+ Build ManuscriptSestavit rukopis
-
+ Novel DetailsDetaily románu
-
+ Writing StatisticsStatistiky psaní
-
+ SettingsNastavení
@@ -3397,37 +3497,37 @@
GuiWelcome
-
+ WelcomeVítejte
-
+ ListSeznam
-
+ NewNový
-
+ BrowseProcházet
-
+ CancelZrušit
-
+ CreateVytvořit
-
+ OpenOtevřít
@@ -3435,43 +3535,43 @@
GuiWordList
-
-
+
+ Project Word ListSeznam slov projektu
-
+ Import words from text fileImport slov z textového souboru
-
+ Export words to text fileExportovat slova do textového souboru
-
+ Add WordPřidat slovo
-
+ Remove WordOdstranit slovo
-
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.Poznámka: Importovaný soubor musí být prostý textový soubor s kódováním UTF-8 nebo ASCII.
-
+ Import FileImport souboru
-
+ Export FileExport souboru
@@ -3479,147 +3579,147 @@
GuiWritingStats
-
+ Writing StatisticsStatistiky psaní
-
+ Session StartZačátek relace
-
+ LengthDélka
-
+ IdleNeaktivní
-
+ WordsSlova
-
+ HistogramHistogram
-
+ Sum TotalsCelkem
-
+ Total Time:Celkový čas:
-
+ Idle Time:Doba nečinnosti:
-
+ Filtered Time:Doba filtrování:
-
+ Novel Word Count:Počet slov Románu:
-
+ Notes Word Count:Počet slov poznámek:
-
+ Total Word Count:Celkový počet slov:
-
+ FiltersFiltry
-
+ Count novel filesPočítat soubory románu
-
+ Count note filesPočítat soubory poznámek
-
+ Hide zero word countSkrýt nulový počet slov
-
+ Hide negative word countSkrýt záporný počet slov
-
+ Group entries by daySeskupit záznamy podle dne
-
+ Show idle timeZobrazit čas nečinnosti
-
+ Word count cap for the histogramLimit počtu slov pro histogram
-
+ Save AsUložit jako
-
+ JSON Data File (.json)Datový soubor JSON (.json)
-
+ CSV Data File (.csv)Datový soubor CSV (.csv)
-
+ JSON Data FileDatový soubor JSON
-
+ CSV Data FileDatový soubor CSV
-
+ Save Data AsUložit data jako
-
+ {0} file successfully written to:Soubor {0} byl úspěšně zapsán do:
-
+ Failed to write {0} file.Nepodařilo se zapsat soubor {0}.
@@ -3627,156 +3727,156 @@
NWProject
-
+ Could not delete document file.Nelze odstranit soubor dokumentu.
-
+ Not a known project file format.Neznámý formát souboru projektu.
-
-
-
-
+
+
+
+ Path: {0}Cesta: {0}
-
+ Project file not found.Soubor projektu nebyl nalezen.
-
+ Failed to open project.Nepodařilo se otevřít projekt.
-
+ UnknownNeznámý
-
+ Project file does not appear to be a novelWriterXML file.Soubor projektu se nezdá být soubor novelWriterXML.
-
+ Unknown or unsupported novelWriter project file format. The project cannot be opened by this version of novelWriter. The file was saved with novelWriter version {0}.Neznámý nebo nepodporovaný formát projektu novelWriter. Projekt nemůže být otevřen touto verzí novelWriter. Soubor byl uložen s novelWriter verzí {0}.
-
+ Failed to parse project xml.Nepodařilo se analyzovat xml projektu.
-
+ The file format of your project is about to be updated. If you proceed, older versions of novelWriter will no longer be able to open this project. Continue?Formát souboru vašeho projektu bude brzy aktualizován. Pokud budete pokračovat, starší verze novelWriteru již nebudou moci tento projekt otevřít. Pokračovat?
-
+ This project was saved by a newer version of novelWriter, version {0}. This is version {1}. If you continue to open the project, some attributes and settings may not be preserved, but the overall project should be fine. Continue opening the project?Tento projekt byl uložen novější verzí novelWriter, verze {0}. Toto je verze {1}. Pokud budete pokračovat v otevírání projektu, některé atributy a nastavení nemusí být zachovány, ale celkový projekt by měl být v pořádku. Pokračovat v otevírání projektu?
-
+ RecoveredObnoveno
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.Nalezeno {0} osiřelých souborů v projektu. {1} soubor(y) byly obnoveny.
-
+ Opened Project: {0}Otevřený dokument: {0}
-
+ There is no project open.Žádný projekt není otevřen.
-
+ Failed to save project.Nepodařilo se uložit projekt.
-
+ Saved Project: {0}Uložený projekt: {0}
-
+ Backing up project ...Zálohování projektu ...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Projekt nelze zálohovat, protože není nastaven žádný název projektu. Prosím nastavte název projektu v nastavení projektu.
-
+ Could not create backup folder.Složku zálohy nelze vytvořit.
-
+ Created a backup of your project of size {0}B.Vytvořena záloha vašeho projektu o velikosti {0}B.
-
+ Could not write backup archive.Nelze zapsat záložní archiv.
-
+ Project backed up to '{0}'Projekt byl zálohován na '{0}'
-
-
+
+ NewNový
-
+ NotePoznámka
-
+ DraftNávrh
-
+ FinishedDokončeno
-
+ MinorMéně závažná
-
+ MajorZávažná
-
+ MainHlavní
@@ -3784,7 +3884,7 @@
NovelSelector
-
+ All Novel FoldersVšechny složky románu
@@ -3792,99 +3892,99 @@
ProjectBuilder
-
+ The target folder is not empty. Please choose another folder.Cílová složka není prázdná. Zvolte prosím jinou složku.
-
+ An error occurred while trying to create the project.Nastala chyba při vytváření projektu.
-
+ New ProjectNový projekt
-
+ Title PageTitulek
-
+ AddressAdresa
-
+ ByOd
-
+ Word CountPočet slov
-
+ Summary of the chapter.Shrnutí kapitoly.
-
+ Summary of the scene.Shrnutí scény.
-
+ A short description.Stručný popis.
-
+ Chapter {0}Kapitola {0}
-
-
+
+ Scene {0}Scéna {0}
-
+ Main PlotHlavní zápletka
-
+ ProtagonistProtagonista
-
+ Main LocationHlavní lokace
-
-
+
+ The target folder already exists. Please choose another folder.Cílová složka již existuje. Zvolte prosím jinou složku.
-
+ Could not copy project files.Nelze zkopírovat soubory projektu.
-
+ Failed to create a new example project.Nepodařilo se vytvořit nový příklad projektu.
-
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.Nepodařilo se vytvořit nový příklad projektu. Nelze najít potřebné soubory. Zdá se, že v této instalaci chybí.
@@ -3892,7 +3992,7 @@
QDialogButtonBox
-
+ OKOk
@@ -3900,27 +4000,27 @@
QGnomeTheme
-
+ &OK&Ok
-
+ &Save&Uložit
-
+ &Cancel&Zrušit
-
+ &Close&Zavřít
-
+ Close without SavingZavřít bez uložení
@@ -3928,218 +4028,115 @@
QPlatformTheme
-
+ OKOk
-
+ SaveUložit
-
+ Save AllUložit vše
-
+ OpenOtevřít
-
+ &Yes&Ano
-
+ Yes to &AllAno pro všechny
-
+ &No&Ne
-
+ N&o to AllN&e pro všechny
-
+ AbortPřerušit
-
+ RetryOpakovat
-
+ IgnoreIgnorovat
-
+ CloseZavřít
-
+ CancelZrušit
-
+ DiscardZahodit
-
+ HelpNápověda
-
+ ApplyPoužít
-
+ ResetResetovat
-
+ Restore DefaultsObnovit výchozí
-
- Shape
-
-
- Square
- Čtverec
-
-
-
- Triangle
- Trojúhelník
-
-
-
- Nabla
- Nabla
-
-
-
- Diamond
- Kosočtverec
-
-
-
- Pentagon
- Pětiúhelník
-
-
-
- Hexagon
- Šestiúhelník
-
-
-
- Star
- Hvězdička
-
-
-
- Pacman
- Pacman
-
-
-
- 1/4 Circle
- 1/4 kružnice
-
-
-
- Half Circle
- Půlkruh
-
-
-
- 3/4 Circle
- 3/4 kružnice
-
-
-
- Full Circle
- Úplný kruh
-
-
-
- 1 Bar
- 1 čára
-
-
-
- 2 Bars
- 2 čáry
-
-
-
- 3 Bars
- 3 čáry
-
-
-
- 4 Bars
- 4 čáry
-
-
-
- 1 Block
- 1 blok
-
-
-
- 2 Blocks
- 2 bloky
-
-
-
- 3 Blocks
- 3 bloky
-
-
-
- 4 Blocks
- 4 bloky
-
- SharedData
-
+ novelWriter Project File or Zip Filesoubor projektu novelWriter nebo soubor Zip
-
+ novelWriter Project Filesoubor projektu novelWriter
-
+ Open ProjectOtevřít Projekt
-
+ Select FontVybrat písmo
@@ -4147,57 +4144,57 @@
Stats
-
+ CharactersZnaky
-
+ Characters in TextZnaky v textu
-
+ Characters in HeadingsZnaky v nadpisech
-
+ ParagraphsOdstavce
-
+ HeadingsNadpisy
-
+ Characters, No SpacesZnaky, žádné mezery
-
+ Characters in Text, No SpacesZnaky v textu, bez mezer
-
+ Characters in Headings, No SpacesZnaky v nadpisech, žádné mezery
-
+ WordsSlova
-
+ Words in TextSlova v textu
-
+ Words in HeadingsSlova v nadpisech
@@ -4205,42 +4202,42 @@
VersionInfoWidget
-
+ Latest Version: {0}Poslední verze: {0}
-
+ Checking ...Probíhá kontrola...
-
+ Download from {0}Stáhnout z {0}
-
+ VersionVerze
-
+ Released onVydáno dne
-
+ Release NotesPoznámky k verzi
-
+ Check NowZkontrolovat nyní
-
+ FailedNeúspěšné
@@ -4248,57 +4245,57 @@
_ContentsPage
-
+ Table of ContentsObsah
-
+ TitleNázev
-
+ WordsSlova
-
+ PagesStránky
-
+ PageStránka
-
+ ProgressPokrok
-
+ Words per pageSlova na stránku
-
+ First page offsetOdsazení první stránky
-
+ Chapters on odd pagesKapitoly na lichých stránkách
-
+ UntitledNepojmenované
-
+ ENDKONEC
@@ -4306,32 +4303,32 @@
_DetailsWidget
-
+ SettingNastavení
-
+ ValueHodnota
-
+ NameJméno
-
+ SelectionVýběr
-
+ TitleNázev
-
+ HiddenSkryté
@@ -4339,37 +4336,37 @@
_FilterTab
-
+ Included in manuscriptZahrnuto v rukopisu
-
+ Excluded from manuscriptVyloučeno z rukopisu
-
+ Always includedVždy zahrnuto
-
+ Always excludedVždy vyloučeno
-
+ Reset to defaultObnovit výchozí
-
+ Mark selection asOznačit výběr jako
-
+ Select Root FoldersVybrat kořenové složky
@@ -4377,22 +4374,22 @@
_GuiAlert
-
+ InformationInformace
-
+ WarningVarování
-
+ ErrorChyba
-
+ QuestionOtázka
@@ -4400,84 +4397,84 @@
_HeadingsTab
-
+ HideSkrýt
-
-
+
+ Editing: {0}Upravování {0}
-
-
+
+ NoneŽádný
-
+ TitleNázev
-
+ Chapter NumberČíslo kapitoly
-
+ Chapter Number (Word)Číslo kapitoly (Word)
-
+ Chapter Number (Upper Case Roman)Číslo kapitoly (Velká písmena Roman)
-
+ Chapter Number (Lower Case Roman)Číslo kapitoly (Horní index Roman)
-
+ Scene Number (In Chapter)Číslo scény (v kapitole)
-
+ Scene Number (Absolute)Číslo scény (absolutní)
-
+ Point of View CharacterÚhel pohledu postavy
-
+ Focus CharacterZaměřit se na postavu
-
+ InsertVložit
-
+ ApplyPoužít
-
+ CentreStřed
-
+ Page BreakKonec stránky
@@ -4485,117 +4482,117 @@
_NewProjectForm
-
+ RequiredVyžadováno
-
+ OptionalVolitelné
-
+ Create a fresh projectVytvořit nový projekt
-
+ Create an example projectVytvořit ukázkový projekt
-
+ Copy an existing projectKopírovat existující projekt
-
+ Project NameNázev projektu
-
+ AuthorAutor
-
+ Project PathCesta k projektu
-
+ Prefill ProjectProjekt, předvyplnit
-
+ Set to 0 to only add scenesNastavte na 0 pro přidání pouze scén
-
+ Add {0} chapter documentsPřidat dokumenty kapitoly {0}
-
+ Add {0} scene documents (to each chapter)Přidat dokumenty scény {0} (do každé kapitoly)
-
+ Add a folder for plot notesPřidání složky pro poznámky k příběhu
-
+ Add a folder for character notesPřidat složku pro poznámky postav
-
+ Add a folder for location notesPřidat složku pro poznámky k lokaci
-
+ Add example notes to the abovePřidat příklady k výše uvedeným poznámkám
-
+ Chapters and ScenesKapitoly a scény
-
+ Project NotesPoznámky projektu
-
+ Create New ProjectVytvořit nový projekt
-
+ Select Project FolderVybrat složku projektu
-
+ Fresh ProjectNový projekt
-
+ Example ProjectUkázkový projekt
-
+ Template: {0}Šablona: {0}
@@ -4603,7 +4600,7 @@
_NewProjectPage
-
+ A project name is required.Je vyžadován název projektu.
@@ -4611,27 +4608,27 @@
_OpenProjectPage
-
+ The project path is not reachable.Cesta projektu není dostupná.
-
+ PathCesta
-
+ Remove '{0}' from the recent projects list? The project files will not be deleted.Odstranit '{0}' ze seznamu nedávných projektů? Soubory projektu nebudou smazány.
-
+ Open ProjectOtevřít Projekt
-
+ Remove ProjectOdebrat projekt
@@ -4639,54 +4636,54 @@
_OverviewPage
-
+ ProjectProjekt
-
-
+
+ NameJméno
-
+ RevisionsRevize
-
+ Editing TimeČas úpravy
-
-
+
+ Word CountPočet slov
-
+ In NovelsV Románu
-
+ In NotesV poznámkách
-
+ Selected NovelVybraný Román
-
+ ChaptersKapitoly
-
+ ScenesScény
@@ -4694,27 +4691,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Stiskněte tlačítko "Náhled" pro vygenerování ...
-
+ Processing ...Zpracovávám...
-
+ DoneHotovo
-
+ BuiltSestaveno
-
+ No PreviewBez náhledu
@@ -4722,12 +4719,12 @@
_ProjectListModel
-
+ Word CountPočet slov
-
+ Last OpenedNaposledy otevřené
@@ -4735,22 +4732,22 @@
_ReplacePage
-
+ Text Auto-Replace for Preview and BuildAutomatické nahrazení textu pro náhled a sestavení
-
+ KeywordKlíčové slovo
-
+ Replace WithNahradit za
-
+ Select item to editVybrat položky k úpravě
@@ -4758,49 +4755,49 @@
_SettingsPage
-
+ Project nameNázev projektu
-
+ Changing this will affect the backup path.Změna ovlivní cestu zálohy.
-
+ Author(s)Autor(ři)
-
-
+
+ Only used when building the manuscript.Používá se pouze při sestavení rukopisu.
-
+ Project languageJazyk projektu
-
+ DefaultVýchozí
-
+ Spell check languageJazyk kontroly pravopisu
-
-
+
+ Overrides main preferences.Přepíše hlavní nastavení.
-
+ Disable backup on closeZakázat zálohování při zavření
@@ -4808,132 +4805,132 @@
_StatusPage
-
+ StatusStavy
-
+ Novel Document Status LevelsÚrovně stavu dokumentu Románu
-
+ ImportanceDůležitost
-
+ Project Note Importance LevelsÚrovně důležitosti poznámky projektu
-
+ Not in useNevyužívá se
-
+ Used oncePoužito jednou
-
+ Used by {0} itemsPoužito celkem {0}
-
+ Select ColourVyberte barvu
-
+ LabelPopisek
-
+ UsagePoužití
-
+ Add LabelPřidat štítek
-
+ Delete LabelSmazat štítek
-
+ Move UpPosunout nahoru
-
+ Move DownPosunout dolu
-
+ Import LabelsImportovat štítky
-
+ Export LabelsExportova popisky
-
+ Select item to editVybrat položky k úpravě
-
+ ColourBarva
-
+ Circles ...Koláčový...
-
+ Bars ...Sloupcový...
-
+ Blocks ...Blokový...
-
+ ShapeTvar
-
+ New ItemNová položka
-
+ Cannot delete a status item that is in use.Nelze odstranit statuv, který se používá.
-
+ Import FileImport souboru
-
+ Export FileExport souboru
@@ -4941,121 +4938,121 @@
_TreeContextMenu
-
+ Empty TrashVysypat koš
-
+ RenamePřejmenovat
-
+ DuplicateDuplikovat
-
+ Open DocumentOtevřít dokument
-
+ View DocumentZobrazit dokument
-
+ Create New ...Vytvořit nový...
-
+ Rename to HeadingPřejmenování nadpisu
-
+ Set Active to ...Nastavení Aktivní na ...
-
+ Toggle ActivePřepnutí na aktivní
-
+ Set Status to ...Nastavit stav na ...
-
-
+
+ Manage Labels ...Správa štítků...
-
+ Set Importance to ...Nastavit důležitost na...
-
+ Transform ...Transformovat ...
-
-
-
-
+
+
+
+ Convert to {0}Převést na {0}
-
+ Merge Child Items into SelfSloučit podřízené položky do sebe
-
+ Merge Child Items into NewSloučit podřízené položky do nového
-
+ Merge Documents in FolderSloučit dokumenty do složky
-
+ Split Document by HeadingsRozdělit dokument podle nadpisu
-
+ Expand AllRozbalit Vše
-
+ Collapse AllSbalit vše
-
+ Delete PermanentlyTrvale odstranit
-
+ Move to TrashPřesunout do Koše
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Chcete převést složku na {0}? Tuto akci nelze vrátit zpět.
@@ -5063,7 +5060,7 @@
_UpdatableMenu
-
+ From TemplateZe šablony
@@ -5071,12 +5068,12 @@
_ViewPanelBackRefs
-
+ DocumentDokument
-
+ First HeadingPrvní položka
@@ -5084,27 +5081,27 @@
_ViewPanelKeyWords
-
+ TagŠtítek
-
+ ImportanceDůležitý
-
+ DocumentDokument
-
+ HeadingNadpis
-
+ Short DescriptionKrátký popis
diff --git a/i18n/nw_de_DE.ts b/i18n/nw_de_DE.ts
index 7d5b63c4..b174a68a 100644
--- a/i18n/nw_de_DE.ts
+++ b/i18n/nw_de_DE.ts
@@ -4,277 +4,277 @@
Builds
-
+ Document FiltersDokumentenfilter
-
+ Novel DocumentsRomandokumente
-
+ Project NotesProjektnotizen
-
+ Inactive DocumentsInaktive Dokumente
-
+ HeadingsÜberschriften
-
+ Partition FormatTeil
-
+ Chapter FormatKapitel
-
+ Unnumbered FormatKapitel (Unnummeriert)
-
+ Scene FormatSzene
-
+ Alt. Scene FormatSzene (Variante)
-
+ Section FormatAbschnitt
-
+ Title StylingTitel
-
+ Partition StylingTeil
-
+ Chapter StylingKapitel
-
+ Scene StylingSzene
-
+ Text ContentTextinhalt
-
+ Include SynopsisEinschl. Zusammenfassung
-
+ Include CommentsEinschl. Kommentare
-
+ Include KeywordsEinschl. Schlagwörter
-
+ Include Body TextEinschl. Fließtext
-
+ Ignore These KeywordsDiese Schlagwörter ignorieren
-
+ Add Titles for NotesTitel für Notizen einfügen
-
+ Text FormatTextformatierung
-
+ Text FontSchriftart
-
+ Line HeightZeilenhöhe
-
+ Justify Text MarginsBlocksatz
-
+ Replace Unicode CharactersUnicode ersetzen
-
+ Replace Tabs with SpacesTabs durch Leerzeichen ersetzen
-
+ Preserve Hard Line BreaksHarte Zeilenumbrüche behalten
-
+ Apply Dialogue HighlightingWörtliche Rede hervorheben
-
+ First Line IndentZeileneinzug
-
+ Enable IndentEinzug aktivieren
-
+ Indent WidthEinzug Breite
-
+ Indent First ParagraphEinzug erster Absatz
-
+ Text MarginsTextabstände
-
+ Title and PartitionTitel und Teil
-
+ Heading 1 and ChapterÜberschrift 1 und Kapitel
-
+ Heading 2 and SceneÜberschrift 2 und Szene
-
+ Heading 3 and SectionÜberschrift 3 und Abschnitt
-
+ Heading 4Überschrift 4
-
+ Text ParagraphTextabsatz
-
+ Scene SeparatorSzenentrenner
-
+ Page LayoutSeitenlayout
-
+ UnitEinheit
-
+ Page SizeSeitenformat
-
+ Page MarginsSeitenränder
-
+ Document StyleDokument
-
+ Page HeaderKopfzeile
-
+ Page Counter OffsetSeitenzahl-Offset
-
+ Add Colours to HeadingsÜberschriften farbig
-
+ Increase Size of HeadingsÜberschriften größer
-
+ Bold HeadingsÜberschriften fett
-
+ HTML OptionsHTML-Einstellungen
-
+ Add CSS StylesCSS hinzufügen
-
+ Preserve Tab CharactersTabs behalten
@@ -282,72 +282,72 @@
Common
-
+ in the futurein der Zukunft
-
+ just nowsoeben
-
+ a minute agovor einer Minute
-
+ {0} minutes ago{0} Minuten her
-
+ an hour agoeine Stunde her
-
+ {0} hours ago{0} Stunden her
-
+ a day agoeinen Tag her
-
+ {0} days ago{0} Tage her
-
+ a week agoeine Woche her
-
+ {0} weeks ago{0} Wochen her
-
+ a month agoeinen Monat her
-
+ {0} months ago{0} Monate her
-
+ a year agoein Jahr her
-
+ {0} years ago{0} Jahre her
@@ -355,441 +355,541 @@
Constant
-
-
+
+ TitleTitel
-
+ Heading 1 (Partition)Überschrift 1 (Teil)
-
+ Heading 2 (Chapter)Überschrift 2 (Kapitel)
-
+ Heading 3 (Scene)Überschrift 3 (Szene)
-
+ Heading 4 (Section)Überschrift 4 (Abschnitt)
-
+ Text ParagraphTextabsatz
-
+ Scene SeparatorSzenentrenner
-
-
-
+
+
+ NoneOhne
-
+ NovelRoman
-
-
+
+ PlotHandlung
-
-
+
+ CharactersCharaktere
-
-
+
+ LocationsSchauplätze
-
-
+
+ TimelineZeitleiste
-
-
+
+ ObjectsObjekte
-
-
+
+ EntitiesOrganisationen
-
-
-
+
+
+ CustomBenutzerdefiniert
-
+ ArchiveArchiv
-
+ TemplatesVorlagen
-
+ TrashPapierkorb
-
-
+
+ Novel DocumentRomandokument
-
-
+
+ Project NoteProjektnotiz
-
+ Root FolderHauptordner
-
+ FolderOrdner
-
+ Novel Title PageRomantitel
-
+ Novel ChapterKapitel
-
+ Novel SceneSzene
-
+ Novel SectionRomanabschnitt
-
+ ActiveAktiv
-
+ InactiveInaktiv
-
+ TagSchlagwort
-
+ Point of ViewPerspektive
-
-
+
+ FocusFokus
-
+ StoryGeschichte
-
+ MentionsErwähnungen
-
+ LevelEbene
-
+ DocumentDokument
-
+ LineZeile
-
+ StatusStatus
-
+ CharsZeichen
-
+ WordsWörter
-
+ ParsAbsätze
-
+ POVPerspektive
-
+ SynopsisZusammenfassung
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ Microsoft Word Document (.docx)Microsoft-Word-Dokument (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)novelWriter-Markup (.txt)
-
+ Standard Markdown (.md)Standard-Markdown (.md)
-
+ Extended Markdown (.md)Erweitertes Markdown (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter-Markup (.json)
-
+
+ Square
+ Quadrat
+
+
+
+ Triangle
+ Dreieck
+
+
+
+ Nabla
+ Nabla
+
+
+
+ Diamond
+ Raute
+
+
+
+ Pentagon
+ Fünfeck
+
+
+
+ Hexagon
+ Sechseck
+
+
+
+ Star
+ Stern
+
+
+
+ Pacman
+ Pacman
+
+
+
+ 1/4 Circle
+ 1/4-Kreis
+
+
+
+ Half Circle
+ Halbkreis
+
+
+
+ 3/4 Circle
+ 3/4-Kreis
+
+
+
+ Full Circle
+ Voller Kreis
+
+
+
+ 1 Bar
+ 1 Balken
+
+
+
+ 2 Bars
+ 2 Balken
+
+
+
+ 3 Bars
+ 3 Balken
+
+
+
+ 4 Bars
+ 4 Balken
+
+
+
+ 1 Block
+ 1 Block
+
+
+
+ 2 Blocks
+ 2 Blöcke
+
+
+
+ 3 Blocks
+ 3 Blöcke
+
+
+
+ 4 Blocks
+ 4 Blöcke
+
+
+ Text filesTextdateien
-
+ Markdown filesMarkdown-Dateien
-
+ novelWriter filesnovelWriter-Dateien
-
+ CSV filesCSV-Dateien
-
+ All filesAlle Dateien
-
+ MillimetresMillimeter
-
+ CentimetresZentimeter
-
+ InchesZoll
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalUS Legal
-
+ US LetterUS Letter
-
+ Straight single quotation markEinfaches gerades Anführungszeichen
-
+ Straight double quotation markDoppeltes gerades Anführungszeichen
-
+ Left single quotation markEinfaches Anführungszeichen 6 oben
-
+ Right single quotation markEinfaches Anführungszeichen 9 oben
-
+ Single low-9 quotation markEinfaches Anführungszeichen 9 unten
-
+ Single high-reversed-9 quotation markEinfaches Anführungszeichen gespiegelte 9 oben
-
+ Left double quotation markDoppeltes Anführungszeichen 6 oben
-
+ Right double quotation markDoppeltes Anführungszeichen 9 oben
-
+ Double low-9 quotation markDoppeltes Anführungszeichen 9 unten
-
+ Double high-reversed-9 quotation markDoppeltes Anführungszeichen gespiegelte 9 oben
-
+ Double low-reversed-9 quotation markDoppeltes Anführungszeichen gespiegelte 9 unten
-
+ Single left-pointing angle quotation markEinfaches Guillemet linkszeigend
-
+ Single right-pointing angle quotation markEinfaches Guillemet rechtszeigend
-
+ Double left-pointing angle quotation markDoppeltes Guillemet linkszeigend
-
+ Double right-pointing angle quotation markDoppeltes Guillemet rechtszeigend
-
+ Left corner bracketLinke Eckklammer
-
+ Right corner bracketRechte Eckklammer
-
+ Left white corner bracketLinke weiße Eckklammer
-
+ Right white corner bracketRechte weiße Eckklammer
@@ -797,17 +897,17 @@
GuiAbout
-
+ About novelWriterÜber novelWriter
-
+ This application is licenced under {0}Diese Anwendung ist unter {0} lizenziert
-
+ CreditsMitwirkende
@@ -815,33 +915,33 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsBuildeinstellungen
-
+ NameName
-
+ GeneralAllgemein
-
+ SelectionAuswahl
-
+ HeadingsÜberschriften
-
+ FormattingFormatierung
@@ -849,47 +949,47 @@
GuiDictionaries
-
+ Add DictionariesWörterbücher hinzufügen
-
+ Download a dictionary from one of the links, and add it below.Laden Sie ein Wörterbuch von einem der Links herunter und fügen Sie es unten hinzu.
-
+ Add DictionaryWörterbuch hinzufügen
-
+ Dictionary install locationInstallationspfad der Wörterbücher
-
+ Additional dictionaries found: {0}Weitere Wörterbücher gefunden: {0}
-
+ Free or Libre Office extensionErweiterung für FreeOffice oder LibreOffice
-
+ Browse FilesDateien suchen
-
+ Could not process dictionary fileWörterbuchdatei konnte nicht verarbeitet werden
-
+ Added: {0} [{1}B]Hinzugefügt: {0} [{1}B]
@@ -897,22 +997,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Zeile: {0} ({1})
-
+ Words: {0} ({1})Wörter: {0} ({1})
-
+ Words: {0} selectedWörter: {0} markiert
-
+ StatusStatus
@@ -920,27 +1020,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarWerkzeugleiste ein/aus
-
+ OutlineGliederung
-
+ SearchSuche
-
+ Toggle Focus ModeAblenkungsfrei ein/aus
-
+ CloseSchließen
@@ -948,62 +1048,62 @@
GuiDocEditSearch
-
+ Search forSuchen nach
-
+ Replace withErsetzen durch
-
+ SearchSuchen
-
+ Case SensitiveGroß-/Kleinschreibung beachten
-
+ Whole Words OnlyNur ganze Wörter
-
+ RegEx ModeRegEx-Modus
-
+ Loop SearchSuche am Anfang fortsetzen
-
+ Search Next FileNächstes Dokument durchsuchen
-
+ Preserve CaseGroß-/Kleinschreibung beibehalten
-
+ Close SearchSuche schließen
-
+ Find in current documentIm geöffneten Dokument suchen
-
+ Find and replace in current documentIm geöffneten Dokument suchen und ersetzen
@@ -1011,132 +1111,132 @@
GuiDocEditor
-
+ Opened Document: {0}Dokument geöffnet: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Dieses Dokument wurde außerhalb von novelWriter geändert, während es hier geöffnet war. Möchten Sie die externen Änderungen überschreiben?
-
+ Could not save document.Dokument konnte nicht gespeichert werden.
-
+ Saved Document: {0}Dokument gespeichert: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.Die Rechtschreibprüfung erfordert das Paket PyEnchant. Es scheint nicht installiert zu sein.
-
+ Spell check completeRechtschreibprüfung abgeschlossen
-
+ Document DetailsDetails
-
+ Created: {0}Erstellt: {0}
-
+ Updated: {0}Aktualisiert: {0}
-
+ File Location: {0}Dateispeicherort: {0}
-
+ Set as Document NameAls Dokumentname verwenden
-
+ Open URLURL öffnen
-
+ Follow TagSchlagwort öffnen
-
+ Create Note for TagNotiz für Schlagwort erstellen
-
+ CutAusschneiden
-
+ CopyKopieren
-
+ PasteEinfügen
-
+ Select AllAlles markieren
-
+ Select WordWort markieren
-
+ Select ParagraphAbsatz markieren
-
+ Spelling Suggestion(s)Korrekturvorschläge
-
+ No SuggestionsKeine Vorschläge
-
+ Ignore WordWort ignorieren
-
+ Add Word to DictionaryZum Wörterbuch hinzufügen
-
+ Please select some text before calling replace quotes.Bitte markieren Sie den Text, in dem die Anführungszeichen ersetzt werden sollen.
-
+ Do you want to create a new project note for the tag '{0}'?Möchten Sie für das Schlagwort „{0}“ eine neue Projektnotiz erstellen?
@@ -1144,22 +1244,22 @@
GuiDocMerge
-
+ Merge DocumentsDokumente zusammenführen
-
+ Documents to MergeZusammenzuführende Dokumente
-
+ Drag and drop items to change the order, or uncheck to exclude.Reihenfolge der Elemente mit Drag & Drop ändern oder abwählen, um Elemente auszuschließen.
-
+ Move merged items to TrashZusammengeführte Elemente in den Papierkorb verschieben
@@ -1167,52 +1267,52 @@
GuiDocSplit
-
+ Split DocumentDokument aufteilen
-
+ Document HeadingsÜberschriften im Dokument
-
+ Select the maximum level to split into files.Wählen Sie die höchste Überschriften-Ebene aus, an der das Dokument geteilt werden soll.
-
+ Split on Heading Level 1 (Partition)Teilen bei Ebene 1 (Teil)
-
+ Split up to Heading Level 2 (Chapter)Teilen bei Ebene 2 (Kapitel)
-
+ Split up to Heading Level 3 (Scene)Teilen bei Ebene 3 (Szene)
-
+ Split up to Heading Level 4 (Section)Teilen bei Ebene 4 (Abschnitt)
-
+ Split into a new folderIn einen neuen Ordner aufteilen
-
+ Create document hierarchyDokumenten-Hierarchie erstellen
-
+ Move split document to TrashGeteiltes Dokument in den Papierkorb verschieben
@@ -1220,52 +1320,52 @@
GuiDocToolBar
-
+ Markdown BoldFett mit Markdown
-
+ Markdown ItalicKursiv mit Markdown
-
+ Markdown StrikethroughDurchgestrichen mit Markdown
-
+ Shortcode BoldFett mit Shortcode
-
+ Shortcode ItalicKursiv mit Shortcode
-
+ Shortcode StrikethroughDurchgestrichen mit Shortcode
-
+ Shortcode UnderlineUnterstrichen mit Shortcode
-
+ Shortcode HighlightHervorheben mit Shortcode
-
+ Shortcode SuperscriptHochgestellt mit Shortcode
-
+ Shortcode SubscriptTiefgestellt mit Shortcode
@@ -1273,27 +1373,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelAnsichtsbereich ein-/ausblenden
-
+ CommentsKommentare
-
+ Show CommentsKommentare anzeigen
-
+ SynopsisZusammenfassung
-
+ Show Synopsis CommentsZusammenfassung anzeigen
@@ -1301,32 +1401,32 @@
GuiDocViewHeader
-
+ OutlineGliederung
-
+ Go BackwardZurück
-
+ Go ForwardVor
-
+ Open in EditorIm Editor öffnen
-
+ ReloadAktualisieren
-
+ CloseSchließen
@@ -1334,27 +1434,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.Fehler beim Erstellen der Vorschau.
-
+ CopyKopieren
-
+ Select AllAlles markieren
-
+ Select WordWort markieren
-
+ Select ParagraphAbsatz markieren
@@ -1362,12 +1462,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsInaktive Schlagwörter ausblenden
-
+ ReferencesVerweise
@@ -1375,12 +1475,12 @@
GuiEditLabel
-
+ Item LabelTitel
-
+ LabelName
@@ -1388,22 +1488,22 @@
GuiItemDetails
-
+ LabelName
-
+ StatusStatus
-
+ ClassGruppe
-
+ UsageKategorie
@@ -1411,27 +1511,27 @@
GuiLipsum
-
+ Insert Placeholder TextPlatzhaltertext einfügen
-
+ Insert Lorem Ipsum TextLorem Ipsum einfügen
-
+ Number of paragraphsAnzahl der Absätze
-
+ Randomise orderZufällige Reihenfolge
-
+ InsertEinfügen
@@ -1439,103 +1539,103 @@
GuiMain
-
+ novelWriter is ready ...novelWriter ist bereit ...
-
+ You are now running novelWriter version {0}.Sie verwenden jetzt die novelWriter-Version {0}.
-
+ Please check the {0}release notes{1} for further details.Bitte lesen Sie die {0}Versionshinweise{1} für weitere Informationen.
-
+ Close the current project?Geöffnetes Projekt schließen?
-
-
+
+ Changes are saved automatically.Alle Änderungen werden automatisch gespeichert.
-
+ Backup the current project?Backup des geöffneten Projektes erstellen?
-
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?Das Projekt ist bereits in einer anderen Instanz von novelWriter geöffnet und daher gesperrt. Sperre aufheben und fortfahren?
-
+ Note: If the program or the computer previously crashed, the lock can safely be overridden. However, overriding it is not recommended if the project is open in another instance of novelWriter. Doing so may corrupt the project.Hinweis: Nach einem Computer- oder Programmabsturz können Sie die Sperre einfach überschreiben. Falls das Projekt bereits in einer anderen Instanz von novelWriter geöffnet ist, könnte ein Überschreiben der Sperre zu fehlerhaften Daten führen.
-
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.Projekt gesperrt von Computer '{0}' ({1} {2}), letzte Aktivität war am {3}.
-
+ The project index is outdated or broken. Rebuilding index.Der Index ist nicht aktuell oder defekt. Index wird aktualisiert.
-
+ Import FileTextdatei importieren
-
+ Could not read file. The file must be an existing text file.Datei konnte nicht gelesen werden. Bitte wählen Sie eine gültige Datei mit Text aus.
-
+ Please open a document to import the text file into.Bitte öffnen Sie zuerst ein Dokument in novelWriter, in welches Sie den Text importieren möchten.
-
+ Importing the file will overwrite the current content of the document. Do you want to proceed?Das Importieren einer Datei überschreibt den Inhalt des geöffneten Dokuments. Fortfahren?
-
+ Indexing completed in {0} msIndex erstellt in {0} ms
-
+ The project index has been successfully rebuilt.Index wurde erfolgreich aktualisiert.
-
+ Could not initialise the dialog.Der Dialog konnte nicht gestartet werden.
-
+ Do you want to exit novelWriter?Möchten Sie novelWriter beenden?
-
+ Some changes will not be applied until novelWriter has been restarted.Einige Änderungen können erst nach Neustart von novelWriter angewendet werden.
-
+ Could not find the reference for tag '{0}'. It either doesn't exist, or the index is out of date. The index can be updated from the Tools menu, or by pressing {1}.Der Verweis für das Schlagwort „{0}“ konnte nicht gefunden werden. Entweder es existiert nicht oder der Index ist veraltet. Aktualisieren Sie den Index über den Menüpunkt „Extras“ oder mit der Taste {1}.
@@ -1543,652 +1643,652 @@
GuiMainMenu
-
+ &Project&Projekt
-
+ Create or Open ProjectProjekt öffnen oder erstellen
-
+ Save ProjectProjekt speichern
-
+ Close ProjectProjekt schließen
-
+ Project SettingsProjekteinstellungen
-
+ Novel DetailsRomandetails
-
+ Rename ItemElement umbenennen
-
+ Delete ItemElement entfernen
-
+ Empty TrashPapierkorb leeren
-
+ ExitProgramm beenden
-
+ &Document&Dokument
-
+ Open DocumentDokument öffnen
-
+ Save DocumentDokument speichern
-
+ Close DocumentDokument schließen
-
+ View DocumentIn der Ansicht öffnen
-
+ Close Document ViewAnsicht schließen
-
+ Show File DetailsDateiinformationen
-
+ Import Text from FileTextdatei importieren
-
+ &Edit&Bearbeiten
-
+ UndoRückgängig
-
+ RedoWiederherstellen
-
+ CutAusschneiden
-
+ CopyKopieren
-
+ PasteEinfügen
-
+ Select AllAlles markieren
-
+ Select ParagraphAbsatz markieren
-
+ &View&Ansicht
-
+ Go to Tree ViewZur Strukturansicht wechseln
-
+ Go to DocumentZum Dokument wechseln
-
+ Go to OutlineZur Gliederung wechseln
-
+ Navigate BackwardAnsicht zurück
-
+ Navigate ForwardAnsicht weiter
-
+ Focus ModeAblenkungsfrei
-
+ Full Screen ModeVollbild
-
+ &Insert&Einfügen
-
+ DashesQuerstriche
-
+ Short DashGedankenstrich
-
+ Long DashSpiegelstrich
-
+ Horizontal BarHorizontaler Balken
-
+ Figure DashZiffernstrich
-
+ Quote MarksAnführungszeichen
-
+ Left Single QuoteEinfaches Anführungszeichen links
-
+ Right Single QuoteEinfaches Anführungszeichen rechts
-
+ Left Double QuoteDoppeltes Anführungszeichen links
-
+ Right Double QuoteDoppeltes Anführungszeichen rechts
-
+ Alternative ApostropheApostroph (alternativ)
-
+ General PunctuationAllgemeine Zeichen
-
+ EllipsisAuslassungspunkte
-
+ PrimeHochstrich
-
+ Double PrimeDoppelter Hochstrich
-
+ White SpacesLeerzeichen
-
+ Non-Breaking SpaceGeschützes Leerzeichen
-
+ Thin SpaceSchmales Leerzeichen
-
+ Thin Non-Breaking SpaceSchmales geschütztes Leerzeichen
-
+ Other SymbolsAndere Zeichen
-
+ List BulletAufzählung (Punkt)
-
+ Hyphen BulletAufzählung (Bindestrich)
-
+ Flower MarkSternblume
-
+ Per MillePromille
-
+ Degree SymbolGrad
-
+ Minus SignMinus
-
+ Times SignMultiplikation
-
+ Division SignDivision
-
+ Tags and ReferencesSchlagwörter und Verweise
-
+ Special CommentsAndere Kommentare
-
+ Synopsis CommentSynopsis-Kommentar
-
+ Short Description CommentKommentar für Kurzbeschreibung
-
+ Word/Character CountWort-/Seitenanzahl
-
+ Breaks and Vertical SpaceUmbrüche und Leerräume
-
+ Page BreakSeitenumbruch
-
+ Forced Line BreakHarter Zeilenumbruch
-
+ Vertical Space (Single)Senkrechter Abstand (einfach)
-
+ Vertical Space (Multi)Senkrechter Abstand (mehrfach)
-
+ Placeholder TextPlatzhaltertext
-
+ FootnoteFußnote
-
+ &Format&Format
-
+ BoldFett
-
+ ItalicKursiv
-
+ StrikethroughDurchgestrichen
-
+ Wrap Double QuotesDoppelte Anführungszeichen
-
+ Wrap Single QuotesEinfache Anführungszeichen
-
+ More Formats ...Weitere Formate ...
-
+ Bold (Shortcode)Fett (Shortcode)
-
+ Italics (Shortcode)Kursiv (Shortcode)
-
+ Strikethrough (Shortcode)Durchgestrichen (Shortcode)
-
+ UnderlineUnterstrichen
-
+ HighlightHervorheben
-
+ SuperscriptHochgestellt
-
+ SubscriptTiefgestellt
-
+ Novel TitleRomantitel
-
+ Unnumbered ChapterUnnummeriertes Kapitel
-
+ Alternative SceneSzene (Variante)
-
+ Align LeftLinksbündig
-
+ Align CentreZentriert
-
+ Align RightRechtsbündig
-
+ Indent LeftEinrückung links
-
+ Indent RightEinrückung rechts
-
+ Toggle CommentKommentar ein/aus
-
+ Toggle Ignore TextText ignorieren ein/aus
-
+ Remove Block FormatAbsatzformatierung entfernen
-
+ Replace Straight Single QuotesEinfache gerade Anführungszeichen ersetzen
-
+ Replace Straight Double QuotesDoppelte gerade Anführungszeichen ersetzen
-
+ Remove In-Paragraph BreaksZeilenumbrüche in Absätzen entfernen
-
+ &Search&Suche
-
+ FindSuchen
-
+ ReplaceErsetzen
-
+ Find NextNächstes Suchergebnis
-
+ Find PreviousVorheriges Suchergebnis
-
+ Replace NextNächste Fundstelle ersetzen
-
+ Find in ProjectIm Projekt suchen
-
+ &Tools&Werkzeuge
-
+ Check SpellingRechtschreibprüfung
-
+ Spell Check LanguageSprache der Rechtschreibprüfung
-
+ DefaultStandard
-
+ Re-Run Spell CheckRechtschreibprüfung wiederholen
-
+ Project Word ListProjektwörterbuch
-
+ Add DictionariesWörterbücher hinzufügen
-
+ Rebuild IndexIndex aktualisieren
-
+ Backup ProjectBackup erstellen
-
+ Build ManuscriptManuskript erstellen
-
+ Writing StatisticsSchreibstatistiken
-
+ PreferencesEinstellungen
-
+ &Help&Hilfe
-
+ About novelWriterÜber novelWriter
-
+ About Qt5Über Qt5
-
+ User Manual (Online)Benutzerhandbuch (online)
-
+ User Manual (PDF)Benutzerhandbuch (PDF)
-
+ Report an Issue (GitHub)Fehler melden (GitHub)
-
+ Ask a Question (GitHub)Frage stellen (GitHub)
-
+ The novelWriter WebsitenovelWriter-Website
@@ -2196,38 +2296,38 @@
GuiMainStatus
-
-
+
+ NoneKeine
-
+ EditorEditor
-
+ ProjectProjekt
-
+ Session TimeSession-Timer
-
+ Words: {0} ({1})Wörter: {0} ({1})
-
+ Project word count (session change)Wörter im Projekt (Wörter in der aktuellen Session)
-
+ Novel word count (session change)Wörter im Roman (Wörter in der aktuellen Session)
@@ -2235,73 +2335,73 @@
GuiManuscript
-
+ Build ManuscriptManuskript erstellen
-
+ Add New BuildNeuen Build hinzufügen
-
+ Delete Selected BuildAusgewählten Build löschen
-
+ Duplicate Selected BuildAusgewählten Build duplizieren
-
+ Edit Selected BuildAusgewählten Build bearbeiten
-
+ BuildsBuilds
-
+ DetailsDetails
-
+ OutlineGliederung
-
+ PreviewVorschau
-
+ PrintDrucken
-
+ BuildErstellen
-
+ CloseSchließen
-
+ Show Page BreaksSeitenumbrüche anzeigen
-
-
+
+ My ManuscriptMein Manuskript
@@ -2309,57 +2409,57 @@
GuiManuscriptBuild
-
+ Build ManuscriptManuskript erstellen
-
+ Output FormatAusgabeformat
-
+ Table of ContentsInhaltsverzeichnis
-
+ PathPfad
-
+ File NameDateiname
-
+ Reset file name to defaultDateiname auf Standard zurücksetzen
-
+ Open FolderOrdner öffnen
-
+ &Build&Erstellen
-
+ Select FolderVerzeichnis wählen
-
+ Output folder does not exist.Das Ausgabeverzeichnis existiert nicht.
-
+ The file already exists. Do you want to overwrite it?Die Datei ist bereits vorhanden. Möchten Sie sie überschreiben?
@@ -2367,18 +2467,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsRomandetails
-
+ OverviewÜbersicht
-
+ ContentsInhalt
@@ -2386,58 +2486,58 @@
GuiNovelToolBar
-
+ Outline of {0}Gliederung für {0}
-
+ Novel RootHauptordner für den Roman
-
+ RefreshAktualisieren
-
+ Last ColumnLetzte Spalte
-
+ HiddenAusblenden
-
+ Point of View CharacterErzählperspektive
-
+ Focus CharacterCharakter im Fokus
-
+ Novel PlotRomanhandlung
-
-
+
+ Column SizeSpaltenbreite
-
+ More OptionsWeitere Optionen
-
+ Maximum column size in %Maximale Spaltenbreite in %
@@ -2445,7 +2545,7 @@
GuiNovelTree
-
+ No meta dataKeine Meta-Daten
@@ -2453,49 +2553,49 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTitel
-
+ ChapterKapitel
-
+ SceneSzene
-
+ SectionAbschnitt
-
+ DocumentDokument
-
+ StatusStatus
-
+ SynopsisZusammenfassung
-
+ Title DetailsTiteldetails
-
+ Reference TagsReferenzen
@@ -2503,7 +2603,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsSpalten anzeigen
@@ -2511,17 +2611,17 @@
GuiOutlineToolBar
-
+ Outline ofGliederung für
-
+ RefreshAktualisieren
-
+ Export CSVCSV exportieren
@@ -2529,7 +2629,7 @@
GuiOutlineTree
-
+ Save Outline AsGliederung speichern
@@ -2537,609 +2637,609 @@
GuiPreferences
-
-
+
+ PreferencesEinstellungen
-
+ SearchSuchen
-
+ GeneralAllgemein
-
+ AppearanceDarstellung
-
+ Display languageAnzeigesprache
-
-
+
+ Requires restart to take effect.Neustart erforderlich.
-
+ Colour themeFarbschema (Anwendung)
-
+ General colour theme and icons.Allgemeines Farbschema und Icons.
-
+ Application fontSchriftart (Anwendung)
-
+ Hide vertical scroll bars in main windowsVertikale Scrollbalken verbergen
-
-
+
+ Scrolling available with mouse wheel and keys only.Beschränkt das Scrollen auf Mausrad und Tastatur.
-
+ Hide horizontal scroll bars in main windowsHorizontale Scrollbalken verbergen
-
+ Use the system's font selection dialogSchriftauswahl des Betriebssystems verwenden
-
+ Turn off to use the Qt font dialog, which may have more options.Deaktivieren, um die Qt-Schriftauswahl zu verwenden. Bietet möglicherweise mehr Optionen.
-
+ Document StyleDarstellung (Dokumente)
-
+ Document colour themeFarbschema (Dokumente)
-
+ Colour theme for the editor and viewer.Farbschema für Editor und Ansicht.
-
+ Document fontSchriftart (Dokumente)
-
-
-
+
+
+ Applies to both document editor and viewer.Gilt für Editor und Ansicht.
-
+ Emphasise partition and chapter labelsDokumente mit höherer Hierarchie optisch hervorheben
-
+ Makes them stand out in the project tree.Bessere Sichtbarkeit in der Strukturansicht.
-
+ Show full path in document headerVollständige Dokumentenhierarchie im Editor anzeigen
-
+ Add the parent folder names to the header.Zeigt die übergeordneten Elemente an.
-
+ Include project notes in status bar word countStatusleiste: Wörter in Notizen mitzählen
-
+ BehaviourVerhalten
-
+ Save document intervalDokument automatisch speichern
-
+ How often the document is automatically saved.Wie oft das geöffnete Dokument automatisch gespeichert wird.
-
-
+
+ secondsSekunden
-
+ Save project intervalProjekt automatisch speichern
-
+ How often the project is automatically saved.Wie oft das gesamte Projekt automatisch gespeichert wird.
-
+ Ask before exiting novelWriterVor dem Beenden von novelWriter fragen
-
+ Only applies when a project is open.Nur relevant, wenn ein Projekt geöffnet ist.
-
+ Project BackupBackups
-
+ BrowseAuswählen
-
+ Backup storage locationVerzeichnis für Backups
-
-
+
+ Path: {0}Pfad: {0}
-
+ Run backup when the project is closedBackup erstellen, wenn ein Projekt geschlossen wird
-
+ Can be overridden for individual projects in Project Settings.Kann auch für einzelne Projekte in den Projekteinstellungen festgelegt werden.
-
+ Ask before running backupJedes Mal nachfragen, bevor ein Backup erstellt wird
-
+ If off, backups will run in the background.Falls nein: Backups werden automatisch im Hintergrund erstellt.
-
+ Session TimerSession-Timer
-
+ Pause the session timer when not writingDen Timer bei Inaktivität pausieren
-
+ Also pauses when the application window does not have focus.Pausiert auch, wenn das Programmfenster nicht den Fokus hat.
-
+ Editor inactive time before pausing timerPausiert nach Inaktivität
-
+ User activity includes typing and changing the content.Dies berücksichtigt nur Änderungen im Texteditor.
-
+ minutesMinuten
-
+ WritingSchreiben
-
+ Text FlowTextfluss
-
+ Maximum text width in "Normal Mode"Maximale Textbreite im normalen Modus
-
+ Set to 0 to disable this feature.„0“ deaktiviert diese Funktion.
-
-
-
-
+
+
+
+ pxpx
-
+ Maximum text width in "Focus Mode"Maximale Textbreite im Modus „Ablenkungsfrei“
-
+ The maximum width cannot be disabled.Die maximale Breite kann nicht deaktiviert werden.
-
+ Hide document footer in "Focus Mode"Fußzeile verbergen im Modus „Ablenkungsfrei“
-
+ Hide the information bar in the document editor.Verbirgt die Informationsleiste im Editor.
-
+ Justify the text marginsBlocksatz
-
+ Minimum text marginMindestabstand nach außen
-
+ Tab widthTabulator
-
+ The width of a tab key press in the editor and viewer.Die Breite eines Tabulators im Editor und in der Ansicht.
-
+ Text EditingTextbearbeitung
-
+ Spell check languageRechtschreibprüfung
-
+ Available languages are determined by your system.Verfügbare Sprachen werden vom Betriebssystem bereitgestellt.
-
+ Auto-select word under cursorWort mit Eingabezeiger gilt als „markiert“
-
+ Apply formatting to word under cursor if no selection is made.Wenn nichts markiert ist, werden Formatierung auf das Wort mit der Eingabemarke angewendet.
-
+ Show tabs and spacesTabs und Leerzeilen anzeigen
-
+ Show line endingsZeilenende anzeigen
-
+ Editor ScrollingBildlauf im Editor
-
+ Scroll past end of the documentAm Ende des Dokuments weiterscrollen
-
+ Also centres the cursor when scrolling.Eingabemarke wird beim Scrollen zentriert.
-
+ Typewriter style scrolling when you typeWie mit einer Schreibmaschine scrollen
-
+ Keeps the cursor at a fixed vertical position.Die Eingabemarke bleibt immer auf der gleichen Linie.
-
+ Minimum position for Typewriter scrollingMindesthöhe für den Schreibmaschinen-Effekt
-
+ Percentage of the editor height from the top.Prozent der Editor-Höhe, von oben.
-
+ Text HighlightingHervorhebung
-
+ NoneKeine
-
+ Single QuotesEinfache Anführungszeichen
-
+ Double QuotesDoppelte Anführungszeichen
-
+ BothBeide
-
+ Highlight dialogueWörtliche Rede hervorheben
-
+ Applies to the selected quote styles.Wird für die ausgewählten Anführungszeichen angewendet.
-
+ Alternative dialogue symbolsAlternative Zeichen für wörtliche Rede
-
+ Custom highlighting of dialogue text.Benutzerdefinierte Hervorhebung von wörtlicher Rede.
-
+ Allow open-ended dialogueNicht geschlossene Anführungszeichen erlauben
-
+ Highlight dialogue line with no closing quote.Wörtliche Rede ohne schließendes Anführungszeichen hervorheben.
-
+ Dialogue line symbolsZeichen für Dialogzeile
-
+ Lines starting with any of these symbols are dialogue.Zeilen, die mit einem dieser Zeichen beginnen, werden als wörtliche Rede behandeln.
-
+ Narrator break symbolZeichen für Erzähleinschub
-
+ Symbol to indicate a narrator break in dialogue.Zeichen für einen Erzähleinschub innerhalb von wörtlicher Rede.
-
+ Alternating dialogue/narration symbolWechseln zwischen wörtlicher Rede und Erzählung
-
+ Alternates dialogue highlighting within any paragraph.Dieses Zeichen wechselt zwischen wörtlicher Rede und Erzählung innerhalb eines Absatzes.
-
+ Add highlight colour to emphasised textFormatierten Text hervorheben
-
-
+
+ Applies to the document editor only.Gilt nur für den Editor.
-
+ Highlight multiple or trailing spacesMehrere oder nachfolgende Leerzeichen hervorheben
-
+ Text AutomationAutomatisierung
-
+ Auto-replace text as you typeText automatisch ersetzen
-
+ Allow the editor to replace symbols as you type.Ersetzen von Zeichen während der Eingabe.
-
+ Auto-replace single quotesEinfache Anführungszeichen ersetzen
-
-
+
+ Try to guess which is an opening or a closing quote.Öffnende und schließende Anführungszeichen werden automatisch erkannt.
-
+ Auto-replace double quotesDoppelte Anführungszeichen ersetzen
-
+ Auto-replace dashesBindestriche ersetzen
-
+ Double and triple hyphens become short and long dashes.Doppelte und dreifache Bindestriche werden zu Gedankenstrichen und Geviertstrichen umgewandelt.
-
+ Auto-replace dotsPunkte ersetzen
-
+ Three consecutive dots become ellipsis.Drei aufeinander folgende Punkte werden zu Auslassungspunkten umgewandelt.
-
+ Insert non-breaking space beforeGeschütztes Leerzeichen einfügen vor
-
+ Automatically add space before any of these symbols.Vor diesen Zeichen wird automatisch ein Leerzeichen eingefügt.
-
+ Insert non-breaking space afterGeschütztes Leerzeichen einfügen nach
-
+ Automatically add space after any of these symbols.Nach diesen Zeichen wird automatisch ein Leerzeichen eingefügt.
-
+ Use thin space insteadSchmales Leerzeichen verwenden
-
+ Inserts a thin space instead of a regular space.Schmales Leerzeichen anstelle eines normalen Leerzeichens verwenden.
-
+ Quotation StyleAnführungszeichen
-
+ Single quote open styleEinfaches Anführungszeichen öffnend
-
+ The symbol to use for a leading single quote.Beginn von wörtlicher Rede mit einfachen Anführungszeichen.
-
+ Single quote close styleEinfaches Anführungszeichen schließend
-
+ The symbol to use for a trailing single quote.Ende von wörtlicher Rede mit einfachen Anführungszeichen.
-
+ Double quote open styleDoppeltes Anführungszeichen öffnend
-
+ The symbol to use for a leading double quote.Beginn von wörtlicher Rede mit doppelten Anführungszeichen.
-
+ Double quote close styleDoppeltes Anführungszeichen schließend
-
+ The symbol to use for a trailing double quote.Ende von wörtlicher Rede mit doppelten Anführungszeichen.
-
+ Backup DirectoryBackup-Verzeichnis
@@ -3147,27 +3247,27 @@
GuiProjectSearch
-
+ Project SearchProjektsuche
-
+ Case SensitiveGroß-/Kleinschreibung beachten
-
+ Whole Words OnlyNur ganze Wörter
-
+ RegEx ModeRegEx-Modus
-
+ Search forSuchen nach
@@ -3175,28 +3275,28 @@
GuiProjectSettings
-
-
+
+ Project SettingsProjekteinstellungen
-
+ SettingsEinstellungen
-
+ StatusStatus
-
+ ImportanceWichtigkeit
-
+ Auto-ReplaceErsetzen
@@ -3204,47 +3304,47 @@
GuiProjectToolBar
-
+ Project ContentProjektinhalt
-
+ Quick LinksSchnellzugriff
-
+ Move UpNach oben
-
+ Move DownNach unten
-
+ Add ItemElement hinzufügen
-
+ Expand AllAlle ausklappen
-
+ Collapse AllAlle einklappen
-
+ Empty TrashPapierkorb leeren
-
+ More OptionsWeitere Optionen
@@ -3252,93 +3352,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!Konnte das Dokument oder den Ordner nirgends hinzufügen!
-
+ Cannot add new files or folders to the Trash folder.Im Papierkorb kann kein neuer Ordner erstellt werden.
-
+ New NoteNeue Notiz
-
+ New ChapterNeues Kapitel
-
+ New SceneNeue Szene
-
+ New DocumentNeues Dokument
-
+ New FolderNeuer Ordner
-
+ No documents selected for merging.Keine Dokumente zum Zusammenführen ausgewählt.
-
+ MergedZusammengeführt
-
-
+
+ Could not write document content.Inhalt des Dokuments konnte nicht geschrieben werden.
-
+ Do you want to duplicate this document?Soll dieses Dokument dupliziert werden?
-
+ Do you want to duplicate this item and all child items?Soll dieses Element und alle untergeordneten Elemente dupliziert werden?
-
+ Could not duplicate all items.Nicht alle Elemente konnten dupliziert werden.
-
+ Root folders can only be deleted when they are empty.Hauptordner können nur gelöscht werden, wenn sie leer sind.
-
+ Permanently delete selected item(s)?Ausgewählte Elemente endgültig löschen?
-
+ Move selected item(s) to Trash?Ausgewählte Elemente in den Papierkorb legen?
-
+ The Trash folder is already empty.Papierkorb ist bereits leer.
-
+ Permanently delete {0} file(s) from Trash?{0} Element(e) endgültig löschen?
@@ -3346,7 +3446,7 @@
GuiQuoteSelect
-
+ Select Quote StyleAnführungszeichen auswählen
@@ -3354,42 +3454,42 @@
GuiSideBar
-
+ Project Tree ViewProjektstruktur
-
+ Novel Tree ViewRomanstruktur
-
+ Project SearchProjektsuche
-
+ Novel Outline ViewGliederung
-
+ Build ManuscriptManuskript erstellen
-
+ Novel DetailsRomandetails
-
+ Writing StatisticsSchreibstatistiken
-
+ SettingsEinstellungen
@@ -3397,37 +3497,37 @@
GuiWelcome
-
+ WelcomeWillkommen
-
+ ListListe
-
+ NewNeu
-
+ BrowseAuswählen
-
+ CancelAbbrechen
-
+ CreateErstellen
-
+ OpenÖffnen
@@ -3435,43 +3535,43 @@
GuiWordList
-
-
+
+ Project Word ListProjektwörterbuch
-
+ Import words from text fileWörter aus Textdatei importieren
-
+ Export words to text fileWörter als Textdatei exportieren
-
+ Add WordWort hinzufügen
-
+ Remove WordWort entfernen
-
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.Hinweis: Die Importdatei muss eine reine Textdatei mit UTF-8 oder ASCII-Kodierung sein.
-
+ Import FileDatei importieren
-
+ Export FileDatei exportieren
@@ -3479,147 +3579,147 @@
GuiWritingStats
-
+ Writing StatisticsStatistiken
-
+ Session StartBeginn
-
+ LengthDauer
-
+ IdleInaktiv
-
+ WordsWörter
-
+ HistogramHistogramm
-
+ Sum TotalsGesamt
-
+ Total Time:Dauer:
-
+ Idle Time:Inaktiv:
-
+ Filtered Time:Dauer mit Filtern:
-
+ Novel Word Count:Wörter im Roman:
-
+ Notes Word Count:Wörter in den Notizen:
-
+ Total Word Count:Wörter gesamt:
-
+ FiltersFilter
-
+ Count novel filesRomandokumente mitzählen
-
+ Count note filesNotizen mitzählen
-
+ Hide zero word countUnproduktive Sessions verbergen
-
+ Hide negative word countNegative Sessions verbergen
-
+ Group entries by dayNach Tag gruppieren
-
+ Show idle timeInaktivität anzeigen
-
+ Word count cap for the histogramMaximale Wörterzahl für das Histogramm
-
+ Save AsSpeichern als
-
+ JSON Data File (.json)JSON-Datei (.json)
-
+ CSV Data File (.csv)CSV-Datei (.csv)
-
+ JSON Data FileJSON-Datei
-
+ CSV Data FileCSV-Datei
-
+ Save Data AsSpeichern als
-
+ {0} file successfully written to:{0} erfolgreich gespeichert unter:
-
+ Failed to write {0} file.Fehler beim Speichern der {0}.
@@ -3627,156 +3727,156 @@
NWProject
-
+ Could not delete document file.Datei konnte nicht gelöscht werden.
-
+ Not a known project file format.Kein bekanntes Format für Projektdateien.
-
-
-
-
+
+
+
+ Path: {0}Pfad: {0}
-
+ Project file not found.Projektdatei nicht gefunden.
-
+ Failed to open project.Projekt konnte nicht geöffnet werden.
-
+ UnknownUnbekannt
-
+ Project file does not appear to be a novelWriterXML file.Projektdatei scheint keine gültiges novelWriterXML zu sein.
-
+ Unknown or unsupported novelWriter project file format. The project cannot be opened by this version of novelWriter. The file was saved with novelWriter version {0}.Unbekanntes oder nicht unterstütztes novelWriter-Projektformat. Das Projekt kann von dieser novelWriter-Version nicht geöffnet werden. Die Datei wurde gespeichert in Version {0}.
-
+ Failed to parse project xml.XML-Datei des Projektes konnte nicht gelesen werden.
-
+ The file format of your project is about to be updated. If you proceed, older versions of novelWriter will no longer be able to open this project. Continue?Das Dateiformat Ihres Projekts soll aktualisiert werden. Wenn Sie fortfahren, werden ältere Versionen von novelWriter dieses Projekt nicht mehr öffnen können. Fortfahren?
-
+ This project was saved by a newer version of novelWriter, version {0}. This is version {1}. If you continue to open the project, some attributes and settings may not be preserved, but the overall project should be fine. Continue opening the project?Dieses Projekt wurde in einer aktuelleren novelWriter-Version gespeichert ({0}). Die installierte Version ist {1}. Falls Sie das Projekt dennoch öffnen möchten, könnten einige Eigenschaften und Einstellungen möglicherweise nicht beibehalten werden. Abgesehen davon sollte das Projekt jedoch in Ordnung sein. Projekt öffnen?
-
+ RecoveredWiederhergestellt
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.{0} verwaiste Datei(en) im Projekt gefunden. {1} Datei(en) wurden wiederhergestellt.
-
+ Opened Project: {0}Projekt geöffnet: {0}
-
+ There is no project open.Es ist kein Projekt offen.
-
+ Failed to save project.Projekt konnte nicht gespeichert werden.
-
+ Saved Project: {0}Projekt gespeichert: {0}
-
+ Backing up project ...Backup wird erstellt ...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Ein Backup konnte nicht erstellt werden, da kein Projektname angegeben ist. Bitte legen Sie einen Projektnamen in den Projekteinstellungen fest.
-
+ Could not create backup folder.Backup-Verzeichnis konnte nicht erstellt werden.
-
+ Created a backup of your project of size {0}B.Ein Backup des Projekts mit der Größe {0}B wurde erstellt.
-
+ Could not write backup archive.Backup-Archiv konnte nicht erstellt werden.
-
+ Project backed up to '{0}'Backup erstellt: {0}
-
-
+
+ NewNeu
-
+ NoteNotiz
-
+ DraftEntwurf
-
+ FinishedFertig
-
+ MinorUnwesentlich
-
+ MajorWichtig
-
+ MainZentral
@@ -3784,7 +3884,7 @@
NovelSelector
-
+ All Novel FoldersAlle Romanordner
@@ -3792,99 +3892,99 @@
ProjectBuilder
-
+ The target folder is not empty. Please choose another folder.Das Zielverzeichnis ist nicht leer. Bitte wählen Sie ein anderes Verzeichnis.
-
+ An error occurred while trying to create the project.Beim Erstellen des Projekts ist ein Fehler aufgetreten.
-
+ New ProjectNeues Projekt
-
+ Title PageTitelseite
-
+ AddressAnschrift
-
+ ByVon
-
+ Word CountWörter
-
+ Summary of the chapter.Zusammenfassung des Kapitels.
-
+ Summary of the scene.Zusammenfassung der Szene.
-
+ A short description.Eine kurze Beschreibung.
-
+ Chapter {0}Kapitel {0}
-
-
+
+ Scene {0}Szene {0}
-
+ Main PlotHaupthandlung
-
+ ProtagonistProtagonist
-
+ Main LocationHauptschauplatz
-
-
+
+ The target folder already exists. Please choose another folder.Das Zielverzeichnis existiert bereits. Bitte wählen Sie ein anderes Verzeichnis.
-
+ Could not copy project files.Projektdateien konnten nicht kopiert werden.
-
+ Failed to create a new example project.Beispielprojekt konnte nicht erstellt werden.
-
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.Neues Beispielprojekt konnte nicht erstellt werden. Die dafür benötigten Daten konnten nicht gefunden werden. Anscheinend fehlen die Beispieldaten in Ihrer Installation.
@@ -3892,7 +3992,7 @@
QDialogButtonBox
-
+ OKOK
@@ -3900,27 +4000,27 @@
QGnomeTheme
-
+ &OK&OK
-
+ &Save&Speichern
-
+ &Cancel&Abbrechen
-
+ &Close&Schließen
-
+ Close without SavingSchließen ohne speichern
@@ -3928,218 +4028,115 @@
QPlatformTheme
-
+ OKOK
-
+ SaveSpeichern
-
+ Save AllAlle speichern
-
+ OpenÖ&ffnen
-
+ &Yes&Ja
-
+ Yes to &AllJa für &alle
-
+ &No&Nein
-
+ N&o to AllN&ein für alle
-
+ AbortAbbrechen
-
+ RetryErneut versuchen
-
+ IgnoreIgnorieren
-
+ CloseSchließen
-
+ Cancel&Abbrechen
-
+ DiscardVerwerfen
-
+ HelpHilfe
-
+ ApplyAnwenden
-
+ ResetZurücksetzen
-
+ Restore DefaultsStandard wiederherstellen
-
- Shape
-
-
- Square
- Quadrat
-
-
-
- Triangle
- Dreieck
-
-
-
- Nabla
- Nabla
-
-
-
- Diamond
- Raute
-
-
-
- Pentagon
- Fünfeck
-
-
-
- Hexagon
- Sechseck
-
-
-
- Star
- Stern
-
-
-
- Pacman
- Pacman
-
-
-
- 1/4 Circle
- 1/4-Kreis
-
-
-
- Half Circle
- Halbkreis
-
-
-
- 3/4 Circle
- 3/4-Kreis
-
-
-
- Full Circle
- Voller Kreis
-
-
-
- 1 Bar
- 1 Balken
-
-
-
- 2 Bars
- 2 Balken
-
-
-
- 3 Bars
- 3 Balken
-
-
-
- 4 Bars
- 4 Balken
-
-
-
- 1 Block
- 1 Block
-
-
-
- 2 Blocks
- 2 Blöcke
-
-
-
- 3 Blocks
- 3 Blöcke
-
-
-
- 4 Blocks
- 4 Blöcke
-
- SharedData
-
+ novelWriter Project File or Zip FilenovelWriter-Projektdatei oder Zip-Datei
-
+ novelWriter Project FilenovelWriter-Projektdatei
-
+ Open ProjectProjekt öffnen
-
+ Select FontSchriftart auswählen
@@ -4147,57 +4144,57 @@
Stats
-
+ CharactersZeichen
-
+ Characters in TextZeichen im Text
-
+ Characters in HeadingsZeichen in Überschriften
-
+ ParagraphsAbsätze
-
+ HeadingsÜberschriften
-
+ Characters, No SpacesZeichen ohne Leerzeichen
-
+ Characters in Text, No SpacesZeichen im Text ohne Leerzeichen
-
+ Characters in Headings, No SpacesZeichen in Überschriften ohne Leerzeichen
-
+ WordsWörter
-
+ Words in TextWörter im Text
-
+ Words in HeadingsWörter in Überschriften
@@ -4205,42 +4202,42 @@
VersionInfoWidget
-
+ Latest Version: {0}Aktuelle Version: {0}
-
+ Checking ...Überprüfung läuft ...
-
+ Download from {0}Download: {0}
-
+ VersionVersion
-
+ Released onVeröffentlicht am
-
+ Release NotesVersionshinweise
-
+ Check NowJetzt prüfen
-
+ FailedFehler
@@ -4248,57 +4245,57 @@
_ContentsPage
-
+ Table of ContentsInhaltsverzeichnis
-
+ TitleTitel
-
+ WordsWörter
-
+ PagesSeiten
-
+ PageSeite
-
+ ProgressFortschritt
-
+ Words per pageWörter pro Seite
-
+ First page offsetOffset erste Seite
-
+ Chapters on odd pagesKapitel auf ungeraden Seiten
-
+ UntitledOhne Titel
-
+ ENDENDE
@@ -4306,32 +4303,32 @@
_DetailsWidget
-
+ SettingEinstellung
-
+ ValueWert
-
+ NameName
-
+ SelectionAuswahl
-
+ TitleTitel
-
+ HiddenAusgeblendet
@@ -4339,37 +4336,37 @@
_FilterTab
-
+ Included in manuscriptIm Manuskript enthalten
-
+ Excluded from manuscriptVom Manuskript ausgeschlossen
-
+ Always includedImmer enthalten
-
+ Always excludedImmer ausgeschlossen
-
+ Reset to defaultAuf Standard zurücksetzen
-
+ Mark selection asAuswahl markieren als
-
+ Select Root FoldersHauptordner wählen
@@ -4377,22 +4374,22 @@
_GuiAlert
-
+ InformationInformation
-
+ WarningWarnung
-
+ ErrorFehler
-
+ QuestionFrage
@@ -4400,84 +4397,84 @@
_HeadingsTab
-
+ HideAusblenden
-
-
+
+ Editing: {0}Bearbeite: {0}
-
-
+
+ NoneKeine
-
+ TitleTitel
-
+ Chapter NumberKapitelnummer
-
+ Chapter Number (Word)Kapitelnummer (Wort)
-
+ Chapter Number (Upper Case Roman)Kapitelnummer (Römisch in Großbuchstaben)
-
+ Chapter Number (Lower Case Roman)Kapitelnummer (Römisch in Kleinbuchstaben)
-
+ Scene Number (In Chapter)Szenennummer (im Kapitel)
-
+ Scene Number (Absolute)Szenennummer (Absolut)
-
+ Point of View CharacterErzählperspektive
-
+ Focus CharacterCharakter im Fokus
-
+ InsertEinfügen
-
+ ApplyAnwenden
-
+ CentreZentriert
-
+ Page BreakSeitenumbruch
@@ -4485,117 +4482,117 @@
_NewProjectForm
-
+ RequiredErforderlich
-
+ OptionalOptional
-
+ Create a fresh projectNeues Projekt erstellen
-
+ Create an example projectBeispielprojekt erstellen
-
+ Copy an existing projectVorhandenes Projekt kopieren
-
+ Project NameProjektname
-
+ AuthorAutor
-
+ Project PathProjektpfad
-
+ Prefill ProjectProjekt vorbereiten
-
+ Set to 0 to only add scenesAuf 0 setzen um nur Szenen hinzuzufügen
-
+ Add {0} chapter documents{0} Kapiteldokumente hinzufügen
-
+ Add {0} scene documents (to each chapter){0} Szenendokumente hinzufügen (pro Kapitel)
-
+ Add a folder for plot notesOrdner hinzufügen: Notizen für Handlungsstränge
-
+ Add a folder for character notesOrdner hinzufügen: Notizen für Charaktere
-
+ Add a folder for location notesOrdner hinzufügen: Notizen für Schauplätze
-
+ Add example notes to the aboveBeispielnotizen zur obigen Auswahl hinzufügen
-
+ Chapters and ScenesKapitel und Szenen
-
+ Project NotesProjektnotizen
-
+ Create New ProjectNeues Projekt erstellen
-
+ Select Project FolderSpeicherort wählen
-
+ Fresh ProjectNeues Projekt
-
+ Example ProjectBeispielprojekt
-
+ Template: {0}Vorlage: {0}
@@ -4603,7 +4600,7 @@
_NewProjectPage
-
+ A project name is required.Ein Projektname ist erforderlich.
@@ -4611,27 +4608,27 @@
_OpenProjectPage
-
+ The project path is not reachable.Der Projektpfad ist nicht erreichbar.
-
+ PathPfad
-
+ Remove '{0}' from the recent projects list? The project files will not be deleted.„{0}“ von der Liste der zuletzt geöffneten Projekte entfernen? Ihre Daten werden nicht gelöscht.
-
+ Open ProjectProjekt öffnen
-
+ Remove ProjectProjekt entfernen
@@ -4639,54 +4636,54 @@
_OverviewPage
-
+ ProjectProjekt
-
-
+
+ NameName
-
+ RevisionsRevisionen
-
+ Editing TimeBearbeitungszeit
-
-
+
+ Word CountWörter
-
+ In Novelsin Romanen
-
+ In Notesin Notizen
-
+ Selected NovelAusgewählter Roman
-
+ ChaptersKapitel
-
+ ScenesSzenen
@@ -4694,27 +4691,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Zum Generieren den "Vorschau"-Button anklicken ...
-
+ Processing ...In Bearbeitung ...
-
+ DoneFertig
-
+ BuiltErstellt
-
+ No PreviewKeine Vorschau
@@ -4722,12 +4719,12 @@
_ProjectListModel
-
+ Word CountWörter
-
+ Last OpenedZuletzt geöffnet
@@ -4735,22 +4732,22 @@
_ReplacePage
-
+ Text Auto-Replace for Preview and BuildTextersetzung für Vorschau und Build
-
+ KeywordStichwort
-
+ Replace WithErsetzen durch
-
+ Select item to editElement zum Bearbeiten auswählen
@@ -4758,49 +4755,49 @@
_SettingsPage
-
+ Project nameProjektname
-
+ Changing this will affect the backup path.Änderungen wirken sich auf den Backup-Pfad aus.
-
+ Author(s)Autor(en)
-
-
+
+ Only used when building the manuscript.Wird nur beim Manuskript-Build verwendet.
-
+ Project languageProjektsprache
-
+ DefaultStandard
-
+ Spell check languageRechtschreibprüfung
-
-
+
+ Overrides main preferences.Überschreibt die Einstellungen.
-
+ Disable backup on closeKein Backup beim Schließen des Projekts
@@ -4808,132 +4805,132 @@
_StatusPage
-
+ StatusStatus
-
+ Novel Document Status LevelsRomandokumente: Status
-
+ ImportanceWichtigkeit
-
+ Project Note Importance LevelsProjektnotizen: Wichtigkeit
-
+ Not in useNicht verwendet
-
+ Used onceEinmal verwendet
-
+ Used by {0} itemsVerwendet von {0} Elementen
-
+ Select ColourFarbe wählen
-
+ LabelEtikett
-
+ UsageVorkommen
-
+ Add LabelEtikett hinzufügen
-
+ Delete LabelEtikett entfernen
-
+ Move UpNach oben
-
+ Move DownNach unten
-
+ Import LabelsEtiketten importieren
-
+ Export LabelsEtiketten exportieren
-
+ Select item to editElement zum Bearbeiten auswählen
-
+ ColourFarbe
-
+ Circles ...Kreise ...
-
+ Bars ...Balken ...
-
+ Blocks ...Blöcke ...
-
+ ShapeForm
-
+ New ItemNeuer Eintrag
-
+ Cannot delete a status item that is in use.Element ist in Verwendung und konnte nicht gelöscht werden.
-
+ Import FileDatei importieren
-
+ Export FileDatei exportieren
@@ -4941,121 +4938,121 @@
_TreeContextMenu
-
+ Empty TrashPapierkorb leeren
-
+ RenameUmbenennen
-
+ DuplicateDuplizieren
-
+ Open DocumentDokument öffnen
-
+ View DocumentDokument anzeigen
-
+ Create New ...Neu erstellen ...
-
+ Rename to HeadingUmbenennen: Überschrift übernehmen
-
+ Set Active to ...Aktiv setzen auf ...
-
+ Toggle ActiveAktivieren ein/aus
-
+ Set Status to ...Status setzen auf ...
-
-
+
+ Manage Labels ...Beschriftungen verwalten ...
-
+ Set Importance to ...Wichtigkeit setzen auf ...
-
+ Transform ...Umwandeln ...
-
-
-
-
+
+
+
+ Convert to {0}Umwandeln in {0}
-
+ Merge Child Items into SelfUnterelemente in dieses Dokument zusammenführen
-
+ Merge Child Items into NewUnterelemente in neues Dokument zusammenführen
-
+ Merge Documents in FolderDokumente im Ordner zusammenführen
-
+ Split Document by HeadingsDokument nach Überschriften aufteilen
-
+ Expand AllAlle aufklappen
-
+ Collapse AllAlle zuklappen
-
+ Delete PermanentlyEndgültig löschen
-
+ Move to TrashIn den Papierkorb legen
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Möchten Sie den Ordner umwandeln in {0}? Diese Aktion kann nicht rückgängig gemacht werden.
@@ -5063,7 +5060,7 @@
_UpdatableMenu
-
+ From TemplateVon Vorlage
@@ -5071,12 +5068,12 @@
_ViewPanelBackRefs
-
+ DocumentDokument
-
+ First HeadingErste Überschrift
@@ -5084,27 +5081,27 @@
_ViewPanelKeyWords
-
+ TagSchlagwort
-
+ ImportanceWichtigkeit
-
+ DocumentDokument
-
+ HeadingÜberschrift
-
+ Short DescriptionKurzbeschreibung
diff --git a/i18n/nw_en_US.ts b/i18n/nw_en_US.ts
index 6f9f2377..10603ac8 100644
--- a/i18n/nw_en_US.ts
+++ b/i18n/nw_en_US.ts
@@ -4,277 +4,277 @@
Builds
-
+ Document FiltersDocument Filters
-
+ Novel DocumentsNovel Documents
-
+ Project NotesProject Notes
-
+ Inactive DocumentsInactive Documents
-
+ HeadingsHeadings
-
+ Partition FormatPartition Format
-
+ Chapter FormatChapter Format
-
+ Unnumbered FormatUnnumbered Format
-
+ Scene FormatScene Format
-
+ Alt. Scene FormatAlt. Scene Format
-
+ Section FormatSection Format
-
+ Title StylingTitle Styling
-
+ Partition StylingPartition Styling
-
+ Chapter StylingChapter Styling
-
+ Scene StylingScene Styling
-
+ Text ContentText Content
-
+ Include SynopsisInclude Synopsis
-
+ Include CommentsInclude Comments
-
+ Include KeywordsInclude Keywords
-
+ Include Body TextInclude Body Text
-
+ Ignore These KeywordsIgnore These Keywords
-
+ Add Titles for NotesAdd Titles for Notes
-
+ Text FormatText Format
-
+ Text FontText Font
-
+ Line HeightLine Height
-
+ Justify Text MarginsJustify Text Margins
-
+ Replace Unicode CharactersReplace Unicode Characters
-
+ Replace Tabs with SpacesReplace Tabs with Spaces
-
+ Preserve Hard Line BreaksPreserve Hard Line Breaks
-
+ Apply Dialogue HighlightingApply Dialog Highlighting
-
+ First Line IndentFirst Line Indent
-
+ Enable IndentEnable Indent
-
+ Indent WidthIndent Width
-
+ Indent First ParagraphIndent First Paragraph
-
+ Text MarginsText Margins
-
+ Title and PartitionTitle and Partition
-
+ Heading 1 and ChapterHeading 1 and Chapter
-
+ Heading 2 and SceneHeading 2 and Scene
-
+ Heading 3 and SectionHeading 3 and Section
-
+ Heading 4Heading 4
-
+ Text ParagraphText Paragraph
-
+ Scene SeparatorScene Separator
-
+ Page LayoutPage Layout
-
+ UnitUnit
-
+ Page SizePage Size
-
+ Page MarginsPage Margins
-
+ Document StyleDocument Style
-
+ Page HeaderPage Header
-
+ Page Counter OffsetPage Counter Offset
-
+ Add Colours to HeadingsAdd Colors to Headings
-
+ Increase Size of HeadingsIncrease Size of Headings
-
+ Bold HeadingsBold Headings
-
+ HTML OptionsHTML Options
-
+ Add CSS StylesAdd CSS Styles
-
+ Preserve Tab CharactersPreserve Tab Characters
@@ -282,72 +282,72 @@
Common
-
+ in the futurein the future
-
+ just nowjust now
-
+ a minute agoa minute ago
-
+ {0} minutes ago{0} minutes ago
-
+ an hour agoan hour ago
-
+ {0} hours ago{0} hours ago
-
+ a day agoa day ago
-
+ {0} days ago{0} days ago
-
+ a week agoa week ago
-
+ {0} weeks ago{0} weeks ago
-
+ a month agoa month ago
-
+ {0} months ago{0} months ago
-
+ a year agoa year ago
-
+ {0} years ago{0} years ago
@@ -355,441 +355,541 @@
Constant
-
-
+
+ TitleTitle
-
+ Heading 1 (Partition)Heading 1 (Partition)
-
+ Heading 2 (Chapter)Heading 2 (Chapter)
-
+ Heading 3 (Scene)Heading 3 (Scene)
-
+ Heading 4 (Section)Heading 4 (Section)
-
+ Text ParagraphText Paragraph
-
+ Scene SeparatorScene Separator
-
-
-
+
+
+ NoneNone
-
+ NovelNovel
-
-
+
+ PlotPlot
-
-
+
+ CharactersCharacters
-
-
+
+ LocationsLocations
-
-
+
+ TimelineTimeline
-
-
+
+ ObjectsObjects
-
-
+
+ EntitiesEntities
-
-
-
+
+
+ CustomCustom
-
+ ArchiveArchive
-
+ TemplatesTemplates
-
+ TrashTrash
-
-
+
+ Novel DocumentNovel Document
-
-
+
+ Project NoteProject Note
-
+ Root FolderRoot Folder
-
+ FolderFolder
-
+ Novel Title PageNovel Title Page
-
+ Novel ChapterNovel Chapter
-
+ Novel SceneNovel Scene
-
+ Novel SectionNovel Section
-
+ ActiveActive
-
+ InactiveInactive
-
+ TagTag
-
+ Point of ViewPoint of View
-
-
+
+ FocusFocus
-
+ StoryStory
-
+ MentionsMentions
-
+ LevelLevel
-
+ DocumentDocument
-
+ LineLine
-
+ StatusStatus
-
+ CharsChars
-
+ WordsWords
-
+ ParsPars
-
+ POVPOV
-
+ SynopsisSynopsis
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ Microsoft Word Document (.docx)Microsoft Word Document (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)novelWriter Markup (.txt)
-
+ Standard Markdown (.md)Standard Markdown (.md)
-
+ Extended Markdown (.md)Extended Markdown (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter Markup (.json)
-
+
+ Square
+ Square
+
+
+
+ Triangle
+ Triangle
+
+
+
+ Nabla
+ Nabla
+
+
+
+ Diamond
+ Diamond
+
+
+
+ Pentagon
+ Pentagon
+
+
+
+ Hexagon
+ Hexagon
+
+
+
+ Star
+ Star
+
+
+
+ Pacman
+ Pacman
+
+
+
+ 1/4 Circle
+ 1/4 Circle
+
+
+
+ Half Circle
+ Half Circle
+
+
+
+ 3/4 Circle
+ 3/4 Circle
+
+
+
+ Full Circle
+ Full Circle
+
+
+
+ 1 Bar
+ 1 Bar
+
+
+
+ 2 Bars
+ 2 Bars
+
+
+
+ 3 Bars
+ 3 Bars
+
+
+
+ 4 Bars
+ 4 Bars
+
+
+
+ 1 Block
+ 1 Block
+
+
+
+ 2 Blocks
+ 2 Blocks
+
+
+
+ 3 Blocks
+ 3 Blocks
+
+
+
+ 4 Blocks
+ 4 Blocks
+
+
+ Text filesText files
-
+ Markdown filesMarkdown files
-
+ novelWriter filesnovelWriter files
-
+ CSV filesCSV files
-
+ All filesAll files
-
+ MillimetresMillimeters
-
+ CentimetresCentimeters
-
+ InchesInches
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalUS Legal
-
+ US LetterUS Letter
-
+ Straight single quotation markStraight single quotation mark
-
+ Straight double quotation markStraight double quotation mark
-
+ Left single quotation markLeft single quotation mark
-
+ Right single quotation markRight single quotation mark
-
+ Single low-9 quotation markSingle low-9 quotation mark
-
+ Single high-reversed-9 quotation markSingle high-reversed-9 quotation mark
-
+ Left double quotation markLeft double quotation mark
-
+ Right double quotation markRight double quotation mark
-
+ Double low-9 quotation markDouble low-9 quotation mark
-
+ Double high-reversed-9 quotation markDouble high-reversed-9 quotation mark
-
+ Double low-reversed-9 quotation markDouble low-reversed-9 quotation mark
-
+ Single left-pointing angle quotation markSingle left-pointing angle quotation mark
-
+ Single right-pointing angle quotation markSingle right-pointing angle quotation mark
-
+ Double left-pointing angle quotation markDouble left-pointing angle quotation mark
-
+ Double right-pointing angle quotation markDouble right-pointing angle quotation mark
-
+ Left corner bracketLeft corner bracket
-
+ Right corner bracketRight corner bracket
-
+ Left white corner bracketLeft white corner bracket
-
+ Right white corner bracketRight white corner bracket
@@ -797,17 +897,17 @@
GuiAbout
-
+ About novelWriterAbout novelWriter
-
+ This application is licenced under {0}This application is licensed under {0}
-
+ CreditsCredits
@@ -815,33 +915,33 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsManuscript Build Settings
-
+ NameName
-
+ GeneralGeneral
-
+ SelectionSelection
-
+ HeadingsHeadings
-
+ FormattingFormatting
@@ -849,47 +949,47 @@
GuiDictionaries
-
+ Add DictionariesAdd Dictionaries
-
+ Download a dictionary from one of the links, and add it below.Download a dictionary from one of the links, and add it below.
-
+ Add DictionaryAdd Dictionary
-
+ Dictionary install locationDictionary install location
-
+ Additional dictionaries found: {0}Additional dictionaries found: {0}
-
+ Free or Libre Office extensionFree or Libre Office extension
-
+ Browse FilesBrowse Files
-
+ Could not process dictionary fileCould not process dictionary file
-
+ Added: {0} [{1}B]Added: {0} [{1}B]
@@ -897,22 +997,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Line: {0} ({1})
-
+ Words: {0} ({1})Words: {0} ({1})
-
+ Words: {0} selectedWords: {0} selected
-
+ StatusStatus
@@ -920,27 +1020,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarToggle Tool Bar
-
+ OutlineOutline
-
+ SearchSearch
-
+ Toggle Focus ModeToggle Focus Mode
-
+ CloseClose
@@ -948,62 +1048,62 @@
GuiDocEditSearch
-
+ Search forSearch for
-
+ Replace withReplace with
-
+ SearchSearch
-
+ Case SensitiveCase Sensitive
-
+ Whole Words OnlyWhole Words Only
-
+ RegEx ModeRegEx Mode
-
+ Loop SearchLoop Search
-
+ Search Next FileSearch Next File
-
+ Preserve CasePreserve Case
-
+ Close SearchClose Search
-
+ Find in current documentFind in current document
-
+ Find and replace in current documentFind and replace in current document
@@ -1011,132 +1111,132 @@
GuiDocEditor
-
+ Opened Document: {0}Opened Document: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?
-
+ Could not save document.Could not save document.
-
+ Saved Document: {0}Saved Document: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.Spell checking requires the package PyEnchant. It does not appear to be installed.
-
+ Spell check completeSpell check complete
-
+ Document DetailsDocument Details
-
+ Created: {0}Created: {0}
-
+ Updated: {0}Updated: {0}
-
+ File Location: {0}File Location: {0}
-
+ Set as Document NameSet as Document Name
-
+ Open URLOpen URL
-
+ Follow TagFollow Tag
-
+ Create Note for TagCreate Note for Tag
-
+ CutCut
-
+ CopyCopy
-
+ PastePaste
-
+ Select AllSelect All
-
+ Select WordSelect Word
-
+ Select ParagraphSelect Paragraph
-
+ Spelling Suggestion(s)Spelling Suggestion(s)
-
+ No SuggestionsNo Suggestions
-
+ Ignore WordIgnore Word
-
+ Add Word to DictionaryAdd Word to Dictionary
-
+ Please select some text before calling replace quotes.Please select some text before calling replace quotes.
-
+ Do you want to create a new project note for the tag '{0}'?Do you want to create a new project note for the tag '{0}'?
@@ -1144,22 +1244,22 @@
GuiDocMerge
-
+ Merge DocumentsMerge Documents
-
+ Documents to MergeDocuments to Merge
-
+ Drag and drop items to change the order, or uncheck to exclude.Drag and drop items to change the order, or uncheck to exclude.
-
+ Move merged items to TrashMove merged items to Trash
@@ -1167,52 +1267,52 @@
GuiDocSplit
-
+ Split DocumentSplit Document
-
+ Document HeadingsDocument Headings
-
+ Select the maximum level to split into files.Select the maximum level to split into files.
-
+ Split on Heading Level 1 (Partition)Split on Heading Level 1 (Partition)
-
+ Split up to Heading Level 2 (Chapter)Split up to Heading Level 2 (Chapter)
-
+ Split up to Heading Level 3 (Scene)Split up to Heading Level 3 (Scene)
-
+ Split up to Heading Level 4 (Section)Split up to Heading Level 4 (Section)
-
+ Split into a new folderSplit into a new folder
-
+ Create document hierarchyCreate document hierarchy
-
+ Move split document to TrashMove split document to Trash
@@ -1220,52 +1320,52 @@
GuiDocToolBar
-
+ Markdown BoldMarkdown Bold
-
+ Markdown ItalicMarkdown Italic
-
+ Markdown StrikethroughMarkdown Strikethrough
-
+ Shortcode BoldShortcode Bold
-
+ Shortcode ItalicShortcode Italic
-
+ Shortcode StrikethroughShortcode Strikethrough
-
+ Shortcode UnderlineShortcode Underline
-
+ Shortcode HighlightShortcode Highlight
-
+ Shortcode SuperscriptShortcode Superscript
-
+ Shortcode SubscriptShortcode Subscript
@@ -1273,27 +1373,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelShow/Hide Viewer Panel
-
+ CommentsComments
-
+ Show CommentsShow Comments
-
+ SynopsisSynopsis
-
+ Show Synopsis CommentsShow Synopsis Comments
@@ -1301,32 +1401,32 @@
GuiDocViewHeader
-
+ OutlineOutline
-
+ Go BackwardGo Backward
-
+ Go ForwardGo Forward
-
+ Open in EditorOpen in Editor
-
+ ReloadReload
-
+ CloseClose
@@ -1334,27 +1434,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.An error occurred while generating the preview.
-
+ CopyCopy
-
+ Select AllSelect All
-
+ Select WordSelect Word
-
+ Select ParagraphSelect Paragraph
@@ -1362,12 +1462,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsHide Inactive Tags
-
+ ReferencesReferences
@@ -1375,12 +1475,12 @@
GuiEditLabel
-
+ Item LabelItem Label
-
+ LabelLabel
@@ -1388,22 +1488,22 @@
GuiItemDetails
-
+ LabelLabel
-
+ StatusStatus
-
+ ClassClass
-
+ UsageUsage
@@ -1411,27 +1511,27 @@
GuiLipsum
-
+ Insert Placeholder TextInsert Placeholder Text
-
+ Insert Lorem Ipsum TextInsert Lorem Ipsum Text
-
+ Number of paragraphsNumber of paragraphs
-
+ Randomise orderRandomize order
-
+ InsertInsert
@@ -1439,103 +1539,103 @@
GuiMain
-
+ novelWriter is ready ...novelWriter is ready ...
-
+ You are now running novelWriter version {0}.You are now running novelWriter version {0}.
-
+ Please check the {0}release notes{1} for further details.Please check the {0}release notes{1} for further details.
-
+ Close the current project?Close the current project?
-
-
+
+ Changes are saved automatically.Changes are saved automatically.
-
+ Backup the current project?Backup the current project?
-
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?
-
+ Note: If the program or the computer previously crashed, the lock can safely be overridden. However, overriding it is not recommended if the project is open in another instance of novelWriter. Doing so may corrupt the project.Note: If the program or the computer previously crashed, the lock can safely be overridden. However, overriding it is not recommended if the project is open in another instance of novelWriter. Doing so may corrupt the project.
-
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.The project was locked by the computer '{0}' ({1} {2}), last active on {3}.
-
+ The project index is outdated or broken. Rebuilding index.The project index is outdated or broken. Rebuilding index.
-
+ Import FileImport File
-
+ Could not read file. The file must be an existing text file.Could not read file. The file must be an existing text file.
-
+ Please open a document to import the text file into.Please open a document to import the text file into.
-
+ Importing the file will overwrite the current content of the document. Do you want to proceed?Importing the file will overwrite the current content of the document. Do you want to proceed?
-
+ Indexing completed in {0} msIndexing completed in {0} ms
-
+ The project index has been successfully rebuilt.The project index has been successfully rebuilt.
-
+ Could not initialise the dialog.Could not initialize the dialog.
-
+ Do you want to exit novelWriter?Do you want to exit novelWriter?
-
+ Some changes will not be applied until novelWriter has been restarted.Some changes will not be applied until novelWriter has been restarted.
-
+ Could not find the reference for tag '{0}'. It either doesn't exist, or the index is out of date. The index can be updated from the Tools menu, or by pressing {1}.Could not find the reference for tag '{0}'. It either doesn't exist, or the index is out of date. The index can be updated from the Tools menu, or by pressing {1}.
@@ -1543,652 +1643,652 @@
GuiMainMenu
-
+ &Project&Project
-
+ Create or Open ProjectCreate or Open Project
-
+ Save ProjectSave Project
-
+ Close ProjectClose Project
-
+ Project SettingsProject Settings
-
+ Novel DetailsNovel Details
-
+ Rename ItemRename Item
-
+ Delete ItemDelete Item
-
+ Empty TrashEmpty Trash
-
+ ExitExit
-
+ &Document&Document
-
+ Open DocumentOpen Document
-
+ Save DocumentSave Document
-
+ Close DocumentClose Document
-
+ View DocumentView Document
-
+ Close Document ViewClose Document View
-
+ Show File DetailsShow File Details
-
+ Import Text from FileImport Text from File
-
+ &Edit&Edit
-
+ UndoUndo
-
+ RedoRedo
-
+ CutCut
-
+ CopyCopy
-
+ PastePaste
-
+ Select AllSelect All
-
+ Select ParagraphSelect Paragraph
-
+ &View&View
-
+ Go to Tree ViewGo to Tree View
-
+ Go to DocumentGo to Document
-
+ Go to OutlineGo to Outline
-
+ Navigate BackwardNavigate Backward
-
+ Navigate ForwardNavigate Forward
-
+ Focus ModeFocus Mode
-
+ Full Screen ModeFull Screen Mode
-
+ &Insert&Insert
-
+ DashesDashes
-
+ Short DashShort Dash
-
+ Long DashLong Dash
-
+ Horizontal BarHorizontal Bar
-
+ Figure DashFigure Dash
-
+ Quote MarksQuote Marks
-
+ Left Single QuoteLeft Single Quote
-
+ Right Single QuoteRight Single Quote
-
+ Left Double QuoteLeft Double Quote
-
+ Right Double QuoteRight Double Quote
-
+ Alternative ApostropheAlternative Apostrophe
-
+ General PunctuationGeneral Punctuation
-
+ EllipsisEllipsis
-
+ PrimePrime
-
+ Double PrimeDouble Prime
-
+ White SpacesWhite Spaces
-
+ Non-Breaking SpaceNon-Breaking Space
-
+ Thin SpaceThin Space
-
+ Thin Non-Breaking SpaceThin Non-Breaking Space
-
+ Other SymbolsOther Symbols
-
+ List BulletList Bullet
-
+ Hyphen BulletHyphen Bullet
-
+ Flower MarkFlower Mark
-
+ Per MillePer Mille
-
+ Degree SymbolDegree Symbol
-
+ Minus SignMinus Sign
-
+ Times SignTimes Sign
-
+ Division SignDivision Sign
-
+ Tags and ReferencesTags and References
-
+ Special CommentsSpecial Comments
-
+ Synopsis CommentSynopsis Comment
-
+ Short Description CommentShort Description Comment
-
+ Word/Character CountWord/Character Count
-
+ Breaks and Vertical SpaceBreaks and Vertical Space
-
+ Page BreakPage Break
-
+ Forced Line BreakForced Line Break
-
+ Vertical Space (Single)Vertical Space (Single)
-
+ Vertical Space (Multi)Vertical Space (Multi)
-
+ Placeholder TextPlaceholder Text
-
+ FootnoteFootnote
-
+ &Format&Format
-
+ BoldBold
-
+ ItalicItalic
-
+ StrikethroughStrikethrough
-
+ Wrap Double QuotesWrap Double Quotes
-
+ Wrap Single QuotesWrap Single Quotes
-
+ More Formats ...More Formats ...
-
+ Bold (Shortcode)Bold (Shortcode)
-
+ Italics (Shortcode)Italics (Shortcode)
-
+ Strikethrough (Shortcode)Strikethrough (Shortcode)
-
+ UnderlineUnderline
-
+ HighlightHighlight
-
+ SuperscriptSuperscript
-
+ SubscriptSubscript
-
+ Novel TitleNovel Title
-
+ Unnumbered ChapterUnnumbered Chapter
-
+ Alternative SceneAlternative Scene
-
+ Align LeftAlign Left
-
+ Align CentreAlign Center
-
+ Align RightAlign Right
-
+ Indent LeftIndent Left
-
+ Indent RightIndent Right
-
+ Toggle CommentToggle Comment
-
+ Toggle Ignore TextToggle Ignore Text
-
+ Remove Block FormatRemove Block Format
-
+ Replace Straight Single QuotesReplace Straight Single Quotes
-
+ Replace Straight Double QuotesReplace Straight Double Quotes
-
+ Remove In-Paragraph BreaksRemove In-Paragraph Breaks
-
+ &Search&Search
-
+ FindFind
-
+ ReplaceReplace
-
+ Find NextFind Next
-
+ Find PreviousFind Previous
-
+ Replace NextReplace Next
-
+ Find in ProjectFind in Project
-
+ &Tools&Tools
-
+ Check SpellingCheck Spelling
-
+ Spell Check LanguageSpell Check Language
-
+ DefaultDefault
-
+ Re-Run Spell CheckRe-Run Spell Check
-
+ Project Word ListProject Word List
-
+ Add DictionariesAdd Dictionaries
-
+ Rebuild IndexRebuild Index
-
+ Backup ProjectBackup Project
-
+ Build ManuscriptBuild Manuscript
-
+ Writing StatisticsWriting Statistics
-
+ PreferencesPreferences
-
+ &Help&Help
-
+ About novelWriterAbout novelWriter
-
+ About Qt5About Qt5
-
+ User Manual (Online)User Manual (Online)
-
+ User Manual (PDF)User Manual (PDF)
-
+ Report an Issue (GitHub)Report an Issue (GitHub)
-
+ Ask a Question (GitHub)Ask a Question (GitHub)
-
+ The novelWriter WebsiteThe novelWriter Website
@@ -2196,38 +2296,38 @@
GuiMainStatus
-
-
+
+ NoneNone
-
+ EditorEditor
-
+ ProjectProject
-
+ Session TimeSession Time
-
+ Words: {0} ({1})Words: {0} ({1})
-
+ Project word count (session change)Project word count (session change)
-
+ Novel word count (session change)Novel word count (session change)
@@ -2235,73 +2335,73 @@
GuiManuscript
-
+ Build ManuscriptBuild Manuscript
-
+ Add New BuildAdd New Build
-
+ Delete Selected BuildDelete Selected Build
-
+ Duplicate Selected BuildDuplicate Selected Build
-
+ Edit Selected BuildEdit Selected Build
-
+ BuildsBuilds
-
+ DetailsDetails
-
+ OutlineOutline
-
+ PreviewPreview
-
+ PrintPrint
-
+ BuildBuild
-
+ CloseClose
-
+ Show Page BreaksShow Page Breaks
-
-
+
+ My ManuscriptMy Manuscript
@@ -2309,57 +2409,57 @@
GuiManuscriptBuild
-
+ Build ManuscriptBuild Manuscript
-
+ Output FormatOutput Format
-
+ Table of ContentsTable of Contents
-
+ PathPath
-
+ File NameFile Name
-
+ Reset file name to defaultReset file name to default
-
+ Open FolderOpen Folder
-
+ &Build&Build
-
+ Select FolderSelect Folder
-
+ Output folder does not exist.Output folder does not exist.
-
+ The file already exists. Do you want to overwrite it?The file already exists. Do you want to overwrite it?
@@ -2367,18 +2467,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsNovel Details
-
+ OverviewOverview
-
+ ContentsContents
@@ -2386,58 +2486,58 @@
GuiNovelToolBar
-
+ Outline of {0}Outline of {0}
-
+ Novel RootNovel Root
-
+ RefreshRefresh
-
+ Last ColumnLast Column
-
+ HiddenHidden
-
+ Point of View CharacterPoint of View Character
-
+ Focus CharacterFocus Character
-
+ Novel PlotNovel Plot
-
-
+
+ Column SizeColumn Size
-
+ More OptionsMore Options
-
+ Maximum column size in %Maximum column size in %
@@ -2445,7 +2545,7 @@
GuiNovelTree
-
+ No meta dataNo meta data
@@ -2453,49 +2553,49 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTitle
-
+ ChapterChapter
-
+ SceneScene
-
+ SectionSection
-
+ DocumentDocument
-
+ StatusStatus
-
+ SynopsisSynopsis
-
+ Title DetailsTitle Details
-
+ Reference TagsReference Tags
@@ -2503,7 +2603,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsSelect Columns
@@ -2511,17 +2611,17 @@
GuiOutlineToolBar
-
+ Outline ofOutline of
-
+ RefreshRefresh
-
+ Export CSVExport CSV
@@ -2529,7 +2629,7 @@
GuiOutlineTree
-
+ Save Outline AsSave Outline As
@@ -2537,609 +2637,609 @@
GuiPreferences
-
-
+
+ PreferencesPreferences
-
+ SearchSearch
-
+ GeneralGeneral
-
+ AppearanceAppearance
-
+ Display languageDisplay language
-
-
+
+ Requires restart to take effect.Requires restart to take effect.
-
+ Colour themeColor theme
-
+ General colour theme and icons.General color theme and icons.
-
+ Application fontApplication font
-
+ Hide vertical scroll bars in main windowsHide vertical scroll bars in main windows
-
-
+
+ Scrolling available with mouse wheel and keys only.Scrolling available with mouse wheel and keys only.
-
+ Hide horizontal scroll bars in main windowsHide horizontal scroll bars in main windows
-
+ Use the system's font selection dialogUse the system's font selection dialog
-
+ Turn off to use the Qt font dialog, which may have more options.Turn off to use the Qt font dialog, which may have more options.
-
+ Document StyleDocument Style
-
+ Document colour themeDocument color theme
-
+ Colour theme for the editor and viewer.Color theme for the editor and viewer.
-
+ Document fontDocument font
-
-
-
+
+
+ Applies to both document editor and viewer.Applies to both document editor and viewer.
-
+ Emphasise partition and chapter labelsEmphasize partition and chapter labels
-
+ Makes them stand out in the project tree.Makes them stand out in the project tree.
-
+ Show full path in document headerShow full path in document header
-
+ Add the parent folder names to the header.Add the parent folder names to the header.
-
+ Include project notes in status bar word countInclude project notes in status bar word count
-
+ BehaviourBehavior
-
+ Save document intervalSave document interval
-
+ How often the document is automatically saved.How often the document is automatically saved.
-
-
+
+ secondsseconds
-
+ Save project intervalSave project interval
-
+ How often the project is automatically saved.How often the project is automatically saved.
-
+ Ask before exiting novelWriterAsk before exiting novelWriter
-
+ Only applies when a project is open.Only applies when a project is open.
-
+ Project BackupProject Backup
-
+ BrowseBrowse
-
+ Backup storage locationBackup storage location
-
-
+
+ Path: {0}Path: {0}
-
+ Run backup when the project is closedRun backup when the project is closed
-
+ Can be overridden for individual projects in Project Settings.Can be overridden for individual projects in Project Settings.
-
+ Ask before running backupAsk before running backup
-
+ If off, backups will run in the background.If off, backups will run in the background.
-
+ Session TimerSession Timer
-
+ Pause the session timer when not writingPause the session timer when not writing
-
+ Also pauses when the application window does not have focus.Also pauses when the application window does not have focus.
-
+ Editor inactive time before pausing timerEditor inactive time before pausing timer
-
+ User activity includes typing and changing the content.User activity includes typing and changing the content.
-
+ minutesminutes
-
+ WritingWriting
-
+ Text FlowText Flow
-
+ Maximum text width in "Normal Mode"Maximum text width in "Normal Mode"
-
+ Set to 0 to disable this feature.Set to 0 to disable this feature.
-
-
-
-
+
+
+
+ pxpx
-
+ Maximum text width in "Focus Mode"Maximum text width in "Focus Mode"
-
+ The maximum width cannot be disabled.The maximum width cannot be disabled.
-
+ Hide document footer in "Focus Mode"Hide document footer in "Focus Mode"
-
+ Hide the information bar in the document editor.Hide the information bar in the document editor.
-
+ Justify the text marginsJustify the text margins
-
+ Minimum text marginMinimum text margin
-
+ Tab widthTab width
-
+ The width of a tab key press in the editor and viewer.The width of a tab key press in the editor and viewer.
-
+ Text EditingText Editing
-
+ Spell check languageSpell check language
-
+ Available languages are determined by your system.Available languages are determined by your system.
-
+ Auto-select word under cursorAuto-select word under cursor
-
+ Apply formatting to word under cursor if no selection is made.Apply formatting to word under cursor if no selection is made.
-
+ Show tabs and spacesShow tabs and spaces
-
+ Show line endingsShow line endings
-
+ Editor ScrollingEditor Scrolling
-
+ Scroll past end of the documentScroll past end of the document
-
+ Also centres the cursor when scrolling.Also centers the cursor when scrolling.
-
+ Typewriter style scrolling when you typeTypewriter style scrolling when you type
-
+ Keeps the cursor at a fixed vertical position.Keeps the cursor at a fixed vertical position.
-
+ Minimum position for Typewriter scrollingMinimum position for Typewriter scrolling
-
+ Percentage of the editor height from the top.Percentage of the editor height from the top.
-
+ Text HighlightingText Highlighting
-
+ NoneNone
-
+ Single QuotesSingle Quotes
-
+ Double QuotesDouble Quotes
-
+ BothBoth
-
+ Highlight dialogueHighlight dialog
-
+ Applies to the selected quote styles.Applies to the selected quote styles.
-
+ Alternative dialogue symbolsAlternative dialog symbols
-
+ Custom highlighting of dialogue text.Custom highlighting of dialog text.
-
+ Allow open-ended dialogueAllow open-ended dialog
-
+ Highlight dialogue line with no closing quote.Highlight dialog line with no closing quote.
-
+ Dialogue line symbolsDialog line symbols
-
+ Lines starting with any of these symbols are dialogue.Lines starting with any of these symbols are dialog.
-
+ Narrator break symbolNarrator break symbol
-
+ Symbol to indicate a narrator break in dialogue.Symbol to indicate a narrator break in dialog.
-
+ Alternating dialogue/narration symbolAlternating dialog/narration symbol
-
+ Alternates dialogue highlighting within any paragraph.Alternates dialog highlighting within any paragraph.
-
+ Add highlight colour to emphasised textAdd highlight color to emphasised text
-
-
+
+ Applies to the document editor only.Applies to the document editor only.
-
+ Highlight multiple or trailing spacesHighlight multiple or trailing spaces
-
+ Text AutomationText Automation
-
+ Auto-replace text as you typeAuto-replace text as you type
-
+ Allow the editor to replace symbols as you type.Allow the editor to replace symbols as you type.
-
+ Auto-replace single quotesAuto-replace single quotes
-
-
+
+ Try to guess which is an opening or a closing quote.Try to guess which is an opening or a closing quote.
-
+ Auto-replace double quotesAuto-replace double quotes
-
+ Auto-replace dashesAuto-replace dashes
-
+ Double and triple hyphens become short and long dashes.Double and triple hyphens become short and long dashes.
-
+ Auto-replace dotsAuto-replace dots
-
+ Three consecutive dots become ellipsis.Three consecutive dots become ellipsis.
-
+ Insert non-breaking space beforeInsert non-breaking space before
-
+ Automatically add space before any of these symbols.Automatically add space before any of these symbols.
-
+ Insert non-breaking space afterInsert non-breaking space after
-
+ Automatically add space after any of these symbols.Automatically add space after any of these symbols.
-
+ Use thin space insteadUse thin space instead
-
+ Inserts a thin space instead of a regular space.Inserts a thin space instead of a regular space.
-
+ Quotation StyleQuotation Style
-
+ Single quote open styleSingle quote open style
-
+ The symbol to use for a leading single quote.The symbol to use for a leading single quote.
-
+ Single quote close styleSingle quote close style
-
+ The symbol to use for a trailing single quote.The symbol to use for a trailing single quote.
-
+ Double quote open styleDouble quote open style
-
+ The symbol to use for a leading double quote.The symbol to use for a leading double quote.
-
+ Double quote close styleDouble quote close style
-
+ The symbol to use for a trailing double quote.The symbol to use for a trailing double quote.
-
+ Backup DirectoryBackup Directory
@@ -3147,27 +3247,27 @@
GuiProjectSearch
-
+ Project SearchProject Search
-
+ Case SensitiveCase Sensitive
-
+ Whole Words OnlyWhole Words Only
-
+ RegEx ModeRegEx Mode
-
+ Search forSearch for
@@ -3175,28 +3275,28 @@
GuiProjectSettings
-
-
+
+ Project SettingsProject Settings
-
+ SettingsSettings
-
+ StatusStatus
-
+ ImportanceImportance
-
+ Auto-ReplaceAuto-Replace
@@ -3204,47 +3304,47 @@
GuiProjectToolBar
-
+ Project ContentProject Content
-
+ Quick LinksQuick Links
-
+ Move UpMove Up
-
+ Move DownMove Down
-
+ Add ItemAdd Item
-
+ Expand AllExpand All
-
+ Collapse AllCollapse All
-
+ Empty TrashEmpty Trash
-
+ More OptionsMore Options
@@ -3252,93 +3352,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!Did not find anywhere to add the file or folder!
-
+ Cannot add new files or folders to the Trash folder.Cannot add new files or folders to the Trash folder.
-
+ New NoteNew Note
-
+ New ChapterNew Chapter
-
+ New SceneNew Scene
-
+ New DocumentNew Document
-
+ New FolderNew Folder
-
+ No documents selected for merging.No documents selected for merging.
-
+ MergedMerged
-
-
+
+ Could not write document content.Could not write document content.
-
+ Do you want to duplicate this document?Do you want to duplicate this document?
-
+ Do you want to duplicate this item and all child items?Do you want to duplicate this item and all child items?
-
+ Could not duplicate all items.Could not duplicate all items.
-
+ Root folders can only be deleted when they are empty.Root folders can only be deleted when they are empty.
-
+ Permanently delete selected item(s)?Permanently delete selected item(s)?
-
+ Move selected item(s) to Trash?Move selected item(s) to Trash?
-
+ The Trash folder is already empty.The Trash folder is already empty.
-
+ Permanently delete {0} file(s) from Trash?Permanently delete {0} file(s) from Trash?
@@ -3346,7 +3446,7 @@
GuiQuoteSelect
-
+ Select Quote StyleSelect Quote Style
@@ -3354,42 +3454,42 @@
GuiSideBar
-
+ Project Tree ViewProject Tree View
-
+ Novel Tree ViewNovel Tree View
-
+ Project SearchProject Search
-
+ Novel Outline ViewNovel Outline View
-
+ Build ManuscriptBuild Manuscript
-
+ Novel DetailsNovel Details
-
+ Writing StatisticsWriting Statistics
-
+ SettingsSettings
@@ -3397,37 +3497,37 @@
GuiWelcome
-
+ WelcomeWelcome
-
+ ListList
-
+ NewNew
-
+ BrowseBrowse
-
+ CancelCancel
-
+ CreateCreate
-
+ OpenOpen
@@ -3435,43 +3535,43 @@
GuiWordList
-
-
+
+ Project Word ListProject Word List
-
+ Import words from text fileImport words from text file
-
+ Export words to text fileExport words to text file
-
+ Add WordAdd Word
-
+ Remove WordRemove Word
-
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.Note: The import file must be a plain text file with UTF-8 or ASCII encoding.
-
+ Import FileImport File
-
+ Export FileExport File
@@ -3479,147 +3579,147 @@
GuiWritingStats
-
+ Writing StatisticsWriting Statistics
-
+ Session StartSession Start
-
+ LengthLength
-
+ IdleIdle
-
+ WordsWords
-
+ HistogramHistogram
-
+ Sum TotalsSum Totals
-
+ Total Time:Total Time:
-
+ Idle Time:Idle Time:
-
+ Filtered Time:Filtered Time:
-
+ Novel Word Count:Novel Word Count:
-
+ Notes Word Count:Notes Word Count:
-
+ Total Word Count:Total Word Count:
-
+ FiltersFilters
-
+ Count novel filesCount novel files
-
+ Count note filesCount note files
-
+ Hide zero word countHide zero word count
-
+ Hide negative word countHide negative word count
-
+ Group entries by dayGroup entries by day
-
+ Show idle timeShow idle time
-
+ Word count cap for the histogramWord count cap for the histogram
-
+ Save AsSave As
-
+ JSON Data File (.json)JSON Data File (.json)
-
+ CSV Data File (.csv)CSV Data File (.csv)
-
+ JSON Data FileJSON Data File
-
+ CSV Data FileCSV Data File
-
+ Save Data AsSave Data As
-
+ {0} file successfully written to:{0} file successfully written to:
-
+ Failed to write {0} file.Failed to write {0} file.
@@ -3627,156 +3727,156 @@
NWProject
-
+ Could not delete document file.Could not delete document file.
-
+ Not a known project file format.Not a known project file format.
-
-
-
-
+
+
+
+ Path: {0}Path: {0}
-
+ Project file not found.Project file not found.
-
+ Failed to open project.Failed to open project.
-
+ UnknownUnknown
-
+ Project file does not appear to be a novelWriterXML file.Project file does not appear to be a novelWriterXML file.
-
+ Unknown or unsupported novelWriter project file format. The project cannot be opened by this version of novelWriter. The file was saved with novelWriter version {0}.Unknown or unsupported novelWriter project file format. The project cannot be opened by this version of novelWriter. The file was saved with novelWriter version {0}.
-
+ Failed to parse project xml.Failed to parse project xml.
-
+ The file format of your project is about to be updated. If you proceed, older versions of novelWriter will no longer be able to open this project. Continue?The file format of your project is about to be updated. If you proceed, older versions of novelWriter will no longer be able to open this project. Continue?
-
+ This project was saved by a newer version of novelWriter, version {0}. This is version {1}. If you continue to open the project, some attributes and settings may not be preserved, but the overall project should be fine. Continue opening the project?This project was saved by a newer version of novelWriter, version {0}. This is version {1}. If you continue to open the project, some attributes and settings may not be preserved, but the overall project should be fine. Continue opening the project?
-
+ RecoveredRecovered
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.Found {0} orphaned file(s) in the project. {1} file(s) were recovered.
-
+ Opened Project: {0}Opened Project: {0}
-
+ There is no project open.There is no project open.
-
+ Failed to save project.Failed to save project.
-
+ Saved Project: {0}Saved Project: {0}
-
+ Backing up project ...Backing up project ...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Cannot backup project because no project name is set. Please set a Project Name in Project Settings.
-
+ Could not create backup folder.Could not create backup folder.
-
+ Created a backup of your project of size {0}B.Created a backup of your project of size {0}B.
-
+ Could not write backup archive.Could not write backup archive.
-
+ Project backed up to '{0}'Project backed up to '{0}'
-
-
+
+ NewNew
-
+ NoteNote
-
+ DraftDraft
-
+ FinishedFinished
-
+ MinorMinor
-
+ MajorMajor
-
+ MainMain
@@ -3784,7 +3884,7 @@
NovelSelector
-
+ All Novel FoldersAll Novel Folders
@@ -3792,99 +3892,99 @@
ProjectBuilder
-
+ The target folder is not empty. Please choose another folder.The target folder is not empty. Please choose another folder.
-
+ An error occurred while trying to create the project.An error occurred while trying to create the project.
-
+ New ProjectNew Project
-
+ Title PageTitle Page
-
+ AddressAddress
-
+ ByBy
-
+ Word CountWord Count
-
+ Summary of the chapter.Summary of the chapter.
-
+ Summary of the scene.Summary of the scene.
-
+ A short description.A short description.
-
+ Chapter {0}Chapter {0}
-
-
+
+ Scene {0}Scene {0}
-
+ Main PlotMain Plot
-
+ ProtagonistProtagonist
-
+ Main LocationMain Location
-
-
+
+ The target folder already exists. Please choose another folder.The target folder already exists. Please choose another folder.
-
+ Could not copy project files.Could not copy project files.
-
+ Failed to create a new example project.Failed to create a new example project.
-
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.
@@ -3892,7 +3992,7 @@
QDialogButtonBox
-
+ OKOK
@@ -3900,27 +4000,27 @@
QGnomeTheme
-
+ &OK&OK
-
+ &Save&Save
-
+ &Cancel&Cancel
-
+ &Close&Close
-
+ Close without SavingClose without Saving
@@ -3928,218 +4028,115 @@
QPlatformTheme
-
+ OKOK
-
+ SaveSave
-
+ Save AllSave All
-
+ OpenOpen
-
+ &Yes&Yes
-
+ Yes to &AllYes to &All
-
+ &No&No
-
+ N&o to AllN&o to All
-
+ AbortAbort
-
+ RetryRetry
-
+ IgnoreIgnore
-
+ CloseClose
-
+ CancelCancel
-
+ DiscardDiscard
-
+ HelpHelp
-
+ ApplyApply
-
+ ResetReset
-
+ Restore DefaultsRestore Defaults
-
- Shape
-
-
- Square
- Square
-
-
-
- Triangle
- Triangle
-
-
-
- Nabla
- Nabla
-
-
-
- Diamond
- Diamond
-
-
-
- Pentagon
- Pentagon
-
-
-
- Hexagon
- Hexagon
-
-
-
- Star
- Star
-
-
-
- Pacman
- Pacman
-
-
-
- 1/4 Circle
- 1/4 Circle
-
-
-
- Half Circle
- Half Circle
-
-
-
- 3/4 Circle
- 3/4 Circle
-
-
-
- Full Circle
- Full Circle
-
-
-
- 1 Bar
- 1 Bar
-
-
-
- 2 Bars
- 2 Bars
-
-
-
- 3 Bars
- 3 Bars
-
-
-
- 4 Bars
- 4 Bars
-
-
-
- 1 Block
- 1 Block
-
-
-
- 2 Blocks
- 2 Blocks
-
-
-
- 3 Blocks
- 3 Blocks
-
-
-
- 4 Blocks
- 4 Blocks
-
- SharedData
-
+ novelWriter Project File or Zip FilenovelWriter Project File or Zip File
-
+ novelWriter Project FilenovelWriter Project File
-
+ Open ProjectOpen Project
-
+ Select FontSelect Font
@@ -4147,57 +4144,57 @@
Stats
-
+ CharactersCharacters
-
+ Characters in TextCharacters in Text
-
+ Characters in HeadingsCharacters in Headings
-
+ ParagraphsParagraphs
-
+ HeadingsHeadings
-
+ Characters, No SpacesCharacters, No Spaces
-
+ Characters in Text, No SpacesCharacters in Text, No Spaces
-
+ Characters in Headings, No SpacesCharacters in Headings, No Spaces
-
+ WordsWords
-
+ Words in TextWords in Text
-
+ Words in HeadingsWords in Headings
@@ -4205,42 +4202,42 @@
VersionInfoWidget
-
+ Latest Version: {0}Latest Version: {0}
-
+ Checking ...Checking ...
-
+ Download from {0}Download from {0}
-
+ VersionVersion
-
+ Released onReleased on
-
+ Release NotesRelease Notes
-
+ Check NowCheck Now
-
+ FailedFailed
@@ -4248,57 +4245,57 @@
_ContentsPage
-
+ Table of ContentsTable of Contents
-
+ TitleTitle
-
+ WordsWords
-
+ PagesPages
-
+ PagePage
-
+ ProgressProgress
-
+ Words per pageWords per page
-
+ First page offsetFirst page offset
-
+ Chapters on odd pagesChapters on odd pages
-
+ UntitledUntitled
-
+ ENDEND
@@ -4306,32 +4303,32 @@
_DetailsWidget
-
+ SettingSetting
-
+ ValueValue
-
+ NameName
-
+ SelectionSelection
-
+ TitleTitle
-
+ HiddenHidden
@@ -4339,37 +4336,37 @@
_FilterTab
-
+ Included in manuscriptIncluded in manuscript
-
+ Excluded from manuscriptExcluded from manuscript
-
+ Always includedAlways included
-
+ Always excludedAlways excluded
-
+ Reset to defaultReset to default
-
+ Mark selection asMark selection as
-
+ Select Root FoldersSelect Root Folders
@@ -4377,22 +4374,22 @@
_GuiAlert
-
+ InformationInformation
-
+ WarningWarning
-
+ ErrorError
-
+ QuestionQuestion
@@ -4400,84 +4397,84 @@
_HeadingsTab
-
+ HideHide
-
-
+
+ Editing: {0}Editing: {0}
-
-
+
+ NoneNone
-
+ TitleTitle
-
+ Chapter NumberChapter Number
-
+ Chapter Number (Word)Chapter Number (Word)
-
+ Chapter Number (Upper Case Roman)Chapter Number (Upper Case Roman)
-
+ Chapter Number (Lower Case Roman)Chapter Number (Lower Case Roman)
-
+ Scene Number (In Chapter)Scene Number (In Chapter)
-
+ Scene Number (Absolute)Scene Number (Absolute)
-
+ Point of View CharacterPoint of View Character
-
+ Focus CharacterFocus Character
-
+ InsertInsert
-
+ ApplyApply
-
+ CentreCenter
-
+ Page BreakPage Break
@@ -4485,117 +4482,117 @@
_NewProjectForm
-
+ RequiredRequired
-
+ OptionalOptional
-
+ Create a fresh projectCreate a fresh project
-
+ Create an example projectCreate an example project
-
+ Copy an existing projectCopy an existing project
-
+ Project NameProject Name
-
+ AuthorAuthor
-
+ Project PathProject Path
-
+ Prefill ProjectPrefill Project
-
+ Set to 0 to only add scenesSet to 0 to only add scenes
-
+ Add {0} chapter documentsAdd {0} chapter documents
-
+ Add {0} scene documents (to each chapter)Add {0} scene documents (to each chapter)
-
+ Add a folder for plot notesAdd a folder for plot notes
-
+ Add a folder for character notesAdd a folder for character notes
-
+ Add a folder for location notesAdd a folder for location notes
-
+ Add example notes to the aboveAdd example notes to the above
-
+ Chapters and ScenesChapters and Scenes
-
+ Project NotesProject Notes
-
+ Create New ProjectCreate New Project
-
+ Select Project FolderSelect Project Folder
-
+ Fresh ProjectFresh Project
-
+ Example ProjectExample Project
-
+ Template: {0}Template: {0}
@@ -4603,7 +4600,7 @@
_NewProjectPage
-
+ A project name is required.A project name is required.
@@ -4611,27 +4608,27 @@
_OpenProjectPage
-
+ The project path is not reachable.The project path is not reachable.
-
+ PathPath
-
+ Remove '{0}' from the recent projects list? The project files will not be deleted.Remove '{0}' from the recent projects list? The project files will not be deleted.
-
+ Open ProjectOpen Project
-
+ Remove ProjectRemove Project
@@ -4639,54 +4636,54 @@
_OverviewPage
-
+ ProjectProject
-
-
+
+ NameName
-
+ RevisionsRevisions
-
+ Editing TimeEditing Time
-
-
+
+ Word CountWord Count
-
+ In NovelsIn Novels
-
+ In NotesIn Notes
-
+ Selected NovelSelected Novel
-
+ ChaptersChapters
-
+ ScenesScenes
@@ -4694,27 +4691,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Press the "Preview" button to generate ...
-
+ Processing ...Processing ...
-
+ DoneDone
-
+ BuiltBuilt
-
+ No PreviewNo Preview
@@ -4722,12 +4719,12 @@
_ProjectListModel
-
+ Word CountWord Count
-
+ Last OpenedLast Opened
@@ -4735,22 +4732,22 @@
_ReplacePage
-
+ Text Auto-Replace for Preview and BuildText Auto-Replace for Preview and Build
-
+ KeywordKeyword
-
+ Replace WithReplace With
-
+ Select item to editSelect item to edit
@@ -4758,49 +4755,49 @@
_SettingsPage
-
+ Project nameProject name
-
+ Changing this will affect the backup path.Changing this will affect the backup path.
-
+ Author(s)Author(s)
-
-
+
+ Only used when building the manuscript.Only used when building the manuscript.
-
+ Project languageProject language
-
+ DefaultDefault
-
+ Spell check languageSpell check language
-
-
+
+ Overrides main preferences.Overrides main preferences.
-
+ Disable backup on closeDisable backup on close
@@ -4808,132 +4805,132 @@
_StatusPage
-
+ StatusStatus
-
+ Novel Document Status LevelsNovel Document Status Levels
-
+ ImportanceImportance
-
+ Project Note Importance LevelsProject Note Importance Levels
-
+ Not in useNot in use
-
+ Used onceUsed once
-
+ Used by {0} itemsUsed by {0} items
-
+ Select ColourSelect Color
-
+ LabelLabel
-
+ UsageUsage
-
+ Add LabelAdd Label
-
+ Delete LabelDelete Label
-
+ Move UpMove Up
-
+ Move DownMove Down
-
+ Import LabelsImport Labels
-
+ Export LabelsExport Labels
-
+ Select item to editSelect item to edit
-
+ ColourColor
-
+ Circles ...Circles ...
-
+ Bars ...Bars ...
-
+ Blocks ...Blocks ...
-
+ ShapeShape
-
+ New ItemNew Item
-
+ Cannot delete a status item that is in use.Cannot delete a status item that is in use.
-
+ Import FileImport File
-
+ Export FileExport File
@@ -4941,121 +4938,121 @@
_TreeContextMenu
-
+ Empty TrashEmpty Trash
-
+ RenameRename
-
+ DuplicateDuplicate
-
+ Open DocumentOpen Document
-
+ View DocumentView Document
-
+ Create New ...Create New ...
-
+ Rename to HeadingRename to Heading
-
+ Set Active to ...Set Active to ...
-
+ Toggle ActiveToggle Active
-
+ Set Status to ...Set Status to ...
-
-
+
+ Manage Labels ...Manage Labels ...
-
+ Set Importance to ...Set Importance to ...
-
+ Transform ...Transform ...
-
-
-
-
+
+
+
+ Convert to {0}Convert to {0}
-
+ Merge Child Items into SelfMerge Child Items into Self
-
+ Merge Child Items into NewMerge Child Items into New
-
+ Merge Documents in FolderMerge Documents in Folder
-
+ Split Document by HeadingsSplit Document by Headings
-
+ Expand AllExpand All
-
+ Collapse AllCollapse All
-
+ Delete PermanentlyDelete Permanently
-
+ Move to TrashMove to Trash
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Do you want to convert the folder to a {0}? This action cannot be reversed.
@@ -5063,7 +5060,7 @@
_UpdatableMenu
-
+ From TemplateFrom Template
@@ -5071,12 +5068,12 @@
_ViewPanelBackRefs
-
+ DocumentDocument
-
+ First HeadingFirst Heading
@@ -5084,27 +5081,27 @@
_ViewPanelKeyWords
-
+ TagTag
-
+ ImportanceImportance
-
+ DocumentDocument
-
+ HeadingHeading
-
+ Short DescriptionShort Description
diff --git a/i18n/nw_es_419.ts b/i18n/nw_es_419.ts
index e18e3756..a60c6ba8 100644
--- a/i18n/nw_es_419.ts
+++ b/i18n/nw_es_419.ts
@@ -4,277 +4,277 @@
Builds
-
+ Document FiltersFiltrado de Documentos
-
+ Novel DocumentsDocumentos de Novela
-
+ Project NotesNotas del Proyecto
-
+ Inactive DocumentsDocumentos Excluidos
-
+ HeadingsTítulación
-
+ Partition FormatFormato para Particiones
-
+ Chapter FormatFormato para Capítulos
-
+ Unnumbered FormatFormato Sin Numeración
-
+ Scene FormatFormato para Escenas
-
+ Alt. Scene FormatFormato Alternativo para Escenas
-
+ Section FormatFormato para Secciones
-
+ Title StylingEstilo de Títulos
-
+ Partition StylingEstilo de Particiones
-
+ Chapter StylingEstilo de Capítulos
-
+ Scene StylingEstilo de Escenas
-
+ Text ContentContenido Textual
-
+ Include SynopsisIncluir las Sinopsis
-
+ Include CommentsIncluir los Comentarios
-
+ Include KeywordsIncluir las Palabras Clave
-
+ Include Body TextIncluir el Texto Base
-
+ Ignore These KeywordsIgnorar estas palabras clave
-
+ Add Titles for NotesAñadir Títulos a las Notas
-
+ Text FormatFormato del Texto
-
+ Text FontTipografía del Texto
-
+ Line HeightAltura de Línea
-
+ Justify Text MarginsJustificar los Márgenes del Texto
-
+ Replace Unicode CharactersReemplazar Caracteres Unicode
-
+ Replace Tabs with SpacesReemplazar Tabulaciones por Espacios
-
+ Preserve Hard Line BreaksConservar Saltos de Línea Forzados
-
+ Apply Dialogue HighlightingAplicar Resaltado sobre el Diálogo
-
+ First Line IndentSangría en Línea Inicial
-
+ Enable IndentHabilitar Sangría
-
+ Indent WidthAncho de Sangría
-
+ Indent First ParagraphSangría en el Primer Párrafo
-
+ Text MarginsMárgenes del texto
-
+ Title and PartitionTítulo de novela y Partición
-
+ Heading 1 and ChapterTítulo 1 y Capítulo
-
+ Heading 2 and SceneTítulo 2 y Escena
-
+ Heading 3 and SectionTítulo 3 y Sección
-
+ Heading 4Título 4
-
+ Text ParagraphPárrafo
-
+ Scene SeparatorSeparador de escenas
-
+ Page LayoutDiseño de Página
-
+ UnitUnidades
-
+ Page SizeTamaño de Página
-
+ Page MarginsMárgenes de página
-
+ Document StyleEstilo del Documento
-
+ Page HeaderEncabezado de Página
-
+ Page Counter OffsetDesfase del Número de Página
-
+ Add Colours to HeadingsAñadir colores a los títulos
-
+ Increase Size of HeadingsAumentar el tamaño de los títulos
-
+ Bold HeadingsTítulos en negrita
-
+ HTML OptionsOpciones de HTML
-
+ Add CSS StylesAñadir Estilos CSS
-
+ Preserve Tab CharactersPreservar Caracteres de Tabulación
@@ -282,72 +282,72 @@
Common
-
+ in the futureen el futuro
-
+ just nowahora mismo
-
+ a minute agohace un minuto
-
+ {0} minutes agohace {0} minutos
-
+ an hour agohace una hora
-
+ {0} hours agohace {0} horas
-
+ a day agohace un día
-
+ {0} days agohace {0} días
-
+ a week agohace una semana
-
+ {0} weeks agohace {0} semanas
-
+ a month agohace un mes
-
+ {0} months agohace {0} meses
-
+ a year agohace un año
-
+ {0} years agohace {0} años
@@ -355,441 +355,541 @@
Constant
-
-
+
+ TitleTítulo
-
+ Heading 1 (Partition)Título 1 (Partición)
-
+ Heading 2 (Chapter)Título 2 (Capítulo)
-
+ Heading 3 (Scene)Título 3 (Escena)
-
+ Heading 4 (Section)Título 4 (Sección)
-
+ Text ParagraphPárrafo
-
+ Scene SeparatorSeparador de escenas
-
-
-
+
+
+ NoneNinguno
-
+ NovelNovela
-
-
+
+ PlotArgumento
-
-
+
+ CharactersPersonajes
-
-
+
+ LocationsLugares
-
-
+
+ TimelineLínea de Tiempo
-
-
+
+ ObjectsObjetos
-
-
+
+ EntitiesEntidades
-
-
-
+
+
+ CustomPersonalizado
-
+ ArchiveArchivo
-
+ TemplatesPlantillas
-
+ TrashPapelera
-
-
+
+ Novel DocumentDocumento de Novela
-
-
+
+ Project NoteNota del Proyecto
-
+ Root FolderCarpeta Raíz
-
+ FolderCarpeta
-
+ Novel Title PagePortada de Novela
-
+ Novel ChapterCapítulo de Novela
-
+ Novel SceneEscena de Novela
-
+ Novel SectionSección Novela
-
+ ActiveEn uso
-
+ InactiveSin uso
-
+ TagEtiqueta
-
+ Point of ViewPunto de Vista
-
-
+
+ FocusFoco
-
+ StoryHistoria
-
+ MentionsMenciones
-
+ LevelNivel
-
+ DocumentDocumento
-
+ LineLínea
-
+ StatusEstado
-
+ CharsCaract.
-
+ WordsPalab.
-
+ ParsPárrafo
-
+ POVPerspectiva
-
+ SynopsisSinopsis
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ Microsoft Word Document (.docx)Documento de Microsoft Word (.docx)
-
+ HTML 5 (.html)HTML 5 (.html)
-
+ novelWriter Markup (.txt)Etiquetado de novelWriter (.txt)
-
+ Standard Markdown (.md)Markdown Estándar (.md)
-
+ Extended Markdown (.md)Markdown Ampliado (.md)
-
+ Portable Document Format (.pdf)Portable Document Format (.pdf)
-
+ JSON + HTML 5 (.json)JSON + HTML 5 (.json)
-
+ JSON + novelWriter Markup (.json)JSON + Etiquetado de novelWriter (.json)
-
+
+ Square
+ Cuadrado
+
+
+
+ Triangle
+ Triángulo
+
+
+
+ Nabla
+ Nabla
+
+
+
+ Diamond
+ Diamante
+
+
+
+ Pentagon
+ Pentágono
+
+
+
+ Hexagon
+ Hexágono
+
+
+
+ Star
+ Estrella
+
+
+
+ Pacman
+ Pacman
+
+
+
+ 1/4 Circle
+ Cuarto de Círculo
+
+
+
+ Half Circle
+ Semicírculo
+
+
+
+ 3/4 Circle
+ 3/4 de Círculo
+
+
+
+ Full Circle
+ Círculo
+
+
+
+ 1 Bar
+ 1 Barra
+
+
+
+ 2 Bars
+ 2 Barras
+
+
+
+ 3 Bars
+ 3 Barras
+
+
+
+ 4 Bars
+ 4 Barras
+
+
+
+ 1 Block
+ 1 Bloque
+
+
+
+ 2 Blocks
+ 2 Bloques
+
+
+
+ 3 Blocks
+ 3 Bloques
+
+
+
+ 4 Blocks
+ 4 Bloques
+
+
+ Text filesArchivos de texto
-
+ Markdown filesArchivos de Markdown
-
+ novelWriter filesArchivos de novelWriter
-
+ CSV filesArchivos CSV
-
+ All filesTodos los archivos
-
+ MillimetresMilímetros
-
+ CentimetresCentímetros
-
+ InchesPulgadas
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalLegal / Oficio
-
+ US LetterLetter / Carta
-
+ Straight single quotation markApóstrofo adireccional
-
+ Straight double quotation markComillas adireccionales
-
+ Left single quotation markComilla simple de apertura
-
+ Right single quotation markComilla simple de cierre
-
+ Single low-9 quotation markComilla baja simple de cierre
-
+ Single high-reversed-9 quotation markComilla alta simple de apertura
-
+ Left double quotation markComilla doble de apertura
-
+ Right double quotation markComilla doble de cierre
-
+ Double low-9 quotation markComilla baja doble de cierre
-
+ Double high-reversed-9 quotation markComilla alta doble de apertura
-
+ Double low-reversed-9 quotation markComilla baja doble de apertura
-
+ Single left-pointing angle quotation markComilla angular simple de apertura
-
+ Single right-pointing angle quotation markComilla angular simple de cierre
-
+ Double left-pointing angle quotation markComilla angular de apertura
-
+ Double right-pointing angle quotation markComilla angular de cierre
-
+ Left corner bracketSoporte de la esquina izquierda
-
+ Right corner bracketSoporte de la esquina derecha
-
+ Left white corner bracketSoporte de esquina blanco izquierdo
-
+ Right white corner bracketSoporte de equina blanco derecho
@@ -797,17 +897,17 @@
GuiAbout
-
+ About novelWriterAcerca de novelWriter
-
+ This application is licenced under {0}Esta aplicación se encuentra bajo licencia {0}
-
+ CreditsCréditos
@@ -815,33 +915,33 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsOpciones de Compilación del Manuscrito
-
+ NameNombre
-
+ GeneralGenerales
-
+ SelectionSelección
-
+ HeadingsTítulación
-
+ FormattingFormato
@@ -849,47 +949,47 @@
GuiDictionaries
-
+ Add DictionariesAgregar Diccionarios
-
+ Download a dictionary from one of the links, and add it below.Descargue un diccionario desde uno de estos enlaces, y localícelo a continuación.
-
+ Add DictionaryAgregar el Diccionario
-
+ Dictionary install locationUbicación para instalar el diccionario
-
+ Additional dictionaries found: {0}Diccionarios encontrados: {0}
-
+ Free or Libre Office extensionExtensión de Free o Libre Office
-
+ Browse FilesExplorar Archivos
-
+ Could not process dictionary fileNo se pudo procesar el archivo de diccionario
-
+ Added: {0} [{1}B]Agregado: {0} [{1}B]
@@ -897,22 +997,22 @@
GuiDocEditFooter
-
+ Line: {0} ({1})Línea: {0} ({1})
-
+ Words: {0} ({1})Palabras: {0} ({1})
-
+ Words: {0} selectedPalabras: {0} seleccionadas
-
+ StatusEstado
@@ -920,27 +1020,27 @@
GuiDocEditHeader
-
+ Toggle Tool BarAlternar Barra de Herramientas
-
+ OutlineEstructura
-
+ SearchBuscar
-
+ Toggle Focus ModeAlternar el Modo Enfocado
-
+ CloseCerrar
@@ -948,62 +1048,62 @@
GuiDocEditSearch
-
+ Search forBuscar
-
+ Replace withReemplazar con
-
+ SearchBuscar
-
+ Case SensitiveSensibilidad a Mayúsculas y Minúsculas
-
+ Whole Words OnlySólo Palabras Enteras
-
+ RegEx ModeModo ExReg
-
+ Loop SearchReiniciar la Búsqueda
-
+ Search Next FileBuscar en el Siguiente Archivo
-
+ Preserve CaseConservar Mayúsculas y Minúsculas
-
+ Close SearchCerrar la Búsqueda
-
+ Find in current documentBuscar en el documento actual
-
+ Find and replace in current documentBuscar y reemplazar en el documento actual
@@ -1011,132 +1111,132 @@
GuiDocEditor
-
+ Opened Document: {0}Se Abrió el Documento: {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Este documento ha cambiado por fuera de novelWriter estando abierto. ¿Sobreescribir en el disco?
-
+ Could not save document.No se puedo guardar el documento.
-
+ Saved Document: {0}Documento Guardado: {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.Para la corrección ortográfica se requiere del paquete PyEnchant. Parece que no se encuentra instalado.
-
+ Spell check completeSe completó la comprobación ortográfica
-
+ Document DetailsDetalles del Documento
-
+ Created: {0}Creación: {0}
-
+ Updated: {0}Actualizado en: {0}
-
+ File Location: {0}Ubicación del Archivo: {0}
-
+ Set as Document NameElegir como Nombre del Documento
-
+ Open URLAbrir URL
-
+ Follow TagContinuar a Etiqueta
-
+ Create Note for TagCrear Nota para la Etiqueta
-
+ CutCortar
-
+ CopyCopiar
-
+ PastePegar
-
+ Select AllSeleccionar Todo
-
+ Select WordSeleccionar Palabra
-
+ Select ParagraphSeleccionar Párrafo
-
+ Spelling Suggestion(s)Sugerencia(s) de Ortografía
-
+ No SuggestionsNo Hay Sugerencias
-
+ Ignore WordIgnorar la palabra
-
+ Add Word to DictionaryAñadir Palabra al Diccionario
-
+ Please select some text before calling replace quotes.Por favor seleccione algo del texto antes de intentar reemplazar las comillas.
-
+ Do you want to create a new project note for the tag '{0}'?¿Desea crear una nueva nota del proyecto para la etiqueta '{0}'?
@@ -1144,22 +1244,22 @@
GuiDocMerge
-
+ Merge DocumentsCombinar Documentos
-
+ Documents to MergeDocumentos a Combinar
-
+ Drag and drop items to change the order, or uncheck to exclude.Arrastre y suelte ítems para cambiar su orden, o desmárquelos para excluirlos.
-
+ Move merged items to TrashMover ítems combinados a la papelera
@@ -1167,52 +1267,52 @@
GuiDocSplit
-
+ Split DocumentSeparar el Documento
-
+ Document HeadingsTítulación de Documentos
-
+ Select the maximum level to split into files.Elija el nivel máximo a separar en archivos.
-
+ Split on Heading Level 1 (Partition)Separar por el Nivel de Título 1 (Partición)
-
+ Split up to Heading Level 2 (Chapter)Separar hasta el Nivel de Título 2 (Capítulo)
-
+ Split up to Heading Level 3 (Scene)Separar hasta el Nivel de Título 3 (Escena)
-
+ Split up to Heading Level 4 (Section)Separar hasta el Nivel de Título 4 (Sección)
-
+ Split into a new folderSeparar en una nueva carpeta
-
+ Create document hierarchyCrear un árbol de documentos
-
+ Move split document to TrashMover el documento separado a la Papelera
@@ -1220,52 +1320,52 @@
GuiDocToolBar
-
+ Markdown BoldNegrita (de Markdown)
-
+ Markdown ItalicCursiva (de Markdown)
-
+ Markdown StrikethroughTachado (de Markdown)
-
+ Shortcode BoldNegrita (en código)
-
+ Shortcode ItalicCursiva (en código)
-
+ Shortcode StrikethroughTachado (en código)
-
+ Shortcode UnderlineSubrayado (en código)
-
+ Shortcode HighlightResaltado (en código)
-
+ Shortcode SuperscriptSuperíndice (en código)
-
+ Shortcode SubscriptSubíndice (en código)
@@ -1273,27 +1373,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelMostrar / Ocultar Panel del Visualizador
-
+ CommentsComentarios
-
+ Show CommentsMostrar los Comentarios
-
+ SynopsisSinopsis
-
+ Show Synopsis CommentsMostrar las Sinopsis
@@ -1301,32 +1401,32 @@
GuiDocViewHeader
-
+ OutlineEstructura
-
+ Go BackwardIr Atrás
-
+ Go ForwardIr Adelante
-
+ Open in EditorAbrir en el Editor
-
+ ReloadActualizar
-
+ CloseCerrar
@@ -1334,27 +1434,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.Ocurrió un error al generar la vista previa.
-
+ CopyCopiar
-
+ Select AllSeleccionar Todo
-
+ Select WordSeleccionar Palabra
-
+ Select ParagraphSeleccionar Párrafo
@@ -1362,12 +1462,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsOcultar las Etiquetas Inactivas
-
+ ReferencesReferencias
@@ -1375,12 +1475,12 @@
GuiEditLabel
-
+ Item LabelRótulo del Ítem
-
+ LabelRótulo
@@ -1388,22 +1488,22 @@
GuiItemDetails
-
+ LabelRótulo
-
+ StatusEstado
-
+ ClassClase
-
+ UsageUso
@@ -1411,27 +1511,27 @@
GuiLipsum
-
+ Insert Placeholder TextInsertar Texto para Rellenar
-
+ Insert Lorem Ipsum TextInsertar texto Lorem Ipsum
-
+ Number of paragraphsNúmero de párrafos
-
+ Randomise orderOrden aleatorio
-
+ InsertInsertar
@@ -1439,103 +1539,103 @@
GuiMain
-
+ novelWriter is ready ...novelWriter ya está listo...
-
+ You are now running novelWriter version {0}.Está usando la versión {0} de novelWriter.
-
+ Please check the {0}release notes{1} for further details.Por favor, revise las {0}notas de la versión{1} para más detalles.
-
+ Close the current project?¿Cerrar el proyecto actual?
-
-
+
+ Changes are saved automatically.Los cambios se guardan automáticamente.
-
+ Backup the current project?¿Respaldar datos del proyecto actual?
-
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?El proyecto ya se ha abierto en otra instancia de novelWriter, y por lo tanto está bloqueado. ¿Interrumpir el bloqueo y continuar de todos modos?
-
+ Note: If the program or the computer previously crashed, the lock can safely be overridden. However, overriding it is not recommended if the project is open in another instance of novelWriter. Doing so may corrupt the project.Nota: Si el programa o la computadora dejaron de funcionar, se puede quitar el bloqueo con toda seguridad. No se recomienda en el caso de que otra instancia activa de novelWriter haya abierto el proyecto. En tal caso éste podrá entrar en corrupción.
-
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.El proyecto fue bloqueado por el equipo '{0}' ({1} {2}), por última vez activo el {3}.
-
+ The project index is outdated or broken. Rebuilding index.El índice del proyecto está dañado o desactualizado. Recomponiendo el índice.
-
+ Import FileImportar un Archivo
-
+ Could not read file. The file must be an existing text file.No se pudo leer el archivo. El archivo debe ser un archivo de texto existente.
-
+ Please open a document to import the text file into.Por favor abra un documento en el cual importar el archivo de texto.
-
+ Importing the file will overwrite the current content of the document. Do you want to proceed?El contenido actual del documento será sobrescrito al importar el archivo. ¿Desea continuar?
-
+ Indexing completed in {0} msSe completó el indexado en {0} ms
-
+ The project index has been successfully rebuilt.El índice del proyecto se ha reconstruido con éxito.
-
+ Could not initialise the dialog.No se pudo inicializar el diálogo.
-
+ Do you want to exit novelWriter?¿Desea salir de novelWriter?
-
+ Some changes will not be applied until novelWriter has been restarted.Algunos cambios no se aplicarán hasta haber reiniciado novelWriter.
-
+ Could not find the reference for tag '{0}'. It either doesn't exist, or the index is out of date. The index can be updated from the Tools menu, or by pressing {1}.No se pudo encontrar la referencia para la etiqueta '{0}'. O no existe, o se ha desactualizado el índice. Éste se puede actualizar desde el menú Herramientas, o presionando {1}.
@@ -1543,652 +1643,652 @@
GuiMainMenu
-
+ &Project&Proyecto
-
+ Create or Open ProjectCrear o Abrir un Proyecto
-
+ Save ProjectGuardar Proyecto
-
+ Close ProjectCerrar Proyecto
-
+ Project SettingsConfiguración del Proyecto
-
+ Novel DetailsDetalles de la Novela
-
+ Rename ItemRenombrar Ítem
-
+ Delete ItemEliminar Ítem
-
+ Empty TrashVaciar la Papelera
-
+ ExitSalir
-
+ &Document&Documento
-
+ Open DocumentAbrir Documento
-
+ Save DocumentGuardar Documento
-
+ Close DocumentCerrar Documento
-
+ View DocumentVisualizar Documento
-
+ Close Document ViewCerrar Visualización
-
+ Show File DetailsMostrar Detalles del Archivo
-
+ Import Text from FileImportar Texto desde un Archivo
-
+ &Edit&Editar
-
+ UndoDeshacer
-
+ RedoRehacer
-
+ CutCortar
-
+ CopyCopiar
-
+ PastePegar
-
+ Select AllSeleccionar Todo
-
+ Select ParagraphSeleccionar Párrafo
-
+ &View&Ver
-
+ Go to Tree ViewIr a Vista de Árbol
-
+ Go to DocumentIr al Documento
-
+ Go to OutlineIr a la Estructura
-
+ Navigate BackwardNavegar hacia atrás
-
+ Navigate ForwardNavegar hacia adelante
-
+ Focus ModeModo Enfocado
-
+ Full Screen ModeModo Pantalla Completa
-
+ &Insert&Insertar
-
+ DashesRayas y Guiones
-
+ Short DashGuion
-
+ Long DashRaya
-
+ Horizontal BarBarra Horizontal
-
+ Figure DashGuion de Combinación
-
+ Quote MarksComillas
-
+ Left Single QuoteComilla Simple de Apertura
-
+ Right Single QuoteComilla Simple de Cierre
-
+ Left Double QuoteComilla Doble de Apertura
-
+ Right Double QuoteComilla Doble de Cierre
-
+ Alternative ApostropheApóstrofo Alternativo
-
+ General PunctuationPuntuación General
-
+ EllipsisPuntos Suspensivos
-
+ PrimePrima
-
+ Double PrimeDoble Prima
-
+ White SpacesEspacio
-
+ Non-Breaking SpaceEspacio Duro
-
+ Thin SpaceEspacio Angosto
-
+ Thin Non-Breaking SpaceEspacio Duro Angosto
-
+ Other SymbolsOtros Signos
-
+ List BulletViñeta de Lista
-
+ Hyphen BulletViñeta Guion
-
+ Flower MarkSigno Flor
-
+ Per MillePor Mil
-
+ Degree SymbolSigno de Grado
-
+ Minus SignSigno Menos
-
+ Times SignSigno de Multiplicación
-
+ Division SignSigno de División
-
+ Tags and ReferencesEtiquetas y Referencias
-
+ Special CommentsComentarios Especiales
-
+ Synopsis CommentComentario de Sinopsis
-
+ Short Description CommentBreve Comentario Descriptivo
-
+ Word/Character CountConteo de palabras/caracteres
-
+ Breaks and Vertical SpaceSaltos y Espacio vertical
-
+ Page BreakSalto de Página
-
+ Forced Line BreakSalto de línea forzado
-
+ Vertical Space (Single)Salto Vertical (Único)
-
+ Vertical Space (Multi)Salto Vertical (Múltiple)
-
+ Placeholder TextTexto para Rellenar
-
+ FootnoteNota al pie
-
+ &Format&Formato
-
+ BoldNegrita
-
+ ItalicCursiva
-
+ StrikethroughTachado
-
+ Wrap Double QuotesEnvolver con Comillas Dobles
-
+ Wrap Single QuotesEnvolver con Comillas Simples
-
+ More Formats ...Más Formatos...
-
+ Bold (Shortcode)Negrita (Código)
-
+ Italics (Shortcode)Cursiva (Código)
-
+ Strikethrough (Shortcode)Tachado (Código)
-
+ UnderlineSubrayado
-
+ HighlightResaltar
-
+ SuperscriptSuperíndice
-
+ SubscriptSubíndice
-
+ Novel TitleTítulo de la Novela
-
+ Unnumbered ChapterCapítulo Sin Número
-
+ Alternative SceneEscena Alternativa
-
+ Align LeftAlinear a la Izquierda
-
+ Align CentreAlinear al Centro
-
+ Align RightAlinear a la Derecha
-
+ Indent LeftIndentar a la Izquierda
-
+ Indent RightIndentar a la Derecha
-
+ Toggle CommentAlternar a Comentario
-
+ Toggle Ignore TextIgnorar Texto
-
+ Remove Block FormatQuitar Formato del Bloque
-
+ Replace Straight Single QuotesReemplazar Apóstrofos
-
+ Replace Straight Double QuotesReemplazar Comillas ASCII
-
+ Remove In-Paragraph BreaksQuitar los Quiebres de Párrafo
-
+ &Search&Búsqueda
-
+ FindBuscar
-
+ ReplaceReemplazar
-
+ Find NextBuscar Siguiente
-
+ Find PreviousBuscar Anterior
-
+ Replace NextReemplazar Siguiente
-
+ Find in ProjectBuscar en el Proyecto
-
+ &Tools&Herramientas
-
+ Check SpellingComprobar la Ortografía
-
+ Spell Check LanguageIdioma de la Comprobación Ortográfica
-
+ DefaultPor defecto
-
+ Re-Run Spell CheckReiniciar la Comprobación Ortográfica
-
+ Project Word ListLista de Palabras del Proyecto
-
+ Add DictionariesAgregar Diccionarios
-
+ Rebuild IndexReconstruir el Índice
-
+ Backup ProjectCrea una copia de seguridad del proyecto
-
+ Build ManuscriptCompilar el Manuscrito
-
+ Writing StatisticsEstadísticas de Redacción
-
+ PreferencesPreferencias
-
+ &Help&Ayuda
-
+ About novelWriterAcerca de novelWriter
-
+ About Qt5Acerca de Qt5
-
+ User Manual (Online)Manual de Usuario (En línea)
-
+ User Manual (PDF)Manual de Usuario (PDF)
-
+ Report an Issue (GitHub)Reportar un Problema (GitHub)
-
+ Ask a Question (GitHub)Hacer una Pregunta (GitHub)
-
+ The novelWriter WebsiteEl Sitio Web de novelWriter
@@ -2196,38 +2296,38 @@
GuiMainStatus
-
-
+
+ NoneNinguno
-
+ EditorEditor
-
+ ProjectProyecto
-
+ Session TimeTiempo de la Sesión
-
+ Words: {0} ({1})Palabras: {0} ({1})
-
+ Project word count (session change)Total de palabras del proyecto (y variación por la sesión actual)
-
+ Novel word count (session change)Total de palabras de la novela (y variación por la sesión actual)
@@ -2235,73 +2335,73 @@
GuiManuscript
-
+ Build ManuscriptCompilar Manuscrito
-
+ Add New BuildAñadir una Nueva Compilación
-
+ Delete Selected BuildEliminar la Compilación Seleccionada
-
+ Duplicate Selected BuildDuplicar la compilación seleccionada
-
+ Edit Selected BuildEditar la Compilación Seleccionada
-
+ BuildsCompilaciones
-
+ DetailsDetalles
-
+ OutlineEstructura
-
+ PreviewVista Previa
-
+ PrintImprimir
-
+ BuildCompilar
-
+ CloseCerrar
-
+ Show Page BreaksMostrar saltos de página
-
-
+
+ My ManuscriptMi Manuscrito
@@ -2309,57 +2409,57 @@
GuiManuscriptBuild
-
+ Build ManuscriptCompilar el Manuscrito
-
+ Output FormatGrabar al Siguiente Formato
-
+ Table of ContentsTabla de Contenidos
-
+ PathRuta
-
+ File NameNombre del Archivo
-
+ Reset file name to defaultRestablecer al Nombre de Archivo Por Defecto
-
+ Open FolderAbrir la Carpeta
-
+ &BuildC&ompilar
-
+ Select FolderSeleccionar una Carpeta
-
+ Output folder does not exist.La carpeta destino no existe en la ruta definida.
-
+ The file already exists. Do you want to overwrite it?El archivo ya existe. ¿Desea sobrescribirlo?
@@ -2367,18 +2467,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsDetalles de la Novela
-
+ OverviewResumen
-
+ ContentsContenido
@@ -2386,58 +2486,58 @@
GuiNovelToolBar
-
+ Outline of {0}Estructura de {0}
-
+ Novel RootRaíz de la Novela
-
+ RefreshActualizar
-
+ Last ColumnÚltima Columna
-
+ HiddenOcultar
-
+ Point of View CharacterPersonaje Vehículo del Punto de Vista
-
+ Focus CharacterPersonaje bajo Enfoque
-
+ Novel PlotArgumento de la Novela
-
-
+
+ Column SizeTamaño de Columna
-
+ More OptionsMás Opciones
-
+ Maximum column size in %Tamaño de columna máximo en %
@@ -2445,7 +2545,7 @@
GuiNovelTree
-
+ No meta dataSin metadatos
@@ -2453,49 +2553,49 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTítulo
-
+ ChapterCapítulo
-
+ SceneEscena
-
+ SectionSección
-
+ DocumentDocumento
-
+ StatusEstado
-
+ SynopsisSinopsis
-
+ Title DetailsDetalles del Título
-
+ Reference TagsEtiquetado
@@ -2503,7 +2603,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsEscoger Columnas
@@ -2511,17 +2611,17 @@
GuiOutlineToolBar
-
+ Outline ofEstructura de
-
+ RefreshActualizar
-
+ Export CSVExportar a CSV
@@ -2529,7 +2629,7 @@
GuiOutlineTree
-
+ Save Outline AsGuardar Estructura Como
@@ -2537,609 +2637,609 @@
GuiPreferences
-
-
+
+ PreferencesPreferencias
-
+ SearchBuscar
-
+ GeneralGeneral
-
+ AppearanceApariencia
-
+ Display languageIdioma
-
-
+
+ Requires restart to take effect.Se requiere reiniciar la aplicación para surtir efecto.
-
+ Colour themeTema de colores
-
+ General colour theme and icons.Tema general de colores y de íconos.
-
+ Application fontTipografía de la Aplicación
-
+ Hide vertical scroll bars in main windowsEsconder las barras de desplazamiento vertical en las ventanas principales
-
-
+
+ Scrolling available with mouse wheel and keys only.Se podrá desplazar solamente por medio del ratón y de las teclas.
-
+ Hide horizontal scroll bars in main windowsEsconder las barras de desplazamiento horizontal en las ventanas principales
-
+ Use the system's font selection dialogSeleccionar tipografías con el cuadro de diálogo del sistema
-
+ Turn off to use the Qt font dialog, which may have more options.Desactive para seleccionar tipografías por medio de Qt, que puede ofrecer más opciones.
-
+ Document StyleEstilo del Documento
-
+ Document colour themeTema de colores del documento
-
+ Colour theme for the editor and viewer.Tema de colores del editor y del visualizador.
-
+ Document fontTipografía del Documento
-
-
-
+
+
+ Applies to both document editor and viewer.A usar tanto en el editor como en el visualizador de documentos.
-
+ Emphasise partition and chapter labelsEnfatizar etiquetado de particiones y capítulos
-
+ Makes them stand out in the project tree.Se las destaca en el árbol del proyecto.
-
+ Show full path in document headerMostrar la ruta completa del documento en el encabezado
-
+ Add the parent folder names to the header.Añade los nombres de carpetas superiores al encabezado.
-
+ Include project notes in status bar word countIncluir a las notas del proyecto en el total de palabras
-
+ BehaviourComportamiento
-
+ Save document intervalIntervalo para guardar el documento
-
+ How often the document is automatically saved.Con qué frecuencia se guardará automáticamente el documento actual.
-
-
+
+ secondssegundos
-
+ Save project intervalIntervalo para guardar el proyecto
-
+ How often the project is automatically saved.Con qué frecuencia se guardará automáticamente el proyecto actual.
-
+ Ask before exiting novelWriterPreguntar antes de salir de novelWriter
-
+ Only applies when a project is open.Solo cuando hay un proyecto abierto.
-
+ Project BackupRespaldado de Datos del Proyecto
-
+ BrowseAbrir ubicación
-
+ Backup storage locationUbicación de la copia de seguridad
-
-
+
+ Path: {0}Ruta destino: {0}
-
+ Run backup when the project is closedCrear una copia de seguridad cuando se cierre el proyecto
-
+ Can be overridden for individual projects in Project Settings.Puede anularse para un proyecto individual en la Configuración del Proyecto.
-
+ Ask before running backupPreguntar antes de respaldar
-
+ If off, backups will run in the background.De lo contrario se crearán las copias de seguridad en segundo plano.
-
+ Session TimerTiempo de la Sesión
-
+ Pause the session timer when not writingPoner el tiempo de la sesión en pausa cuando no se esté escribiendo
-
+ Also pauses when the application window does not have focus.Además lo pone en pausa cuando la ventana de la aplicación no tenga el foco.
-
+ Editor inactive time before pausing timerLapso de inacción antes de poner el tiempo en pausa
-
+ User activity includes typing and changing the content.Las acciones incluyen tipear y modificar el contenido.
-
+ minutesminutos
-
+ WritingEscritura
-
+ Text FlowFlujo del Texto
-
+ Maximum text width in "Normal Mode"Anchura máxima del texto en "Modo Normal"
-
+ Set to 0 to disable this feature.Establecer en 0 para desactivar esta función.
-
-
-
-
+
+
+
+ pxpx
-
+ Maximum text width in "Focus Mode"Anchura máxima del texto en "Modo Enfocado"
-
+ The maximum width cannot be disabled.La anchura máxima no se puede desactivar.
-
+ Hide document footer in "Focus Mode"Ocultar el pie del documento en el "Modo Enfocado"
-
+ Hide the information bar in the document editor.Oculta la barra de información del editor del documento.
-
+ Justify the text marginsJustificar los márgenes del texto
-
+ Minimum text marginMargen mínimo del texto
-
+ Tab widthAnchura de la tabulación por tecla Tab
-
+ The width of a tab key press in the editor and viewer.El ancho de una tabulación producido en el editor y el visualizador.
-
+ Text EditingEdición
-
+ Spell check languageIdioma a comprobar la ortografía
-
+ Available languages are determined by your system.Su sistema determinará los idiomas disponibles.
-
+ Auto-select word under cursorSeleccionar la palabra bajo el cursor
-
+ Apply formatting to word under cursor if no selection is made.De no haber selección se aplicará el formato a la palabra situada bajo el cursor.
-
+ Show tabs and spacesMostrar tabulaciones y espacios
-
+ Show line endingsMostrar fin de línea
-
+ Editor ScrollingDesplazamiento del Editor
-
+ Scroll past end of the documentDesplazar más allá del final del documento
-
+ Also centres the cursor when scrolling.También centra el cursor al desplazarse.
-
+ Typewriter style scrolling when you typeDesplazamiento estilo "máquina de escribir" cuando teclea
-
+ Keeps the cursor at a fixed vertical position.Conservará el cursor de texto en una posición vertical fija.
-
+ Minimum position for Typewriter scrollingPosicionamiento mínimo para desplazar tipo "Máquina de escribir"
-
+ Percentage of the editor height from the top.Un porcentaje de la altura del editor desde el tope.
-
+ Text HighlightingResaltado
-
+ NoneEn ningún caso
-
+ Single QuotesEn Comillas Simples
-
+ Double QuotesEn Comillas Dobles
-
+ BothEn ambos casos
-
+ Highlight dialogueResaltar diálogos
-
+ Applies to the selected quote styles.Se aplica a los estilos de comillas seleccionados.
-
+ Alternative dialogue symbolsSímbolos de diálogo alternativos
-
+ Custom highlighting of dialogue text.Personaliza el resaltado de diálogos.
-
+ Allow open-ended dialoguePermitir diálogos en continuado
-
+ Highlight dialogue line with no closing quote.Se resaltarán líneas del diálogo sin símbolo de cierre.
-
+ Dialogue line symbolsSímbolos de línea de diálogo
-
+ Lines starting with any of these symbols are dialogue.Las líneas que empiecen con uno de estos símbolos serán diálogo.
-
+ Narrator break symbolSímbolo de comentario del narrador
-
+ Symbol to indicate a narrator break in dialogue.Símbolo que indica una interrupción del diálogo por parte del narrador.
-
+ Alternating dialogue/narration symbolSímbolo alternante entre diálogo y narración
-
+ Alternates dialogue highlighting within any paragraph.Proporciona resaltado del diálogo en medio de un párrafo.
-
+ Add highlight colour to emphasised textAñadir resalte de color al texto enfatizado
-
-
+
+ Applies to the document editor only.Se usará solo en el editor de documentos.
-
+ Highlight multiple or trailing spacesResaltar espacios múltiples o finales
-
+ Text AutomationAutomatización
-
+ Auto-replace text as you typeReemplazar el texto mientras se escribe
-
+ Allow the editor to replace symbols as you type.Permite al editor reemplazar símbolos mientras tipea.
-
+ Auto-replace single quotesReemplazar comillas simples
-
-
+
+ Try to guess which is an opening or a closing quote.Se intentará adivinar cuáles comillas son de apertura o de cierre.
-
+ Auto-replace double quotesReemplazar comillas dobles
-
+ Auto-replace dashesReemplazar guiones
-
+ Double and triple hyphens become short and long dashes.Los guiones dobles y triples se convertirán en rayas cortas y largas.
-
+ Auto-replace dotsReemplazar puntos
-
+ Three consecutive dots become ellipsis.Tres puntos consecutivos se convierten en el carácter de puntos suspensivos.
-
+ Insert non-breaking space beforeInsertar un espacio duro previo a
-
+ Automatically add space before any of these symbols.Añade un espacio indivisible automáticamente delante de un símbolo de esta lista.
-
+ Insert non-breaking space afterInsertar un espacio duro posterior a
-
+ Automatically add space after any of these symbols.Añade un espacio indivisible automáticamente detrás de un símbolo de esta lista.
-
+ Use thin space insteadPero espaciar con un espacio duro fino
-
+ Inserts a thin space instead of a regular space.Inserta un espacio indivisible más estrecho en lugar de un espacio duro regular.
-
+ Quotation StyleEmpleo de Comillas
-
+ Single quote open styleEstilo de comilla de apertura simple
-
+ The symbol to use for a leading single quote.El símbolo a usar para una comilla de apertura simple.
-
+ Single quote close styleEstilo de comilla de cierre simple
-
+ The symbol to use for a trailing single quote.El símbolo a usar para una comilla de cierre simple.
-
+ Double quote open styleEstilo de comilla de apertura doble
-
+ The symbol to use for a leading double quote.El símbolo a usar para una comilla de apertura doble.
-
+ Double quote close styleEstilo de comilla de cierre doble
-
+ The symbol to use for a trailing double quote.El símbolo a usar para una comilla de cierre doble.
-
+ Backup DirectoryDirectorio de la Copia de Seguridad
@@ -3147,27 +3247,27 @@
GuiProjectSearch
-
+ Project SearchBúsqueda en Proyecto
-
+ Case SensitiveSensibilidad a Mayúsculas y Minúsculas
-
+ Whole Words OnlySólo Palabras Enteras
-
+ RegEx ModeModo ExReg
-
+ Search forBuscar
@@ -3175,28 +3275,28 @@
GuiProjectSettings
-
-
+
+ Project SettingsConfiguración del Proyecto
-
+ SettingsConfiguración
-
+ StatusEstado
-
+ ImportanceImportancia
-
+ Auto-ReplaceReemplazos
@@ -3204,47 +3304,47 @@
GuiProjectToolBar
-
+ Project ContentContenido del Proyecto
-
+ Quick LinksEnlaces Rápidos
-
+ Move UpMover Arriba
-
+ Move DownMover Abajo
-
+ Add ItemAñadir Ítem
-
+ Expand AllExpandir Todo
-
+ Collapse AllContraer Todo
-
+ Empty TrashVaciar la Papelera
-
+ More OptionsMás Opciones
@@ -3252,93 +3352,93 @@
GuiProjectTree
-
+ Did not find anywhere to add the file or folder!¡No se encontró dónde añadir el archivo o carpeta!
-
+ Cannot add new files or folders to the Trash folder.No se puede añadir nuevos archivos o carpetas a la carpeta Papelera.
-
+ New NoteNota nueva
-
+ New ChapterCapítulo Nuevo
-
+ New SceneEscena Nueva
-
+ New DocumentDocumento Nuevo
-
+ New FolderNueva Carpeta
-
+ No documents selected for merging.No se han seleccionado documentos para combinar.
-
+ MergedCombinado
-
-
+
+ Could not write document content.No se pudo escribir el contenido del documento.
-
+ Do you want to duplicate this document?¿Desea duplicar este documento?
-
+ Do you want to duplicate this item and all child items?¿Desea duplicar este ítem y todos sus ítems secundarios?
-
+ Could not duplicate all items.No se ha podido duplicar todos los ítems.
-
+ Root folders can only be deleted when they are empty.Las carpetas raíz sólo pueden eliminarse si están vacías.
-
+ Permanently delete selected item(s)?¿Eliminar permanentemente el/los elemento(s) seleccionado(s)?
-
+ Move selected item(s) to Trash?¿Mover elemento(s) seleccionado(s) a la Papelera?
-
+ The Trash folder is already empty.La carpeta Papelera ya está vacía.
-
+ Permanently delete {0} file(s) from Trash?¿Eliminar {0} archivo(s) permanentemente de la Papelera?
@@ -3346,7 +3446,7 @@
GuiQuoteSelect
-
+ Select Quote StyleSeleccionar estilo de entrecomillado
@@ -3354,42 +3454,42 @@
GuiSideBar
-
+ Project Tree ViewVista de Árbol del Proyecto
-
+ Novel Tree ViewVista de Árbol de Novela
-
+ Project SearchBúsqueda en Proyecto
-
+ Novel Outline ViewVista de Estructura de la Novela
-
+ Build ManuscriptCompilar el Manuscrito
-
+ Novel DetailsDetalles de la Novela
-
+ Writing StatisticsEstadísticas de Redacción
-
+ SettingsConfiguración
@@ -3397,37 +3497,37 @@
GuiWelcome
-
+ WelcomeBienvenida
-
+ ListLista
-
+ NewNuevo
-
+ BrowseAbrir ubicación
-
+ CancelCancelar
-
+ CreateCrear
-
+ OpenAbrir
@@ -3435,43 +3535,43 @@
GuiWordList
-
-
+
+ Project Word ListLista de Palabras del Proyecto
-
+ Import words from text fileImportar palabras desde un archivo de texto
-
+ Export words to text fileExportar palabras a un archivo de texto
-
+ Add WordAgregar palabra
-
+ Remove WordQuitar palabra
-
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.Nota: El archivo a importar debe ser un archivo de texto plano (codificación UTF-8 o ASCII).
-
+ Import FileImportar desde Archivo
-
+ Export FileExportar a Archivo
@@ -3479,147 +3579,147 @@
GuiWritingStats
-