From 17baceb8070619de432650fd284f7606341e18f1 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sat, 6 Apr 2024 19:08:49 +0200
Subject: [PATCH 1/3] Improve a few GUI labels
---
i18n/nw_base.ts | 32 ++++++++++++++++++++------------
novelwriter/gui/doceditor.py | 4 ++--
novelwriter/gui/search.py | 2 +-
novelwriter/tools/manuscript.py | 26 +++++++++++++-------------
4 files changed, 36 insertions(+), 28 deletions(-)
diff --git a/i18n/nw_base.ts b/i18n/nw_base.ts
index c6fc3e6e..e458fa8b 100644
--- a/i18n/nw_base.ts
+++ b/i18n/nw_base.ts
@@ -842,14 +842,18 @@
GuiDocEditSearch
-
- Search
+ Search for
- Replace
+ Replace with
+
+
+
+
+ Search
@@ -2155,9 +2159,8 @@
-
- Build
+ Details
@@ -2175,6 +2178,11 @@
Print
+
+
+ Build
+
+ Close
@@ -3008,7 +3016,7 @@
- Search
+ Search for
@@ -4562,12 +4570,12 @@
- Heading Words
+ Words in Headings
- Body Text Words
+ Words in Text
@@ -4582,12 +4590,12 @@
- Heading Characters
+ Characters in Headings
- Body Text Characters
+ Characters in Text
@@ -4597,12 +4605,12 @@
- Heading Characters, No Spaces
+ Characters in Headings, No Spaces
- Body Text Characters, No Spaces
+ Characters in Text, No Spaces
diff --git a/novelwriter/gui/doceditor.py b/novelwriter/gui/doceditor.py
index e6899b2b..13525ded 100644
--- a/novelwriter/gui/doceditor.py
+++ b/novelwriter/gui/doceditor.py
@@ -2408,12 +2408,12 @@ class GuiDocEditSearch(QFrame):
self.searchBox = QLineEdit(self)
self.searchBox.setFont(self.boxFont)
- self.searchBox.setPlaceholderText(self.tr("Search"))
+ self.searchBox.setPlaceholderText(self.tr("Search for"))
self.searchBox.returnPressed.connect(self._doSearch)
self.replaceBox = QLineEdit(self)
self.replaceBox.setFont(self.boxFont)
- self.replaceBox.setPlaceholderText(self.tr("Replace"))
+ self.replaceBox.setPlaceholderText(self.tr("Replace with"))
self.replaceBox.returnPressed.connect(self._doReplace)
self.searchOpt = QToolBar(self)
diff --git a/novelwriter/gui/search.py b/novelwriter/gui/search.py
index 6811c026..0c475637 100644
--- a/novelwriter/gui/search.py
+++ b/novelwriter/gui/search.py
@@ -98,7 +98,7 @@ class GuiProjectSearch(QWidget):
# Search Box
self.searchText = QLineEdit(self)
- self.searchText.setPlaceholderText(self.tr("Search"))
+ self.searchText.setPlaceholderText(self.tr("Search for"))
self.searchText.setClearButtonEnabled(True)
self.searchAction = self.searchText.addAction(
diff --git a/novelwriter/tools/manuscript.py b/novelwriter/tools/manuscript.py
index 0fac65fa..3b81429e 100644
--- a/novelwriter/tools/manuscript.py
+++ b/novelwriter/tools/manuscript.py
@@ -155,7 +155,7 @@ class GuiManuscript(QDialog):
self.buildOutline = _OutlineWidget(self)
self.detailsTabs = QTabWidget(self)
- self.detailsTabs.addTab(self.buildDetails, self.tr("Build"))
+ self.detailsTabs.addTab(self.buildDetails, self.tr("Details"))
self.detailsTabs.addTab(self.buildOutline, self.tr("Outline"))
self.detailsTabs.setStyleSheet(SHARED.theme.getStyleSheet(STYLES_FLAT_TABS))
@@ -1008,7 +1008,7 @@ class _StatsWidget(QWidget):
# Maximal
self.maxTotalWords.setText("{0:n}".format(data.get("allWords", 0)))
- self.maxHeaderWords.setText("{0:n}".format(data.get("titleWords", 0)))
+ self.maxHeadWords.setText("{0:n}".format(data.get("titleWords", 0)))
self.maxTextWords.setText("{0:n}".format(data.get("textWords", 0)))
self.maxTitleCount.setText("{0:n}".format(data.get("titleCount", 0)))
self.maxParCount.setText("{0:n}".format(data.get("paragraphCount", 0)))
@@ -1018,7 +1018,7 @@ class _StatsWidget(QWidget):
self.maxTextChars.setText("{0:n}".format(data.get("textChars", 0)))
self.maxTotalWordChars.setText("{0:n}".format(data.get("allWordChars", 0)))
- self.maxHeaderWordChars.setText("{0:n}".format(data.get("titleWordChars", 0)))
+ self.maxHeadWordChars.setText("{0:n}".format(data.get("titleWordChars", 0)))
self.maxTextWordChars.setText("{0:n}".format(data.get("textWordChars", 0)))
return
@@ -1082,21 +1082,21 @@ class _StatsWidget(QWidget):
# Left Column
self.maxTotalWords = QLabel(self)
- self.maxHeaderWords = QLabel(self)
+ self.maxHeadWords = QLabel(self)
self.maxTextWords = QLabel(self)
self.maxTitleCount = QLabel(self)
self.maxParCount = QLabel(self)
self.maxTotalWords.setAlignment(QtAlignRight)
- self.maxHeaderWords.setAlignment(QtAlignRight)
+ self.maxHeadWords.setAlignment(QtAlignRight)
self.maxTextWords.setAlignment(QtAlignRight)
self.maxTitleCount.setAlignment(QtAlignRight)
self.maxParCount.setAlignment(QtAlignRight)
self.leftForm = QFormLayout()
self.leftForm.addRow(self.tr("Words"), self.maxTotalWords)
- self.leftForm.addRow(self.tr("Heading Words"), self.maxHeaderWords)
- self.leftForm.addRow(self.tr("Body Text Words"), self.maxTextWords)
+ self.leftForm.addRow(self.tr("Words in Headings"), self.maxHeadWords)
+ self.leftForm.addRow(self.tr("Words in Text"), self.maxTextWords)
self.leftForm.addRow("", QLabel(self))
self.leftForm.addRow(self.tr("Headings"), self.maxTitleCount)
self.leftForm.addRow(self.tr("Paragraphs"), self.maxParCount)
@@ -1109,7 +1109,7 @@ class _StatsWidget(QWidget):
self.maxTextChars = QLabel(self)
self.maxTotalWordChars = QLabel(self)
- self.maxHeaderWordChars = QLabel(self)
+ self.maxHeadWordChars = QLabel(self)
self.maxTextWordChars = QLabel(self)
self.maxTotalChars.setAlignment(QtAlignRight)
@@ -1117,16 +1117,16 @@ class _StatsWidget(QWidget):
self.maxTextChars.setAlignment(QtAlignRight)
self.maxTotalWordChars.setAlignment(QtAlignRight)
- self.maxHeaderWordChars.setAlignment(QtAlignRight)
+ self.maxHeadWordChars.setAlignment(QtAlignRight)
self.maxTextWordChars.setAlignment(QtAlignRight)
self.rightForm = QFormLayout()
self.rightForm.addRow(self.tr("Characters"), self.maxTotalChars)
- self.rightForm.addRow(self.tr("Heading Characters"), self.maxHeaderChars)
- self.rightForm.addRow(self.tr("Body Text Characters"), self.maxTextChars)
+ self.rightForm.addRow(self.tr("Characters in Headings"), self.maxHeaderChars)
+ self.rightForm.addRow(self.tr("Characters in Text"), self.maxTextChars)
self.rightForm.addRow(self.tr("Characters, No Spaces"), self.maxTotalWordChars)
- self.rightForm.addRow(self.tr("Heading Characters, No Spaces"), self.maxHeaderWordChars)
- self.rightForm.addRow(self.tr("Body Text Characters, No Spaces"), self.maxTextWordChars)
+ self.rightForm.addRow(self.tr("Characters in Headings, No Spaces"), self.maxHeadWordChars)
+ self.rightForm.addRow(self.tr("Characters in Text, No Spaces"), self.maxTextWordChars)
self.rightForm.setHorizontalSpacing(hPx)
self.rightForm.setVerticalSpacing(vPx)
From 733bc89a475d8abbff3888e2d5ef6baffad0c990 Mon Sep 17 00:00:00 2001
From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com>
Date: Sat, 6 Apr 2024 19:09:35 +0200
Subject: [PATCH 2/3] Update all translation files
---
i18n/nw_de_DE.ts | 2022 ++++++++++----------
i18n/nw_en_US.ts | 2022 ++++++++++----------
i18n/nw_es_419.ts | 2022 ++++++++++----------
i18n/nw_fr_FR.ts | 2022 ++++++++++----------
i18n/nw_it_IT.ts | 2022 ++++++++++----------
i18n/nw_ja_JP.ts | 2022 ++++++++++----------
i18n/nw_nb_NO.ts | 2022 ++++++++++----------
i18n/nw_nl_NL.ts | 2022 ++++++++++----------
i18n/nw_pt_BR.ts | 4494 +++++++++++++++++++++++----------------------
i18n/nw_zh_CN.ts | 4040 ++++++++++++++++++++--------------------
10 files changed, 13100 insertions(+), 11610 deletions(-)
diff --git a/i18n/nw_de_DE.ts b/i18n/nw_de_DE.ts
index 9c7f2b15..8c30b7dd 100644
--- a/i18n/nw_de_DE.ts
+++ b/i18n/nw_de_DE.ts
@@ -4,215 +4,235 @@
Builds
-
+ Document FiltersDokumentenfilter
-
+ Novel DocumentsRomandokumente
-
+ Project NotesProjektnotizen
-
+ Inactive DocumentsInaktive Dokumente
-
+ HeadingsÜberschriften
-
- Title Headings
- Titel
+
+ Partition Format
+
-
- Chapter Headings
- Kapitelüberschriften
+
+ Chapter Format
+
-
- Unnumbered Headings
- Unnummerierte Überschriften
+
+ Unnumbered Format
+
-
- Scene Headings
- Szenenüberschriften
+
+ Scene Format
+
-
- Section Headings
- Abschnittsüberschriften
+
+ Hard Scene Format
+
-
- Hide Scene Headings
- Szenenüberschriften ausblenden
+
+ Section Format
+
-
- Hide Section Headings
- Abschnittsüberschriften ausblenden
-
-
-
+ Text ContentTextinhalt
-
+ Include SynopsisZusammenfassung
-
+ Include CommentsKommentare
-
+ Include KeywordsSchlagwörter
-
+ Include Body TextFließtext
-
+
+ Ignore These Keywords
+
+
+
+ Insert ContentInhalte einfügen
-
+ Add Titles for NotesTitel für Notizen einfügen
-
+ Text FormatTextformatierung
-
+ Font FamilySchriftart
-
+ Font SizeSchriftgröße
-
+ Line HeightZeilenhöhe
-
+ Text OptionsTextoptionen
-
+ Justify Text MarginsBlocksatz
-
+ Replace Unicode CharactersUnicode ersetzen
-
+ Replace Tabs with SpacesTabs durch Leerzeichen ersetzen
-
+ Page LayoutSeitenlayout
-
+ UnitEinheit
-
+ Page SizeSeitenformat
-
+ Page WidthSeitenbreite
-
+ Page HeightSeitenhöhe
-
+ Top MarginAbstand oben
-
+ Bottom MarginAbstand unten
-
+ Left MarginAbstand links
-
+ Right MarginAbstand rechts
-
+ Open Document (.odt)Open Document (.odt)
-
+ Add Highlight ColoursHervorhebungsfarben hinzufügen
-
+ Page HeaderKopfzeile
-
+ Page Counter OffsetSeitenzahl-Offset
-
+
+ First Line Indent
+
+
+
+
+ Markdown (.md)
+
+
+
+
+ Preserve Hard Line Breaks
+
+
+
+ HTML (.html)HTML (.html)
-
+ Add CSS StylesCSS hinzufügen
+
+
+ Preserve Tab Characters
+
+ Common
@@ -290,375 +310,375 @@
Constant
-
-
-
+
+
+ NoneOhne
-
+ NovelRoman
-
-
+
+ PlotHandlungen
-
-
+
+ CharactersFiguren
-
-
+
+ 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
-
+ TagSchlagwort
-
+ Point of ViewPerspektive
-
-
+
+ FocusMittelpunkt
-
+ TitleTitel
-
+ LevelEbene
-
+ DocumentDokument
-
+ LineZeile
-
+ CharsZeichen
-
+ WordsWörter
-
+ ParsAbsätze
-
+ POVPerspektive
-
+ SynopsisZusammenfassung
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ novelWriter HTML (.html)novelWriter-HTML (.html)
-
+ novelWriter Markup (.txt)novelWriter-Markup (.txt)
-
+ Standard Markdown (.md)Standard-Markdown (.md)
-
+ Extended Markdown (.md)Erweitertes Markdown (.md)
-
+ JSON + novelWriter HTML (.json)JSON + NovelWriter-HTML (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter-Markup (.json)
-
+ 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
@@ -684,38 +704,38 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsBuildeinstellungen
-
+ NameName
-
+ SelectionAuswahl
-
+ HeadingsÜberschriften
-
+ ContentInhalt
-
+ FormatFormat
-
+ OutputAusgabe
@@ -723,47 +743,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]
@@ -771,55 +791,50 @@
GuiDocEditFooter
-
- Status
- Status
-
-
-
+ Line: {0} ({1})Zeile: {0} ({1})
-
+ Words: {0} ({1})Wörter: {0} ({1})
-
- Document size is {0} bytes
- Dateigröße: {0} bytes
-
-
-
+ Words: {0} selectedWörter: {0} markiert
-
- Character count: {0}
- Zeichenanzahl: {0}
+
+ Status
+ StatusGuiDocEditHeader
-
+ Toggle Tool BarWerkzeugleiste ein/aus
-
+
+ Outline
+
+
+
+ SearchSuche
-
+ Toggle Focus ModeAblenkungsfrei ein/aus
-
+ CloseSchließen
@@ -827,58 +842,62 @@
GuiDocEditSearch
-
-
+
+ Search for
+
+
+
+
+ Replace with
+
+
+
+ SearchSuchen
-
- Replace
- Ersetzen
-
-
-
+ 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
@@ -886,150 +905,145 @@
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
-
+ 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
-
+ 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?
-
-
- Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first.
- Für „{0}" konnte in einem Stammordner keine Notiz ertellt werden. Wenn es den Ordner noch nicht gibt, muss er erst erstellt werden.
- 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
@@ -1037,52 +1051,52 @@
GuiDocSplit
-
+ Split DocumentDokument aufteilen
-
- Document Headers
- Überschriften im Dokument
+
+ Document Headings
+
-
+ 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 Header Level 1 (Title)
- Teilen bei Ebene 1 (Teil)
-
-
-
- Split up to Header Level 2 (Chapter)
- Teilen bei Ebene 2 (Kapitel)
-
- Split up to Header Level 3 (Scene)
- Teilen bei Ebene 3 (Szene)
+ Split on Heading Level 1 (Partition)
+
- Split up to Header Level 4 (Section)
- Teilen bei Ebene 4 (Abschnitt)
+ Split up to Heading Level 2 (Chapter)
+
-
+
+ Split up to Heading Level 3 (Scene)
+
+
+
+
+ Split up to Heading Level 4 (Section)
+
+
+
+ Split into a new folderIn einen neuen Ordner aufteilen
-
+ Create document hierarchyDokumenten-Hierarchie erstellen
-
+ Move split document to TrashGeteiltes Dokument in den Papierkorb verschieben
@@ -1090,47 +1104,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 Highlight
+
+
+
+ Shortcode SuperscriptHochgestellt mit Shortcode
-
+ Shortcode SubscriptTiefgestellt mit Shortcode
@@ -1138,27 +1157,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelAnsichtsbereich ein-/ausblenden
-
+ CommentsKommentare
-
+ Show CommentsKommentare anzeigen
-
+ SynopsisZusammenfassung
-
+ Show Synopsis CommentsZusammenfassung anzeigen
@@ -1166,22 +1185,27 @@
GuiDocViewHeader
-
+
+ Outline
+
+
+
+ Go BackwardZurück
-
+ Go ForwardVor
-
+ ReloadAktualisieren
-
+ CloseSchließen
@@ -1189,27 +1213,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.Fehler beim Erstellen der Vorschau.
-
+ CopyKopieren
-
+ Select AllAlles markieren
-
+ Select WordWort markieren
-
+ Select ParagraphAbsatz markieren
@@ -1217,12 +1241,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsInaktive Schlagwörter ausblenden
-
+ ReferencesVerweise
@@ -1230,12 +1254,12 @@
GuiEditLabel
-
+ Item LabelTitel
-
+ LabelName
@@ -1243,37 +1267,37 @@
GuiItemDetails
-
+ LabelName
-
+ StatusStatus
-
+ ClassGruppe
-
+ UsageKategorie
-
+ CharactersZeichen
-
+ WordsWörter
-
+ ParagraphsAbsätze
@@ -1281,27 +1305,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
@@ -1309,103 +1333,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}.
@@ -1413,642 +1437,657 @@
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 Project TreeZur Projektstruktur wechseln
-
+ Go to Document EditorZum Editor 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 DashGeviertstrich
-
+ Horizontal BarAnführungsstrich
-
+ Figure DashTrennstrich für Nummern
-
+ 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 Symbole
-
+ 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
-
+ Page Break and SpaceSeitenumbrüche und Abstände
-
+ Page BreakSeitenumbruch
-
+ Vertical Space (Single)Senkrechter Abstand (einfach)
-
+ Vertical Space (Multi)Senkrechter Abstand (mehrfach)
-
+ Placeholder TextPlatzhaltertext
-
+ &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
-
+
+ Highlight
+
+
+
+ SuperscriptHochgestellt
-
+ SubscriptTiefgestellt
-
-
- Header 1 (Partition)
- Überschrift 1 (Teil)
-
- Header 2 (Chapter)
- Überschrift 2 (Kapitel)
+ Heading 1 (Partition)
+
- Header 3 (Scene)
- Überschrift 3 (Szene)
+ Heading 2 (Chapter)
+
- Header 4 (Section)
- Überschrift 4 (Abschnitt)
+ Heading 3 (Scene)
+
-
+
+ Heading 4 (Section)
+
+
+
+ Novel TitleRomantitel
-
+ Unnumbered ChapterUnnummeriertes Kapitel
-
+
+ Hard Scene
+
+
+
+ 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
-
- Convert Single Quotes
- Einfache Anführungszeichen umwandeln
+
+ Replace Straight Single Quotes
+
-
- Convert Double Quotes
- Doppelte Anführungszeichen umwandeln
+
+ Replace Straight Double Quotes
+
-
+ Remove In-Paragraph BreaksZeilenumbrüche in Absätzen entfernen
-
+ &Search&Suche
-
+ FindSuchen
-
+ ReplaceErsetzen
-
+ Find NextNächste Fundstelle
-
+ Find PreviousVorherige Fundstelle
-
+ Replace NextNächste Fundstelle ersetzen
-
+
+ Find in Project
+
+
+
+ &ToolsE&xtras
-
+ 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
@@ -2095,53 +2134,63 @@
GuiManuscript
-
+ Build ManuscriptManuskript erstellen
-
+ Add New BuildNeuen Build hinzufügen
-
+ Delete Selected BuildAusgewählten Build löschen
-
+ Edit Selected BuildAusgewählten Build bearbeiten
-
+ BuildsBuilds
-
+
+ Details
+
+
+
+
+ Outline
+
+
+
+ PreviewVorschau
-
+ PrintDrucken
-
+ BuildErstellen
-
+ CloseSchließen
-
-
+
+ My ManuscriptMein Manuskript
@@ -2149,57 +2198,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?
@@ -2207,18 +2256,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsRomandetails
-
+ OverviewÜbersicht
-
+ ContentsInhalt
@@ -2226,58 +2275,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 CharacterFigur im Mittelpunkt
-
+ Novel PlotRomanhandlung
-
-
+
+ Column SizeSpaltenbreite
-
+ More OptionsWeitere Optionen
-
+ Maximum column size in %Maximale Spaltenbreite in %
@@ -2285,7 +2334,7 @@
GuiNovelTree
-
+ No meta dataKeine Meta-Daten
@@ -2293,64 +2342,64 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTitel
-
+ ChapterKapitel
-
+ SceneSzene
-
+ SectionAbschnitt
-
+ DocumentDokument
-
+ StatusStatus
-
+ CharactersZeichen
-
+ WordsWörter
-
+ ParagraphsAbsätze
-
+ SynopsisZusammenfassung
-
+ Title DetailsTiteldetails
-
+ Reference TagsReferenzen
@@ -2358,7 +2407,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsSpalten anzeigen
@@ -2366,17 +2415,17 @@
GuiOutlineToolBar
-
+ Outline ofGliederung für
-
+ RefreshAktualisieren
-
+ Export CSVCSV exportieren
@@ -2384,7 +2433,7 @@
GuiOutlineTree
-
+ Save Outline AsGliederung speichern
@@ -2392,13 +2441,13 @@
GuiPreferences
-
-
+
+ PreferencesEinstellungen
-
+ SearchSuchen
@@ -2413,561 +2462,589 @@
Darstellung
-
+ Display languageAnzeigesprache
-
-
-
+
+
+ Requires restart to take effect.Neustart erforderlich.
-
+ Colour themeFarbschema (Anwendung)
-
+ General colour theme and icons.Allgemeines Farbschema und Icons.
-
+ Application font familySchriftart (Anwendung)
-
+ Application font sizeSchriftgröße (Anwendung)
-
-
+
+ ptpt
-
+ 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
-
+ Document StyleDarstellung von Dokumenten
-
+ Document colour themeFarbschema (Dokumente)
-
+ Colour theme for the editor and viewer.Farbschema für Editor und Ansicht.
-
+ Document font familySchriftart (Dokumente)
-
-
-
-
+
+
+
+ Applies to both document editor and viewer.Gilt für Editor und Ansicht.
-
+ Document font sizeSchriftgröße (Dokumente)
-
+ 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
-
+ Auto SaveAutomatisch speichern
-
+ 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.
-
+ 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
-
+ Highlight text wrapped in quotesText in Anführungszeichen hervorheben
-
-
-
+
+
+ Applies to the document editor only.Gilt nur für den Editor.
-
+ Allow open-ended single quotesErlaube einfache Anführungszeichen ohne Schließung
-
+ Highlight single-quoted line with no closing quote.Hebt Text in einfachen Anführungszeichen hervor, auch wenn kein schließendes Anführungszeichen gefunden wird.
-
+ Allow open-ended double quotesErlaube doppelte Anführungszeichen ohne Schließung
-
+ Highlight double-quoted line with no closing quote.Hebt Text in doppelten Anführungszeichen hervor, auch wenn kein schließendes Anführungszeichen gefunden wird.
-
+ Add highlight colour to emphasised textFormatierten Text hervorheben
-
+ 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.Ermöglicht das Ersetzen von Symbolen 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
+
+ GuiProjectSearch
+
+
+ Project Search
+
+
+
+
+ Case Sensitive
+ Groß-/Kleinschreibung beachten
+
+
+
+ Whole Words Only
+ Nur ganze Wörter
+
+
+
+ RegEx Mode
+ RegEx-Modus
+
+
+
+ Search for
+
+
+ GuiProjectSettings
-
-
+
+ Project SettingsProjekteinstellungen
-
+ SettingsEinstellungen
-
+ StatusStatus
-
+ ImportanceWichtigkeit
-
+ Auto-ReplaceErsetzen
@@ -2975,47 +3052,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
@@ -3023,118 +3100,118 @@
GuiProjectTree
-
+ ActiveAktiv
-
+ InactiveInaktiv
-
+ Permanently delete {0} file(s) from Trash?{0} Element(e) endgültig löschen?
-
+ 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
-
+ There is currently no Trash folder in this project.Derzeit gibt es keinen Papierkorb für dieses Projekt.
-
+ The Trash folder is already empty.Papierkorb ist bereits leer.
-
+ Move '{0}' to Trash?„{0}“ in den Papierkorb verschieben?
-
+ Root folders can only be deleted when they are empty.Hauptordner können nur gelöscht werden, wenn sie leer sind.
-
+ Permanently delete '{0}'?„{0}“ endgültig löschen?
-
+ Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent.Ziehen und Ablegen ist nur erlaubt für einzelne Elemente, Nicht-Hauptelemente oder mehrere Elemente mit dem gleichen übergeordneten Element.
-
+ 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.
-
+ There is nowhere to add item with name '{0}'.Konnte das Element mit dem Namen „{0}“ nirgends hinzufügen.
@@ -3142,37 +3219,42 @@
GuiSideBar
-
+ Project Tree ViewProjektstruktur
-
+ Novel Tree ViewRomanstruktur
-
+
+ Project Search
+
+
+
+ Novel Outline ViewGliederung
-
+ Build ManuscriptManuskript erstellen
-
+ Novel DetailsRomandetails
-
+ Writing StatisticsSchreibstatistiken
-
+ SettingsEinstellungen
@@ -3180,37 +3262,37 @@
GuiWelcome
-
+ WelcomeWillkommen
-
+ ListListe
-
+ NewNeu
-
+ BrowseAuswählen
-
+ CancelAbbrechen
-
+ CreateErstellen
-
+ OpenÖffnen
@@ -3218,33 +3300,33 @@
GuiWordList
-
-
+
+ Project Word ListProjektwörterbuch
-
+ Import words from text fileWörter aus Textdatei importieren
-
+ Export words to text fileWörter als Textdatei exportieren
-
+ 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
@@ -3252,147 +3334,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}.
@@ -3400,153 +3482,153 @@
NWProject
-
+ Could not delete document file.Datei konnte nicht gelöscht werden.
-
+ Not a known project file format.Kein bekanntes Format für Projektdateien.
-
+ 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.
-
+ Path: {0}Pfad: {0}
-
+ 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
@@ -3562,89 +3644,89 @@
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
-
+ ByVon
-
+ 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
-
+ ProtagonistHauptfigur
-
+ 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.
@@ -3840,17 +3922,17 @@
SharedData
-
+ novelWriter Project File or Zip FilenovelWriter-Projektdatei oder Zip-Datei
-
+ novelWriter Project FilenovelWriter-Projektdatei
-
+ Open ProjectProjekt öffnen
@@ -3901,57 +3983,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
@@ -3959,30 +4041,35 @@
_DetailsWidget
-
+ SettingEinstellung
-
+ ValueWert
-
+ NameName
-
+ SelectionAuswahl
-
+ TitleTitel
+
+
+ Hidden
+ Ausblenden
+ _FilterTab
@@ -4012,12 +4099,12 @@
Auf Standard zurücksetzen
-
+ Mark selection asAuswahl markieren als
-
+ Select Root FoldersHauptordner wählen
@@ -4025,22 +4112,22 @@
_GuiAlert
-
+ InformationInformation
-
+ WarningWarnung
-
+ ErrorFehler
-
+ QuestionFrage
@@ -4048,193 +4135,211 @@
_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 CharacterFigur im Mittelpunkt
-
+ InsertEinfügen
-
+ ApplyAnwenden
+
+
+ Additional Styling
+
+
+
+
+
+
+ Centre
+
+
+
+
+
+
+ Page Break
+ Seitenumbruch
+ _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 Figuren
-
+ 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}
@@ -4242,7 +4347,7 @@
_NewProjectPage
-
+ A project name is required.Ein Projektname ist erforderlich.
@@ -4250,27 +4355,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
@@ -4278,54 +4383,54 @@
_OverviewPage
-
+ ProjectProjekt
-
-
+
+ NameName
-
+ RevisionsRevisionen
-
+ Editing TimeBearbeitungszeit
-
-
+
+ Word CountWörter
-
+ In Novelsin Romanen
-
+ In Notesin Notizen
-
+ Selected NovelAusgewählter Roman
-
+ ChaptersKapitel
-
+ ScenesSzenen
@@ -4333,27 +4438,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Zum Generieren den "Vorschau"-Button anklicken ...
-
+ Processing ...In Bearbeitung ...
-
+ DoneFertig
-
+ UnknownUnbekannt
-
+ BuiltErstellt
@@ -4361,12 +4466,12 @@
_ProjectListModel
-
+ Word CountWörter
-
+ Last OpenedZuletzt geöffnet
@@ -4374,27 +4479,27 @@
_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
-
+ SaveSpeichern
@@ -4402,117 +4507,177 @@
_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
+
+ _StatsWidget
+
+
+
+ Words
+ Wörter
+
+
+
+
+ Characters
+ Zeichen
+
+
+
+ Words in Headings
+
+
+
+
+ Words in Text
+
+
+
+
+ Headings
+ Überschriften
+
+
+
+ Paragraphs
+ Absätze
+
+
+
+ Characters in Headings
+
+
+
+
+ Characters in Text
+
+
+
+
+ Characters, No Spaces
+
+
+
+
+ Characters in Headings, No Spaces
+
+
+
+
+ Characters in Text, No Spaces
+
+
+ _StatusPage
-
+ Novel Document Status LevelsRomandokumente: Status
-
+ Project Note Importance LevelsProjektnotizen: Wichtigkeit
-
+ LabelName
-
+ UsageVorkommen
-
+ Select item to editElement zum Bearbeiten auswählen
-
+ ColourFarbe
-
+ SaveSpeichern
-
+ Select ColourFarbe wählen
-
+ New ItemNeuer Eintrag
-
+ Cannot delete a status item that is in use.Element ist in Verwendung und konnte nicht gelöscht werden.
-
+ Not in useNicht verwendet
-
+ Used onceEinmal verwendet
-
+ Used by {0} itemsVerwendet von {0} Elementen
@@ -4520,133 +4685,128 @@
_TreeContextMenu
-
+ Empty TrashPapierkorb leeren
-
+ RenameUmbenennen
-
+ 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 Headers
- Dokument nach Überschriften aufteilen
+
+ Split Document by Headings
+
-
+ Expand AllAlle aufklappen
-
+ Collapse AllAlle zuklappen
-
- Duplicate from Here
- Von hier duplizieren
+
+ Duplicate
+
-
- Duplicate Document
- Dokument duplizieren
-
-
-
-
+
+ Delete PermanentlyEndgültig löschen
-
-
+
+ Move to TrashIn den Papierkorb legen
-
+ Move {0} items to Trash?{0} Element(e) in 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.
@@ -4654,7 +4814,7 @@
_UpdatableMenu
-
+ From TemplateVon Vorlage
@@ -4662,12 +4822,12 @@
_ViewPanelBackRefs
-
+ DocumentDokument
-
+ First HeadingErste Überschrift
@@ -4675,27 +4835,27 @@
_ViewPanelKeyWords
-
+ TagSchlagwort
-
+ ImportanceWichtigkeit
-
+ DocumentDokument
-
+ HeadingÜberschrift
-
+ Short DescriptionKurzbeschreibung
diff --git a/i18n/nw_en_US.ts b/i18n/nw_en_US.ts
index 597c1248..7528c133 100644
--- a/i18n/nw_en_US.ts
+++ b/i18n/nw_en_US.ts
@@ -4,215 +4,235 @@
Builds
-
+ Document FiltersDocument Filters
-
+ Novel DocumentsNovel Documents
-
+ Project NotesProject Notes
-
+ Inactive DocumentsInactive Documents
-
+ HeadingsHeadings
-
- Title Headings
- Title Headings
+
+ Partition Format
+
-
- Chapter Headings
- Chapter Headings
+
+ Chapter Format
+
-
- Unnumbered Headings
- Unnumbered Headings
+
+ Unnumbered Format
+
-
- Scene Headings
- Scene Headings
+
+ Scene Format
+
-
- Section Headings
- Section Headings
+
+ Hard Scene Format
+
-
- Hide Scene Headings
- Hide Scene Headings
+
+ Section Format
+
-
- Hide Section Headings
- Hide Section Headings
-
-
-
+ Text ContentText Content
-
+ Include SynopsisInclude Synopsis
-
+ Include CommentsInclude Comments
-
+ Include KeywordsInclude Keywords
-
+ Include Body TextInclude Body Text
-
+
+ Ignore These Keywords
+
+
+
+ Insert ContentInsert Content
-
+ Add Titles for NotesAdd Titles for Notes
-
+ Text FormatText Format
-
+ Font FamilyFont Family
-
+ Font SizeFont Size
-
+ Line HeightLine Height
-
+ Text OptionsText Options
-
+ Justify Text MarginsJustify Text Margins
-
+ Replace Unicode CharactersReplace Unicode Characters
-
+ Replace Tabs with SpacesReplace Tabs with Spaces
-
+ Page LayoutPage Layout
-
+ UnitUnit
-
+ Page SizePage Size
-
+ Page WidthPage Width
-
+ Page HeightPage Height
-
+ Top MarginTop Margin
-
+ Bottom MarginBottom Margin
-
+ Left MarginLeft Margin
-
+ Right MarginRight Margin
-
+ Open Document (.odt)Open Document (.odt)
-
+ Add Highlight ColoursAdd Highlight Colors
-
+ Page HeaderPage Header
-
+ Page Counter OffsetPage Counter Offset
-
+
+ First Line Indent
+
+
+
+
+ Markdown (.md)
+
+
+
+
+ Preserve Hard Line Breaks
+
+
+
+ HTML (.html)HTML (.html)
-
+ Add CSS StylesAdd CSS Styles
+
+
+ Preserve Tab Characters
+
+ Common
@@ -290,375 +310,375 @@
Constant
-
-
-
+
+
+ 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
-
+ TagTag
-
+ Point of ViewPoint of View
-
-
+
+ FocusFocus
-
+ TitleTitle
-
+ LevelLevel
-
+ DocumentDocument
-
+ LineLine
-
+ CharsChars
-
+ WordsWords
-
+ ParsPars
-
+ POVPOV
-
+ SynopsisSynopsis
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ novelWriter HTML (.html)novelWriter HTML (.html)
-
+ novelWriter Markup (.txt)novelWriter Markup (.txt)
-
+ Standard Markdown (.md)Standard Markdown (.md)
-
+ Extended Markdown (.md)Extended Markdown (.md)
-
+ JSON + novelWriter HTML (.json)JSON + novelWriter HTML (.json)
-
+ JSON + novelWriter Markup (.json)JSON + novelWriter Markup (.json)
-
+ 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
@@ -684,38 +704,38 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsManuscript Build Settings
-
+ NameName
-
+ SelectionSelection
-
+ HeadingsHeadings
-
+ ContentContent
-
+ FormatFormat
-
+ OutputOutput
@@ -723,47 +743,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]
@@ -771,55 +791,50 @@
GuiDocEditFooter
-
- Status
- Status
-
-
-
+ Line: {0} ({1})Line: {0} ({1})
-
+ Words: {0} ({1})Words: {0} ({1})
-
- Document size is {0} bytes
- Document size is {0} bytes
-
-
-
+ Words: {0} selectedWords: {0} selected
-
- Character count: {0}
- Character count: {0}
+
+ Status
+ StatusGuiDocEditHeader
-
+ Toggle Tool BarToggle Tool Bar
-
+
+ Outline
+
+
+
+ SearchSearch
-
+ Toggle Focus ModeToggle Focus Mode
-
+ CloseClose
@@ -827,58 +842,62 @@
GuiDocEditSearch
-
-
+
+ Search for
+
+
+
+
+ Replace with
+
+
+
+ SearchSearch
-
- Replace
- Replace
-
-
-
+ 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
@@ -886,150 +905,145 @@
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
-
+ 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
-
+ 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}'?
-
-
- Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first.
- Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first.
- 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
@@ -1037,52 +1051,52 @@
GuiDocSplit
-
+ Split DocumentSplit Document
-
- Document Headers
- Document Headers
+
+ Document Headings
+
-
+ Select the maximum level to split into files.Select the maximum level to split into files.
-
-
- Split on Header Level 1 (Title)
- Split on Header Level 1 (Title)
-
-
-
- Split up to Header Level 2 (Chapter)
- Split up to Header Level 2 (Chapter)
-
- Split up to Header Level 3 (Scene)
- Split up to Header Level 3 (Scene)
+ Split on Heading Level 1 (Partition)
+
- Split up to Header Level 4 (Section)
- Split up to Header Level 4 (Section)
+ Split up to Heading Level 2 (Chapter)
+
-
+
+ Split up to Heading Level 3 (Scene)
+
+
+
+
+ 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
@@ -1090,47 +1104,52 @@
GuiDocToolBar
-
+ Markdown BoldMarkdown Bold
-
+ Markdown ItalicMarkdown Italic
-
+ Markdown StrikethroughMarkdown Strikethrough
-
+ Shortcode BoldShortcode Bold
-
+ Shortcode ItalicShortcode Italic
-
+ Shortcode StrikethroughShortcode Strikethrough
-
+ Shortcode UnderlineShortcode Underline
-
+
+ Shortcode Highlight
+
+
+
+ Shortcode SuperscriptShortcode Superscript
-
+ Shortcode SubscriptShortcode Subscript
@@ -1138,27 +1157,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelShow/Hide Viewer Panel
-
+ CommentsComments
-
+ Show CommentsShow Comments
-
+ SynopsisSynopsis
-
+ Show Synopsis CommentsShow Synopsis Comments
@@ -1166,22 +1185,27 @@
GuiDocViewHeader
-
+
+ Outline
+
+
+
+ Go BackwardGo Backward
-
+ Go ForwardGo Forward
-
+ ReloadReload
-
+ CloseClose
@@ -1189,27 +1213,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
@@ -1217,12 +1241,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsHide Inactive Tags
-
+ ReferencesReferences
@@ -1230,12 +1254,12 @@
GuiEditLabel
-
+ Item LabelItem Label
-
+ LabelLabel
@@ -1243,37 +1267,37 @@
GuiItemDetails
-
+ LabelLabel
-
+ StatusStatus
-
+ ClassClass
-
+ UsageUsage
-
+ CharactersCharacters
-
+ WordsWords
-
+ ParagraphsParagraphs
@@ -1281,27 +1305,27 @@
GuiLipsum
-
+ Insert Placeholder TextInsert Placeholder Text
-
+ Insert Lorem Ipsum TextInsert Lorem Ipsum Text
-
+ Number of paragraphsNumber of paragraphs
-
+ Randomise orderRandomize order
-
+ InsertInsert
@@ -1309,103 +1333,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}.
@@ -1413,642 +1437,657 @@
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 Project TreeGo to Project Tree
-
+ Go to Document EditorGo to Document Editor
-
+ 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
-
+ Page Break and SpacePage Break and Space
-
+ Page BreakPage Break
-
+ Vertical Space (Single)Vertical Space (Single)
-
+ Vertical Space (Multi)Vertical Space (Multi)
-
+ Placeholder TextPlaceholder Text
-
+ &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
-
+
+ Highlight
+
+
+
+ SuperscriptSuperscript
-
+ SubscriptSubscript
-
-
- Header 1 (Partition)
- Header 1 (Partition)
-
- Header 2 (Chapter)
- Header 2 (Chapter)
+ Heading 1 (Partition)
+
- Header 3 (Scene)
- Header 3 (Scene)
+ Heading 2 (Chapter)
+
- Header 4 (Section)
- Header 4 (Section)
+ Heading 3 (Scene)
+
-
+
+ Heading 4 (Section)
+
+
+
+ Novel TitleNovel Title
-
+ Unnumbered ChapterUnnumbered Chapter
-
+
+ Hard 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
-
- Convert Single Quotes
- Convert Single Quotes
+
+ Replace Straight Single Quotes
+
-
- Convert Double Quotes
- Convert Double Quotes
+
+ Replace 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 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
@@ -2095,53 +2134,63 @@
GuiManuscript
-
+ Build ManuscriptBuild Manuscript
-
+ Add New BuildAdd New Build
-
+ Delete Selected BuildDelete Selected Build
-
+ Edit Selected BuildEdit Selected Build
-
+ BuildsBuilds
-
+
+ Details
+
+
+
+
+ Outline
+
+
+
+ PreviewPreview
-
+ PrintPrint
-
+ BuildBuild
-
+ CloseClose
-
-
+
+ My ManuscriptMy Manuscript
@@ -2149,57 +2198,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?
@@ -2207,18 +2256,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsNovel Details
-
+ OverviewOverview
-
+ ContentsContents
@@ -2226,58 +2275,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 %
@@ -2285,7 +2334,7 @@
GuiNovelTree
-
+ No meta dataNo meta data
@@ -2293,64 +2342,64 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTitle
-
+ ChapterChapter
-
+ SceneScene
-
+ SectionSection
-
+ DocumentDocument
-
+ StatusStatus
-
+ CharactersCharacters
-
+ WordsWords
-
+ ParagraphsParagraphs
-
+ SynopsisSynopsis
-
+ Title DetailsTitle Details
-
+ Reference TagsReference Tags
@@ -2358,7 +2407,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsSelect Columns
@@ -2366,17 +2415,17 @@
GuiOutlineToolBar
-
+ Outline ofOutline of
-
+ RefreshRefresh
-
+ Export CSVExport CSV
@@ -2384,7 +2433,7 @@
GuiOutlineTree
-
+ Save Outline AsSave Outline As
@@ -2392,13 +2441,13 @@
GuiPreferences
-
-
+
+ PreferencesPreferences
-
+ SearchSearch
@@ -2413,561 +2462,589 @@
Appearance
-
+ 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 font familyApplication font family
-
+ Application font sizeApplication font size
-
-
+
+ ptpt
-
+ 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
-
+ Document StyleDocument Style
-
+ Document colour themeDocument color theme
-
+ Colour theme for the editor and viewer.Color theme for the editor and viewer.
-
+ Document font familyDocument font family
-
-
-
-
+
+
+
+ Applies to both document editor and viewer.Applies to both document editor and viewer.
-
+ Document font sizeDocument font size
-
+ 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
-
+ Auto SaveAuto Save
-
+ 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.
-
+ 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
-
+ Highlight text wrapped in quotesHighlight text wrapped in quotes
-
-
-
+
+
+ Applies to the document editor only.Applies to the document editor only.
-
+ Allow open-ended single quotesAllow open-ended single quotes
-
+ Highlight single-quoted line with no closing quote.Highlight single-quoted line with no closing quote.
-
+ Allow open-ended double quotesAllow open-ended double quotes
-
+ Highlight double-quoted line with no closing quote.Highlight double-quoted line with no closing quote.
-
+ Add highlight colour to emphasised textAdd highlight color to emphasised text
-
+ 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
+
+ GuiProjectSearch
+
+
+ Project Search
+
+
+
+
+ Case Sensitive
+ Case Sensitive
+
+
+
+ Whole Words Only
+ Whole Words Only
+
+
+
+ RegEx Mode
+ RegEx Mode
+
+
+
+ Search for
+
+
+ GuiProjectSettings
-
-
+
+ Project SettingsProject Settings
-
+ SettingsSettings
-
+ StatusStatus
-
+ ImportanceImportance
-
+ Auto-ReplaceAuto-Replace
@@ -2975,47 +3052,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
@@ -3023,118 +3100,118 @@
GuiProjectTree
-
+ ActiveActive
-
+ InactiveInactive
-
+ Permanently delete {0} file(s) from Trash?Permanently delete {0} file(s) from Trash?
-
+ 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
-
+ There is currently no Trash folder in this project.There is currently no Trash folder in this project.
-
+ The Trash folder is already empty.The Trash folder is already empty.
-
+ Move '{0}' to Trash?Move '{0}' to Trash?
-
+ Root folders can only be deleted when they are empty.Root folders can only be deleted when they are empty.
-
+ Permanently delete '{0}'?Permanently delete '{0}'?
-
+ Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent.Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent.
-
+ 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.
-
+ There is nowhere to add item with name '{0}'.There is nowhere to add item with name '{0}'.
@@ -3142,37 +3219,42 @@
GuiSideBar
-
+ Project Tree ViewProject Tree View
-
+ Novel Tree ViewNovel Tree View
-
+
+ Project Search
+
+
+
+ Novel Outline ViewNovel Outline View
-
+ Build ManuscriptBuild Manuscript
-
+ Novel DetailsNovel Details
-
+ Writing StatisticsWriting Statistics
-
+ SettingsSettings
@@ -3180,37 +3262,37 @@
GuiWelcome
-
+ WelcomeWelcome
-
+ ListList
-
+ NewNew
-
+ BrowseBrowse
-
+ CancelCancel
-
+ CreateCreate
-
+ OpenOpen
@@ -3218,33 +3300,33 @@
GuiWordList
-
-
+
+ Project Word ListProject Word List
-
+ Import words from text fileImport words from text file
-
+ Export words to text fileExport words to text file
-
+ 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
@@ -3252,147 +3334,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.
@@ -3400,153 +3482,153 @@
NWProject
-
+ Could not delete document file.Could not delete document file.
-
+ Not a known project file format.Not a known project file format.
-
+ 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.
-
+ Path: {0}Path: {0}
-
+ 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
@@ -3562,89 +3644,89 @@
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
-
+ ByBy
-
+ 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.
@@ -3840,17 +3922,17 @@
SharedData
-
+ novelWriter Project File or Zip FilenovelWriter Project File or Zip File
-
+ novelWriter Project FilenovelWriter Project File
-
+ Open ProjectOpen Project
@@ -3901,57 +3983,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
@@ -3959,30 +4041,35 @@
_DetailsWidget
-
+ SettingSetting
-
+ ValueValue
-
+ NameName
-
+ SelectionSelection
-
+ TitleTitle
+
+
+ Hidden
+ Hidden
+ _FilterTab
@@ -4012,12 +4099,12 @@
Reset to default
-
+ Mark selection asMark selection as
-
+ Select Root FoldersSelect Root Folders
@@ -4025,22 +4112,22 @@
_GuiAlert
-
+ InformationInformation
-
+ WarningWarning
-
+ ErrorError
-
+ QuestionQuestion
@@ -4048,193 +4135,211 @@
_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
+
+
+ Additional Styling
+
+
+
+
+
+
+ Centre
+
+
+
+
+
+
+ Page Break
+ Page Break
+ _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}
@@ -4242,7 +4347,7 @@
_NewProjectPage
-
+ A project name is required.A project name is required.
@@ -4250,27 +4355,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
@@ -4278,54 +4383,54 @@
_OverviewPage
-
+ ProjectProject
-
-
+
+ NameName
-
+ RevisionsRevisions
-
+ Editing TimeEditing Time
-
-
+
+ Word CountWord Count
-
+ In NovelsIn Novels
-
+ In NotesIn Notes
-
+ Selected NovelSelected Novel
-
+ ChaptersChapters
-
+ ScenesScenes
@@ -4333,27 +4438,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Press the "Preview" button to generate ...
-
+ Processing ...Processing ...
-
+ DoneDone
-
+ UnknownUnknown
-
+ BuiltBuilt
@@ -4361,12 +4466,12 @@
_ProjectListModel
-
+ Word CountWord Count
-
+ Last OpenedLast Opened
@@ -4374,27 +4479,27 @@
_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
-
+ SaveSave
@@ -4402,117 +4507,177 @@
_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
+
+ _StatsWidget
+
+
+
+ Words
+ Words
+
+
+
+
+ Characters
+ Characters
+
+
+
+ Words in Headings
+
+
+
+
+ Words in Text
+
+
+
+
+ Headings
+ Headings
+
+
+
+ Paragraphs
+ Paragraphs
+
+
+
+ Characters in Headings
+
+
+
+
+ Characters in Text
+
+
+
+
+ Characters, No Spaces
+
+
+
+
+ Characters in Headings, No Spaces
+
+
+
+
+ Characters in Text, No Spaces
+
+
+ _StatusPage
-
+ Novel Document Status LevelsNovel Document Status Levels
-
+ Project Note Importance LevelsProject Note Importance Levels
-
+ LabelLabel
-
+ UsageUsage
-
+ Select item to editSelect item to edit
-
+ ColourColor
-
+ SaveSave
-
+ Select ColourSelect Color
-
+ New ItemNew Item
-
+ Cannot delete a status item that is in use.Cannot delete a status item that is in use.
-
+ Not in useNot in use
-
+ Used onceUsed once
-
+ Used by {0} itemsUsed by {0} items
@@ -4520,133 +4685,128 @@
_TreeContextMenu
-
+ Empty TrashEmpty Trash
-
+ RenameRename
-
+ 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 Headers
- Split Document by Headers
+
+ Split Document by Headings
+
-
+ Expand AllExpand All
-
+ Collapse AllCollapse All
-
- Duplicate from Here
- Duplicate from Here
+
+ Duplicate
+
-
- Duplicate Document
- Duplicate Document
-
-
-
-
+
+ Delete PermanentlyDelete Permanently
-
-
+
+ Move to TrashMove to Trash
-
+ Move {0} items to Trash?Move {0} items 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.
@@ -4654,7 +4814,7 @@
_UpdatableMenu
-
+ From TemplateFrom Template
@@ -4662,12 +4822,12 @@
_ViewPanelBackRefs
-
+ DocumentDocument
-
+ First HeadingFirst Heading
@@ -4675,27 +4835,27 @@
_ViewPanelKeyWords
-
+ TagTag
-
+ ImportanceImportance
-
+ DocumentDocument
-
+ HeadingHeading
-
+ Short DescriptionShort Description
diff --git a/i18n/nw_es_419.ts b/i18n/nw_es_419.ts
index 7628f824..ba4c855b 100644
--- a/i18n/nw_es_419.ts
+++ b/i18n/nw_es_419.ts
@@ -4,215 +4,235 @@
Builds
-
+ Document FiltersFiltrado de Documentos
-
+ Novel DocumentsDocumentos de Novela
-
+ Project NotesNotas del Proyecto
-
+ Inactive DocumentsDocumentos Excluidos
-
+ HeadingsTítulación
-
- Title Headings
- Títulos Iniciales
+
+ Partition Format
+
-
- Chapter Headings
- Títulos de Capítulos
+
+ Chapter Format
+
-
- Unnumbered Headings
- Títulos Sin Numerar
+
+ Unnumbered Format
+
-
- Scene Headings
- Títulos de Escenas
+
+ Scene Format
+
-
- Section Headings
- Títulos de Secciones
+
+ Hard Scene Format
+
-
- Hide Scene Headings
- Ocultar los Títulos de las Escenas
+
+ Section Format
+
-
- Hide Section Headings
- Ocultar los Títulos de las Secciones
-
-
-
+ Text ContentContenido Textual
-
+ Include SynopsisIncluir las Sinopsis
-
+ Include CommentsIncluir los Comentarios
-
+ Include KeywordsIncluir las Palabras Clave
-
+ Include Body TextIncluir el Texto Base
-
+
+ Ignore These Keywords
+
+
+
+ Insert ContentInserción de Contenido
-
+ Add Titles for NotesAñadir Títulos a las Notas
-
+ Text FormatFormato del Texto
-
+ Font FamilyTipografía
-
+ Font SizeTamaño
-
+ Line HeightAltura de Línea
-
+ Text OptionsOpciones de Texto
-
+ Justify Text MarginsJustificar los Márgenes del Texto
-
+ Replace Unicode CharactersReemplazar Caracteres Unicode
-
+ Replace Tabs with SpacesReemplazar Tabulaciones por Espacios
-
+ Page LayoutDiseño de Página
-
+ UnitUnidades
-
+ Page SizeTamaño de Página
-
+ Page WidthAncho de Página
-
+ Page HeightAltura de Página
-
+ Top MarginMargen Superior
-
+ Bottom MarginMargen Inferior
-
+ Left MarginMargen Izquierdo
-
+ Right MarginMargen Derecho
-
+ Open Document (.odt)Open Document (.odt)
-
+ Add Highlight ColoursAñadir Resaltes en Colores
-
+ Page HeaderEncabezado de Página
-
+ Page Counter OffsetDesfase del Número de Página
-
+
+ First Line Indent
+
+
+
+
+ Markdown (.md)
+
+
+
+
+ Preserve Hard Line Breaks
+
+
+
+ HTML (.html)HTML (.html)
-
+ Add CSS StylesAñadir Estilos CSS
+
+
+ Preserve Tab Characters
+
+ Common
@@ -290,375 +310,375 @@
Constant
-
-
-
+
+
+ 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
-
+ TagEtiqueta
-
+ Point of ViewPunto de Vista
-
-
+
+ FocusFoco
-
+ TitleTítulo
-
+ LevelNivel
-
+ DocumentDocumento
-
+ LineLínea
-
+ CharsCaract.
-
+ WordsPalab.
-
+ ParsPárrafo
-
+ POVPerspectiva
-
+ SynopsisSinopsis
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ novelWriter HTML (.html)HTML de novelWriter (.html)
-
+ novelWriter Markup (.txt)Etiquetado de novelWriter (.txt)
-
+ Standard Markdown (.md)Markdown Estándar (.md)
-
+ Extended Markdown (.md)Markdown Ampliado (.md)
-
+ JSON + novelWriter HTML (.json)JSON + HTML de novelWriter (.json)
-
+ JSON + novelWriter Markup (.json)JSON + Etiquetado de novelWriter (.json)
-
+ 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
@@ -684,38 +704,38 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsOpciones de Compilación del Manuscrito
-
+ NameNombre
-
+ SelectionSelección
-
+ HeadingsTítulación
-
+ ContentContenidos
-
+ FormatFormato
-
+ OutputGrabado
@@ -723,47 +743,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]
@@ -771,55 +791,50 @@
GuiDocEditFooter
-
- Status
- Estado
-
-
-
+ Line: {0} ({1})Línea: {0} ({1})
-
+ Words: {0} ({1})Palabras: {0} ({1})
-
- Document size is {0} bytes
- El tamaño del documento es de {0} bytes
-
-
-
+ Words: {0} selectedPalabras: {0} seleccionadas
-
- Character count: {0}
- Total de caracteres: {0}
+
+ Status
+ EstadoGuiDocEditHeader
-
+ Toggle Tool BarAlternar Barra de Herramientas
-
+
+ Outline
+
+
+
+ SearchBuscar
-
+ Toggle Focus ModeAlternar el Modo Enfocado
-
+ CloseCerrar
@@ -827,58 +842,62 @@
GuiDocEditSearch
-
-
+
+ Search for
+
+
+
+
+ Replace with
+
+
+
+ SearchBuscar
-
- Replace
- Reemplazar
-
-
-
+ 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
@@ -886,150 +905,145 @@
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
-
+ 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
-
+ 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}'?
-
-
- Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first.
- No se pudo crear la nota en una carpeta raíz para '{0}'. Debe crear una antes en el caso que no exista.
- 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
@@ -1037,52 +1051,52 @@
GuiDocSplit
-
+ Split DocumentSeparar el Documento
-
- Document Headers
- Títulado del Documento
+
+ Document Headings
+
-
+ Select the maximum level to split into files.Elija el nivel máximo a separar en archivos.
-
-
- Split on Header Level 1 (Title)
- Separar en el Nivel de Titulación 1 (Partición)
-
-
-
- Split up to Header Level 2 (Chapter)
- Separar hasta el Nivel de Titulación 2 (Capítulo)
-
- Split up to Header Level 3 (Scene)
- Separar hasta el Nivel de Titulación 3 (Escena)
+ Split on Heading Level 1 (Partition)
+
- Split up to Header Level 4 (Section)
- Separar hasta el Nivel de Titulación 4 (Sección)
+ Split up to Heading Level 2 (Chapter)
+
-
+
+ Split up to Heading Level 3 (Scene)
+
+
+
+
+ Split up to Heading Level 4 (Section)
+
+
+
+ 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
@@ -1090,47 +1104,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 Highlight
+
+
+
+ Shortcode SuperscriptSuperíndice (en código)
-
+ Shortcode SubscriptSubíndice (en código)
@@ -1138,27 +1157,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelMostrar / Ocultar Panel del Visualizador
-
+ CommentsComentarios
-
+ Show CommentsMostrar los Comentarios
-
+ SynopsisSinopsis
-
+ Show Synopsis CommentsMostrar las Sinopsis
@@ -1166,22 +1185,27 @@
GuiDocViewHeader
-
+
+ Outline
+
+
+
+ Go BackwardIr Atrás
-
+ Go ForwardIr Adelante
-
+ ReloadActualizar
-
+ CloseCerrar
@@ -1189,27 +1213,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
@@ -1217,12 +1241,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsOcultar las Etiquetas Inactivas
-
+ ReferencesReferencias
@@ -1230,12 +1254,12 @@
GuiEditLabel
-
+ Item LabelRótulo del Ítem
-
+ LabelRótulo
@@ -1243,37 +1267,37 @@
GuiItemDetails
-
+ LabelRótulo
-
+ StatusEstado
-
+ ClassClase
-
+ UsageUso
-
+ CharactersCaracteres
-
+ WordsPalabras
-
+ ParagraphsPárrafos
@@ -1281,27 +1305,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
@@ -1309,103 +1333,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}.
@@ -1413,642 +1437,657 @@
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 Project TreeIr al Árbol del Proyecto
-
+ Go to Document EditorIr al Editor de Documentos
-
+ 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
-
+ Page Break and SpaceSaltos
-
+ Page BreakSalto de Página
-
+ Vertical Space (Single)Salto Vertical (Único)
-
+ Vertical Space (Multi)Salto Vertical (Múltiple)
-
+ Placeholder TextTexto para Rellenar
-
+ &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
-
+
+ Highlight
+
+
+
+ SuperscriptSuperíndice
-
+ SubscriptSubíndice
-
-
- Header 1 (Partition)
- Titulación 1 (Partición)
-
- Header 2 (Chapter)
- Titulación 2 (Capítulo)
+ Heading 1 (Partition)
+
- Header 3 (Scene)
- Titulación 3 (Escena)
+ Heading 2 (Chapter)
+
- Header 4 (Section)
- Titulación 4 (Sección)
+ Heading 3 (Scene)
+
-
+
+ Heading 4 (Section)
+
+
+
+ Novel TitleTítulo de la Novela
-
+ Unnumbered ChapterCapítulo Sin Número
-
+
+ Hard Scene
+
+
+
+ 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
-
- Convert Single Quotes
- Convertir Comillas Simples de Apertura
+
+ Replace Straight Single Quotes
+
-
- Convert Double Quotes
- Convertir Comillas Dobles de Apertura
+
+ Replace Straight Double Quotes
+
-
+ 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 Project
+
+
+
+ &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
@@ -2095,53 +2134,63 @@
GuiManuscript
-
+ Build ManuscriptCompilar Manuscrito
-
+ Add New BuildAñadir una Nueva Compilación
-
+ Delete Selected BuildEliminar la Compilación Seleccionada
-
+ Edit Selected BuildEditar la Compilación Seleccionada
-
+ BuildsCompilaciones
-
+
+ Details
+
+
+
+
+ Outline
+
+
+
+ PreviewVista Previa
-
+ PrintImprimir
-
+ BuildCompilar
-
+ CloseCerrar
-
-
+
+ My ManuscriptMi Manuscrito
@@ -2149,57 +2198,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?
@@ -2207,18 +2256,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsDetalles de la Novela
-
+ OverviewResumen
-
+ ContentsContenido
@@ -2226,58 +2275,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 %
@@ -2285,7 +2334,7 @@
GuiNovelTree
-
+ No meta dataSin metadatos
@@ -2293,64 +2342,64 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTítulo
-
+ ChapterCapítulo
-
+ SceneEscena
-
+ SectionSección
-
+ DocumentDocumento
-
+ StatusEstado
-
+ CharactersPersonajes
-
+ WordsPalabras
-
+ ParagraphsPárrafos
-
+ SynopsisSinopsis
-
+ Title DetailsDetalles del Título
-
+ Reference TagsEtiquetado
@@ -2358,7 +2407,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsEscoger Columnas
@@ -2366,17 +2415,17 @@
GuiOutlineToolBar
-
+ Outline ofEstructura de
-
+ RefreshActualizar
-
+ Export CSVExportar a CSV
@@ -2384,7 +2433,7 @@
GuiOutlineTree
-
+ Save Outline AsGuardar Estructura Como
@@ -2392,13 +2441,13 @@
GuiPreferences
-
-
+
+ PreferencesPreferencias
-
+ SearchBuscar
@@ -2413,561 +2462,589 @@
Apariencia
-
+ 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 font familyTipografía de la aplicación
-
+ Application font sizeTamaño de la tipografía
-
-
+
+ ptpt
-
+ 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
-
+ 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 font familyTipografía del documento
-
-
-
-
+
+
+
+ Applies to both document editor and viewer.A usar tanto en el editor como en el visualizador de documentos.
-
+ Document font sizeTamaño de la tipografía
-
+ 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
-
+ Auto SaveAutoguardado
-
+ 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.
-
+ 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
-
+ Highlight text wrapped in quotesResaltar el texto entrecomillado
-
-
-
+
+
+ Applies to the document editor only.Se usará solo en el editor de documentos.
-
+ Allow open-ended single quotesPermitir comillas simples sin cierre
-
+ Highlight single-quoted line with no closing quote.Se resaltará la línea de la comilla simple sin una comilla de cierre.
-
+ Allow open-ended double quotesPermitir comillas dobles sin cierre
-
+ Highlight double-quoted line with no closing quote.Se resaltará la línea de comillas dobles sin comillas de cierre.
-
+ Add highlight colour to emphasised textAñadir resalte de color al texto enfatizado
-
+ 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
+
+ GuiProjectSearch
+
+
+ Project Search
+
+
+
+
+ Case Sensitive
+ Sensibilidad a Mayúsculas y Minúsculas
+
+
+
+ Whole Words Only
+ Sólo Palabras Enteras
+
+
+
+ RegEx Mode
+ Modo ExReg
+
+
+
+ Search for
+
+
+ GuiProjectSettings
-
-
+
+ Project SettingsConfiguración del Proyecto
-
+ SettingsConfiguración
-
+ StatusEstado
-
+ ImportanceImportancia
-
+ Auto-ReplaceReemplazos
@@ -2975,47 +3052,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
@@ -3023,118 +3100,118 @@
GuiProjectTree
-
+ ActiveEn uso
-
+ InactiveSin uso
-
+ Permanently delete {0} file(s) from Trash?¿Eliminar {0} archivo(s) permanentemente de la Papelera?
-
+ 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
-
+ There is currently no Trash folder in this project.No hay actualmente una carpeta Papelera en este proyecto.
-
+ The Trash folder is already empty.La carpeta Papelera ya está vacía.
-
+ Move '{0}' to Trash?¿Mover '{0}' a la Papelera?
-
+ 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 '{0}'?¿Eliminar Permanentemente '{0}'?
-
+ Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent.Sólo se permite arrastrar y soltar de a un solo elemento, o de a múltiples elementos no raíz o con el mismo elemento superior.
-
+ 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.
-
+ There is nowhere to add item with name '{0}'.No hay ningún lugar en el que añadir un ítem nombrado '{0}'.
@@ -3142,37 +3219,42 @@
GuiSideBar
-
+ Project Tree ViewVista de Árbol del Proyecto
-
+ Novel Tree ViewVista de Árbol de Novela
-
+
+ Project Search
+
+
+
+ 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
@@ -3180,37 +3262,37 @@
GuiWelcome
-
+ WelcomeBienvenida
-
+ ListLista
-
+ NewNuevo
-
+ BrowseAbrir ubicación
-
+ CancelCancelar
-
+ CreateCrear
-
+ OpenAbrir
@@ -3218,33 +3300,33 @@
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
-
+ 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
@@ -3252,147 +3334,147 @@
GuiWritingStats
-
+ Writing StatisticsEstadísticas de Redacción
-
+ Session StartInicio de la Sesión
-
+ LengthDuración
-
+ IdleInactividad
-
+ WordsPalabras
-
+ HistogramHistograma
-
+ Sum TotalsTotales Agregados
-
+ Total Time:Tiempo Total:
-
+ Idle Time:Tiempo de Inactividad:
-
+ Filtered Time:Tiempo con Filtros:
-
+ Novel Word Count:Total de Palabras de Novela:
-
+ Notes Word Count:Total de Palabras de Notas:
-
+ Total Word Count:Total de Palabras:
-
+ FiltersFiltros
-
+ Count novel filesContar archivos de novela
-
+ Count note filesContar archivos de notas
-
+ Hide zero word countNo mostrar totales en cero
-
+ Hide negative word countNo mostrar totales negativos
-
+ Group entries by dayAgrupar entradas por día
-
+ Show idle timeMostrar tiempo de inactividad
-
+ Word count cap for the histogramLímite de total de palabras para el histograma
-
+ Save AsGuardar Como
-
+ JSON Data File (.json)Archivo de Datos JSON (.json)
-
+ CSV Data File (.csv)Archivo de Datos CSV (.csv)
-
+ JSON Data FileArchivo de Datos JSON
-
+ CSV Data FileArchivo de Datos CSV
-
+ Save Data AsGuardar Datos Como
-
+ {0} file successfully written to:El archivo {0} se ha guardado con éxito en:
-
+ Failed to write {0} file.Hubo una falla al escribir el archivo {0}.
@@ -3400,153 +3482,153 @@
NWProject
-
+ Could not delete document file.No se puedo eliminar el archivo de documento.
-
+ Not a known project file format.Formato de archivo de proyecto desconocido.
-
+ Project file not found.No se ha encontrado el archivo de proyecto.
-
+ Failed to open project.Hubo una falla al abrir el proyecto.
-
+ UnknownDesconocido
-
+ Project file does not appear to be a novelWriterXML file.Aparentemente el archivo del proyecto no es un archivo 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}.Formato de archivo de proyecto novelWriter desconocido, o no soportado. Esta versión de novelWriter no puede abrir el proyecto. El archivo se guardó con la versión {0} de novelWriter.
-
+ Failed to parse project xml.Hubo una falla al procesar el xml del proyecto.
-
+ 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?Se está por actualizar el formato de archivo de su proyecto. De continuar, ninguna versión anterior de novelWriter podrá abrir este proyecto. ¿Continuar?
-
+ 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?Este proyecto se ha guardado en una versión nueva de novelWriter, la versión {0}. Ésta es la versión {1}. Si procede a abrir el proyecto, algunos atributos y opciones no serán preservadas, pero en general el proyecto no presentará problemas. ¿Continuar abriendo el proyecto?
-
+ RecoveredRestaurado
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.Se ha(n) encontrado {0} archivo(s) sin vinculación en el proyecto. Se ha(n) recuperado {1} archivo(s).
-
+ Opened Project: {0}Se Abrió el Proyecto: {0}
-
+ There is no project open.No hay ningún proyecto abierto.
-
+ Failed to save project.Hubo una falla al guardar el proyecto.
-
+ Saved Project: {0}Proyecto Guardado: {0}
-
+ Backing up project ...Respaldando el proyecto...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.No se puede crear una copia de seguridad porque no se estableció el nombre del proyecto. Por favor escoja un Nombre de Proyecto en la Configuración del Proyecto.
-
+ Could not create backup folder.No se pudo crear la carpeta de respaldo.
-
+ Created a backup of your project of size {0}B.Se ha creado una copia de seguridad del proyecto de {0}B de tamaño.
-
+ Path: {0}Ruta destino: {0}
-
+ Could not write backup archive.No se puedo escribir el archivo de respaldo.
-
+ Project backed up to '{0}'Se ha respaldado el proyecto en '{0}'
-
-
+
+ NewNuevo
-
+ NoteNota
-
+ DraftBorrador
-
+ FinishedTerminado
-
+ MinorMenor
-
+ MajorMayor
-
+ MainPrincipal
@@ -3562,89 +3644,89 @@
ProjectBuilder
-
+ The target folder is not empty. Please choose another folder.La carpeta de destino no está vacía. Por favor, elija otra.
-
+ An error occurred while trying to create the project.Ocurrió un error mientras se intentaba crear el proyecto.
-
+ New ProjectProyecto Nuevo
-
+ Title PageTítulo de la Página
-
+ ByPor
-
+ Summary of the chapter.Resumen del capítulo.
-
+ Summary of the scene.Resumen de la escena.
-
+ A short description.Una breve descripción.
-
+ Chapter {0}Capítulo {0}
-
-
+
+ Scene {0}Escena {0}
-
+ Main PlotArgumento Principal
-
+ ProtagonistProtagonista
-
+ Main LocationLugar Principal
-
-
+
+ The target folder already exists. Please choose another folder.La carpeta de destino ya existe. Por favor, elija otra.
-
+ Could not copy project files.No se han podido copiar los archivos del proyecto.
-
+ Failed to create a new example project.Hubo una falla al crear un nuevo proyecto de ejemplo.
-
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.Hubo una falla al crear un nuevo proyecto de ejemplo. No se pudieron encontrar los archivos necesarios. Aparentemente esta instalación carece de ellos.
@@ -3840,17 +3922,17 @@
SharedData
-
+ novelWriter Project File or Zip FileArchivo de proyecto de novelWriter o archivo Zip
-
+ novelWriter Project FileArchivo de Proyecto de novelWriter
-
+ Open ProjectAbrir un Proyecto
@@ -3901,57 +3983,57 @@
_ContentsPage
-
+ Table of ContentsTabla de Contenido
-
+ TitleTítulo
-
+ WordsPalabras
-
+ PagesPáginas
-
+ PagePágina
-
+ ProgressProgreso
-
+ Words per pagePalabras por página
-
+ First page offsetDesfase de la primera página
-
+ Chapters on odd pagesCapítulos en páginas impares
-
+ UntitledSin Título
-
+ ENDFIN
@@ -3959,30 +4041,35 @@
_DetailsWidget
-
+ SettingOpciones
-
+ ValueValores Definidos
-
+ NameNombre
-
+ SelectionSelecciones
-
+ TitleTítulo
+
+
+ Hidden
+ Ocultar
+ _FilterTab
@@ -4012,12 +4099,12 @@
Restablecer a por defecto
-
+ Mark selection asAjustar la selección a:
-
+ Select Root FoldersCarpetas Raíz a Seleccionar
@@ -4025,22 +4112,22 @@
_GuiAlert
-
+ InformationInformación
-
+ WarningAdvertencia
-
+ ErrorError
-
+ QuestionPregunta
@@ -4048,193 +4135,211 @@
_HeadingsTab
-
-
+ HideOmitir
-
-
+
+ Editing: {0}Editando: {0}
-
-
+
+ NoneNinguno
-
+ TitleTítulo
-
+ Chapter NumberNumeral del Capítulo
-
+ Chapter Number (Word)Numeral del Capítulo (En Palabras)
-
+ Chapter Number (Upper Case Roman)Numeral Romano del Capítulo (Mayúsculas)
-
+ Chapter Number (Lower Case Roman)Numeral Romano del Capítulo (Minúsculas)
-
+ Scene Number (In Chapter)Numeral de la Escena (En el Capítulo)
-
+ Scene Number (Absolute)Numeral de la Escena (Valor Absoluto)
-
+ Point of View CharacterPerspectiva
-
+ Focus CharacterPersonaje Central
-
+ InsertInsertar
-
+ ApplyAplicar
+
+
+ Additional Styling
+
+
+
+
+
+
+ Centre
+
+
+
+
+
+
+ Page Break
+ Salto de Página
+ _NewProjectForm
-
+ RequiredRequerido
-
+ OptionalOpcional
-
+ Create a fresh projectCrear un nuevo proyecto
-
+ Create an example projectCrear un ejemplo de proyecto
-
+ Copy an existing projectCopiar un proyecto existente
-
+ Project NameNombre del Proyecto
-
+ AuthorAutor(es)
-
+ Project PathRuta del Proyecto
-
+ Prefill ProjectRellenar el Proyecto
-
+ Set to 0 to only add scenesEscoger 0 para solo añadir escenas
-
+ Add {0} chapter documentsIncluir {0} capítulos
-
+ Add {0} scene documents (to each chapter)Incluir {0} escenas (a cada capítulo)
-
+ Add a folder for plot notesAñadir una carpeta para notas argumentales
-
+ Add a folder for character notesAñadir una carpeta para notas sobre los personajes
-
+ Add a folder for location notesAñadir una carpeta para notas acerca de los lugares
-
+ Add example notes to the aboveAñadir ejemplos de notas
-
+ Chapters and ScenesCapítulos y Escenas
-
+ Project NotesNotas del Proyecto
-
+ Create New ProjectCrear un Proyecto Nuevo
-
+ Select Project FolderEscoger la Carpeta del Proyecto
-
+ Fresh ProjectProyecto vacío
-
+ Example ProjectEjemplo de Proyecto
-
+ Template: {0}Plantilla: {0}
@@ -4242,7 +4347,7 @@
_NewProjectPage
-
+ A project name is required.Se requiere un nombre de proyecto.
@@ -4250,27 +4355,27 @@
_OpenProjectPage
-
+ The project path is not reachable.No se puede acceder a la ruta del proyecto.
-
+ PathRuta
-
+ Remove '{0}' from the recent projects list? The project files will not be deleted.¿Eliminar '{0}' de la lista de proyectos recientes? Los archivos del proyecto no se eliminarán.
-
+ Open ProjectAbrir un Proyecto
-
+ Remove ProjectEliminar Proyecto
@@ -4278,54 +4383,54 @@
_OverviewPage
-
+ ProjectProyecto
-
-
+
+ NameNombre
-
+ RevisionsRevisiones
-
+ Editing TimeTiempo de Edición
-
-
+
+ Word CountTotal de Palabras
-
+ In NovelsEn Novelas
-
+ In NotesEn Notas
-
+ Selected NovelNovela seleccionada
-
+ ChaptersCapítulos
-
+ ScenesEscenas
@@ -4333,27 +4438,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Pulse el botón "Vista Previa" para así generarla...
-
+ Processing ...Procesando...
-
+ DoneHecho
-
+ UnknownDesconocido
-
+ BuiltCompilado
@@ -4361,12 +4466,12 @@
_ProjectListModel
-
+ Word CountTotal de Palabras
-
+ Last OpenedAbierto por última vez
@@ -4374,27 +4479,27 @@
_ReplacePage
-
+ Text Auto-Replace for Preview and BuildLista de Reemplazos de Texto para Previsualizar y Compilar
-
+ KeywordPalabra Clave
-
+ Replace WithReemplazar Por
-
+ Select item to editSeleccionar el ítem a editar
-
+ SaveGuardar
@@ -4402,117 +4507,177 @@
_SettingsPage
-
+ Project nameNombre del proyecto
-
+ Changing this will affect the backup path.Cambiar esto afectará a la ruta de la copia de seguridad.
-
+ Author(s)Autores
-
-
+
+ Only used when building the manuscript.Se utiliza solo al compilar el manuscrito.
-
+ Project languageIdioma del proyecto
-
+ DefaultPor defecto
-
+ Spell check languageIdioma a comprobar la ortografía
-
-
+
+ Overrides main preferences.Anulará a la configuración principal.
-
+ Disable backup on closeNo crear copia de seguridad al cerrar
+
+ _StatsWidget
+
+
+
+ Words
+ Palabras
+
+
+
+
+ Characters
+ Personajes
+
+
+
+ Words in Headings
+
+
+
+
+ Words in Text
+
+
+
+
+ Headings
+ Títulación
+
+
+
+ Paragraphs
+ Párrafos
+
+
+
+ Characters in Headings
+
+
+
+
+ Characters in Text
+
+
+
+
+ Characters, No Spaces
+
+
+
+
+ Characters in Headings, No Spaces
+
+
+
+
+ Characters in Text, No Spaces
+
+
+ _StatusPage
-
+ Novel Document Status LevelsEstados de los Documentos de Novela
-
+ Project Note Importance LevelsPrioridades de las Notas del Proyecto
-
+ LabelRótulo
-
+ UsageUso
-
+ Select item to editSeleccionar el ítem a editar
-
+ ColourColor
-
+ SaveGuardar
-
+ Select ColourEscoger un Color
-
+ New ItemNuevo Ítem
-
+ Cannot delete a status item that is in use.No se puede eliminar un ítem de estado actualmente en uso.
-
+ Not in useNo está en uso
-
+ Used onceUn ítem lo usa
-
+ Used by {0} items{0} ítems lo usan
@@ -4520,133 +4685,128 @@
_TreeContextMenu
-
+ Empty TrashVaciar la Papelera
-
+ RenameRenombrar
-
+ Open DocumentAbrir el Documento
-
+ View DocumentVisualizar el Documento
-
+ Create New ...Crear Nuevo...
-
+ Rename to HeadingRenombrar a Título
-
+ Set Active to ...Inclusión...
-
+ Toggle ActiveAlternar su Inclusión
-
+ Set Status to ...Cambiar el Estado a...
-
-
+
+ Manage Labels ...Administrar las Etiquetas...
-
+ Set Importance to ...Importancia...
-
+ Transform ...Transformar...
-
+ Convert to {0}Convertir a {0}
-
+ Merge Child Items into SelfCombinar Ítems Descendientes con sí mismo
-
+ Merge Child Items into NewCombinar los Ítems Descendientes en uno Nuevo
-
+ Merge Documents in FolderCombinar los Documentos de la Carpeta
-
- Split Document by Headers
- Separar el Documento según Titulado
+
+ Split Document by Headings
+
-
+ Expand AllExpandir Todo
-
+ Collapse AllContraer Todo
-
- Duplicate from Here
- Duplicar a partir de Aquí
+
+ Duplicate
+
-
- Duplicate Document
- Duplicar el Documento
-
-
-
-
+
+ Delete PermanentlyEliminar Permanentemente
-
-
+
+ Move to TrashMover a la Papelera
-
+ Move {0} items to Trash?¿Mover '{0}' ítems a la Papelera?
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.¿Desea convertir la carpeta a {0}? Esta acción es irreversible.
@@ -4654,7 +4814,7 @@
_UpdatableMenu
-
+ From TemplateA partir de Plantilla
@@ -4662,12 +4822,12 @@
_ViewPanelBackRefs
-
+ DocumentDocumento
-
+ First HeadingPrimer Título
@@ -4675,27 +4835,27 @@
_ViewPanelKeyWords
-
+ TagEtiqueta
-
+ ImportanceImportancia
-
+ DocumentDocumento
-
+ HeadingTítulo
-
+ Short DescriptionBreve Descripción
diff --git a/i18n/nw_fr_FR.ts b/i18n/nw_fr_FR.ts
index e192364a..aea3fb7c 100644
--- a/i18n/nw_fr_FR.ts
+++ b/i18n/nw_fr_FR.ts
@@ -4,215 +4,235 @@
Builds
-
+ Document FiltersFiltres de documents
-
+ Novel DocumentsDocument du roman
-
+ Project NotesNotes de projet
-
+ Inactive DocumentsDocuments non utilisés
-
+ HeadingsEn-têtes
-
- Title Headings
- Titres
+
+ Partition Format
+
-
- Chapter Headings
- Titres de chapitre
+
+ Chapter Format
+
-
- Unnumbered Headings
- Titres non numérotés
+
+ Unnumbered Format
+
-
- Scene Headings
- Titres de scènes
+
+ Scene Format
+
-
- Section Headings
- Titres de sections
+
+ Hard Scene Format
+
-
- Hide Scene Headings
- Masquer les titres de scènes
+
+ Section Format
+
-
- Hide Section Headings
- Masquer les entêtes de section
-
-
-
+ Text ContentContenu du texte
-
+ Include SynopsisInclure le synopsis
-
+ Include CommentsInclure les commentaires
-
+ Include KeywordsInclure les mots-clés
-
+ Include Body TextInclure le corps du texte
-
+
+ Ignore These Keywords
+
+
+
+ Insert ContentContenu inséré
-
+ Add Titles for NotesAjouter des titres pour les notes
-
+ Text FormatFormat du texte
-
+ Font FamilyFamille de police
-
+ Font SizeTaille de police
-
+ Line HeightHauteur de ligne
-
+ Text OptionsOptions du texte
-
+ Justify Text MarginsJustifier le texte aux marges
-
+ Replace Unicode CharactersRemplacer les caractères Unicode
-
+ Replace Tabs with SpacesRemplacer les tabulations par des espaces
-
+ Page LayoutDimensions de la page
-
+ UnitUnité
-
+ Page SizeTaille de la page
-
+ Page WidthLargeur de la page
-
+ Page HeightHauteur de la page
-
+ Top MarginMarge supérieure
-
+ Bottom MarginMarge inférieure
-
+ Left MarginMarge gauche
-
+ Right MarginMarge droite
-
+ Open Document (.odt)Open Document (.odt)
-
+ Add Highlight ColoursAjouter des couleurs de mise en évidence
-
+ Page HeaderEntête de la page
-
+ Page Counter OffsetDécalage du compteur de page
-
+
+ First Line Indent
+
+
+
+
+ Markdown (.md)
+
+
+
+
+ Preserve Hard Line Breaks
+
+
+
+ HTML (.html)HTML (.html)
-
+ Add CSS StylesAjouter des styles CSS
+
+
+ Preserve Tab Characters
+
+ Common
@@ -290,375 +310,375 @@
Constant
-
-
-
+
+
+ NoneSans
-
+ NovelRoman
-
-
+
+ PlotIntrigue
-
-
+
+ CharactersPersonnages
-
-
+
+ LocationsLieux
-
-
+
+ TimelineChronologie
-
-
+
+ ObjectsObjets
-
-
+
+ EntitiesEntités
-
-
-
+
+
+ CustomPersonnalisé
-
+ ArchiveArchive
-
+ TemplatesModèles
-
+ TrashCorbeille
-
-
+
+ Novel DocumentDocument du roman
-
-
+
+ Project NoteNote du projet
-
+ Root FolderDossier racine
-
+ FolderDossier
-
+ Novel Title PagePage de titre du roman
-
+ Novel ChapterChapitre du roman
-
+ Novel SceneScène du roman
-
+ Novel SectionSection de roman
-
+ TagÉtiquette
-
+ Point of ViewPoint de vue
-
-
+
+ FocusFocus
-
+ TitleTitre
-
+ LevelNiveau
-
+ DocumentDocument
-
+ LineLigne
-
+ CharsCaractères
-
+ WordsMots
-
+ ParsParties
-
+ POVPDV
-
+ SynopsisSynopsis
-
+ Open Document (.odt)Open Document (.odt)
-
+ Flat Open Document (.fodt)Flat Open Document (.fodt)
-
+ novelWriter HTML (.html)HTML novelWriter (.htm)
-
+ novelWriter Markup (.txt)Marquage novelWriter (.txt)
-
+ Standard Markdown (.md)Markdown standard (.md)
-
+ Extended Markdown (.md)Markdown étendu (.md)
-
+ JSON + novelWriter HTML (.json)JSON + HTML novelWriter (.json)
-
+ JSON + novelWriter Markup (.json)JSON + marquage novelWriter (.json)
-
+ Text filesFichiers texte
-
+ Markdown filesFichiers Markdown
-
+ novelWriter filesFichiers novelWriter
-
+ CSV filesFichiers CSV
-
+ All filesTous les fichiers
-
+ MillimetresMillimètres
-
+ CentimetresCentimètres
-
+ InchesPouces
-
+ A4A4
-
+ A5A5
-
+ A6A6
-
+ US LegalUS Legal
-
+ US LetterUS Letter
-
+ Straight single quotation markapostrophe
-
+ Straight double quotation markguillemet anglais
-
+ Left single quotation markguillemet-apostrophe culbuté
-
+ Right single quotation markguillemet-apostrophe
-
+ Single low-9 quotation markguillemet-virgule inférieur
-
+ Single high-reversed-9 quotation markguillemet-virgule supérieur culbuté
-
+ Left double quotation markguillemet-apostrophe double culbuté
-
+ Right double quotation markguillemet-apostrophe double
-
+ Double low-9 quotation markguillemet-virgule double inférieur
-
+ Double high-reversed-9 quotation markguillemet-virgule double supérieur culbuté
-
+ Double low-reversed-9 quotation markguillemet-virgule double inférieur culbuté
-
+ Single left-pointing angle quotation markguillemet simple vers la gauche
-
+ Single right-pointing angle quotation markguillemet simple vers la droite
-
+ Double left-pointing angle quotation markguillemet gauche
-
+ Double right-pointing angle quotation markguillemet droit
-
+ Left corner bracketcrochet en angle à gauche
-
+ Right corner bracketcrochet en angle à droite
-
+ Left white corner bracketcrochet en angle à gauche blanc
-
+ Right white corner bracketcrochet en angle à droite blanc
@@ -684,38 +704,38 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsParamètres de construction du manuscrit
-
+ NameNom
-
+ SelectionSélection
-
+ HeadingsEn-têtes
-
+ ContentContenu
-
+ FormatFormat
-
+ OutputSortie
@@ -723,47 +743,47 @@
GuiDictionaries
-
+ Add DictionariesAjouter des dictionnaires
-
+ Download a dictionary from one of the links, and add it below.Téléchargez un dictionnaire à partir d'un des liens, et ajoutez-le ci-dessous.
-
+ Add DictionaryAjouter un dictionnaire
-
+ Dictionary install locationEmplacement d'installation du dictionnaire
-
+ Additional dictionaries found: {0}Dictionnaires supplémentaires trouvés : {0}
-
+ Free or Libre Office extensionExtension Free Office ou Libre Office
-
+ Browse FilesParcourir les fichiers
-
+ Could not process dictionary fileImpossible de traiter le fichier de dictionnaire
-
+ Added: {0} [{1}B]Ajouté : {0} [{1}B]
@@ -771,55 +791,50 @@
GuiDocEditFooter
-
- Status
- État
-
-
-
+ Line: {0} ({1})Ligne : {0} ({1})
-
+ Words: {0} ({1})Mots : {0} ({1})
-
- Document size is {0} bytes
- La taille du document est de {0} octets
-
-
-
+ Words: {0} selectedMots sélectionnés : {0}
-
- Character count: {0}
- Nombre de caractères : {0}
+
+ Status
+ ÉtatGuiDocEditHeader
-
+ Toggle Tool BarAfficher/Masquer la barre d'outils
-
+
+ Outline
+
+
+
+ SearchChercher
-
+ Toggle Focus ModeBasculer le mode focus
-
+ CloseFermer
@@ -827,58 +842,62 @@
GuiDocEditSearch
-
-
+
+ Search for
+
+
+
+
+ Replace with
+
+
+
+ SearchChercher
-
- Replace
- Remplacer
-
-
-
+ Case SensitiveSensible à la casse
-
+ Whole Words OnlyMots entiers uniquement
-
+ RegEx ModeExpressions régulières
-
+ Loop SearchRecherche en boucle
-
+ Search Next FileChercher dans le fichier suivant
-
+ Preserve CaseConserver la casse
-
+ Close SearchTerminer la recherche
-
+ Find in current documentChercher dans le document actuel
-
+ Find and replace in current documentChercher et remplacer dans le document actuel
@@ -886,150 +905,145 @@
GuiDocEditor
-
+ Opened Document: {0}Document ouvert : {0}
-
+ This document has been changed outside of novelWriter while it was open. Overwrite the file on disk?Ce document a été modifié en dehors de novelWriter pendant qu'il était ouvert. Écraser le fichier sur le disque ?
-
+ Could not save document.Impossible d'enregistrer le document.
-
+ Saved Document: {0}Document enregistré : {0}
-
+ Spell checking requires the package PyEnchant. It does not appear to be installed.La vérification orthographique nécessite PyEnchant qui ne semble pas installé ici.
-
+ Spell check completeLa vérification orthographique est terminée
-
+ Document DetailsDétails du document
-
+ Created: {0}Créé : {0}
-
+ Updated: {0}Mis à jour : {0}
-
+ File Location: {0}Emplacement du fichier : {0}
-
+ Set as Document NameDéfinir comme nom du document
-
+ Follow TagSuivre cette étiquette
-
+ Create Note for TagCréer une note pour l'étiquette
-
+ CutCouper
-
+ CopyCopier
-
+ PasteColler
-
+ Select AllSélectionner tout
-
+ Select WordSélectionner le mot
-
+ Select ParagraphSélectionner le paragraphe
-
+ Spelling Suggestion(s)Orthographe suggérée
-
+ No SuggestionsPas de suggestion
-
+ Add Word to DictionaryAjouter ce mot au dictionnaire
-
+ Please select some text before calling replace quotes.Veuillez sélectionner du texte avant de demander le remplacement des guillemets.
-
+ Do you want to create a new project note for the tag '{0}'?Voulez-vous créer une nouvelle note de projet pour l'étiquette '{0}' ?
-
-
- Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first.
- Impossible de créer une note dans un dossier racine pour '{0}'. S'il n'en existe pas, vous devez d'abord en créer un.
- GuiDocMerge
-
+ Merge DocumentsFusionner des documents
-
+ Documents to MergeDocuments à fusionner
-
+ Drag and drop items to change the order, or uncheck to exclude.Glissez et déposez des éléments pour modifier l'ordre ou décochez pour exclure.
-
+ Move merged items to TrashDéplacer les éléments fusionnés dans la corbeille
@@ -1037,52 +1051,52 @@
GuiDocSplit
-
+ Split DocumentDécouper un document
-
- Document Headers
- En-têtes de documents
+
+ Document Headings
+
-
+ Select the maximum level to split into files.Sélectionner le niveau maximum à découper en fichiers.
-
-
- Split on Header Level 1 (Title)
- Découpage aux en-têtes de niveau 1 (Titre)
-
-
-
- Split up to Header Level 2 (Chapter)
- Découpage aux en-têtes de niveau 2 (Chapitre)
-
- Split up to Header Level 3 (Scene)
- Découpage aux en-têtes de niveau 3 (Scène)
+ Split on Heading Level 1 (Partition)
+
- Split up to Header Level 4 (Section)
- Découpage aux en-têtes de niveau 4 (Section)
+ Split up to Heading Level 2 (Chapter)
+
-
+
+ Split up to Heading Level 3 (Scene)
+
+
+
+
+ Split up to Heading Level 4 (Section)
+
+
+
+ Split into a new folderDiviser en un nouveau dossier
-
+ Create document hierarchyCréer une hiérarchie de document
-
+ Move split document to TrashDéplacer le document divisé dans la corbeille
@@ -1090,47 +1104,52 @@
GuiDocToolBar
-
+ Markdown BoldMarkdown gras
-
+ Markdown ItalicMarkdown italique
-
+ Markdown StrikethroughMarkdown barré
-
+ Shortcode BoldCode court gras
-
+ Shortcode ItalicCode court italique
-
+ Shortcode StrikethroughCode court barré
-
+ Shortcode UnderlineCode court souligné
-
+
+ Shortcode Highlight
+
+
+
+ Shortcode SuperscriptCode court exposant
-
+ Shortcode SubscriptCode court indice
@@ -1138,27 +1157,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelAfficher/Masquer le panneau de visualisation
-
+ CommentsCommentaires
-
+ Show CommentsAfficher les commentaires
-
+ SynopsisSynopsis
-
+ Show Synopsis CommentsAfficher les commentaires du synopsis
@@ -1166,22 +1185,27 @@
GuiDocViewHeader
-
+
+ Outline
+
+
+
+ Go BackwardReculer
-
+ Go ForwardAvancer
-
+ ReloadRecharger
-
+ CloseFermer
@@ -1189,27 +1213,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.Une erreur est survenue durant la génération de l'aperçu.
-
+ CopyCopier
-
+ Select AllSélectionner tout
-
+ Select WordSélectionner le mot
-
+ Select ParagraphSélectionner le paragraphe
@@ -1217,12 +1241,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsCacher les balises inactives
-
+ ReferencesRéférences
@@ -1230,12 +1254,12 @@
GuiEditLabel
-
+ Item LabelÉtiquette de l'élément
-
+ LabelÉtiquette
@@ -1243,37 +1267,37 @@
GuiItemDetails
-
+ LabelLabel
-
+ StatusÉtat
-
+ ClassClasse
-
+ UsageUtilisation
-
+ CharactersCaractères
-
+ WordsMots
-
+ ParagraphsParagraphes
@@ -1281,27 +1305,27 @@
GuiLipsum
-
+ Insert Placeholder TextTexte de remplissage
-
+ Insert Lorem Ipsum TextInsérer du texte Lorem Ipsum
-
+ Number of paragraphsNombre de paragraphes
-
+ Randomise orderOrdre aléatoire
-
+ InsertInsérer
@@ -1309,103 +1333,103 @@
GuiMain
-
+ novelWriter is ready ...novelWriter est prêt ...
-
+ You are now running novelWriter version {0}.Vous utilisez maintenant la version {0} de novelWriter.
-
+ Please check the {0}release notes{1} for further details.Veuillez consulter {0}les notes de version{1} pour plus de détails.
-
+ Close the current project?Fermer le projet en cours ?
-
-
+
+ Changes are saved automatically.Les changements sont enregistrés automatiquement.
-
+ Backup the current project?Faut-il sauvegarder le projet en cours ?
-
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?Ce projet est verrouillé car il est déjà ouvert par une autre instance de novelWriter. Faut-il contourner le verrou et continuer malgré tout ?
-
+ 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 : Si le programme ou l'ordinateur s'est bloqué auparavant, le verrou peut être contourné sans problème. Si par contre le projet est actuellement ouvert par une autre instance de novelWriter, contourner le verrou peut corrompre les données du projet.
-
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.Le projet a été verrouillé par l'ordinateur '{0}' ({1} {2}), dernière activité à {3}.
-
+ The project index is outdated or broken. Rebuilding index.L'index du projet est périmé ou endommagé. Reconstruction de l'index en cours.
-
+ Import FileImporter un fichier
-
+ Could not read file. The file must be an existing text file.Lecture du fichier impossible. Il faut un fichier texte existant.
-
+ Please open a document to import the text file into.Veuillez ouvrir un document dans lequel sera importé le texte.
-
+ Importing the file will overwrite the current content of the document. Do you want to proceed?Le contenu du fichier importé va remplacer le contenu actuel du document. Faut-il continuer ?
-
+ Indexing completed in {0} msIndexation effectuée en {0} ms
-
+ The project index has been successfully rebuilt.L'index du projet a été correctement reconstruit.
-
+ Could not initialise the dialog.Impossible d'initialiser la boîte de dialogue.
-
+ Do you want to exit novelWriter?Voulez-vous sortir de novelWriter ?
-
+ Some changes will not be applied until novelWriter has been restarted.Certains changements ne seront effectifs qu'après un redémarrage de 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}.La référence pour l'étiquette {0} n'a pas été trouvée. Soit elle n'existe pas, soit l'index n'est pas à jour. L'index peut être mis à jour depuis le menu des Outils, ou en appuyant sur {1}.
@@ -1413,642 +1437,657 @@
GuiMainMenu
-
+ &Project&Projet
-
+ Create or Open ProjectCréer ou ouvrir un projet
-
+ Save ProjectEnregistrer le projet
-
+ Close ProjectFermer le projet
-
+ Project SettingsRéglages du projet
-
+ Novel DetailsDétails du roman
-
+ Rename ItemRenommer l'élément
-
+ Delete ItemSupprimer cet élément
-
+ Empty TrashVider la corbeille
-
+ ExitSortir
-
+ &Document&Document
-
+ Open DocumentOuvrir ce document
-
+ Save DocumentEnregistrer le document
-
+ Close DocumentFermer le document
-
+ View DocumentAfficher ce document
-
+ Close Document ViewFermer la vue du document
-
+ Show File DetailsAfficher les détails du fichier
-
+ Import Text from FileImporter depuis un fichier
-
+ &EditÉditio&n
-
+ UndoDéfaire
-
+ RedoRefaire
-
+ CutCouper
-
+ CopyCopier
-
+ PasteColler
-
+ Select AllTout sélectionner
-
+ Select ParagraphSélectionner le paragraphe
-
+ &View&Affichage
-
+ Go to Project TreeFocus sur l'arborescence
-
+ Go to Document EditorFocus sur l'éditeur
-
+ Go to OutlineFocus sur la vue d'ensemble
-
+ Navigate BackwardReculer
-
+ Navigate ForwardAvancer
-
+ Focus ModeMode sans distraction
-
+ Full Screen ModeMode plein écran
-
+ &Insert&Insertion
-
+ DashesTirets
-
+ Short Dashtiret demi-cadratin
-
+ Long Dashtiret cadratin
-
+ Horizontal Barbarre horizontale
-
+ Figure Dashtiret numérique
-
+ Quote MarksGuillemets
-
+ Left Single QuoteGuillemet-apostrophe culbuté
-
+ Right Single QuoteGuillemet-apostrophe
-
+ Left Double QuoteGuillemet-apostrophe double culbuté
-
+ Right Double QuoteGuillemet-apostrophe double
-
+ Alternative ApostropheApostrophe modificative
-
+ General PunctuationPonctuation générale
-
+ EllipsisPoints de suspension
-
+ PrimePrime
-
+ Double PrimeDouble Prime
-
+ White SpacesEspaces blancs
-
+ Non-Breaking SpaceEspace insécable
-
+ Thin SpaceEspace fine
-
+ Thin Non-Breaking SpaceEspace fine insécable
-
+ Other SymbolsAutres symboles
-
+ List BulletPuce
-
+ Hyphen BulletPuce trait d'union
-
+ Flower MarkPuce fleur
-
+ Per MillePour mille
-
+ Degree SymbolDegré
-
+ Minus SignMoins
-
+ Times SignMultiplication
-
+ Division SignDivision
-
+ Tags and ReferencesÉtiquettes et références
-
+ Special CommentsCommentaires spéciaux
-
+ Synopsis CommentCommentaire de synopsis
-
+ Short Description CommentCommentaire de description courte
-
+ Page Break and SpaceSaut de page et espace
-
+ Page BreakSaut de page
-
+ Vertical Space (Single)Espace vertical (simple)
-
+ Vertical Space (Multi)Espace vertical (multiple)
-
+ Placeholder TextTexte de remplissage
-
+ &FormatMise en &forme
-
+ BoldGras
-
+ ItalicItalique
-
+ StrikethroughBiffure
-
+ Wrap Double QuotesGuillemets doubles
-
+ Wrap Single QuotesGuillemets simples
-
+ More Formats ...Davantage de formats...
-
+ Bold (Shortcode)Gras (code court)
-
+ Italics (Shortcode)Italiques (code court)
-
+ Strikethrough (Shortcode)Barré (code court)
-
+ UnderlineSouligné
-
+
+ Highlight
+
+
+
+ SuperscriptExposant
-
+ SubscriptIndice
-
-
- Header 1 (Partition)
- En-tête 1 (Partie)
-
- Header 2 (Chapter)
- En-tête 2 (Chapitre)
+ Heading 1 (Partition)
+
- Header 3 (Scene)
- En-tête 3 (Scène)
+ Heading 2 (Chapter)
+
- Header 4 (Section)
- En-tête 4 (Section)
+ Heading 3 (Scene)
+
-
+
+ Heading 4 (Section)
+
+
+
+ Novel TitleTitre du roman
-
+ Unnumbered ChapterChapitre sans numéro
-
+
+ Hard Scene
+
+
+
+ Align LeftAligner à gauche
-
+ Align CentreAligner au centre
-
+ Align RightAligner à droite
-
+ Indent LeftIndenter à gauche
-
+ Indent RightIndenter à droite
-
+ Toggle CommentCommentaire
-
+ Toggle Ignore TextActiver/désactiver ignorer le texte
-
+ Remove Block FormatEnlever le format du bloc
-
- Convert Single Quotes
- Remplacer les guillemets simples
+
+ Replace Straight Single Quotes
+
-
- Convert Double Quotes
- Remplacer les guillemets doubles
+
+ Replace Straight Double Quotes
+
-
+ Remove In-Paragraph BreaksEnlever les ruptures dans les paragraphes
-
+ &SearchRec&herche
-
+ FindChercher
-
+ ReplaceRemplacer
-
+ Find NextChercher en avant
-
+ Find PreviousChercher en arrière
-
+ Replace NextRemplacer le prochain
-
+
+ Find in Project
+
+
+
+ &Tools&Outils
-
+ Check SpellingVérifier l'orthographe
-
+ Spell Check LanguageLangue de vérification orthographique
-
+ DefaultValeurs par défauts
-
+ Re-Run Spell CheckRéeffectuer la vérification orthographique
-
+ Project Word ListLexique du projet
-
+ Add DictionariesAjouter des dictionnaires
-
+ Rebuild IndexReconstruire l'index
-
+ Backup ProjectSauvegarder le dossier contenant les fichiers du projet
-
+ Build ManuscriptCompiler le manuscrit
-
+ Writing StatisticsStatistiques d'écriture
-
+ PreferencesPréférences
-
+ &HelpAid&e
-
+ About novelWriterÀ propos de novelWriter
-
+ About Qt5À propos de Qt5
-
+ User Manual (Online)Manuel d'utilisation (en ligne)
-
+ User Manual (PDF)Manuel d'utilisation (PDF)
-
+ Report an Issue (GitHub)Signaler un problème (GitHub)
-
+ Ask a Question (GitHub)Poser une question (GitHub)
-
+ The novelWriter WebsiteSite web de novelWriter
@@ -2095,53 +2134,63 @@
GuiManuscript
-
+ Build ManuscriptCompiler le manuscrit
-
+ Add New BuildAjouter une nouvelle compilation
-
+ Delete Selected BuildSupprimer la compilation sélectionnée
-
+ Edit Selected BuildModifier la compilation sélectionnée
-
+ BuildsCompilations
-
+
+ Details
+
+
+
+
+ Outline
+
+
+
+ PreviewAperçu
-
+ PrintImprimer
-
+ BuildConstruire
-
+ CloseFermer
-
-
+
+ My ManuscriptMon manuscrit
@@ -2149,57 +2198,57 @@
GuiManuscriptBuild
-
+ Build ManuscriptCompiler le manuscrit
-
+ Output FormatFormat de sortie
-
+ Table of ContentsTable des matières
-
+ PathEmplacement
-
+ File NameNom du fichier
-
+ Reset file name to defaultRétablir le nom de fichier par défaut
-
+ Open FolderOuvrir le dossier
-
+ &Build&Compiler
-
+ Select FolderSélectionner un dossier
-
+ Output folder does not exist.Le dossier de sortie n'existe pas.
-
+ The file already exists. Do you want to overwrite it?Ce fichier existe déjà. Voulez-vous l'écraser ?
@@ -2207,18 +2256,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsDétails du roman
-
+ OverviewVue d'ensemble
-
+ ContentsContenu
@@ -2226,58 +2275,58 @@
GuiNovelToolBar
-
+ Outline of {0}Plan de {0}
-
+ Novel RootRacine du roman
-
+ RefreshMettre à jour
-
+ Last ColumnDernière colonne
-
+ HiddenCaché
-
+ Point of View CharacterPersonnage du point de vue
-
+ Focus CharacterPersonnage central
-
+ Novel PlotIntrigue du roman
-
-
+
+ Column SizeLargeur de colonne
-
+ More OptionsAutres options
-
+ Maximum column size in %Largeur de colonne max en %
@@ -2285,7 +2334,7 @@
GuiNovelTree
-
+ No meta dataPas de métadonnées
@@ -2293,64 +2342,64 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTitre
-
+ ChapterChapitre
-
+ SceneScène
-
+ SectionSection
-
+ DocumentDocument
-
+ StatusÉtat
-
+ CharactersCaractères
-
+ WordsMots
-
+ ParagraphsParagraphes
-
+ SynopsisSynopsis
-
+ Title DetailsTitre et Détails
-
+ Reference TagsEtiquettes de référence
@@ -2358,7 +2407,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsSélectionner les colonnes
@@ -2366,17 +2415,17 @@
GuiOutlineToolBar
-
+ Outline ofPlan de
-
+ RefreshMettre à jour
-
+ Export CSVExporter en CSV
@@ -2384,7 +2433,7 @@
GuiOutlineTree
-
+ Save Outline AsEnregistrer le résumé sous
@@ -2392,13 +2441,13 @@
GuiPreferences
-
-
+
+ PreferencesPréférences
-
+ SearchChercher
@@ -2413,561 +2462,589 @@
Apparence
-
+ Display languageLangue d'affichage
-
-
-
+
+
+ Requires restart to take effect.Nécessite un redémarrage pour prendre effet.
-
+ Colour themeCouleur du thème
-
+ General colour theme and icons.Thème de couleur et icônes généraux.
-
+ Application font familyFamille de la police de l'application
-
+ Application font sizeTaille de la police de l'application
-
-
+
+ ptpt
-
+ Hide vertical scroll bars in main windowsMasquer les barres de défilement verticales dans les fenêtres principales
-
-
+
+ Scrolling available with mouse wheel and keys only.Le défilement ne pourra se faire que par la molette de la souris et les touches du clavier.
-
+ Hide horizontal scroll bars in main windowsMasquer les barres de défilement horizontales dans les fenêtres principales
-
+ Document StyleStyle du document
-
+ Document colour themeThème de couleur du document
-
+ Colour theme for the editor and viewer.Thème de couleurs à utiliser dans l'éditeur et l'afficheur.
-
+ Document font familyFamille de la police du document
-
-
-
-
+
+
+
+ Applies to both document editor and viewer.S'applique à l'éditeur et à l'afficheur de documents.
-
+ Document font sizeTaille de la police du document
-
+ Emphasise partition and chapter labelsRehausser les étiquettes de parties et de chapitres
-
+ Makes them stand out in the project tree.Les mettre en évidence dans l'arborescence du projet.
-
+ Show full path in document headerMontrer le chemin complet dans l'en-tête du document
-
+ Add the parent folder names to the header.Ajouter les noms des dossiers parents dans l'en-tête.
-
+ Include project notes in status bar word countInclure les notes du projet dans le compte total de mots
-
+ Auto SaveEnregistrement automatique
-
+ Save document intervalIntervalle d'enregistrement
-
+ How often the document is automatically saved.À quelle fréquence le document ouvert est automatiquement enregistré.
-
-
+
+ secondssecondes
-
+ Save project intervalIntervalle d'enregistrement du projet
-
+ How often the project is automatically saved.À quelle fréquence le projet ouvert est automatiquement enregistré.
-
+ Project BackupSauvegarde du projet
-
+ BrowseParcourir
-
+ Backup storage locationEmplacement de sauvegarde du projet
-
-
+
+ Path: {0}Chemin : {0}
-
+ Run backup when the project is closedSauvegarder à la fermeture du projet
-
+ Can be overridden for individual projects in Project Settings.Peut être invalidé pour des projets spécifiques dans leurs paramètres.
-
+ Ask before running backupDemander avant de sauvegarder
-
+ If off, backups will run in the background.Si désactivé, les sauvegardes seront effectuées en arrière-plan.
-
+ Session TimerChronomètre de session
-
+ Pause the session timer when not writingArrêter le chronomètre quand on n'écrit pas
-
+ Also pauses when the application window does not have focus.Arrêter également lorsque la fenêtre de l'application n'a pas le focus.
-
+ Editor inactive time before pausing timerDurée d'inactivité de l'éditeur avant la mise en pause du chronomètre
-
+ User activity includes typing and changing the content.L'activité de l'utilisateur inclut la frappe et la modification du contenu.
-
+ minutesminutes
-
+ WritingEcriture
-
+ Text FlowDéroulement du texte
-
+ Maximum text width in "Normal Mode"Largeur maximale du texte en mode "normal"
-
+ Set to 0 to disable this feature.Mettre à 0 pour désactiver cette fonctionnalité.
-
-
-
-
+
+
+
+ pxpx
-
+ Maximum text width in "Focus Mode"Largeur maximale du texte en mode "sans distraction"
-
+ The maximum width cannot be disabled.La largeur maximale ne peut pas être désactivée.
-
+ Hide document footer in "Focus Mode"Masquer le bas de page en mode "sans distraction"
-
+ Hide the information bar in the document editor.Masquer la barre d'informations sous le document.
-
+ Justify the text marginsJustifier le texte aux marges
-
+ Minimum text marginMarge minimale de texte
-
+ Tab widthLargeur des tabulations
-
+ The width of a tab key press in the editor and viewer.La largeur résultant d'un appui sur la touche de tabulation dans l'éditeur et l'afficheur.
-
+ Text EditingÉdition de texte
-
+ Spell check languageLangue de vérification orthographique
-
+ Available languages are determined by your system.Les langues disponibles dépendent de votre système.
-
+ Auto-select word under cursorAuto-sélection du mot sous le curseur
-
+ Apply formatting to word under cursor if no selection is made.En l'absence de texte sélectionné la mise en forme s'applique au mot sous le curseur.
-
+ Show tabs and spacesMontrer les tabulations et les espaces
-
+ Show line endingsMontrer les fins de lignes
-
+ Editor ScrollingDéfilement de l'éditeur
-
+ Scroll past end of the documentLe défilement dépasse la fin du document
-
+ Also centres the cursor when scrolling.Centre également le curseur lors du défilement.
-
+ Typewriter style scrolling when you typeDéfilement de machine à écrire
-
+ Keeps the cursor at a fixed vertical position.L'éditeur essaye de conserver le curseur à la même position verticale.
-
+ Minimum position for Typewriter scrollingPosition minimale en mode machine à écrire
-
+ Percentage of the editor height from the top.En pourcentage de la hauteur de la fenêtre depuis le haut.
-
+ Text HighlightingSurlignage du texte
-
+ Highlight text wrapped in quotesMettre en évidence le texte situé entre des guillemets
-
-
-
+
+
+ Applies to the document editor only.Ne s'applique qu'à l'éditeur de document.
-
+ Allow open-ended single quotesAutoriser les guillemets simples non fermés
-
+ Highlight single-quoted line with no closing quote.Mettre en évidence les lignes avec guillemet simple ouvrant et non fermées.
-
+ Allow open-ended double quotesAutoriser les guillemets doubles non fermés
-
+ Highlight double-quoted line with no closing quote.Mettre en évidence les lignes avec guillemet double ouvrant et non fermées.
-
+ Add highlight colour to emphasised textMettre en évidence le texte appuyé
-
+ Highlight multiple or trailing spacesSurligner les espaces multiples ou terminaux
-
+ Text AutomationAutomatisation de texte
-
+ Auto-replace text as you typeAuto-remplacement par la frappe
-
+ Allow the editor to replace symbols as you type.Permet à l'éditeur de remplacer les symboles au fur et à mesure de la frappe.
-
+ Auto-replace single quotesAuto-remplacement des guillemets simples
-
-
+
+ Try to guess which is an opening or a closing quote.Tenter de deviner si un guillemet est ouvrant ou fermant.
-
+ Auto-replace double quotesAuto-remplacement des guillemets doubles
-
+ Auto-replace dashesAuto-remplacement des tirets
-
+ Double and triple hyphens become short and long dashes.Deux ou trois tirets successifs deviennent des tirets moyens (semi-cadratins) ou longs (cadratins).
-
+ Auto-replace dotsAuto-remplacement des points
-
+ Three consecutive dots become ellipsis.Trois points consécutifs deviennent des points de suspension.
-
+ Insert non-breaking space beforeEspace insécable avant
-
+ Automatically add space before any of these symbols.Ajouter lors de la frappe une espace avant chacun de ces caractères.
-
+ Insert non-breaking space afterEspace insécable après
-
+ Automatically add space after any of these symbols.Ajouter lors de la frappe une espace après chacun de ces caractères.
-
+ Use thin space insteadUtiliser des espaces fines
-
+ Inserts a thin space instead of a regular space.Insérer une espace fine au lieu d'une espace-mot.
-
+ Quotation StyleStyle de guillemets
-
+ Single quote open styleGuillemets simples ouvrants
-
+ The symbol to use for a leading single quote.Symbole à utiliser pour un guillemet simple ouvrant.
-
+ Single quote close styleGuillemets simples fermants
-
+ The symbol to use for a trailing single quote.Symbole à utiliser pour un guillemet simple fermant.
-
+ Double quote open styleGuillemets doubles ouvrants
-
+ The symbol to use for a leading double quote.Symbole à utiliser pour un guillemet double ouvrant.
-
+ Double quote close styleGuillemets doubles fermants
-
+ The symbol to use for a trailing double quote.Symbole à utiliser pour un guillemet double fermant.
-
+ Backup DirectoryRépertoire de sauvegarde
+
+ GuiProjectSearch
+
+
+ Project Search
+
+
+
+
+ Case Sensitive
+ Sensible à la casse
+
+
+
+ Whole Words Only
+ Mots entiers uniquement
+
+
+
+ RegEx Mode
+ Expressions régulières
+
+
+
+ Search for
+
+
+ GuiProjectSettings
-
-
+
+ Project SettingsParamètres du projet
-
+ SettingsGénéral
-
+ StatusÉtat
-
+ ImportanceImportance
-
+ Auto-ReplaceAuto-remplacement
@@ -2975,47 +3052,47 @@
GuiProjectToolBar
-
+ Project ContentContenu du projet
-
+ Quick LinksLiens rapides
-
+ Move UpDéplacer vers le haut
-
+ Move DownDéplacer vers le bas
-
+ Add ItemAjouter un élément
-
+ Expand AllTout développer
-
+ Collapse AllTout replier
-
+ Empty TrashVider la corbeille
-
+ More OptionsAutres options
@@ -3023,118 +3100,118 @@
GuiProjectTree
-
+ ActiveActif
-
+ InactiveInactif
-
+ Permanently delete {0} file(s) from Trash?Effacer définitivement {0} fichier(s) dans la Corbeille ?
-
+ Did not find anywhere to add the file or folder!Pas trouvé d'emplacement pour y ajouter le fichier ou le dossier !
-
+ Cannot add new files or folders to the Trash folder.Impossible d'ajouter de nouveaux fichiers ou dossiers dans le dossier Corbeille.
-
+ New NoteNouvelle note
-
+ New ChapterNouveau chapitre
-
+ New SceneNouvelle scène
-
+ New DocumentNouveau document
-
+ New FolderNouveau dossier
-
+ There is currently no Trash folder in this project.Il n'existe pas actuellement de dossier Corbeille pour ce projet.
-
+ The Trash folder is already empty.Le dossier Corbeille est déjà vide.
-
+ Move '{0}' to Trash?Déplacer '{0}' dans la corbeille ?
-
+ Root folders can only be deleted when they are empty.Les dossiers racines ne peuvent être supprimés que s'ils sont vides.
-
+ Permanently delete '{0}'?Effacer définitivement '{0} ' ?
-
+ Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent.Le glisser-déposer n'est autorisé que pour des éléments individuels, des éléments non racines, ou des ensembles d'éléments ayant le même parent.
-
+ No documents selected for merging.Aucun document n'a été sélectionné pour la fusion.
-
+ MergedFusionné
-
-
+
+ Could not write document content.Impossible d'écrire le contenu du document.
-
+ Do you want to duplicate this document?Voulez-vous dupliquer ce document ?
-
+ Do you want to duplicate this item and all child items?Voulez-vous dupliquer cet élément et tous ceux qu'il contient ?
-
+ Could not duplicate all items.Impossible de dupliquer tous les éléments.
-
+ There is nowhere to add item with name '{0}'.Il n'y a pas d'emplacement pour ajouter l'item nommé '{0}'.
@@ -3142,37 +3219,42 @@
GuiSideBar
-
+ Project Tree ViewVue de l'arborescence du projet
-
+ Novel Tree ViewVue de l'arborescence du roman
-
+
+ Project Search
+
+
+
+ Novel Outline ViewVue d'ensemble du roman
-
+ Build ManuscriptCompiler le manuscrit
-
+ Novel DetailsDétails du roman
-
+ Writing StatisticsStatistiques d'écriture
-
+ SettingsParamètres
@@ -3180,37 +3262,37 @@
GuiWelcome
-
+ WelcomeBienvenue
-
+ ListListe
-
+ NewNouveau
-
+ BrowseParcourir
-
+ CancelAnnuler
-
+ CreateCréer
-
+ OpenOuvrir
@@ -3218,33 +3300,33 @@
GuiWordList
-
-
+
+ Project Word ListLexique du projet
-
+ Import words from text fileImporter des mots depuis un fichier texte
-
+ Export words to text fileExporter les mots vers un fichier texte
-
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.Note : Le fichier à importer doit être un fichier texte encodé en UTF-8 ou en ASCII.
-
+ Import FileImporter un fichier
-
+ Export FileExporter le fichier
@@ -3252,147 +3334,147 @@
GuiWritingStats
-
+ Writing StatisticsStatistiques d'écriture
-
+ Session StartDébut de session
-
+ LengthDurée
-
+ IdleInactif
-
+ WordsMots
-
+ HistogramHistogramme
-
+ Sum TotalsTotaux
-
+ Total Time:Temps total :
-
+ Idle Time:Temps d'inactivité :
-
+ Filtered Time:Temps après filtrage :
-
+ Novel Word Count:Compte de mots du texte :
-
+ Notes Word Count:Compte de mot des notes :
-
+ Total Word Count:Compte de mots total :
-
+ FiltersFiltres
-
+ Count novel filesCompter les fichiers du roman
-
+ Count note filesCompter les fichiers de notes
-
+ Hide zero word countMasquer les comptes de mots à zéro
-
+ Hide negative word countMasquer les comptes de mots négatifs
-
+ Group entries by dayRegrouper par jour
-
+ Show idle timeMontrer le temps d'inactivité
-
+ Word count cap for the histogramCompte de mots maximum dans l'histogramme
-
+ Save AsEnregistrer sous
-
+ JSON Data File (.json)Fichier données JSON (.json)
-
+ CSV Data File (.csv)Fichier données CSV (.csv)
-
+ JSON Data FileFichier données JSON
-
+ CSV Data FileFichier données CSV
-
+ Save Data AsEnregistrer ces données sous
-
+ {0} file successfully written to:le fichier {0} a été écrit dans :
-
+ Failed to write {0} file.Erreur lors de l'écriture du fichier {0}.
@@ -3400,153 +3482,153 @@
NWProject
-
+ Could not delete document file.Impossible de supprimer le fichier du document.
-
+ Not a known project file format.Le format de ce fichier de projet n'est pas reconnu.
-
+ Project file not found.Fichier de projet non trouvé.
-
+ Failed to open project.Échec lors de l'ouverture du projet.
-
+ UnknownInconnu
-
+ Project file does not appear to be a novelWriterXML file.Ce fichier projet ne semble pas être un fichier 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}.Format de projet novelWriter inconnu ou non supporté. Ce projet ne peut pas être ouvert avec cette version de novelWriter, il a été enregistré avec novelWriter version {0}.
-
+ Failed to parse project xml.Impossible de décoder le xml du projet.
-
+ 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?Le format de fichier de votre projet est sur le point d'être mis à jour. Si vous continuez, les anciennes versions de novelWriter ne pourront plus ouvrir ce projet. Continuer ?
-
+ 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?Ce projet a été enregistré par une version plus récente de novelWriter, la version {0}. Ceci est la version {1}. Si vous ouvrez quand même ce projet, certaines propriétés ou certains réglages risquent d'être perdus, toutefois le projet dans son ensemble devrait être intact. Voulez-vous quand même ouvrir ce projet ?
-
+ RecoveredRécupéré
-
+ Found {0} orphaned file(s) in the project. {1} file(s) were recovered.{0} fichier(s) orphelin(s) trouvé(s) dans le projet, dont {1} récupéré(s).
-
+ Opened Project: {0}Projet ouvert : {0}
-
+ There is no project open.Aucun projet n'est ouvert.
-
+ Failed to save project.Impossible d'enregistrer le projet.
-
+ Saved Project: {0}Projet enregistré : {0}
-
+ Backing up project ...Sauvegarde du projet en cours ...
-
+ Cannot backup project because no project name is set. Please set a Project Name in Project Settings.Il est impossible de sauvegarder le projet car il n'a pas reçu de nom. Veuillez remplir le nom dans les paramètres du projet.
-
+ Could not create backup folder.Il n'a pas été possible de créer le répertoire de sauvegarde.
-
+ Created a backup of your project of size {0}B.Une sauvegarde de votre projet a été créée, de taille {0}B.
-
+ Path: {0}Chemin : {0}
-
+ Could not write backup archive.Il n'a pas été possible d'écrire l'archive de sauvegarde.
-
+ Project backed up to '{0}'Projet sauvegardé dans {0}
-
-
+
+ NewNouveau
-
+ NoteNote
-
+ DraftBrouillon
-
+ FinishedTerminé
-
+ MinorMineur
-
+ MajorMajeur
-
+ MainPrincipal
@@ -3562,89 +3644,89 @@
ProjectBuilder
-
+ The target folder is not empty. Please choose another folder.Le dossier de destination n'est pas vide. Veuillez en choisir un autre.
-
+ An error occurred while trying to create the project.Une erreur est survenue lors de la création du projet.
-
+ New ProjectNouveau projet
-
+ Title PagePage de titre
-
+ ByPar
-
+ Summary of the chapter.Résumé du chapitre.
-
+ Summary of the scene.Résumé de la scène.
-
+ A short description.Une description sommaire.
-
+ Chapter {0}Chapitre {0}
-
-
+
+ Scene {0}Scène {0}
-
+ Main PlotIntrigue principale
-
+ ProtagonistProtagoniste
-
+ Main LocationLieu principal
-
-
+
+ The target folder already exists. Please choose another folder.Le dossier de destination n'est pas vide. Veuillez en choisir un autre.
-
+ Could not copy project files.Impossible de copier les fichiers du projet.
-
+ Failed to create a new example project.Il n'a pas été possible de créer un nouveau projet d'exemple.
-
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.Impossible de créer un nouveau projet d'exemple. Les fichiers nécessaires n'ont pas pu être trouvés. Ils semblent absents de cette installation.
@@ -3840,17 +3922,17 @@
SharedData
-
+ novelWriter Project File or Zip FileFichier de projet ou fichier Zip novelWriter
-
+ novelWriter Project FileFichier projet novelWriter
-
+ Open ProjectOuvrir un projet
@@ -3901,57 +3983,57 @@
_ContentsPage
-
+ Table of ContentsTable des matières
-
+ TitleTitre
-
+ WordsMots
-
+ PagesPages
-
+ PagePage
-
+ ProgressProgression
-
+ Words per pageMots par page
-
+ First page offsetDécalage de la première page
-
+ Chapters on odd pagesChapitres sur les pages impaires
-
+ UntitledSans titre
-
+ ENDFIN
@@ -3959,30 +4041,35 @@
_DetailsWidget
-
+ SettingParamètre
-
+ ValueValeur
-
+ NameNom
-
+ SelectionSélection
-
+ TitleTitre
+
+
+ Hidden
+ Caché
+ _FilterTab
@@ -4012,12 +4099,12 @@
Rétablir les valeurs par défaut
-
+ Mark selection asMarquer la sélection comme
-
+ Select Root FoldersSélectionner les dossiers racine
@@ -4025,22 +4112,22 @@
_GuiAlert
-
+ InformationInformation
-
+ WarningAvertissement
-
+ ErrorErreur
-
+ QuestionQuestion
@@ -4048,193 +4135,211 @@
_HeadingsTab
-
-
+ HideCacher
-
-
+
+ Editing: {0}Modification : {0}
-
-
+
+ NoneAucun
-
+ TitleTitre
-
+ Chapter NumberNuméro de chapitre
-
+ Chapter Number (Word)Numéro de chapitre (en lettres)
-
+ Chapter Number (Upper Case Roman)Numéro de chapitre (en chiffres romains majuscules)
-
+ Chapter Number (Lower Case Roman)Numéro de chapitre (en chiffres romains minuscules)
-
+ Scene Number (In Chapter)Numéro de scène (dans le chapitre)
-
+ Scene Number (Absolute)Numéro de scène (absolu)
-
+ Point of View CharacterPersonnage du point de vue
-
+ Focus CharacterPersonnage central
-
+ InsertInsérer
-
+ ApplyAppliquer
+
+
+ Additional Styling
+
+
+
+
+
+
+ Centre
+
+
+
+
+
+
+ Page Break
+ Saut de page
+ _NewProjectForm
-
+ RequiredObligatoire
-
+ OptionalOptionnel
-
+ Create a fresh projectCréer un nouveau projet
-
+ Create an example projectCréer un projet d'exemple
-
+ Copy an existing projectCopier un projet existant
-
+ Project NameNom du projet
-
+ AuthorAuteur
-
+ Project PathChemin d'accès
-
+ Prefill ProjectPréremplir le projet
-
+ Set to 0 to only add scenesMettre à 0 pour n'ajouter que des scènes
-
+ Add {0} chapter documentsAjouter {0} documents de chapitre
-
+ Add {0} scene documents (to each chapter)Ajouter {0} documents de scènes (à chaque chapitre)
-
+ Add a folder for plot notesAjouter un dossier pour les notes sur l'intrigue
-
+ Add a folder for character notesAjouter un dossier pour les notes sur les personnages
-
+ Add a folder for location notesAjouter un dossier pour les notes sur les lieux
-
+ Add example notes to the aboveAjouter des exemples de notes à ce qui précède
-
+ Chapters and ScenesChapitres et scènes
-
+ Project NotesNotes de projet
-
+ Create New ProjectCréer un nouveau projet
-
+ Select Project FolderSélectionner le dossier du projet
-
+ Fresh ProjectNouveau projet
-
+ Example ProjectProjet d'exemple
-
+ Template: {0}Modèle : {0}
@@ -4242,7 +4347,7 @@
_NewProjectPage
-
+ A project name is required.Un nom de projet est requis.
@@ -4250,27 +4355,27 @@
_OpenProjectPage
-
+ The project path is not reachable.Le chemin du projet n'est pas accessible.
-
+ PathChemin
-
+ Remove '{0}' from the recent projects list? The project files will not be deleted.Retirer '{0}' de la liste des projets récents ? Le fichier projet ne sera pas effacé.
-
+ Open ProjectOuvrir un projet
-
+ Remove ProjectSupprimer le projet
@@ -4278,54 +4383,54 @@
_OverviewPage
-
+ ProjectProjet
-
-
+
+ NameNom
-
+ RevisionsRévisions
-
+ Editing TimeDurée d'édition
-
-
+
+ Word CountCompteur de mots
-
+ In NovelsDans les romans
-
+ In NotesDans les Notes
-
+ Selected NovelRoman sélectionné
-
+ ChaptersChapitres
-
+ ScenesScènes
@@ -4333,27 +4438,27 @@
_PreviewWidget
-
+ Press the "Preview" button to generate ...Appuyez sur le bouton "Aperçu" pour générer...
-
+ Processing ...Traitement en cours...
-
+ DoneTerminé
-
+ UnknownInconnu
-
+ BuiltCompilé
@@ -4361,12 +4466,12 @@
_ProjectListModel
-
+ Word CountCompteur de mots
-
+ Last OpenedDernier ouvert
@@ -4374,27 +4479,27 @@
_ReplacePage
-
+ Text Auto-Replace for Preview and BuildRemplacements automatiques de texte pour la prévisualisation et la compilation
-
+ KeywordMot-clé
-
+ Replace WithRemplacer par
-
+ Select item to editChoisir l'élément à éditer
-
+ SaveEnregistrer
@@ -4402,117 +4507,177 @@
_SettingsPage
-
+ Project nameNom du projet
-
+ Changing this will affect the backup path.Modifier ceci affectera le chemin de sauvegarde.
-
+ Author(s)Auteur(s)
-
-
+
+ Only used when building the manuscript.Utilisé uniquement lors de la compilation du manuscrit.
-
+ Project languageLangue du projet
-
+ DefaultDéfauts
-
+ Spell check languageLangue de vérification orthographique
-
-
+
+ Overrides main preferences.Remplace les préférences principales.
-
+ Disable backup on closeDésactiver la sauvegarde à la fermeture
+
+ _StatsWidget
+
+
+
+ Words
+ Mots
+
+
+
+
+ Characters
+ Caractères
+
+
+
+ Words in Headings
+
+
+
+
+ Words in Text
+
+
+
+
+ Headings
+ En-têtes
+
+
+
+ Paragraphs
+ Paragraphes
+
+
+
+ Characters in Headings
+
+
+
+
+ Characters in Text
+
+
+
+
+ Characters, No Spaces
+
+
+
+
+ Characters in Headings, No Spaces
+
+
+
+
+ Characters in Text, No Spaces
+
+
+ _StatusPage
-
+ Novel Document Status LevelsNiveaux d'état du roman
-
+ Project Note Importance LevelsNiveaux d'importance pour les notes de projet
-
+ LabelÉtiquette
-
+ UsageUtilisation
-
+ Select item to editChoisir l'élément à éditer
-
+ ColourCouleur
-
+ SaveEnregistrer
-
+ Select ColourChoisir la couleur
-
+ New ItemNouvel élément
-
+ Cannot delete a status item that is in use.On ne peut pas retirer un élément tant qu'il est utilisé.
-
+ Not in useInutilisé
-
+ Used onceUtilisé une fois
-
+ Used by {0} itemsUtilisé {0} fois
@@ -4520,133 +4685,128 @@
_TreeContextMenu
-
+ Empty TrashVider la corbeille
-
+ RenameRenommer
-
+ Open DocumentOuvrir le document
-
+ View DocumentAfficher le document
-
+ Create New ...Créer un nouveau...
-
+ Rename to HeadingRenommer comme en-tête
-
+ Set Active to ...Définir Actif à ...
-
+ Toggle ActiveActiver/Désactiver
-
+ Set Status to ...Définir le statut à ...
-
-
+
+ Manage Labels ...Gérer les étiquettes...
-
+ Set Importance to ...Définir l'Importance à ...
-
+ Transform ...Transformer ...
-
+ Convert to {0}Convertir en {0}
-
+ Merge Child Items into SelfIntégrer les éléments enfants
-
+ Merge Child Items into NewCréer une fusion des éléments enfants
-
+ Merge Documents in FolderFusionner les documents du dossier
-
- Split Document by Headers
- Diviser le document selon les en-têtes
+
+ Split Document by Headings
+
-
+ Expand AllTout développer
-
+ Collapse AllTout replier
-
- Duplicate from Here
- Dupliquer à partir d'ici
+
+ Duplicate
+
-
- Duplicate Document
- Dupliquer le document
-
-
-
-
+
+ Delete PermanentlySupprimer définitivement
-
-
+
+ Move to TrashDéplacer vers la corbeille
-
+ Move {0} items to Trash?Déplacer {0} élément(s) dans la corbeille ?
-
+ Do you want to convert the folder to a {0}? This action cannot be reversed.Voulez-vous convertir le dossier en {0} ? Cette action est irréversible.
@@ -4654,7 +4814,7 @@
_UpdatableMenu
-
+ From TemplateDepuis le modèle
@@ -4662,12 +4822,12 @@
_ViewPanelBackRefs
-
+ DocumentDocument
-
+ First HeadingPremier titre
@@ -4675,27 +4835,27 @@
_ViewPanelKeyWords
-
+ TagÉtiquette
-
+ ImportanceImportance
-
+ DocumentDocument
-
+ HeadingTitre
-
+ Short DescriptionDescription sommaire
diff --git a/i18n/nw_it_IT.ts b/i18n/nw_it_IT.ts
index b65f5870..7b543baa 100644
--- a/i18n/nw_it_IT.ts
+++ b/i18n/nw_it_IT.ts
@@ -4,215 +4,235 @@
Builds
-
+ Document FiltersFiltri del documento
-
+ Novel DocumentsDocumenti del romanzo
-
+ Project NotesNote del progetto
-
+ Inactive DocumentsDocumenti inattivi
-
+ HeadingsIntestazioni
-
- Title Headings
- Intestazioni del titolo
+
+ Partition Format
+
-
- Chapter Headings
- Intestazioni di capitolo
+
+ Chapter Format
+
-
- Unnumbered Headings
- Intestazioni non numerate
+
+ Unnumbered Format
+
-
- Scene Headings
- Intestazioni di scena
+
+ Scene Format
+
-
- Section Headings
- Intestazioni di sezione
+
+ Hard Scene Format
+
-
- Hide Scene Headings
- Nascondi Intestazioni di scena
+
+ Section Format
+
-
- Hide Section Headings
- Nascondi intestazioni di sezione
-
-
-
+ Text ContentContenuto del testo
-
+ Include SynopsisIncludi sinossi
-
+ Include CommentsIncludi commenti
-
+ Include KeywordsIncludi parole chiave
-
+ Include Body TextIncludi il corpo del testo
-
+
+ Ignore These Keywords
+
+
+
+ Insert ContentInserisci il contenuto
-
+ Add Titles for NotesAggiungi i titoli per le note
-
+ Text FormatFormato del testo
-
+ Font FamilyFamiglia dei caratteri
-
+ Font SizeDimensioni dei caratteri
-
+ Line HeightAltezza della riga
-
+ Text OptionsOpzioni del testo
-
+ Justify Text MarginsGiustifica i margini del testo
-
+ Replace Unicode CharactersSostituisci Caratteri Unicode
-
+ Replace Tabs with SpacesSostituisci le tabulazioni con gli spazi
-
+ Page LayoutImpaginazione
-
+ UnitUnità
-
+ Page SizeDimensioni pagina
-
+ Page WidthLarghezza pagina
-
+ Page HeightAltezza pagina
-
+ Top MarginMargine superiore
-
+ Bottom MarginMargine inferiore
-
+ Left MarginMargine sinistro
-
+ Right MarginMargine destro
-
+ Open Document (.odt)Apri documento (.odt)
-
+ Add Highlight ColoursAggiungi colori evidenziati
-
+ Page HeaderIntestazione della pagina
-
+ Page Counter OffsetScostamento del contatore di pagina
-
+
+ First Line Indent
+
+
+
+
+ Markdown (.md)
+
+
+
+
+ Preserve Hard Line Breaks
+
+
+
+ HTML (.html)HTML (.html)
-
+ Add CSS StylesAggiungi stile CSS
+
+
+ Preserve Tab Characters
+
+ Common
@@ -290,375 +310,375 @@
Constant
-
-
-
+
+
+ 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
-
+ TagEtichetta
-
+ Point of ViewPunto di vista
-
-
+
+ FocusFocus
-
+ TitleTitolo
-
+ LevelLivello
-
+ DocumentDocumento
-
+ LineRighe
-
+ CharsCaratteri
-
+ WordsParole
-
+ ParsParagrafi
-
+ POVPOV
-
+ SynopsisSommario
-
+ Open Document (.odt)Documento Aperto (.odt)
-
+ Flat Open Document (.fodt)Apri documento piatto (.fodt)
-
+ novelWriter HTML (.html)novelWriter HTML (.html)
-
+ novelWriter Markup (.txt)novelWriter Markup (.txt)
-
+ Standard Markdown (.md)Standard Markdown (.md)
-
+ Extended Markdown (.md)Extended Markdown (.md)
-
+ JSON + novelWriter HTML (.json)JSON + novelWriter HTML (.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
@@ -684,38 +704,38 @@
GuiBuildSettings
-
-
+
+ Manuscript Build SettingsImpostazioni di creazione del manoscritto
-
+ NameNome
-
+ SelectionSelezione
-
+ HeadingsIntestazioni
-
+ ContentContenuto
-
+ FormatFormato
-
+ OutputRisultato
@@ -723,47 +743,47 @@
GuiDictionaries
-
+ Add DictionariesAggiungi dizionari
-
+ Download a dictionary from one of the links, and add it below.Scarica un dizionario da uno dei link e aggiungilo qui sotto.
-
+ Add DictionaryAggiungi dizionario
-
+ Dictionary install locationPosizione installazione del dizionario
-
+ Additional dictionaries found: {0}Dizionari aggiuntivi trovati: {0}
-
+ Free or Libre Office extensionEstensione di Free o Libre Office
-
+ Browse FilesSfoglia i file
-
+ Could not process dictionary fileImpossibile elaborare il file del dizionario
-
+ Added: {0} [{1}B]Aggiunto: {0} [{1}B]
@@ -771,55 +791,50 @@
GuiDocEditFooter
-
- Status
- Stato
-
-
-
+ Line: {0} ({1})Riga: {0} ({1})
-
+ Words: {0} ({1})Parole: {0} ({1})
-
- Document size is {0} bytes
- La dimensione del documento è {0} byte
-
-
-
+ Words: {0} selectedParole: {0} selezionate
-
- Character count: {0}
- Conteggio caratteri: {0}
+
+ Status
+ StatoGuiDocEditHeader
-
+ Toggle Tool BarAttiva/disattiva la Barra degli strumenti
-
+
+ Outline
+
+
+
+ SearchCerca
-
+ Toggle Focus ModeAttiva/Disattiva modalità Focus
-
+ CloseChiudi
@@ -827,58 +842,62 @@
GuiDocEditSearch
-
-
+
+ Search for
+
+
+
+
+ Replace with
+
+
+
+ SearchCerca
-
- Replace
- Sostituisci
-
-
-
+ 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
@@ -886,150 +905,145 @@
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
-
+ 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
-
+ 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}'?
-
-
- Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first.
- Impossibile creare una nota in una cartella radice per '{0}'. Se non esiste, è necessario crearne una prima.
- GuiDocMerge
-
+ Merge DocumentsUnisci i documenti
-
+ Documents to MergeDocumenti da unire
-
+ Drag and drop items to change the order, or uncheck to exclude.Trascina e rilascia gli elementi per cambiare l'ordine, o deseleziona per escludere.
-
+ Move merged items to TrashSposta gli elementi uniti nel cestino
@@ -1037,52 +1051,52 @@
GuiDocSplit
-
+ Split DocumentDividi il documento
-
- Document Headers
- Intestazioni del documento
+
+ Document Headings
+
-
+ Select the maximum level to split into files.Seleziona il livello massimo da dividere in file separati.
-
-
- Split on Header Level 1 (Title)
- Dividi sul livello d'intestazione 1 (Titolo)
-
-
-
- Split up to Header Level 2 (Chapter)
- Dividi sul livello d'intestazione 2 (Capitolo)
-
- Split up to Header Level 3 (Scene)
- Dividi sul livello d'intestazione 3 (Scena)
+ Split on Heading Level 1 (Partition)
+
- Split up to Header Level 4 (Section)
- Dividi sul livello d'intestazione 4 (Sezione)
+ Split up to Heading Level 2 (Chapter)
+
-
+
+ Split up to Heading Level 3 (Scene)
+
+
+
+
+ Split up to Heading Level 4 (Section)
+
+
+
+ Split into a new folderDividi in una nuova cartella
-
+ Create document hierarchyCrea gerarchia dei documenti
-
+ Move split document to TrashSposta il documento diviso nel cestino
@@ -1090,47 +1104,52 @@
GuiDocToolBar
-
+ Markdown BoldMarkdown grassetto
-
+ Markdown ItalicMarkdown corsivo
-
+ Markdown StrikethroughMarkdown barrato
-
+ Shortcode BoldShortcode grassetto
-
+ Shortcode ItalicShortcode corsivo
-
+ Shortcode StrikethroughShortcode barrato
-
+ Shortcode UnderlineShortcode sottolineato
-
+
+ Shortcode Highlight
+
+
+
+ Shortcode SuperscriptShortcode apice
-
+ Shortcode SubscriptShortcode pendice
@@ -1138,27 +1157,27 @@
GuiDocViewFooter
-
+ Show/Hide Viewer PanelMostra/Nascondi il Pannello di visualizzazione
-
+ CommentsCommenti
-
+ Show CommentsMostra i commenti
-
+ SynopsisSinossi
-
+ Show Synopsis CommentsMostra i commenti relativi alla sinossi
@@ -1166,22 +1185,27 @@
GuiDocViewHeader
-
+
+ Outline
+
+
+
+ Go BackwardVai Indietro
-
+ Go ForwardVai Avanti
-
+ ReloadRicarica
-
+ CloseChiudi
@@ -1189,27 +1213,27 @@
GuiDocViewer
-
+ An error occurred while generating the preview.Si è verificato un errore durante la generazione dell'anteprima.
-
+ CopyCopia
-
+ Select AllSeleziona tutto
-
+ Select WordSeleziona parola
-
+ Select ParagraphSeleziona paragrafo
@@ -1217,12 +1241,12 @@
GuiDocViewerPanel
-
+ Hide Inactive TagsNascondi le etichette inattive
-
+ ReferencesRiferimenti
@@ -1230,12 +1254,12 @@
GuiEditLabel
-
+ Item LabelEtichetta dell'elemento
-
+ LabelEtichetta
@@ -1243,37 +1267,37 @@
GuiItemDetails
-
+ LabelEtichetta
-
+ StatusStato
-
+ ClassClasse
-
+ UsageUtilizzo
-
+ CharactersCaratteri
-
+ WordsParole
-
+ ParagraphsParagrafi
@@ -1281,27 +1305,27 @@
GuiLipsum
-
+ Insert Placeholder TextInserisci testo segnaposto
-
+ Insert Lorem Ipsum TextInserisci testo Lorem Ipsum
-
+ Number of paragraphsNumero dei paragrafi
-
+ Randomise orderOrdine casuale
-
+ InsertInserisci
@@ -1309,103 +1333,103 @@
GuiMain
-
+ novelWriter is ready ...novelWriter è pronto...
-
+ You are now running novelWriter version {0}.Stai ora eseguendo la versione {0} di novelWriter.
-
+ Please check the {0}release notes{1} for further details.Per favore controlla le {0}note di rilascio{1} per ulteriori dettagli.
-
+ Close the current project?Chiudere il progetto attuale?
-
-
+
+ Changes are saved automatically.Le modifiche vengono salvate automaticamente.
-
+ Backup the current project?Eseguire il backup del progetto corrente?
-
+ The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway?Il progetto è già aperto da un'altra istanza di novelWriter, ed è quindi bloccato. Scavalcare il blocco e continuare comunque?
-
+ 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: Se il programma o il computer in precedenza si è bloccato, il blocco può essere superato in modo sicuro. Tuttavia, non è consigliabile sovrascrivere se il progetto è aperto in un'altra istanza di novelWriter. Facendolo si potrebbe danneggiare il progetto.
-
+ The project was locked by the computer '{0}' ({1} {2}), last active on {3}.Il progetto è stato bloccato dal computer '{0}' ({1} {2}), ultimo attivo su {3}.
-
+ The project index is outdated or broken. Rebuilding index.L'indice del progetto è obsoleto o rotto. Ricostruzione dell'indice.
-
+ Import FileImporta file
-
+ Could not read file. The file must be an existing text file.Impossibile leggere il file. Il file deve essere un file di testo esistente.
-
+ Please open a document to import the text file into.Si prega di aprire un documento in cui importare il file di testo.
-
+ Importing the file will overwrite the current content of the document. Do you want to proceed?L'importazione del file sovrascriverà il contenuto corrente del documento. Vuoi procedere?
-
+ Indexing completed in {0} msIndicizzazione completata in {0} ms
-
+ The project index has been successfully rebuilt.L'indice del progetto è stato ricostruito con successo.
-
+ Could not initialise the dialog.Impossibile inizializzare il dialogo.
-
+ Do you want to exit novelWriter?Vuoi uscire da novelWriter?
-
+ Some changes will not be applied until novelWriter has been restarted.Alcune modifiche non saranno applicate fino al riavvio di 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}.Impossibile trovare il riferimento per il tag '{0}'. O non esiste, o l'indice è obsoleto. L'indice può essere aggiornato dal menu Strumenti, o premendo {1}.
@@ -1413,642 +1437,657 @@
GuiMainMenu
-
+ &Project&Progetto
-
+ Create or Open ProjectCrea o apri un progetto
-
+ Save ProjectSalva progetto
-
+ Close ProjectChiudi progetto
-
+ Project SettingsImpostazioni del progetto
-
+ Novel DetailsDettagli del romanzo
-
+ Rename ItemRinomina l'elemento
-
+ Delete ItemElimina l'elemento
-
+ Empty TrashSvuota il cestino
-
+ ExitEsci
-
+ &Document&Documento
-
+ Open DocumentApri documento
-
+ Save DocumentSalva documento
-
+ Close DocumentChiudi documento
-
+ View DocumentVisualizza documento
-
+ Close Document ViewChiudi visualizzazione documento
-
+ Show File DetailsMostra dettagli del file
-
+ Import Text from FileImporta testo da file
-
+ &Edit&Modifica
-
+ UndoAnnulla
-
+ RedoRipristina
-
+ CutTaglia
-
+ CopyCopia
-
+ PasteIncolla
-
+ Select AllSeleziona tutto
-
+ Select ParagraphSeleziona paragrafo
-
+ &View&Visualizza
-
+ Go to Project TreeVai all'albero del progetto
-
+ Go to Document EditorVai all'editor dei documenti
-
+ Go to OutlineVai allo schema riassuntivo
-
+ Navigate BackwardNaviga indietro
-
+ Navigate ForwardNaviga avanti
-
+ Focus ModeModalità Focus
-
+ Full Screen ModeModalità a schermo intero
-
+ &Insert&Inserisci
-
+ DashesTrattini
-
+ Short DashTrattino breve
-
+ Long DashTrattino lungo
-
+ Horizontal BarBarra orizzontale
-
+ Figure DashSimbolo 'Tilde'
-
+ Quote MarksMarcatori di citazione
-
+ Left Single QuoteVirgoletta singola a sinistra
-
+ Right Single QuoteVirgoletta singola a destra
-
+ Left Double QuoteVirgolette doppie a sinistra
-
+ Right Double QuoteVirgolette doppie a destra
-
+ Alternative ApostropheApostrofo alternativo
-
+ General PunctuationPunteggiatura generica
-
+ EllipsisEllisse
-
+ PrimeApostrofo
-
+ Double PrimeDoppie virgolette
-
+ White SpacesSpazi bianchi
-
+ Non-Breaking SpaceSpaziatura larga
-
+ Thin SpaceSpaziatura sottile
-
+ Thin Non-Breaking SpaceSpaziatura media
-
+ Other SymbolsAltri simboli
-
+ List BulletElenco puntato
-
+ Hyphen BulletElenco listato
-
+ Flower MarkAsterisco a forma di fiore
-
+ Per MillePer mille
-
+ Degree SymbolSimbolo di grado
-
+ Minus SignSegno meno
-
+ Times SignSegno di moltiplicazione
-
+ Division SignSegno di divisione
-
+ Tags and ReferencesEtichette e riferimenti
-
+ Special CommentsCommenti speciali
-
+ Synopsis CommentCommenti relativi alla sinossi
-
+ Short Description CommentBreve commento descrittivo
-
+ Page Break and SpaceInterruzioni di pagina e spaziature
-
+ Page BreakInterruzione di pagina
-
+ Vertical Space (Single)Spazio verticale (Singolo)
-
+ Vertical Space (Multi)Spazio verticale (Multiplo)
-
+ Placeholder TextTesto segnaposto
-
+ &Format&Formato
-
+ BoldGrassetto
-
+ ItalicCorsivo
-
+ StrikethroughBarrato
-
+ Wrap Double QuotesDoppie virgolette automatiche
-
+ Wrap Single QuotesSingole virgolette automatiche
-
+ More Formats ...Altri formati ...
-
+ Bold (Shortcode)Grassetto (Shortcode)
-
+ Italics (Shortcode)Corsivi (Shortcode)
-
+ Strikethrough (Shortcode)Barrato (Shortcode)
-
+ UnderlineSottolineato
-
+
+ Highlight
+
+
+
+ SuperscriptApice
-
+ SubscriptPedice
-
-
- Header 1 (Partition)
- Titolo 1 (Partizione)
-
- Header 2 (Chapter)
- Titolo 2 (Capitolo)
+ Heading 1 (Partition)
+
- Header 3 (Scene)
- Titolo 3 (Scena)
+ Heading 2 (Chapter)
+
- Header 4 (Section)
- Titolo 4 (Sezione)
+ Heading 3 (Scene)
+
-
+
+ Heading 4 (Section)
+
+
+
+ Novel TitleTitolo del romanzo
-
+ Unnumbered ChapterCapitolo non numerato
-
+
+ Hard Scene
+
+
+
+ Align LeftAllineamento a sinistra
-
+ Align CentreCentrato
-
+ Align RightAllineamento a destra
-
+ Indent LeftRientro a sinistra
-
+ Indent RightRientro a destra
-
+ Toggle CommentAttiva/Disattiva commento
-
+ Toggle Ignore TextAttiva/disattiva ignora testo
-
+ Remove Block FormatRimuovi il formato blocco
-
- Convert Single Quotes
- Converti in virgolette singole
+
+ Replace Straight Single Quotes
+
-
- Convert Double Quotes
- Converti in virgolette doppie
+
+ Replace Straight Double Quotes
+
-
+ Remove In-Paragraph BreaksRimuovi le interruzioni di paragrafo
-
+ &Search&Cerca
-
+ FindTrova
-
+ ReplaceSostituisci
-
+ Find NextTrova successivo
-
+ Find PreviousTrova precedente
-
+ Replace NextSostituisci successivo
-
+
+ Find in Project
+
+
+
+ &Tools&Strumenti
-
+ Check SpellingControllo ortografico
-
+ Spell Check LanguageLingua per il controllo ortografico
-
+ DefaultPredefinito
-
+ Re-Run Spell CheckRiavvia il controllo ortografico
-
+ Project Word ListElenco delle parole del progetto
-
+ Add DictionariesAggiungi dizionari
-
+ Rebuild IndexRicostruisci l'indice
-
+ Backup ProjectCrea una copia di backup
-
+ Build ManuscriptCompila manoscritto
-
+ Writing StatisticsStatistiche di scrittura
-
+ PreferencesPreferenze
-
+ &Help&Aiuto
-
+ About novelWriterA proposito di novelWriter
-
+ About Qt5A proposito di Qt5
-
+ User Manual (Online)Manuale utente (Online)
-
+ User Manual (PDF)Manuale utente (PDF)
-
+ Report an Issue (GitHub)Segnala un problema (GitHub)
-
+ Ask a Question (GitHub)Fai una domanda (GitHub)
-
+ The novelWriter WebsiteIl sito web di novelWriter
@@ -2095,53 +2134,63 @@
GuiManuscript
-
+ Build ManuscriptCompila manoscritto
-
+ Add New BuildAggiungi nuova compilazione
-
+ Delete Selected BuildElimina la compilazione selezionata
-
+ Edit Selected BuildModifica la compilazione selezionata
-
+ BuildsCompilazioni
-
+
+ Details
+
+
+
+
+ Outline
+
+
+
+ PreviewAnteprima
-
+ PrintStampa
-
+ BuildCompila
-
+ CloseChiudi
-
-
+
+ My ManuscriptIl mio manoscritto
@@ -2149,57 +2198,57 @@
GuiManuscriptBuild
-
+ Build ManuscriptCompila manoscritto
-
+ Output FormatFormato di output
-
+ Table of ContentsTavola dei contenuti
-
+ PathPercorso
-
+ File NameNome file
-
+ Reset file name to defaultRipristina il nome del file predefinito
-
+ Open FolderApri cartella
-
+ &Build&Compila
-
+ Select FolderSeleziona cartella
-
+ Output folder does not exist.La cartella di output non esiste.
-
+ The file already exists. Do you want to overwrite it?Questo file esiste già. Vuoi sovrascriverlo?
@@ -2207,18 +2256,18 @@
GuiNovelDetails
-
-
+
+ Novel DetailsDettagli del romanzo
-
+ OverviewPanoramica
-
+ ContentsContenuti
@@ -2226,58 +2275,58 @@
GuiNovelToolBar
-
+ Outline of {0}Schema di {0}
-
+ Novel RootRadice del romanzo
-
+ RefreshAggiorna
-
+ Last ColumnUltima colonna
-
+ HiddenNascosto
-
+ Point of View CharacterPersonaggio con punto di vista
-
+ Focus CharacterPersonaggio oggetto del focus
-
+ Novel PlotTrama del romanzo
-
-
+
+ Column SizeDimensione della colonna
-
+ More OptionsAltre opzioni
-
+ Maximum column size in %Dimensione massima della colonna in %
@@ -2285,7 +2334,7 @@
GuiNovelTree
-
+ No meta dataNessun metadato
@@ -2293,64 +2342,64 @@
GuiOutlineDetails
-
-
-
+
+
+ TitleTitolo
-
+ ChapterCapitolo
-
+ SceneScena
-
+ SectionSezione
-
+ DocumentDocumento
-
+ StatusStato
-
+ CharactersCaratteri
-
+ WordsParole
-
+ ParagraphsParagrafi
-
+ SynopsisSinossi
-
+ Title DetailsDettagli Titolo
-
+ Reference TagsRiferimenti
@@ -2358,7 +2407,7 @@
GuiOutlineHeaderMenu
-
+ Select ColumnsSeleziona colonne
@@ -2366,17 +2415,17 @@
GuiOutlineToolBar
-
+ Outline ofStruttura di
-
+ RefreshAggiorna
-
+ Export CSVEsporta in formato CSV
@@ -2384,7 +2433,7 @@
GuiOutlineTree
-
+ Save Outline AsSalva lo schema come
@@ -2392,13 +2441,13 @@
GuiPreferences
-
-
+
+ PreferencesPreferenze
-
+ SearchCerca
@@ -2413,561 +2462,589 @@
Aspetto
-
+ Display languageLingua dell'interfaccia
-
-
-
+
+
+ Requires restart to take effect.Richiede il riavvio per avere effetto.
-
+ Colour themeTema colore
-
+ General colour theme and icons.Colore del tema generale e icone.
-
+ Application font familyFamiglia di caratteri dell'applicazione
-
+ Application font sizeDimensione dei caratteri dell'applicazione
-
-
+
+ ptpt
-
+ Hide vertical scroll bars in main windowsNascondi le barre di scorrimento verticali nelle finestre principali
-
-
+
+ Scrolling available with mouse wheel and keys only.Scorrimento disponibile solo con la rotellina del mouse e i tasti.
-
+ Hide horizontal scroll bars in main windowsNascondi le barre di scorrimento orizzontali nelle finestre principali
-
+ Document StyleStile del documento
-
+ Document colour themeTema colore del documento
-
+ Colour theme for the editor and viewer.Colore del tema per l'editor e il visualizzatore.
-
+ Document font familyFamiglia di caratteri del documento
-
-
-
-
+
+
+
+ Applies to both document editor and viewer.Si applica sia all'editor di documenti che al visualizzatore.
-
+ Document font sizeDimensione dei caratteri del documento
-
+ Emphasise partition and chapter labelsEvidenzia le etichette delle partizioni e dei capitoli
-
+ Makes them stand out in the project tree.Le fa risaltare nell'albero del progetto.
-
+ Show full path in document headerMostra il percorso completo nell'intestazione del documento
-
+ Add the parent folder names to the header.Aggiunge i nomi delle cartelle di livello superiore all'intestazione.
-
+ Include project notes in status bar word countIncludi le note del progetto nel conteggio delle parole della barra di stato
-
+ Auto SaveSalvataggio automatico
-
+ Save document intervalIntervallo di salvataggio del documento
-
+ How often the document is automatically saved.Quante volte il documento viene salvato automaticamente.
-
-
+
+ secondssecondi
-
+ Save project intervalIntervallo di salvataggio del progetto
-
+ How often the project is automatically saved.Quante volte il progetto viene salvato automaticamente.
-
+ Project BackupBackup del progetto
-
+ BrowseSfoglia
-
+ Backup storage locationPosizione di archiviazione del backup
-
-
+
+ Path: {0}Percorso: {0}
-
+ Run backup when the project is closedEsegui il backup quando il progetto è chiuso
-
+ Can be overridden for individual projects in Project Settings.Può essere sovrascritto per singoli progetti nelle Impostazioni del progetto.
-
+ Ask before running backupChiedi prima di eseguire il backup
-
+ If off, backups will run in the background.Se disattivato, i backup verranno eseguiti in background.
-
+ Session TimerTimer della sessione
-
+ Pause the session timer when not writingMetti in pausa il timer di sessione quando non si scrive
-
+ Also pauses when the application window does not have focus.Inoltre si interrompe quando la finestra dell'applicazione non ha focus.
-
+ Editor inactive time before pausing timerTempo d'inattività dell'editor prima di mettere in pausa il timer
-
+ User activity includes typing and changing the content.L'attività dell'utente include la digitazione e la modifica del contenuto.
-
+ minutesminuti
-
+ WritingScrittura
-
+ Text FlowFlusso del testo
-
+ Maximum text width in "Normal Mode"Larghezza massima del testo in "Modalità normale"
-
+ Set to 0 to disable this feature.Impostare a 0 per disabilitare questa funzione.
-
-
-
-
+
+
+
+ pxpx
-
+ Maximum text width in "Focus Mode"Larghezza massima del testo in "Modalità Focus"
-
+ The maximum width cannot be disabled.La larghezza massima non può essere disabilitata.
-
+ Hide document footer in "Focus Mode"Nascondi piè di pagina del documento in "Modalità Focus"
-
+ Hide the information bar in the document editor.Nascondi la barra delle informazioni nell'editor dei documenti.
-
+ Justify the text marginsGiustifica i margini del testo
-
+ Minimum text marginDimensione minima del margine del testo
-
+ Tab widthLarghezza di tabulazione
-
+ The width of a tab key press in the editor and viewer.La larghezza ottenibile con una pressione sul tasto TAB nell'editor e nel visualizzatore.
-
+ Text EditingModifica del testo
-
+ Spell check languageLingua per il controllo ortografico
-
+ Available languages are determined by your system.Le lingue disponibili sono determinate dal tuo sistema.
-
+ Auto-select word under cursorSeleziona automaticamente la parola sotto il cursore
-
+ Apply formatting to word under cursor if no selection is made.Applica la formattazione alla parola sotto il cursore se non viene effettuata alcuna selezione.
-
+ Show tabs and spacesMostra tabulazioni e spazi
-
+ Show line endingsMostra terminazioni di riga
-
+ Editor ScrollingScorrimento dell'editor
-
+ Scroll past end of the documentScorri alla fine del documento
-
+ Also centres the cursor when scrolling.Centra anche il cursore durante lo scorrimento.
-
+ Typewriter style scrolling when you typeScorrimento stile macchina da scrivere quando si digita
-
+ Keeps the cursor at a fixed vertical position.Mantiene il cursore in posizione verticale fissa.
-
+ Minimum position for Typewriter scrollingPosizione minima per lo scorrimento della macchina da scrivere
-
+ Percentage of the editor height from the top.Percentuale dell'altezza dell'editor dall'alto.
-
+ Text HighlightingEvidenziazione del testo
-
+ Highlight text wrapped in quotesEvidenzia il testo racchiuso tra virgolette
-
-
-
+
+
+ Applies to the document editor only.Si applica solo all'editor dei documenti.
-
+ Allow open-ended single quotesConsenti di aprire e chiudere le singole virgolette
-
+ Highlight single-quoted line with no closing quote.Evidenzia la riga con virgoletta singola senza virgoletta di chiusura.
-
+ Allow open-ended double quotesConsenti di aprire e chiudere le doppie virgolette
-
+ Highlight double-quoted line with no closing quote.Evidenzia la riga con virgolette doppie senza virgolette di chiusura.
-
+ Add highlight colour to emphasised textAggiungi un colore per evidenziare ed enfatizzare il testo
-
+ Highlight multiple or trailing spacesEvidenzia spazi multipli o finali
-
+ Text AutomationAutomatismi del testo
-
+ Auto-replace text as you typeSostituisci automaticamente il testo mentre digiti
-
+ Allow the editor to replace symbols as you type.Consenti all'editor di sostituire i simboli durante la digitazione.
-
+ Auto-replace single quotesSostituisci automaticamente le virgolette singole
-
-
+
+ Try to guess which is an opening or a closing quote.Prova a indovinare quale sia l'inizio o la fine di una citazione.
-
+ Auto-replace double quotesSostituisci automaticamente le virgolette doppie
-
+ Auto-replace dashesSostituisci automaticamente i trattini
-
+ Double and triple hyphens become short and long dashes.I trattini doppi e tripli diventano brevi e lunghi trattini.
-
+ Auto-replace dotsSostituisci automaticamente i puntini
-
+ Three consecutive dots become ellipsis.Tre punti consecutivi diventano puntini di sospensione.
-
+ Insert non-breaking space beforeInserisci uno spazio prima di
-
+ Automatically add space before any of these symbols.Aggiungi automaticamente spazio prima di uno di questi simboli.
-
+ Insert non-breaking space afterInserisci uno spazio dopo di
-
+ Automatically add space after any of these symbols.Aggiungi automaticamente uno spazio dopo uno di questi simboli.
-
+ Use thin space insteadUsa invece uno spazio sottile
-
+ Inserts a thin space instead of a regular space.Inserisce uno spazio sottile invece di uno spazio regolare.
-
+ Quotation StyleStile delle citazioni
-
+ Single quote open styleSingola virgoletta aperta
-
+ The symbol to use for a leading single quote.Il simbolo da usare per una singola virgoletta iniziale.
-
+ Single quote close styleSingola virgoletta chiusa
-
+ The symbol to use for a trailing single quote.Il simbolo da usare per una singola virgoletta finale.
-
+ Double quote open styleDoppie virgolette aperte
-
+ The symbol to use for a leading double quote.Il simbolo da usare per avere doppie virgolette iniziali.
-
+ Double quote close styleDoppie virgolette chiuse
-
+ The symbol to use for a trailing double quote.Il simbolo da usare per avere doppie virgolette finali.
-
+ Backup DirectoryPercorso di backup
+
+ GuiProjectSearch
+
+
+ Project Search
+
+
+
+
+ Case Sensitive
+ Considera maiuscole/minuscole
+
+
+
+ Whole Words Only
+ Solo parole intere
+
+
+
+ RegEx Mode
+ Modalità RegEx
+
+
+
+ Search for
+
+
+ GuiProjectSettings
-
-
+
+ Project SettingsImpostazioni del progetto
-
+ SettingsImpostazioni
-
+ StatusStato
-
+ ImportanceImportanza
-
+ Auto-ReplaceAuto - sostituisci
@@ -2975,47 +3052,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
@@ -3023,118 +3100,118 @@
GuiProjectTree
-
+ ActiveAttivo
-
+ InactiveInattivo
-
+ Permanently delete {0} file(s) from Trash?Eliminare definitivamente {0} file(s) dal cestino?
-
+ 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
-
+ There is currently no Trash folder in this project.Al momento non c'è una cartella Cestino in questo progetto.
-
+ The Trash folder is already empty.La cartella Cestino è già vuota.
-
+ Move '{0}' to Trash?Spostare '{0}' nel Cestino?
-
+ Root folders can only be deleted when they are empty.Le cartelle radice possono essere eliminate solo quando sono vuote.
-
+ Permanently delete '{0}'?Eliminare definitivamente '{0}'?
-
+ Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent.Il trascinamento è consentito solo per singoli oggetti, oggetti non radice, o più oggetti con lo stesso genitore.
-
+ 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.
-
+ There is nowhere to add item with name '{0}'.Non c'è nessun posto dove aggiungere un elemento con il nome '{0}.
@@ -3142,37 +3219,42 @@
GuiSideBar
-
+ Project Tree ViewVista ad albero del progetto
-
+ Novel Tree ViewVista ad albero del romanzo
-
+
+ Project Search
+
+
+
+ Novel Outline ViewVista della struttura del romanzo
-
+ Build ManuscriptGenera manoscritto
-
+ Novel DetailsDettagli del romanzo
-
+ Writing StatisticsStatistiche di scrittura
-
+ SettingsOpzioni
@@ -3180,37 +3262,37 @@
GuiWelcome
-
+ WelcomeBenvenuto/a
-
+ ListElenco
-
+ NewNuovo
-
+ BrowseSfoglia
-
+ CancelCancella
-
+ CreateCrea
-
+ OpenApri
@@ -3218,33 +3300,33 @@
GuiWordList
-
-
+
+ Project Word ListElenco delle parole del progetto
-
+ Import words from text fileImporta parole da un file di testo
-
+ Export words to text fileEsporta le parole in file di testo
-
+ Note: The import file must be a plain text file with UTF-8 or ASCII encoding.Nota: il file da importare deve essere un file di testo semplice con codifica UTF-8 o ASCII.
-
+ Import FileImporta file
-
+ Export FileEsporta file
@@ -3252,147 +3334,147 @@
GuiWritingStats
-
+ Writing StatisticsStatistiche di scrittura
-
+ Session StartAvvii di sessione
-
+ LengthDurata
-
+ IdleInattività
-
+ WordsParole
-
+ HistogramIstogramma
-
+ Sum TotalsTotalizzazioni
-
+ Total Time:Tempo totale:
-
+ Idle Time:Tempo d'inattività:
-
+ Filtered Time:Tempo filtrato:
-
+ Novel Word Count:Conteggio parole del romanzo:
-
+ Notes Word Count:Conteggio parole delle note:
-
+ Total Word Count:Conteggio parole totali:
-
+ FiltersFiltri
-
+ Count novel filesConteggio file del romanzo
-
+ Count note filesConteggio file delle note
-
+ Hide zero word countNascondi il conteggio parole se a zero
-
+ Hide negative word countNascondi il conteggio parole se negativo
-
+ Group entries by dayRaggruppa le voci per giorno
-
+ Show idle timeMostra tempo d'inattività
-
+ Word count cap for the histogramMax n° di parole per l'istogramma
-
+ Save AsSalva come
-
+ JSON Data File (.json)File di dati JSON (.json)
-
+ CSV Data File (.csv)File di dati CSV (.csv)
-
+ JSON Data FileFile di dati JSON
-
+ CSV Data FileFile di dati CSV
-
+ Save Data AsSalva dati come
-
+ {0} file successfully written to:{0} file scritto correttamente in:
-
+ Failed to write {0} file.Scrittura file {0} non riuscita.
@@ -3400,153 +3482,153 @@
NWProject
-
+ Could not delete document file.Impossibile eliminare il file del documento.
-
+ Not a known project file format.Non è un formato conosciuto di file di progetto.
-
+ Project file not found.File di progetto non trovato.
-
+ Failed to open project.Impossibile aprire il progetto.
-
+ UnknownSconosciuto
-
+ Project file does not appear to be a novelWriterXML file.Il file del progetto non sembra essere un file 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}.Formato file di progetto di novelWriter sconosciuto o non supportato. Il progetto non può essere aperto da questa versione di novelWriter. Il file è stato salvato con la versione {0} di novelWriter.
-
+ Failed to parse project xml.Impossibile analizzare il progetto 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?Il formato del file del tuo progetto sta per essere aggiornato. Scegliendo di procedere, le versioni più vecchie di novelWriter non saranno più in grado di aprire questo progetto. Continuare?
-
+ 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?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.
-
+ Path: {0}Percorso: {0}
-
+ 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
@@ -3562,89 +3644,89 @@
ProjectBuilder
-
+ The target folder is not empty. Please choose another folder.La cartella di destinazione non è vuota. Per favore scegli un'altra cartella.
-
+ An error occurred while trying to create the project.Si è verificato un errore durante il tentativo di creare il progetto.
-
+ New ProjectNuovo progetto
-
+ Title PagePagina del titolo
-
+ ByDi
-
+ Summary of the chapter.Riassunto del capitolo.
-
+ Summary of the scene.Riassunto della scena.
-
+ A short description.Una breve descrizione.
-
+ Chapter {0}Capitolo {0}
-
-
+
+ Scene {0}Scena {0}
-
+ Main PlotTrama principale
-
+ ProtagonistProtagonista
-
+ Main LocationLocalità principale
-
-
+
+ The target folder already exists. Please choose another folder.La cartella di destinazione esiste già. Si prega di scegliere un'altra cartella.
-
+ Could not copy project files.Impossibile copiare i file del progetto.
-
+ Failed to create a new example project.Impossibile creare un nuovo progetto di esempio.
-
+ Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation.Impossibile creare un nuovo progetto di esempio. Impossibile trovare i file necessari. Sembrano mancanti da questa installazione.
@@ -3840,17 +3922,17 @@
SharedData
-
+ novelWriter Project File or Zip FileFile di progetto di novelWriter o file Zip
-
+ novelWriter Project FileFile di progetto di novelWriter
-
+ Open ProjectApri progetto
@@ -3901,57 +3983,57 @@
_ContentsPage
-
+ Table of ContentsTavola dei contenuti
-
+ TitleTitolo
-
+ WordsParole
-
+ PagesPagine
-
+ PagePagina
-
+ ProgressAvanzamento
-
+ Words per pageParole per pagina
-
+ First page offsetScostamento prima pagina
-
+ Chapters on odd pagesCapitoli su pagine dispari
-
+ UntitledSenza titolo
-
+ ENDFINE
@@ -3959,30 +4041,35 @@
_DetailsWidget
-
+ SettingImpostazioni
-
+ ValueValore
-
+ NameNome
-
+ SelectionSelezione
-
+ TitleTitolo
+
+
+ Hidden
+ Nascosto
+ _FilterTab
@@ -4012,12 +4099,12 @@
Ripristina predefinito
-
+ Mark selection asSegna la selezione come
-
+ Select Root FoldersSeleziona cartelle radice
@@ -4025,22 +4112,22 @@
_GuiAlert
-
+ InformationInformazioni
-
+ WarningAttenzione
-
+ ErrorErrore
-
+ QuestionDomanda
@@ -4048,193 +4135,211 @@
_HeadingsTab
-
-
+ HideNascondi
-
-
+
+ Editing: {0}Modifiche: {0}
-
-
+
+ NoneNessuno
-
+ TitleTitolo
-
+ Chapter NumberNumero capitolo
-
+ Chapter Number (Word)Numero capitolo (in lettere)
-
+ Chapter Number (Upper Case Roman)Numero capitolo (numeri romani maiuscoli)
-
+ Chapter Number (Lower Case Roman)Numero capitolo (numeri romani minuscoli)
-
+ Scene Number (In Chapter)Numero scena (nel capitolo)
-
+ Scene Number (Absolute)Numero scena (assoluto)
-
+ Point of View CharacterPersonaggio con punto di vista
-
+ Focus CharacterPersonaggio oggetto del focus
-
+ InsertInserisci
-
+ ApplyApplica
+
+
+ Additional Styling
+
+
+
+
+
+
+ Centre
+
+
+
+
+
+
+ Page Break
+ Interruzione di pagina
+ _NewProjectForm
-
+ RequiredNecessario
-
+ OptionalFacoltativo
-
+ Create a fresh projectCrea un nuovo progetto
-
+ Create an example projectCrea un progetto di esempio
-
+ Copy an existing projectCopia un progetto esistente
-
+ Project NameNome del progetto
-
+ AuthorAutore
-
+ Project PathPercorso del progetto
-
+ Prefill ProjectTipo di progetto
-
+ Set to 0 to only add scenesImposta a 0 per aggiungere solo scene
-
+ Add {0} chapter documentsAggiungi {0} capitoli come documenti
-
+ Add {0} scene documents (to each chapter)Aggiungi {0} scene come documenti (a ogni capitolo)
-
+ Add a folder for plot notesAggiungi una cartella per le note sulla trama
-
+ Add a folder for character notesAggiungi una cartella per le note sui personaggi
-
+ Add a folder for location notesAggiungi una cartella per le note sulle località
-
+ Add example notes to the aboveAggiungi note di esempio alle precedenti
-
+ Chapters and ScenesCapitoli e scene
-
+ Project NotesNote del progetto
-
+ Create New ProjectCrea un nuovo progetto
-
+ Select Project FolderSeleziona la cartella del progetto
-
+ Fresh ProjectNuovo progetto
-
+ Example ProjectProgetto di esempio
-
+ Template: {0}Modello: {0}
@@ -4242,7 +4347,7 @@
_NewProjectPage
-
+ A project name is required.È richiesto un nome di progetto.
@@ -4250,27 +4355,27 @@
_OpenProjectPage
-
+ The project path is not reachable.Il percorso del progetto non è raggiungibile.
-
+ PathPercorso
-
+ Remove '{0}' from the recent projects list? The project files will not be deleted.Rimuovere '{0}' dalla lista dei progetti recenti? I file del progetto non verranno eliminati.
-
+ Open ProjectApri il progetto
-
+ Remove ProjectRimuovi il progetto
@@ -4278,54 +4383,54 @@
_OverviewPage
-
+ ProjectProgetto
-
-
+
+ NameNome
-
+ RevisionsRevisioni
-
+ Editing TimeTempo di lavorazione
-
-
+
+ Word CountConteggio delle parole
-
+ In Novelsnel romanzo
-
+ In Notesnelle note
-
+ Selected NovelRomanzo selezionato
-
+ ChaptersCapitoli
-
+ ScenesScene
@@ -4333,27 +4438,27 @@
_PreviewWidget
-