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 Filters Dokumentenfilter - + Novel Documents Romandokumente - + Project Notes Projektnotizen - + Inactive Documents Inaktive 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 Content Textinhalt - + Include Synopsis Zusammenfassung - + Include Comments Kommentare - + Include Keywords Schlagwörter - + Include Body Text Fließtext - + + Ignore These Keywords + + + + Insert Content Inhalte einfügen - + Add Titles for Notes Titel für Notizen einfügen - + Text Format Textformatierung - + Font Family Schriftart - + Font Size Schriftgröße - + Line Height Zeilenhöhe - + Text Options Textoptionen - + Justify Text Margins Blocksatz - + Replace Unicode Characters Unicode ersetzen - + Replace Tabs with Spaces Tabs durch Leerzeichen ersetzen - + Page Layout Seitenlayout - + Unit Einheit - + Page Size Seitenformat - + Page Width Seitenbreite - + Page Height Seitenhöhe - + Top Margin Abstand oben - + Bottom Margin Abstand unten - + Left Margin Abstand links - + Right Margin Abstand rechts - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Hervorhebungsfarben hinzufügen - + Page Header Kopfzeile - + Page Counter Offset Seitenzahl-Offset - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles CSS hinzufügen + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None Ohne - + Novel Roman - - + + Plot Handlungen - - + + Characters Figuren - - + + Locations Schauplätze - - + + Timeline Zeitleiste - - + + Objects Objekte - - + + Entities Organisationen - - - + + + Custom Benutzerdefiniert - + Archive Archiv - + Templates Vorlagen - + Trash Papierkorb - - + + Novel Document Romandokument - - + + Project Note Projektnotiz - + Root Folder Hauptordner - + Folder Ordner - + Novel Title Page Romantitel - + Novel Chapter Kapitel - + Novel Scene Szene - + Novel Section Romanabschnitt - + Tag Schlagwort - + Point of View Perspektive - - + + Focus Mittelpunkt - + Title Titel - + Level Ebene - + Document Dokument - + Line Zeile - + Chars Zeichen - + Words Wörter - + Pars Absätze - + POV Perspektive - + Synopsis Zusammenfassung - + 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 files Textdateien - + Markdown files Markdown-Dateien - + novelWriter files novelWriter-Dateien - + CSV files CSV-Dateien - + All files Alle Dateien - + Millimetres Millimeter - + Centimetres Zentimeter - + Inches Zoll - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark Einfaches gerades Anführungszeichen - + Straight double quotation mark Doppeltes gerades Anführungszeichen - + Left single quotation mark Einfaches Anführungszeichen 6 oben - + Right single quotation mark Einfaches Anführungszeichen 9 oben - + Single low-9 quotation mark Einfaches Anführungszeichen 9 unten - + Single high-reversed-9 quotation mark Einfaches Anführungszeichen gespiegelte 9 oben - + Left double quotation mark Doppeltes Anführungszeichen 6 oben - + Right double quotation mark Doppeltes Anführungszeichen 9 oben - + Double low-9 quotation mark Doppeltes Anführungszeichen 9 unten - + Double high-reversed-9 quotation mark Doppeltes Anführungszeichen gespiegelte 9 oben - + Double low-reversed-9 quotation mark Doppeltes Anführungszeichen gespiegelte 9 unten - + Single left-pointing angle quotation mark Einfaches Guillemet linkszeigend - + Single right-pointing angle quotation mark Einfaches Guillemet rechtszeigend - + Double left-pointing angle quotation mark Doppeltes Guillemet linkszeigend - + Double right-pointing angle quotation mark Doppeltes Guillemet rechtszeigend - + Left corner bracket Linke Eckklammer - + Right corner bracket Rechte Eckklammer - + Left white corner bracket Linke weiße Eckklammer - + Right white corner bracket Rechte weiße Eckklammer @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Buildeinstellungen - + Name Name - + Selection Auswahl - + Headings Überschriften - + Content Inhalt - + Format Format - + Output Ausgabe @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Wö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 Dictionary Wörterbuch hinzufügen - + Dictionary install location Installationspfad der Wörterbücher - + Additional dictionaries found: {0} Weitere Wörterbücher gefunden: {0} - + Free or Libre Office extension Erweiterung für FreeOffice oder LibreOffice - + Browse Files Dateien suchen - + Could not process dictionary file Wö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} selected Wörter: {0} markiert - - Character count: {0} - Zeichenanzahl: {0} + + Status + Status GuiDocEditHeader - + Toggle Tool Bar Werkzeugleiste ein/aus - + + Outline + + + + Search Suche - + Toggle Focus Mode Ablenkungsfrei ein/aus - + Close Schließen @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Suchen - - Replace - Ersetzen - - - + Case Sensitive Groß-/Kleinschreibung beachten - + Whole Words Only Nur ganze Wörter - + RegEx Mode RegEx-Modus - + Loop Search Suche am Anfang fortsetzen - + Search Next File Nächstes Dokument durchsuchen - + Preserve Case Groß-/Kleinschreibung beibehalten - + Close Search Suche schließen - + Find in current document Im geöffneten Dokument suchen - + Find and replace in current document Im 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 complete Rechtschreibprüfung abgeschlossen - + Document Details Details - + Created: {0} Erstellt: {0} - + Updated: {0} Aktualisiert: {0} - + File Location: {0} Dateispeicherort: {0} - + Set as Document Name Als Dokumentname verwenden - + Follow Tag Schlagwort öffnen - + Create Note for Tag Notiz für Schlagwort erstellen - + Cut Ausschneiden - + Copy Kopieren - + Paste Einfügen - + Select All Alles markieren - + Select Word Wort markieren - + Select Paragraph Absatz markieren - + Spelling Suggestion(s) Korrekturvorschläge - + No Suggestions Keine Vorschläge - + Add Word to Dictionary Zum 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 Documents Dokumente zusammenführen - + Documents to Merge Zusammenzufü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 Trash Zusammengeführte Elemente in den Papierkorb verschieben @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Dokument 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 folder In einen neuen Ordner aufteilen - + Create document hierarchy Dokumenten-Hierarchie erstellen - + Move split document to Trash Geteiltes Dokument in den Papierkorb verschieben @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Fett mit Markdown - + Markdown Italic Kursiv mit Markdown - + Markdown Strikethrough Durchgestrichen mit Markdown - + Shortcode Bold Fett mit Shortcode - + Shortcode Italic Kursiv mit Shortcode - + Shortcode Strikethrough Durchgestrichen mit Shortcode - + Shortcode Underline Unterstrichen mit Shortcode - + + Shortcode Highlight + + + + Shortcode Superscript Hochgestellt mit Shortcode - + Shortcode Subscript Tiefgestellt mit Shortcode @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Ansichtsbereich ein-/ausblenden - + Comments Kommentare - + Show Comments Kommentare anzeigen - + Synopsis Zusammenfassung - + Show Synopsis Comments Zusammenfassung anzeigen @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Zurück - + Go Forward Vor - + Reload Aktualisieren - + Close Schließen @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. Fehler beim Erstellen der Vorschau. - + Copy Kopieren - + Select All Alles markieren - + Select Word Wort markieren - + Select Paragraph Absatz markieren @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Inaktive Schlagwörter ausblenden - + References Verweise @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Titel - + Label Name @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Name - + Status Status - + Class Gruppe - + Usage Kategorie - + Characters Zeichen - + Words Wörter - + Paragraphs Absätze @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Platzhaltertext einfügen - + Insert Lorem Ipsum Text Lorem Ipsum einfügen - + Number of paragraphs Anzahl der Absätze - + Randomise order Zufällige Reihenfolge - + Insert Einfü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 File Textdatei 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} ms Index 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 Project Projekt öffnen oder erstellen - + Save Project Projekt speichern - + Close Project Projekt schließen - + Project Settings Projekteinstellungen - + Novel Details Romandetails - + Rename Item Element umbenennen - + Delete Item Element entfernen - + Empty Trash Papierkorb leeren - + Exit Programm beenden - + &Document &Dokument - + Open Document Dokument öffnen - + Save Document Dokument speichern - + Close Document Dokument schließen - + View Document In der Ansicht öffnen - + Close Document View Ansicht schließen - + Show File Details Dateiinformationen - + Import Text from File Textdatei importieren - + &Edit &Bearbeiten - + Undo Rückgängig - + Redo Wiederherstellen - + Cut Ausschneiden - + Copy Kopieren - + Paste Einfügen - + Select All Alles markieren - + Select Paragraph Absatz markieren - + &View &Ansicht - + Go to Project Tree Zur Projektstruktur wechseln - + Go to Document Editor Zum Editor wechseln - + Go to Outline Zur Gliederung wechseln - + Navigate Backward Ansicht zurück - + Navigate Forward Ansicht weiter - + Focus Mode Ablenkungsfrei - + Full Screen Mode Vollbild - + &Insert &Einfügen - + Dashes Querstriche - + Short Dash Gedankenstrich - + Long Dash Geviertstrich - + Horizontal Bar Anführungsstrich - + Figure Dash Trennstrich für Nummern - + Quote Marks Anführungszeichen - + Left Single Quote Einfaches Anführungszeichen links - + Right Single Quote Einfaches Anführungszeichen rechts - + Left Double Quote Doppeltes Anführungszeichen links - + Right Double Quote Doppeltes Anführungszeichen rechts - + Alternative Apostrophe Apostroph (alternativ) - + General Punctuation Allgemeine Zeichen - + Ellipsis Auslassungspunkte - + Prime Hochstrich - + Double Prime Doppelter Hochstrich - + White Spaces Leerzeichen - + Non-Breaking Space Geschützes Leerzeichen - + Thin Space Schmales Leerzeichen - + Thin Non-Breaking Space Schmales geschütztes Leerzeichen - + Other Symbols Andere Symbole - + List Bullet Aufzählung (Punkt) - + Hyphen Bullet Aufzählung (Bindestrich) - + Flower Mark Sternblume - + Per Mille Promille - + Degree Symbol Grad - + Minus Sign Minus - + Times Sign Multiplikation - + Division Sign Division - + Tags and References Schlagwörter und Verweise - + Special Comments Andere Kommentare - + Synopsis Comment Synopsis-Kommentar - + Short Description Comment Kommentar für Kurzbeschreibung - + Page Break and Space Seitenumbrüche und Abstände - + Page Break Seitenumbruch - + Vertical Space (Single) Senkrechter Abstand (einfach) - + Vertical Space (Multi) Senkrechter Abstand (mehrfach) - + Placeholder Text Platzhaltertext - + &Format &Format - + Bold Fett - + Italic Kursiv - + Strikethrough Durchgestrichen - + Wrap Double Quotes Doppelte Anführungszeichen - + Wrap Single Quotes Einfache Anführungszeichen - + More Formats ... Weitere Formate ... - + Bold (Shortcode) Fett (Shortcode) - + Italics (Shortcode) Kursiv (Shortcode) - + Strikethrough (Shortcode) Durchgestrichen (Shortcode) - + Underline Unterstrichen - + + Highlight + + + + Superscript Hochgestellt - + Subscript Tiefgestellt - - - 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 Title Romantitel - + Unnumbered Chapter Unnummeriertes Kapitel - + + Hard Scene + + + + Align Left Linksbündig - + Align Centre Zentriert - + Align Right Rechtsbündig - + Indent Left Einrückung links - + Indent Right Einrückung rechts - + Toggle Comment Kommentar ein/aus - + Toggle Ignore Text Text ignorieren ein/aus - + Remove Block Format Absatzformatierung 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 Breaks Zeilenumbrüche in Absätzen entfernen - + &Search &Suche - + Find Suchen - + Replace Ersetzen - + Find Next Nächste Fundstelle - + Find Previous Vorherige Fundstelle - + Replace Next Nächste Fundstelle ersetzen - + + Find in Project + + + + &Tools E&xtras - + Check Spelling Rechtschreibprüfung - + Spell Check Language Sprache der Rechtschreibprüfung - + Default Standard - + Re-Run Spell Check Rechtschreibprüfung wiederholen - + Project Word List Projektwörterbuch - + Add Dictionaries Wörterbücher hinzufügen - + Rebuild Index Index aktualisieren - + Backup Project Backup erstellen - + Build Manuscript Manuskript erstellen - + Writing Statistics Schreibstatistiken - + Preferences Einstellungen - + &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 Website novelWriter-Website @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Manuskript erstellen - + Add New Build Neuen Build hinzufügen - + Delete Selected Build Ausgewählten Build löschen - + Edit Selected Build Ausgewählten Build bearbeiten - + Builds Builds - + + Details + + + + + Outline + + + + Preview Vorschau - + Print Drucken - + Build Erstellen - + Close Schließen - - + + My Manuscript Mein Manuskript @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Manuskript erstellen - + Output Format Ausgabeformat - + Table of Contents Inhaltsverzeichnis - + Path Pfad - + File Name Dateiname - + Reset file name to default Dateiname auf Standard zurücksetzen - + Open Folder Ordner öffnen - + &Build &Erstellen - + Select Folder Verzeichnis 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 Details Romandetails - + Overview Übersicht - + Contents Inhalt @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Gliederung für {0} - + Novel Root Hauptordner für den Roman - + Refresh Aktualisieren - + Last Column Letzte Spalte - + Hidden Ausblenden - + Point of View Character Erzählperspektive - + Focus Character Figur im Mittelpunkt - + Novel Plot Romanhandlung - - + + Column Size Spaltenbreite - + More Options Weitere Optionen - + Maximum column size in % Maximale Spaltenbreite in % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data Keine Meta-Daten @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Titel - + Chapter Kapitel - + Scene Szene - + Section Abschnitt - + Document Dokument - + Status Status - + Characters Zeichen - + Words Wörter - + Paragraphs Absätze - + Synopsis Zusammenfassung - + Title Details Titeldetails - + Reference Tags Referenzen @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Spalten anzeigen @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Gliederung für - + Refresh Aktualisieren - + Export CSV CSV exportieren @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Gliederung speichern @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Einstellungen - + Search Suchen @@ -2413,561 +2462,589 @@ Darstellung - + Display language Anzeigesprache - - - + + + Requires restart to take effect. Neustart erforderlich. - + Colour theme Farbschema (Anwendung) - + General colour theme and icons. Allgemeines Farbschema und Icons. - + Application font family Schriftart (Anwendung) - + Application font size Schriftgröße (Anwendung) - - + + pt pt - + Hide vertical scroll bars in main windows Vertikale Scrollbalken verbergen - - + + Scrolling available with mouse wheel and keys only. Beschränkt das Scrollen auf Mausrad und Tastatur. - + Hide horizontal scroll bars in main windows Horizontale Scrollbalken verbergen - + Document Style Darstellung von Dokumenten - + Document colour theme Farbschema (Dokumente) - + Colour theme for the editor and viewer. Farbschema für Editor und Ansicht. - + Document font family Schriftart (Dokumente) - - - - + + + + Applies to both document editor and viewer. Gilt für Editor und Ansicht. - + Document font size Schriftgröße (Dokumente) - + Emphasise partition and chapter labels Dokumente mit höherer Hierarchie optisch hervorheben - + Makes them stand out in the project tree. Bessere Sichtbarkeit in der Strukturansicht. - + Show full path in document header Vollstä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 count Statusleiste: Wörter in Notizen mitzählen - + Auto Save Automatisch speichern - + Save document interval Dokument automatisch speichern - + How often the document is automatically saved. Wie oft das geöffnete Dokument automatisch gespeichert wird. - - + + seconds Sekunden - + Save project interval Projekt automatisch speichern - + How often the project is automatically saved. Wie oft das gesamte Projekt automatisch gespeichert wird. - + Project Backup Backups - + Browse Auswählen - + Backup storage location Verzeichnis für Backups - - + + Path: {0} Pfad: {0} - + Run backup when the project is closed Backup 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 backup Jedes Mal nachfragen, bevor ein Backup erstellt wird - + If off, backups will run in the background. Falls nein: Backups werden automatisch im Hintergrund erstellt. - + Session Timer Session-Timer - + Pause the session timer when not writing Den 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 timer Pausiert nach Inaktivität - + User activity includes typing and changing the content. Dies berücksichtigt nur Änderungen im Texteditor. - + minutes Minuten - + Writing Schreiben - + Text Flow Textfluss - + Maximum text width in "Normal Mode" Maximale Textbreite im normalen Modus - + Set to 0 to disable this feature. „0“ deaktiviert diese Funktion. - - - - + + + + px px - + 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 margins Blocksatz - + Minimum text margin Mindestabstand nach außen - + Tab width Tabulator - + The width of a tab key press in the editor and viewer. Die Breite eines Tabulators im Editor und in der Ansicht. - + Text Editing Textbearbeitung - + Spell check language Rechtschreibprüfung - + Available languages are determined by your system. Verfügbare Sprachen werden vom Betriebssystem bereitgestellt. - + Auto-select word under cursor Wort 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 spaces Tabs und Leerzeilen anzeigen - + Show line endings Zeilenende anzeigen - + Editor Scrolling Bildlauf im Editor - + Scroll past end of the document Am Ende des Dokuments weiterscrollen - + Also centres the cursor when scrolling. Eingabemarke wird beim Scrollen zentriert. - + Typewriter style scrolling when you type Wie mit einer Schreibmaschine scrollen - + Keeps the cursor at a fixed vertical position. Die Eingabemarke bleibt immer auf der gleichen Linie. - + Minimum position for Typewriter scrolling Mindesthöhe für den Schreibmaschinen-Effekt - + Percentage of the editor height from the top. Prozent der Editor-Höhe, von oben. - + Text Highlighting Hervorhebung - + Highlight text wrapped in quotes Text in Anführungszeichen hervorheben - - - + + + Applies to the document editor only. Gilt nur für den Editor. - + Allow open-ended single quotes Erlaube 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 quotes Erlaube 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 text Formatierten Text hervorheben - + Highlight multiple or trailing spaces Mehrere oder nachfolgende Leerzeichen hervorheben - + Text Automation Automatisierung - + Auto-replace text as you type Text automatisch ersetzen - + Allow the editor to replace symbols as you type. Ermöglicht das Ersetzen von Symbolen während der Eingabe. - + Auto-replace single quotes Einfache 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 quotes Doppelte Anführungszeichen ersetzen - + Auto-replace dashes Bindestriche ersetzen - + Double and triple hyphens become short and long dashes. Doppelte und dreifache Bindestriche werden zu Gedankenstrichen und Geviertstrichen umgewandelt. - + Auto-replace dots Punkte ersetzen - + Three consecutive dots become ellipsis. Drei aufeinander folgende Punkte werden zu Auslassungspunkten umgewandelt. - + Insert non-breaking space before Geschü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 after Geschü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 instead Schmales Leerzeichen verwenden - + Inserts a thin space instead of a regular space. Schmales Leerzeichen anstelle eines normalen Leerzeichens verwenden. - + Quotation Style Anführungszeichen - + Single quote open style Einfaches Anführungszeichen öffnend - + The symbol to use for a leading single quote. Beginn von wörtlicher Rede mit einfachen Anführungszeichen. - + Single quote close style Einfaches 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 style Doppeltes Anführungszeichen öffnend - + The symbol to use for a leading double quote. Beginn von wörtlicher Rede mit doppelten Anführungszeichen. - + Double quote close style Doppeltes Anführungszeichen schließend - + The symbol to use for a trailing double quote. Ende von wörtlicher Rede mit doppelten Anführungszeichen. - + Backup Directory Backup-Verzeichnis + + GuiProjectSearch + + + Project Search + + + + + Case Sensitive + Groß-/Kleinschreibung beachten + + + + Whole Words Only + Nur ganze Wörter + + + + RegEx Mode + RegEx-Modus + + + + Search for + + + GuiProjectSettings - - + + Project Settings Projekteinstellungen - + Settings Einstellungen - + Status Status - + Importance Wichtigkeit - + Auto-Replace Ersetzen @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Projektinhalt - + Quick Links Schnellzugriff - + Move Up Nach oben - + Move Down Nach unten - + Add Item Element hinzufügen - + Expand All Alle ausklappen - + Collapse All Alle einklappen - + Empty Trash Papierkorb leeren - + More Options Weitere Optionen @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active Aktiv - + Inactive Inaktiv - + 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 Note Neue Notiz - + New Chapter Neues Kapitel - + New Scene Neue Szene - + New Document Neues Dokument - + New Folder Neuer 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. - + Merged Zusammengefü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 View Projektstruktur - + Novel Tree View Romanstruktur - + + Project Search + + + + Novel Outline View Gliederung - + Build Manuscript Manuskript erstellen - + Novel Details Romandetails - + Writing Statistics Schreibstatistiken - + Settings Einstellungen @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Willkommen - + List Liste - + New Neu - + Browse Auswählen - + Cancel Abbrechen - + Create Erstellen - + Open Öffnen @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Projektwörterbuch - + Import words from text file Wörter aus Textdatei importieren - + Export words to text file Wö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 File Datei importieren - + Export File Datei exportieren @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Statistiken - + Session Start Beginn - + Length Dauer - + Idle Inaktiv - + Words Wörter - + Histogram Histogramm - + Sum Totals Gesamt - + 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: - + Filters Filter - + Count novel files Romandokumente mitzählen - + Count note files Notizen mitzählen - + Hide zero word count Unproduktive Sessions verbergen - + Hide negative word count Negative Sessions verbergen - + Group entries by day Nach Tag gruppieren - + Show idle time Inaktivität anzeigen - + Word count cap for the histogram Maximale Wörterzahl für das Histogramm - + Save As Speichern als - + JSON Data File (.json) JSON-Datei (.json) - + CSV Data File (.csv) CSV-Datei (.csv) - + JSON Data File JSON-Datei - + CSV Data File CSV-Datei - + Save Data As Speichern 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. - + Unknown Unbekannt - + 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? - + Recovered Wiederhergestellt - + 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} - - + + New Neu - + Note Notiz - + Draft Entwurf - + Finished Fertig - + Minor Unwesentlich - + Major Wichtig - + Main Zentral @@ -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 Project Neues Projekt - + Title Page Titelseite - + By Von - + 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 Plot Haupthandlung - + Protagonist Hauptfigur - + Main Location Hauptschauplatz - - + + 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 File novelWriter-Projektdatei oder Zip-Datei - + novelWriter Project File novelWriter-Projektdatei - + Open Project Projekt öffnen @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Inhaltsverzeichnis - + Title Titel - + Words Wörter - + Pages Seiten - + Page Seite - + Progress Fortschritt - + Words per page Wörter pro Seite - + First page offset Offset erste Seite - + Chapters on odd pages Kapitel auf ungeraden Seiten - + Untitled Ohne Titel - + END ENDE @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Einstellung - + Value Wert - + Name Name - + Selection Auswahl - + Title Titel + + + Hidden + Ausblenden + _FilterTab @@ -4012,12 +4099,12 @@ Auf Standard zurücksetzen - + Mark selection as Auswahl markieren als - + Select Root Folders Hauptordner wählen @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Information - + Warning Warnung - + Error Fehler - + Question Frage @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Ausblenden - - + + Editing: {0} Bearbeite: {0} - - + + None Keine - + Title Titel - + Chapter Number Kapitelnummer - + 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 Character Erzählperspektive - + Focus Character Figur im Mittelpunkt - + Insert Einfügen - + Apply Anwenden + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Seitenumbruch + _NewProjectForm - + Required Erforderlich - + Optional Optional - + Create a fresh project Neues Projekt erstellen - + Create an example project Beispielprojekt erstellen - + Copy an existing project Vorhandenes Projekt kopieren - + Project Name Projektname - + Author Autor - + Project Path Projektpfad - + Prefill Project Projekt vorbereiten - + Set to 0 to only add scenes Auf 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 notes Ordner hinzufügen: Notizen für Handlungsstränge - + Add a folder for character notes Ordner hinzufügen: Notizen für Figuren - + Add a folder for location notes Ordner hinzufügen: Notizen für Schauplätze - + Add example notes to the above Beispielnotizen zur obigen Auswahl hinzufügen - + Chapters and Scenes Kapitel und Szenen - + Project Notes Projektnotizen - + Create New Project Neues Projekt erstellen - + Select Project Folder Speicherort wählen - + Fresh Project Neues Projekt - + Example Project Beispielprojekt - + 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. - + Path Pfad - + 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 Project Projekt öffnen - + Remove Project Projekt entfernen @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Projekt - - + + Name Name - + Revisions Revisionen - + Editing Time Bearbeitungszeit - - + + Word Count Wörter - + In Novels in Romanen - + In Notes in Notizen - + Selected Novel Ausgewählter Roman - + Chapters Kapitel - + Scenes Szenen @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Zum Generieren den "Vorschau"-Button anklicken ... - + Processing ... In Bearbeitung ... - + Done Fertig - + Unknown Unbekannt - + Built Erstellt @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Wörter - + Last Opened Zuletzt geöffnet @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Textersetzung für Vorschau und Build - + Keyword Stichwort - + Replace With Ersetzen durch - + Select item to edit Element zum Bearbeiten auswählen - + Save Speichern @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Projektname - + 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 language Projektsprache - + Default Standard - + Spell check language Rechtschreibprüfung - - + + Overrides main preferences. Überschreibt die Einstellungen. - + Disable backup on close Kein 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 Levels Romandokumente: Status - + Project Note Importance Levels Projektnotizen: Wichtigkeit - + Label Name - + Usage Vorkommen - + Select item to edit Element zum Bearbeiten auswählen - + Colour Farbe - + Save Speichern - + Select Colour Farbe wählen - + New Item Neuer Eintrag - + Cannot delete a status item that is in use. Element ist in Verwendung und konnte nicht gelöscht werden. - + Not in use Nicht verwendet - + Used once Einmal verwendet - + Used by {0} items Verwendet von {0} Elementen @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Papierkorb leeren - + Rename Umbenennen - + Open Document Dokument öffnen - + View Document Dokument anzeigen - + Create New ... Neu erstellen ... - + Rename to Heading Umbenennen: Überschrift übernehmen - + Set Active to ... Aktiv setzen auf ... - + Toggle Active Aktivieren 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 Self Unterelemente in dieses Dokument zusammenführen - + Merge Child Items into New Unterelemente in neues Dokument zusammenführen - + Merge Documents in Folder Dokumente im Ordner zusammenführen - - Split Document by Headers - Dokument nach Überschriften aufteilen + + Split Document by Headings + - + Expand All Alle aufklappen - + Collapse All Alle zuklappen - - Duplicate from Here - Von hier duplizieren + + Duplicate + - - Duplicate Document - Dokument duplizieren - - - - + + Delete Permanently Endgültig löschen - - + + Move to Trash In 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 Template Von Vorlage @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Dokument - + First Heading Erste Überschrift @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Schlagwort - + Importance Wichtigkeit - + Document Dokument - + Heading Überschrift - + Short Description Kurzbeschreibung 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 Filters Document Filters - + Novel Documents Novel Documents - + Project Notes Project Notes - + Inactive Documents Inactive Documents - + Headings Headings - - 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 Content Text Content - + Include Synopsis Include Synopsis - + Include Comments Include Comments - + Include Keywords Include Keywords - + Include Body Text Include Body Text - + + Ignore These Keywords + + + + Insert Content Insert Content - + Add Titles for Notes Add Titles for Notes - + Text Format Text Format - + Font Family Font Family - + Font Size Font Size - + Line Height Line Height - + Text Options Text Options - + Justify Text Margins Justify Text Margins - + Replace Unicode Characters Replace Unicode Characters - + Replace Tabs with Spaces Replace Tabs with Spaces - + Page Layout Page Layout - + Unit Unit - + Page Size Page Size - + Page Width Page Width - + Page Height Page Height - + Top Margin Top Margin - + Bottom Margin Bottom Margin - + Left Margin Left Margin - + Right Margin Right Margin - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Add Highlight Colors - + Page Header Page Header - + Page Counter Offset Page Counter Offset - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles Add CSS Styles + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None None - + Novel Novel - - + + Plot Plot - - + + Characters Characters - - + + Locations Locations - - + + Timeline Timeline - - + + Objects Objects - - + + Entities Entities - - - + + + Custom Custom - + Archive Archive - + Templates Templates - + Trash Trash - - + + Novel Document Novel Document - - + + Project Note Project Note - + Root Folder Root Folder - + Folder Folder - + Novel Title Page Novel Title Page - + Novel Chapter Novel Chapter - + Novel Scene Novel Scene - + Novel Section Novel Section - + Tag Tag - + Point of View Point of View - - + + Focus Focus - + Title Title - + Level Level - + Document Document - + Line Line - + Chars Chars - + Words Words - + Pars Pars - + POV POV - + Synopsis Synopsis - + 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 files Text files - + Markdown files Markdown files - + novelWriter files novelWriter files - + CSV files CSV files - + All files All files - + Millimetres Millimeters - + Centimetres Centimeters - + Inches Inches - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark Straight single quotation mark - + Straight double quotation mark Straight double quotation mark - + Left single quotation mark Left single quotation mark - + Right single quotation mark Right single quotation mark - + Single low-9 quotation mark Single low-9 quotation mark - + Single high-reversed-9 quotation mark Single high-reversed-9 quotation mark - + Left double quotation mark Left double quotation mark - + Right double quotation mark Right double quotation mark - + Double low-9 quotation mark Double low-9 quotation mark - + Double high-reversed-9 quotation mark Double high-reversed-9 quotation mark - + Double low-reversed-9 quotation mark Double low-reversed-9 quotation mark - + Single left-pointing angle quotation mark Single left-pointing angle quotation mark - + Single right-pointing angle quotation mark Single right-pointing angle quotation mark - + Double left-pointing angle quotation mark Double left-pointing angle quotation mark - + Double right-pointing angle quotation mark Double right-pointing angle quotation mark - + Left corner bracket Left corner bracket - + Right corner bracket Right corner bracket - + Left white corner bracket Left white corner bracket - + Right white corner bracket Right white corner bracket @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Manuscript Build Settings - + Name Name - + Selection Selection - + Headings Headings - + Content Content - + Format Format - + Output Output @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Add 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 Dictionary Add Dictionary - + Dictionary install location Dictionary install location - + Additional dictionaries found: {0} Additional dictionaries found: {0} - + Free or Libre Office extension Free or Libre Office extension - + Browse Files Browse Files - + Could not process dictionary file Could 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} selected Words: {0} selected - - Character count: {0} - Character count: {0} + + Status + Status GuiDocEditHeader - + Toggle Tool Bar Toggle Tool Bar - + + Outline + + + + Search Search - + Toggle Focus Mode Toggle Focus Mode - + Close Close @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Search - - Replace - Replace - - - + Case Sensitive Case Sensitive - + Whole Words Only Whole Words Only - + RegEx Mode RegEx Mode - + Loop Search Loop Search - + Search Next File Search Next File - + Preserve Case Preserve Case - + Close Search Close Search - + Find in current document Find in current document - + Find and replace in current document Find 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 complete Spell check complete - + Document Details Document Details - + Created: {0} Created: {0} - + Updated: {0} Updated: {0} - + File Location: {0} File Location: {0} - + Set as Document Name Set as Document Name - + Follow Tag Follow Tag - + Create Note for Tag Create Note for Tag - + Cut Cut - + Copy Copy - + Paste Paste - + Select All Select All - + Select Word Select Word - + Select Paragraph Select Paragraph - + Spelling Suggestion(s) Spelling Suggestion(s) - + No Suggestions No Suggestions - + Add Word to Dictionary Add 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 Documents Merge Documents - + Documents to Merge Documents 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 Trash Move merged items to Trash @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Split 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 folder Split into a new folder - + Create document hierarchy Create document hierarchy - + Move split document to Trash Move split document to Trash @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Markdown Bold - + Markdown Italic Markdown Italic - + Markdown Strikethrough Markdown Strikethrough - + Shortcode Bold Shortcode Bold - + Shortcode Italic Shortcode Italic - + Shortcode Strikethrough Shortcode Strikethrough - + Shortcode Underline Shortcode Underline - + + Shortcode Highlight + + + + Shortcode Superscript Shortcode Superscript - + Shortcode Subscript Shortcode Subscript @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Show/Hide Viewer Panel - + Comments Comments - + Show Comments Show Comments - + Synopsis Synopsis - + Show Synopsis Comments Show Synopsis Comments @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Go Backward - + Go Forward Go Forward - + Reload Reload - + Close Close @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. An error occurred while generating the preview. - + Copy Copy - + Select All Select All - + Select Word Select Word - + Select Paragraph Select Paragraph @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Hide Inactive Tags - + References References @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Item Label - + Label Label @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Label - + Status Status - + Class Class - + Usage Usage - + Characters Characters - + Words Words - + Paragraphs Paragraphs @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Insert Placeholder Text - + Insert Lorem Ipsum Text Insert Lorem Ipsum Text - + Number of paragraphs Number of paragraphs - + Randomise order Randomize order - + Insert Insert @@ -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 File Import 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} ms Indexing 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 Project Create or Open Project - + Save Project Save Project - + Close Project Close Project - + Project Settings Project Settings - + Novel Details Novel Details - + Rename Item Rename Item - + Delete Item Delete Item - + Empty Trash Empty Trash - + Exit Exit - + &Document &Document - + Open Document Open Document - + Save Document Save Document - + Close Document Close Document - + View Document View Document - + Close Document View Close Document View - + Show File Details Show File Details - + Import Text from File Import Text from File - + &Edit &Edit - + Undo Undo - + Redo Redo - + Cut Cut - + Copy Copy - + Paste Paste - + Select All Select All - + Select Paragraph Select Paragraph - + &View &View - + Go to Project Tree Go to Project Tree - + Go to Document Editor Go to Document Editor - + Go to Outline Go to Outline - + Navigate Backward Navigate Backward - + Navigate Forward Navigate Forward - + Focus Mode Focus Mode - + Full Screen Mode Full Screen Mode - + &Insert &Insert - + Dashes Dashes - + Short Dash Short Dash - + Long Dash Long Dash - + Horizontal Bar Horizontal Bar - + Figure Dash Figure Dash - + Quote Marks Quote Marks - + Left Single Quote Left Single Quote - + Right Single Quote Right Single Quote - + Left Double Quote Left Double Quote - + Right Double Quote Right Double Quote - + Alternative Apostrophe Alternative Apostrophe - + General Punctuation General Punctuation - + Ellipsis Ellipsis - + Prime Prime - + Double Prime Double Prime - + White Spaces White Spaces - + Non-Breaking Space Non-Breaking Space - + Thin Space Thin Space - + Thin Non-Breaking Space Thin Non-Breaking Space - + Other Symbols Other Symbols - + List Bullet List Bullet - + Hyphen Bullet Hyphen Bullet - + Flower Mark Flower Mark - + Per Mille Per Mille - + Degree Symbol Degree Symbol - + Minus Sign Minus Sign - + Times Sign Times Sign - + Division Sign Division Sign - + Tags and References Tags and References - + Special Comments Special Comments - + Synopsis Comment Synopsis Comment - + Short Description Comment Short Description Comment - + Page Break and Space Page Break and Space - + Page Break Page Break - + Vertical Space (Single) Vertical Space (Single) - + Vertical Space (Multi) Vertical Space (Multi) - + Placeholder Text Placeholder Text - + &Format &Format - + Bold Bold - + Italic Italic - + Strikethrough Strikethrough - + Wrap Double Quotes Wrap Double Quotes - + Wrap Single Quotes Wrap Single Quotes - + More Formats ... More Formats ... - + Bold (Shortcode) Bold (Shortcode) - + Italics (Shortcode) Italics (Shortcode) - + Strikethrough (Shortcode) Strikethrough (Shortcode) - + Underline Underline - + + Highlight + + + + Superscript Superscript - + Subscript Subscript - - - 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 Title Novel Title - + Unnumbered Chapter Unnumbered Chapter - + + Hard Scene + + + + Align Left Align Left - + Align Centre Align Center - + Align Right Align Right - + Indent Left Indent Left - + Indent Right Indent Right - + Toggle Comment Toggle Comment - + Toggle Ignore Text Toggle Ignore Text - + Remove Block Format Remove 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 Breaks Remove In-Paragraph Breaks - + &Search &Search - + Find Find - + Replace Replace - + Find Next Find Next - + Find Previous Find Previous - + Replace Next Replace Next - + + Find in Project + + + + &Tools &Tools - + Check Spelling Check Spelling - + Spell Check Language Spell Check Language - + Default Default - + Re-Run Spell Check Re-Run Spell Check - + Project Word List Project Word List - + Add Dictionaries Add Dictionaries - + Rebuild Index Rebuild Index - + Backup Project Backup Project - + Build Manuscript Build Manuscript - + Writing Statistics Writing Statistics - + Preferences Preferences - + &Help &Help - + About novelWriter About novelWriter - + About Qt5 About 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 Website The novelWriter Website @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Build Manuscript - + Add New Build Add New Build - + Delete Selected Build Delete Selected Build - + Edit Selected Build Edit Selected Build - + Builds Builds - + + Details + + + + + Outline + + + + Preview Preview - + Print Print - + Build Build - + Close Close - - + + My Manuscript My Manuscript @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Build Manuscript - + Output Format Output Format - + Table of Contents Table of Contents - + Path Path - + File Name File Name - + Reset file name to default Reset file name to default - + Open Folder Open Folder - + &Build &Build - + Select Folder Select 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 Details Novel Details - + Overview Overview - + Contents Contents @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Outline of {0} - + Novel Root Novel Root - + Refresh Refresh - + Last Column Last Column - + Hidden Hidden - + Point of View Character Point of View Character - + Focus Character Focus Character - + Novel Plot Novel Plot - - + + Column Size Column Size - + More Options More Options - + Maximum column size in % Maximum column size in % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data No meta data @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Title - + Chapter Chapter - + Scene Scene - + Section Section - + Document Document - + Status Status - + Characters Characters - + Words Words - + Paragraphs Paragraphs - + Synopsis Synopsis - + Title Details Title Details - + Reference Tags Reference Tags @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Select Columns @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Outline of - + Refresh Refresh - + Export CSV Export CSV @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Save Outline As @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Preferences - + Search Search @@ -2413,561 +2462,589 @@ Appearance - + Display language Display language - - - + + + Requires restart to take effect. Requires restart to take effect. - + Colour theme Color theme - + General colour theme and icons. General color theme and icons. - + Application font family Application font family - + Application font size Application font size - - + + pt pt - + Hide vertical scroll bars in main windows Hide 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 windows Hide horizontal scroll bars in main windows - + Document Style Document Style - + Document colour theme Document color theme - + Colour theme for the editor and viewer. Color theme for the editor and viewer. - + Document font family Document font family - - - - + + + + Applies to both document editor and viewer. Applies to both document editor and viewer. - + Document font size Document font size - + Emphasise partition and chapter labels Emphasize 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 header Show 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 count Include project notes in status bar word count - + Auto Save Auto Save - + Save document interval Save document interval - + How often the document is automatically saved. How often the document is automatically saved. - - + + seconds seconds - + Save project interval Save project interval - + How often the project is automatically saved. How often the project is automatically saved. - + Project Backup Project Backup - + Browse Browse - + Backup storage location Backup storage location - - + + Path: {0} Path: {0} - + Run backup when the project is closed Run 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 backup Ask before running backup - + If off, backups will run in the background. If off, backups will run in the background. - + Session Timer Session Timer - + Pause the session timer when not writing Pause 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 timer Editor inactive time before pausing timer - + User activity includes typing and changing the content. User activity includes typing and changing the content. - + minutes minutes - + Writing Writing - + Text Flow Text 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. - - - - + + + + px px - + 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 margins Justify the text margins - + Minimum text margin Minimum text margin - + Tab width Tab 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 Editing Text Editing - + Spell check language Spell check language - + Available languages are determined by your system. Available languages are determined by your system. - + Auto-select word under cursor Auto-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 spaces Show tabs and spaces - + Show line endings Show line endings - + Editor Scrolling Editor Scrolling - + Scroll past end of the document Scroll past end of the document - + Also centres the cursor when scrolling. Also centers the cursor when scrolling. - + Typewriter style scrolling when you type Typewriter 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 scrolling Minimum position for Typewriter scrolling - + Percentage of the editor height from the top. Percentage of the editor height from the top. - + Text Highlighting Text Highlighting - + Highlight text wrapped in quotes Highlight text wrapped in quotes - - - + + + Applies to the document editor only. Applies to the document editor only. - + Allow open-ended single quotes Allow open-ended single quotes - + Highlight single-quoted line with no closing quote. Highlight single-quoted line with no closing quote. - + Allow open-ended double quotes Allow 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 text Add highlight color to emphasised text - + Highlight multiple or trailing spaces Highlight multiple or trailing spaces - + Text Automation Text Automation - + Auto-replace text as you type Auto-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 quotes Auto-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 quotes Auto-replace double quotes - + Auto-replace dashes Auto-replace dashes - + Double and triple hyphens become short and long dashes. Double and triple hyphens become short and long dashes. - + Auto-replace dots Auto-replace dots - + Three consecutive dots become ellipsis. Three consecutive dots become ellipsis. - + Insert non-breaking space before Insert non-breaking space before - + Automatically add space before any of these symbols. Automatically add space before any of these symbols. - + Insert non-breaking space after Insert non-breaking space after - + Automatically add space after any of these symbols. Automatically add space after any of these symbols. - + Use thin space instead Use thin space instead - + Inserts a thin space instead of a regular space. Inserts a thin space instead of a regular space. - + Quotation Style Quotation Style - + Single quote open style Single quote open style - + The symbol to use for a leading single quote. The symbol to use for a leading single quote. - + Single quote close style Single quote close style - + The symbol to use for a trailing single quote. The symbol to use for a trailing single quote. - + Double quote open style Double quote open style - + The symbol to use for a leading double quote. The symbol to use for a leading double quote. - + Double quote close style Double quote close style - + The symbol to use for a trailing double quote. The symbol to use for a trailing double quote. - + Backup Directory Backup Directory + + GuiProjectSearch + + + Project Search + + + + + Case Sensitive + Case Sensitive + + + + Whole Words Only + Whole Words Only + + + + RegEx Mode + RegEx Mode + + + + Search for + + + GuiProjectSettings - - + + Project Settings Project Settings - + Settings Settings - + Status Status - + Importance Importance - + Auto-Replace Auto-Replace @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Project Content - + Quick Links Quick Links - + Move Up Move Up - + Move Down Move Down - + Add Item Add Item - + Expand All Expand All - + Collapse All Collapse All - + Empty Trash Empty Trash - + More Options More Options @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active Active - + Inactive Inactive - + 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 Note New Note - + New Chapter New Chapter - + New Scene New Scene - + New Document New Document - + New Folder New 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. - + Merged Merged - - + + 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 View Project Tree View - + Novel Tree View Novel Tree View - + + Project Search + + + + Novel Outline View Novel Outline View - + Build Manuscript Build Manuscript - + Novel Details Novel Details - + Writing Statistics Writing Statistics - + Settings Settings @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Welcome - + List List - + New New - + Browse Browse - + Cancel Cancel - + Create Create - + Open Open @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Project Word List - + Import words from text file Import words from text file - + Export words to text file Export 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 File Import File - + Export File Export File @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Writing Statistics - + Session Start Session Start - + Length Length - + Idle Idle - + Words Words - + Histogram Histogram - + Sum Totals Sum 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: - + Filters Filters - + Count novel files Count novel files - + Count note files Count note files - + Hide zero word count Hide zero word count - + Hide negative word count Hide negative word count - + Group entries by day Group entries by day - + Show idle time Show idle time - + Word count cap for the histogram Word count cap for the histogram - + Save As Save As - + JSON Data File (.json) JSON Data File (.json) - + CSV Data File (.csv) CSV Data File (.csv) - + JSON Data File JSON Data File - + CSV Data File CSV Data File - + Save Data As Save 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. - + Unknown Unknown - + 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? - + Recovered Recovered - + 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}' - - + + New New - + Note Note - + Draft Draft - + Finished Finished - + Minor Minor - + Major Major - + Main Main @@ -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 Project New Project - + Title Page Title Page - + By By - + 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 Plot Main Plot - + Protagonist Protagonist - + Main Location Main 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 File novelWriter Project File or Zip File - + novelWriter Project File novelWriter Project File - + Open Project Open Project @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Table of Contents - + Title Title - + Words Words - + Pages Pages - + Page Page - + Progress Progress - + Words per page Words per page - + First page offset First page offset - + Chapters on odd pages Chapters on odd pages - + Untitled Untitled - + END END @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Setting - + Value Value - + Name Name - + Selection Selection - + Title Title + + + Hidden + Hidden + _FilterTab @@ -4012,12 +4099,12 @@ Reset to default - + Mark selection as Mark selection as - + Select Root Folders Select Root Folders @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Information - + Warning Warning - + Error Error - + Question Question @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Hide - - + + Editing: {0} Editing: {0} - - + + None None - + Title Title - + Chapter Number Chapter 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 Character Point of View Character - + Focus Character Focus Character - + Insert Insert - + Apply Apply + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Page Break + _NewProjectForm - + Required Required - + Optional Optional - + Create a fresh project Create a fresh project - + Create an example project Create an example project - + Copy an existing project Copy an existing project - + Project Name Project Name - + Author Author - + Project Path Project Path - + Prefill Project Prefill Project - + Set to 0 to only add scenes Set to 0 to only add scenes - + Add {0} chapter documents Add {0} chapter documents - + Add {0} scene documents (to each chapter) Add {0} scene documents (to each chapter) - + Add a folder for plot notes Add a folder for plot notes - + Add a folder for character notes Add a folder for character notes - + Add a folder for location notes Add a folder for location notes - + Add example notes to the above Add example notes to the above - + Chapters and Scenes Chapters and Scenes - + Project Notes Project Notes - + Create New Project Create New Project - + Select Project Folder Select Project Folder - + Fresh Project Fresh Project - + Example Project Example 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. - + Path Path - + 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 Project Open Project - + Remove Project Remove Project @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Project - - + + Name Name - + Revisions Revisions - + Editing Time Editing Time - - + + Word Count Word Count - + In Novels In Novels - + In Notes In Notes - + Selected Novel Selected Novel - + Chapters Chapters - + Scenes Scenes @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Press the "Preview" button to generate ... - + Processing ... Processing ... - + Done Done - + Unknown Unknown - + Built Built @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Word Count - + Last Opened Last Opened @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Text Auto-Replace for Preview and Build - + Keyword Keyword - + Replace With Replace With - + Select item to edit Select item to edit - + Save Save @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Project 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 language Project language - + Default Default - + Spell check language Spell check language - - + + Overrides main preferences. Overrides main preferences. - + Disable backup on close Disable 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 Levels Novel Document Status Levels - + Project Note Importance Levels Project Note Importance Levels - + Label Label - + Usage Usage - + Select item to edit Select item to edit - + Colour Color - + Save Save - + Select Colour Select Color - + New Item New Item - + Cannot delete a status item that is in use. Cannot delete a status item that is in use. - + Not in use Not in use - + Used once Used once - + Used by {0} items Used by {0} items @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Empty Trash - + Rename Rename - + Open Document Open Document - + View Document View Document - + Create New ... Create New ... - + Rename to Heading Rename to Heading - + Set Active to ... Set Active to ... - + Toggle Active Toggle 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 Self Merge Child Items into Self - + Merge Child Items into New Merge Child Items into New - + Merge Documents in Folder Merge Documents in Folder - - Split Document by Headers - Split Document by Headers + + Split Document by Headings + - + Expand All Expand All - + Collapse All Collapse All - - Duplicate from Here - Duplicate from Here + + Duplicate + - - Duplicate Document - Duplicate Document - - - - + + Delete Permanently Delete Permanently - - + + Move to Trash Move 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 Template From Template @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Document - + First Heading First Heading @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Tag - + Importance Importance - + Document Document - + Heading Heading - + Short Description Short 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 Filters Filtrado de Documentos - + Novel Documents Documentos de Novela - + Project Notes Notas del Proyecto - + Inactive Documents Documentos Excluidos - + Headings Tí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 Content Contenido Textual - + Include Synopsis Incluir las Sinopsis - + Include Comments Incluir los Comentarios - + Include Keywords Incluir las Palabras Clave - + Include Body Text Incluir el Texto Base - + + Ignore These Keywords + + + + Insert Content Inserción de Contenido - + Add Titles for Notes Añadir Títulos a las Notas - + Text Format Formato del Texto - + Font Family Tipografía - + Font Size Tamaño - + Line Height Altura de Línea - + Text Options Opciones de Texto - + Justify Text Margins Justificar los Márgenes del Texto - + Replace Unicode Characters Reemplazar Caracteres Unicode - + Replace Tabs with Spaces Reemplazar Tabulaciones por Espacios - + Page Layout Diseño de Página - + Unit Unidades - + Page Size Tamaño de Página - + Page Width Ancho de Página - + Page Height Altura de Página - + Top Margin Margen Superior - + Bottom Margin Margen Inferior - + Left Margin Margen Izquierdo - + Right Margin Margen Derecho - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Añadir Resaltes en Colores - + Page Header Encabezado de Página - + Page Counter Offset Desfase del Número de Página - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles Añadir Estilos CSS + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None Ninguno - + Novel Novela - - + + Plot Argumento - - + + Characters Personajes - - + + Locations Lugares - - + + Timeline Línea de Tiempo - - + + Objects Objetos - - + + Entities Entidades - - - + + + Custom Personalizado - + Archive Archivo - + Templates Plantillas - + Trash Papelera - - + + Novel Document Documento de Novela - - + + Project Note Nota del Proyecto - + Root Folder Carpeta Raíz - + Folder Carpeta - + Novel Title Page Portada de Novela - + Novel Chapter Capítulo de Novela - + Novel Scene Escena de Novela - + Novel Section Sección Novela - + Tag Etiqueta - + Point of View Punto de Vista - - + + Focus Foco - + Title Título - + Level Nivel - + Document Documento - + Line Línea - + Chars Caract. - + Words Palab. - + Pars Párrafo - + POV Perspectiva - + Synopsis Sinopsis - + 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 files Archivos de texto - + Markdown files Archivos de Markdown - + novelWriter files Archivos de novelWriter - + CSV files Archivos CSV - + All files Todos los archivos - + Millimetres Milímetros - + Centimetres Centímetros - + Inches Pulgadas - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal Legal / Oficio - + US Letter Letter / Carta - + Straight single quotation mark Apóstrofo adireccional - + Straight double quotation mark Comillas adireccionales - + Left single quotation mark Comilla simple de apertura - + Right single quotation mark Comilla simple de cierre - + Single low-9 quotation mark Comilla baja simple de cierre - + Single high-reversed-9 quotation mark Comilla alta simple de apertura - + Left double quotation mark Comilla doble de apertura - + Right double quotation mark Comilla doble de cierre - + Double low-9 quotation mark Comilla baja doble de cierre - + Double high-reversed-9 quotation mark Comilla alta doble de apertura - + Double low-reversed-9 quotation mark Comilla baja doble de apertura - + Single left-pointing angle quotation mark Comilla angular simple de apertura - + Single right-pointing angle quotation mark Comilla angular simple de cierre - + Double left-pointing angle quotation mark Comilla angular de apertura - + Double right-pointing angle quotation mark Comilla angular de cierre - + Left corner bracket Soporte de la esquina izquierda - + Right corner bracket Soporte de la esquina derecha - + Left white corner bracket Soporte de esquina blanco izquierdo - + Right white corner bracket Soporte de equina blanco derecho @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Opciones de Compilación del Manuscrito - + Name Nombre - + Selection Selección - + Headings Títulación - + Content Contenidos - + Format Formato - + Output Grabado @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Agregar 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 Dictionary Agregar el Diccionario - + Dictionary install location Ubicación para instalar el diccionario - + Additional dictionaries found: {0} Diccionarios encontrados: {0} - + Free or Libre Office extension Extensión de Free o Libre Office - + Browse Files Explorar Archivos - + Could not process dictionary file No 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} selected Palabras: {0} seleccionadas - - Character count: {0} - Total de caracteres: {0} + + Status + Estado GuiDocEditHeader - + Toggle Tool Bar Alternar Barra de Herramientas - + + Outline + + + + Search Buscar - + Toggle Focus Mode Alternar el Modo Enfocado - + Close Cerrar @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Buscar - - Replace - Reemplazar - - - + Case Sensitive Sensibilidad a Mayúsculas y Minúsculas - + Whole Words Only Sólo Palabras Enteras - + RegEx Mode Modo ExReg - + Loop Search Reiniciar la Búsqueda - + Search Next File Buscar en el Siguiente Archivo - + Preserve Case Conservar Mayúsculas y Minúsculas - + Close Search Cerrar la Búsqueda - + Find in current document Buscar en el documento actual - + Find and replace in current document Buscar 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 complete Se completó la comprobación ortográfica - + Document Details Detalles del Documento - + Created: {0} Creación: {0} - + Updated: {0} Actualizado en: {0} - + File Location: {0} Ubicación del Archivo: {0} - + Set as Document Name Elegir como Nombre del Documento - + Follow Tag Continuar a Etiqueta - + Create Note for Tag Crear Nota para la Etiqueta - + Cut Cortar - + Copy Copiar - + Paste Pegar - + Select All Seleccionar Todo - + Select Word Seleccionar Palabra - + Select Paragraph Seleccionar Párrafo - + Spelling Suggestion(s) Sugerencia(s) de Ortografía - + No Suggestions No Hay Sugerencias - + Add Word to Dictionary Añ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 Documents Combinar Documentos - + Documents to Merge Documentos 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 Trash Mover ítems combinados a la papelera @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Separar 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 folder Separar en una nueva carpeta - + Create document hierarchy Crear un árbol de documentos - + Move split document to Trash Mover el documento separado a la Papelera @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Negrita (de Markdown) - + Markdown Italic Cursiva (de Markdown) - + Markdown Strikethrough Tachado (de Markdown) - + Shortcode Bold Negrita (en código) - + Shortcode Italic Cursiva (en código) - + Shortcode Strikethrough Tachado (en código) - + Shortcode Underline Subrayado (en código) - + + Shortcode Highlight + + + + Shortcode Superscript Superíndice (en código) - + Shortcode Subscript Subíndice (en código) @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Mostrar / Ocultar Panel del Visualizador - + Comments Comentarios - + Show Comments Mostrar los Comentarios - + Synopsis Sinopsis - + Show Synopsis Comments Mostrar las Sinopsis @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Ir Atrás - + Go Forward Ir Adelante - + Reload Actualizar - + Close Cerrar @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. Ocurrió un error al generar la vista previa. - + Copy Copiar - + Select All Seleccionar Todo - + Select Word Seleccionar Palabra - + Select Paragraph Seleccionar Párrafo @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Ocultar las Etiquetas Inactivas - + References Referencias @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Rótulo del Ítem - + Label Rótulo @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Rótulo - + Status Estado - + Class Clase - + Usage Uso - + Characters Caracteres - + Words Palabras - + Paragraphs Párrafos @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Insertar Texto para Rellenar - + Insert Lorem Ipsum Text Insertar texto Lorem Ipsum - + Number of paragraphs Número de párrafos - + Randomise order Orden aleatorio - + Insert Insertar @@ -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 File Importar 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} ms Se 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 Project Crear o Abrir un Proyecto - + Save Project Guardar Proyecto - + Close Project Cerrar Proyecto - + Project Settings Configuración del Proyecto - + Novel Details Detalles de la Novela - + Rename Item Renombrar Ítem - + Delete Item Eliminar Ítem - + Empty Trash Vaciar la Papelera - + Exit Salir - + &Document &Documento - + Open Document Abrir Documento - + Save Document Guardar Documento - + Close Document Cerrar Documento - + View Document Visualizar Documento - + Close Document View Cerrar Visualización - + Show File Details Mostrar Detalles del Archivo - + Import Text from File Importar Texto desde un Archivo - + &Edit &Editar - + Undo Deshacer - + Redo Rehacer - + Cut Cortar - + Copy Copiar - + Paste Pegar - + Select All Seleccionar Todo - + Select Paragraph Seleccionar Párrafo - + &View &Ver - + Go to Project Tree Ir al Árbol del Proyecto - + Go to Document Editor Ir al Editor de Documentos - + Go to Outline Ir a la Estructura - + Navigate Backward Navegar hacia atrás - + Navigate Forward Navegar hacia adelante - + Focus Mode Modo Enfocado - + Full Screen Mode Modo Pantalla Completa - + &Insert &Insertar - + Dashes Rayas y Guiones - + Short Dash Guion - + Long Dash Raya - + Horizontal Bar Barra Horizontal - + Figure Dash Guion de Combinación - + Quote Marks Comillas - + Left Single Quote Comilla Simple de Apertura - + Right Single Quote Comilla Simple de Cierre - + Left Double Quote Comilla Doble de Apertura - + Right Double Quote Comilla Doble de Cierre - + Alternative Apostrophe Apóstrofo Alternativo - + General Punctuation Puntuación General - + Ellipsis Puntos Suspensivos - + Prime Prima - + Double Prime Doble Prima - + White Spaces Espacio - + Non-Breaking Space Espacio Duro - + Thin Space Espacio Angosto - + Thin Non-Breaking Space Espacio Duro Angosto - + Other Symbols Otros Signos - + List Bullet Viñeta de Lista - + Hyphen Bullet Viñeta Guion - + Flower Mark Signo Flor - + Per Mille Por Mil - + Degree Symbol Signo de Grado - + Minus Sign Signo Menos - + Times Sign Signo de Multiplicación - + Division Sign Signo de División - + Tags and References Etiquetas y Referencias - + Special Comments Comentarios Especiales - + Synopsis Comment Comentario de Sinopsis - + Short Description Comment Breve Comentario Descriptivo - + Page Break and Space Saltos - + Page Break Salto de Página - + Vertical Space (Single) Salto Vertical (Único) - + Vertical Space (Multi) Salto Vertical (Múltiple) - + Placeholder Text Texto para Rellenar - + &Format &Formato - + Bold Negrita - + Italic Cursiva - + Strikethrough Tachado - + Wrap Double Quotes Envolver con Comillas Dobles - + Wrap Single Quotes Envolver con Comillas Simples - + More Formats ... Más Formatos... - + Bold (Shortcode) Negrita (Código) - + Italics (Shortcode) Cursiva (Código) - + Strikethrough (Shortcode) Tachado (Código) - + Underline Subrayado - + + Highlight + + + + Superscript Superíndice - + Subscript Subí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 Title Título de la Novela - + Unnumbered Chapter Capítulo Sin Número - + + Hard Scene + + + + Align Left Alinear a la Izquierda - + Align Centre Alinear al Centro - + Align Right Alinear a la Derecha - + Indent Left Indentar a la Izquierda - + Indent Right Indentar a la Derecha - + Toggle Comment Alternar a Comentario - + Toggle Ignore Text Ignorar Texto - + Remove Block Format Quitar 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 Breaks Quitar los Quiebres de Párrafo - + &Search &Búsqueda - + Find Buscar - + Replace Reemplazar - + Find Next Buscar Siguiente - + Find Previous Buscar Anterior - + Replace Next Reemplazar Siguiente - + + Find in Project + + + + &Tools &Herramientas - + Check Spelling Comprobar la Ortografía - + Spell Check Language Idioma de la Comprobación Ortográfica - + Default Por defecto - + Re-Run Spell Check Reiniciar la Comprobación Ortográfica - + Project Word List Lista de Palabras del Proyecto - + Add Dictionaries Agregar Diccionarios - + Rebuild Index Reconstruir el Índice - + Backup Project Crea una copia de seguridad del proyecto - + Build Manuscript Compilar el Manuscrito - + Writing Statistics Estadísticas de Redacción - + Preferences Preferencias - + &Help &Ayuda - + About novelWriter Acerca de novelWriter - + About Qt5 Acerca 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 Website El Sitio Web de novelWriter @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Compilar Manuscrito - + Add New Build Añadir una Nueva Compilación - + Delete Selected Build Eliminar la Compilación Seleccionada - + Edit Selected Build Editar la Compilación Seleccionada - + Builds Compilaciones - + + Details + + + + + Outline + + + + Preview Vista Previa - + Print Imprimir - + Build Compilar - + Close Cerrar - - + + My Manuscript Mi Manuscrito @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Compilar el Manuscrito - + Output Format Grabar al Siguiente Formato - + Table of Contents Tabla de Contenidos - + Path Ruta - + File Name Nombre del Archivo - + Reset file name to default Restablecer al Nombre de Archivo Por Defecto - + Open Folder Abrir la Carpeta - + &Build C&ompilar - + Select Folder Seleccionar 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 Details Detalles de la Novela - + Overview Resumen - + Contents Contenido @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Estructura de {0} - + Novel Root Raíz de la Novela - + Refresh Actualizar - + Last Column Última Columna - + Hidden Ocultar - + Point of View Character Personaje Vehículo del Punto de Vista - + Focus Character Personaje bajo Enfoque - + Novel Plot Argumento de la Novela - - + + Column Size Tamaño de Columna - + More Options Más Opciones - + Maximum column size in % Tamaño de columna máximo en % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data Sin metadatos @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Título - + Chapter Capítulo - + Scene Escena - + Section Sección - + Document Documento - + Status Estado - + Characters Personajes - + Words Palabras - + Paragraphs Párrafos - + Synopsis Sinopsis - + Title Details Detalles del Título - + Reference Tags Etiquetado @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Escoger Columnas @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Estructura de - + Refresh Actualizar - + Export CSV Exportar a CSV @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Guardar Estructura Como @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Preferencias - + Search Buscar @@ -2413,561 +2462,589 @@ Apariencia - + Display language Idioma - - - + + + Requires restart to take effect. Se requiere reiniciar la aplicación para surtir efecto. - + Colour theme Tema de colores - + General colour theme and icons. Tema general de colores y de íconos. - + Application font family Tipografía de la aplicación - + Application font size Tamaño de la tipografía - - + + pt pt - + Hide vertical scroll bars in main windows Esconder 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 windows Esconder las barras de desplazamiento horizontal en las ventanas principales - + Document Style Estilo del Documento - + Document colour theme Tema de colores del documento - + Colour theme for the editor and viewer. Tema de colores del editor y del visualizador. - + Document font family Tipografía del documento - - - - + + + + Applies to both document editor and viewer. A usar tanto en el editor como en el visualizador de documentos. - + Document font size Tamaño de la tipografía - + Emphasise partition and chapter labels Enfatizar 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 header Mostrar 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 count Incluir a las notas del proyecto en el total de palabras - + Auto Save Autoguardado - + Save document interval Intervalo para guardar el documento - + How often the document is automatically saved. Con qué frecuencia se guardará automáticamente el documento actual. - - + + seconds segundos - + Save project interval Intervalo para guardar el proyecto - + How often the project is automatically saved. Con qué frecuencia se guardará automáticamente el proyecto actual. - + Project Backup Respaldado de Datos del Proyecto - + Browse Abrir ubicación - + Backup storage location Ubicación de la copia de seguridad - - + + Path: {0} Ruta destino: {0} - + Run backup when the project is closed Crear 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 backup Preguntar 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 Timer Tiempo de la Sesión - + Pause the session timer when not writing Poner 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 timer Lapso 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. - + minutes minutos - + Writing Escritura - + Text Flow Flujo 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. - - - - + + + + px px - + 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 margins Justificar los márgenes del texto - + Minimum text margin Margen mínimo del texto - + Tab width Anchura 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 Editing Edición - + Spell check language Idioma a comprobar la ortografía - + Available languages are determined by your system. Su sistema determinará los idiomas disponibles. - + Auto-select word under cursor Seleccionar 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 spaces Mostrar tabulaciones y espacios - + Show line endings Mostrar fin de línea - + Editor Scrolling Desplazamiento del Editor - + Scroll past end of the document Desplazar 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 type Desplazamiento 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 scrolling Posicionamiento 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 Highlighting Resaltado - + Highlight text wrapped in quotes Resaltar el texto entrecomillado - - - + + + Applies to the document editor only. Se usará solo en el editor de documentos. - + Allow open-ended single quotes Permitir 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 quotes Permitir 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 text Añadir resalte de color al texto enfatizado - + Highlight multiple or trailing spaces Resaltar espacios múltiples o finales - + Text Automation Automatización - + Auto-replace text as you type Reemplazar 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 quotes Reemplazar 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 quotes Reemplazar comillas dobles - + Auto-replace dashes Reemplazar 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 dots Reemplazar puntos - + Three consecutive dots become ellipsis. Tres puntos consecutivos se convierten en el carácter de puntos suspensivos. - + Insert non-breaking space before Insertar 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 after Insertar 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 instead Pero 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 Style Empleo de Comillas - + Single quote open style Estilo 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 style Estilo 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 style Estilo 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 style Estilo 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 Directory Directorio 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 Settings Configuración del Proyecto - + Settings Configuración - + Status Estado - + Importance Importancia - + Auto-Replace Reemplazos @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Contenido del Proyecto - + Quick Links Enlaces Rápidos - + Move Up Mover Arriba - + Move Down Mover Abajo - + Add Item Añadir Ítem - + Expand All Expandir Todo - + Collapse All Contraer Todo - + Empty Trash Vaciar la Papelera - + More Options Más Opciones @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active En uso - + Inactive Sin 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 Note Nota nueva - + New Chapter Capítulo Nuevo - + New Scene Escena Nueva - + New Document Documento Nuevo - + New Folder Nueva 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. - + Merged Combinado - - + + 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 View Vista de Árbol del Proyecto - + Novel Tree View Vista de Árbol de Novela - + + Project Search + + + + Novel Outline View Vista de Estructura de la Novela - + Build Manuscript Compilar el Manuscrito - + Novel Details Detalles de la Novela - + Writing Statistics Estadísticas de Redacción - + Settings Configuración @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Bienvenida - + List Lista - + New Nuevo - + Browse Abrir ubicación - + Cancel Cancelar - + Create Crear - + Open Abrir @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Lista de Palabras del Proyecto - + Import words from text file Importar palabras desde un archivo de texto - + Export words to text file Exportar 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 File Importar desde Archivo - + Export File Exportar a Archivo @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Estadísticas de Redacción - + Session Start Inicio de la Sesión - + Length Duración - + Idle Inactividad - + Words Palabras - + Histogram Histograma - + Sum Totals Totales 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: - + Filters Filtros - + Count novel files Contar archivos de novela - + Count note files Contar archivos de notas - + Hide zero word count No mostrar totales en cero - + Hide negative word count No mostrar totales negativos - + Group entries by day Agrupar entradas por día - + Show idle time Mostrar tiempo de inactividad - + Word count cap for the histogram Límite de total de palabras para el histograma - + Save As Guardar Como - + JSON Data File (.json) Archivo de Datos JSON (.json) - + CSV Data File (.csv) Archivo de Datos CSV (.csv) - + JSON Data File Archivo de Datos JSON - + CSV Data File Archivo de Datos CSV - + Save Data As Guardar 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. - + Unknown Desconocido - + 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? - + Recovered Restaurado - + 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}' - - + + New Nuevo - + Note Nota - + Draft Borrador - + Finished Terminado - + Minor Menor - + Major Mayor - + Main Principal @@ -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 Project Proyecto Nuevo - + Title Page Título de la Página - + By Por - + 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 Plot Argumento Principal - + Protagonist Protagonista - + Main Location Lugar 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 File Archivo de proyecto de novelWriter o archivo Zip - + novelWriter Project File Archivo de Proyecto de novelWriter - + Open Project Abrir un Proyecto @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Tabla de Contenido - + Title Título - + Words Palabras - + Pages Páginas - + Page Página - + Progress Progreso - + Words per page Palabras por página - + First page offset Desfase de la primera página - + Chapters on odd pages Capítulos en páginas impares - + Untitled Sin Título - + END FIN @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Opciones - + Value Valores Definidos - + Name Nombre - + Selection Selecciones - + Title Título + + + Hidden + Ocultar + _FilterTab @@ -4012,12 +4099,12 @@ Restablecer a por defecto - + Mark selection as Ajustar la selección a: - + Select Root Folders Carpetas Raíz a Seleccionar @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Información - + Warning Advertencia - + Error Error - + Question Pregunta @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Omitir - - + + Editing: {0} Editando: {0} - - + + None Ninguno - + Title Título - + Chapter Number Numeral 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 Character Perspectiva - + Focus Character Personaje Central - + Insert Insertar - + Apply Aplicar + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Salto de Página + _NewProjectForm - + Required Requerido - + Optional Opcional - + Create a fresh project Crear un nuevo proyecto - + Create an example project Crear un ejemplo de proyecto - + Copy an existing project Copiar un proyecto existente - + Project Name Nombre del Proyecto - + Author Autor(es) - + Project Path Ruta del Proyecto - + Prefill Project Rellenar el Proyecto - + Set to 0 to only add scenes Escoger 0 para solo añadir escenas - + Add {0} chapter documents Incluir {0} capítulos - + Add {0} scene documents (to each chapter) Incluir {0} escenas (a cada capítulo) - + Add a folder for plot notes Añadir una carpeta para notas argumentales - + Add a folder for character notes Añadir una carpeta para notas sobre los personajes - + Add a folder for location notes Añadir una carpeta para notas acerca de los lugares - + Add example notes to the above Añadir ejemplos de notas - + Chapters and Scenes Capítulos y Escenas - + Project Notes Notas del Proyecto - + Create New Project Crear un Proyecto Nuevo - + Select Project Folder Escoger la Carpeta del Proyecto - + Fresh Project Proyecto vacío - + Example Project Ejemplo 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. - + Path Ruta - + 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 Project Abrir un Proyecto - + Remove Project Eliminar Proyecto @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Proyecto - - + + Name Nombre - + Revisions Revisiones - + Editing Time Tiempo de Edición - - + + Word Count Total de Palabras - + In Novels En Novelas - + In Notes En Notas - + Selected Novel Novela seleccionada - + Chapters Capítulos - + Scenes Escenas @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Pulse el botón "Vista Previa" para así generarla... - + Processing ... Procesando... - + Done Hecho - + Unknown Desconocido - + Built Compilado @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Total de Palabras - + Last Opened Abierto por última vez @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Lista de Reemplazos de Texto para Previsualizar y Compilar - + Keyword Palabra Clave - + Replace With Reemplazar Por - + Select item to edit Seleccionar el ítem a editar - + Save Guardar @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Nombre 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 language Idioma del proyecto - + Default Por defecto - + Spell check language Idioma a comprobar la ortografía - - + + Overrides main preferences. Anulará a la configuración principal. - + Disable backup on close No 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 Levels Estados de los Documentos de Novela - + Project Note Importance Levels Prioridades de las Notas del Proyecto - + Label Rótulo - + Usage Uso - + Select item to edit Seleccionar el ítem a editar - + Colour Color - + Save Guardar - + Select Colour Escoger un Color - + New Item Nuevo Ítem - + Cannot delete a status item that is in use. No se puede eliminar un ítem de estado actualmente en uso. - + Not in use No está en uso - + Used once Un ítem lo usa - + Used by {0} items {0} ítems lo usan @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Vaciar la Papelera - + Rename Renombrar - + Open Document Abrir el Documento - + View Document Visualizar el Documento - + Create New ... Crear Nuevo... - + Rename to Heading Renombrar a Título - + Set Active to ... Inclusión... - + Toggle Active Alternar 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 Self Combinar Ítems Descendientes con sí mismo - + Merge Child Items into New Combinar los Ítems Descendientes en uno Nuevo - + Merge Documents in Folder Combinar los Documentos de la Carpeta - - Split Document by Headers - Separar el Documento según Titulado + + Split Document by Headings + - + Expand All Expandir Todo - + Collapse All Contraer Todo - - Duplicate from Here - Duplicar a partir de Aquí + + Duplicate + - - Duplicate Document - Duplicar el Documento - - - - + + Delete Permanently Eliminar Permanentemente - - + + Move to Trash Mover 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 Template A partir de Plantilla @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Documento - + First Heading Primer Título @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Etiqueta - + Importance Importancia - + Document Documento - + Heading Título - + Short Description Breve 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 Filters Filtres de documents - + Novel Documents Document du roman - + Project Notes Notes de projet - + Inactive Documents Documents non utilisés - + Headings En-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 Content Contenu du texte - + Include Synopsis Inclure le synopsis - + Include Comments Inclure les commentaires - + Include Keywords Inclure les mots-clés - + Include Body Text Inclure le corps du texte - + + Ignore These Keywords + + + + Insert Content Contenu inséré - + Add Titles for Notes Ajouter des titres pour les notes - + Text Format Format du texte - + Font Family Famille de police - + Font Size Taille de police - + Line Height Hauteur de ligne - + Text Options Options du texte - + Justify Text Margins Justifier le texte aux marges - + Replace Unicode Characters Remplacer les caractères Unicode - + Replace Tabs with Spaces Remplacer les tabulations par des espaces - + Page Layout Dimensions de la page - + Unit Unité - + Page Size Taille de la page - + Page Width Largeur de la page - + Page Height Hauteur de la page - + Top Margin Marge supérieure - + Bottom Margin Marge inférieure - + Left Margin Marge gauche - + Right Margin Marge droite - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Ajouter des couleurs de mise en évidence - + Page Header Entête de la page - + Page Counter Offset Décalage du compteur de page - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles Ajouter des styles CSS + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None Sans - + Novel Roman - - + + Plot Intrigue - - + + Characters Personnages - - + + Locations Lieux - - + + Timeline Chronologie - - + + Objects Objets - - + + Entities Entités - - - + + + Custom Personnalisé - + Archive Archive - + Templates Modèles - + Trash Corbeille - - + + Novel Document Document du roman - - + + Project Note Note du projet - + Root Folder Dossier racine - + Folder Dossier - + Novel Title Page Page de titre du roman - + Novel Chapter Chapitre du roman - + Novel Scene Scène du roman - + Novel Section Section de roman - + Tag Étiquette - + Point of View Point de vue - - + + Focus Focus - + Title Titre - + Level Niveau - + Document Document - + Line Ligne - + Chars Caractères - + Words Mots - + Pars Parties - + POV PDV - + Synopsis Synopsis - + 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 files Fichiers texte - + Markdown files Fichiers Markdown - + novelWriter files Fichiers novelWriter - + CSV files Fichiers CSV - + All files Tous les fichiers - + Millimetres Millimètres - + Centimetres Centimètres - + Inches Pouces - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark apostrophe - + Straight double quotation mark guillemet anglais - + Left single quotation mark guillemet-apostrophe culbuté - + Right single quotation mark guillemet-apostrophe - + Single low-9 quotation mark guillemet-virgule inférieur - + Single high-reversed-9 quotation mark guillemet-virgule supérieur culbuté - + Left double quotation mark guillemet-apostrophe double culbuté - + Right double quotation mark guillemet-apostrophe double - + Double low-9 quotation mark guillemet-virgule double inférieur - + Double high-reversed-9 quotation mark guillemet-virgule double supérieur culbuté - + Double low-reversed-9 quotation mark guillemet-virgule double inférieur culbuté - + Single left-pointing angle quotation mark guillemet simple vers la gauche - + Single right-pointing angle quotation mark guillemet simple vers la droite - + Double left-pointing angle quotation mark guillemet gauche - + Double right-pointing angle quotation mark guillemet droit - + Left corner bracket crochet en angle à gauche - + Right corner bracket crochet en angle à droite - + Left white corner bracket crochet en angle à gauche blanc - + Right white corner bracket crochet en angle à droite blanc @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Paramètres de construction du manuscrit - + Name Nom - + Selection Sélection - + Headings En-têtes - + Content Contenu - + Format Format - + Output Sortie @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Ajouter 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 Dictionary Ajouter un dictionnaire - + Dictionary install location Emplacement d'installation du dictionnaire - + Additional dictionaries found: {0} Dictionnaires supplémentaires trouvés : {0} - + Free or Libre Office extension Extension Free Office ou Libre Office - + Browse Files Parcourir les fichiers - + Could not process dictionary file Impossible 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} selected Mots sélectionnés : {0} - - Character count: {0} - Nombre de caractères : {0} + + Status + État GuiDocEditHeader - + Toggle Tool Bar Afficher/Masquer la barre d'outils - + + Outline + + + + Search Chercher - + Toggle Focus Mode Basculer le mode focus - + Close Fermer @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Chercher - - Replace - Remplacer - - - + Case Sensitive Sensible à la casse - + Whole Words Only Mots entiers uniquement - + RegEx Mode Expressions régulières - + Loop Search Recherche en boucle - + Search Next File Chercher dans le fichier suivant - + Preserve Case Conserver la casse - + Close Search Terminer la recherche - + Find in current document Chercher dans le document actuel - + Find and replace in current document Chercher 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 complete La vérification orthographique est terminée - + Document Details Détails du document - + Created: {0} Créé : {0} - + Updated: {0} Mis à jour : {0} - + File Location: {0} Emplacement du fichier : {0} - + Set as Document Name Définir comme nom du document - + Follow Tag Suivre cette étiquette - + Create Note for Tag Créer une note pour l'étiquette - + Cut Couper - + Copy Copier - + Paste Coller - + Select All Sélectionner tout - + Select Word Sélectionner le mot - + Select Paragraph Sélectionner le paragraphe - + Spelling Suggestion(s) Orthographe suggérée - + No Suggestions Pas de suggestion - + Add Word to Dictionary Ajouter 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 Documents Fusionner des documents - + Documents to Merge Documents à 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 Trash Déplacer les éléments fusionnés dans la corbeille @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Dé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 folder Diviser en un nouveau dossier - + Create document hierarchy Créer une hiérarchie de document - + Move split document to Trash Déplacer le document divisé dans la corbeille @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Markdown gras - + Markdown Italic Markdown italique - + Markdown Strikethrough Markdown barré - + Shortcode Bold Code court gras - + Shortcode Italic Code court italique - + Shortcode Strikethrough Code court barré - + Shortcode Underline Code court souligné - + + Shortcode Highlight + + + + Shortcode Superscript Code court exposant - + Shortcode Subscript Code court indice @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Afficher/Masquer le panneau de visualisation - + Comments Commentaires - + Show Comments Afficher les commentaires - + Synopsis Synopsis - + Show Synopsis Comments Afficher les commentaires du synopsis @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Reculer - + Go Forward Avancer - + Reload Recharger - + Close Fermer @@ -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. - + Copy Copier - + Select All Sélectionner tout - + Select Word Sélectionner le mot - + Select Paragraph Sélectionner le paragraphe @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Cacher les balises inactives - + References Références @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Étiquette de l'élément - + Label Étiquette @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Label - + Status État - + Class Classe - + Usage Utilisation - + Characters Caractères - + Words Mots - + Paragraphs Paragraphes @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Texte de remplissage - + Insert Lorem Ipsum Text Insérer du texte Lorem Ipsum - + Number of paragraphs Nombre de paragraphes - + Randomise order Ordre aléatoire - + Insert Insé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 File Importer 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} ms Indexation 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 Project Créer ou ouvrir un projet - + Save Project Enregistrer le projet - + Close Project Fermer le projet - + Project Settings Réglages du projet - + Novel Details Détails du roman - + Rename Item Renommer l'élément - + Delete Item Supprimer cet élément - + Empty Trash Vider la corbeille - + Exit Sortir - + &Document &Document - + Open Document Ouvrir ce document - + Save Document Enregistrer le document - + Close Document Fermer le document - + View Document Afficher ce document - + Close Document View Fermer la vue du document - + Show File Details Afficher les détails du fichier - + Import Text from File Importer depuis un fichier - + &Edit Éditio&n - + Undo Défaire - + Redo Refaire - + Cut Couper - + Copy Copier - + Paste Coller - + Select All Tout sélectionner - + Select Paragraph Sélectionner le paragraphe - + &View &Affichage - + Go to Project Tree Focus sur l'arborescence - + Go to Document Editor Focus sur l'éditeur - + Go to Outline Focus sur la vue d'ensemble - + Navigate Backward Reculer - + Navigate Forward Avancer - + Focus Mode Mode sans distraction - + Full Screen Mode Mode plein écran - + &Insert &Insertion - + Dashes Tirets - + Short Dash tiret demi-cadratin - + Long Dash tiret cadratin - + Horizontal Bar barre horizontale - + Figure Dash tiret numérique - + Quote Marks Guillemets - + Left Single Quote Guillemet-apostrophe culbuté - + Right Single Quote Guillemet-apostrophe - + Left Double Quote Guillemet-apostrophe double culbuté - + Right Double Quote Guillemet-apostrophe double - + Alternative Apostrophe Apostrophe modificative - + General Punctuation Ponctuation générale - + Ellipsis Points de suspension - + Prime Prime - + Double Prime Double Prime - + White Spaces Espaces blancs - + Non-Breaking Space Espace insécable - + Thin Space Espace fine - + Thin Non-Breaking Space Espace fine insécable - + Other Symbols Autres symboles - + List Bullet Puce - + Hyphen Bullet Puce trait d'union - + Flower Mark Puce fleur - + Per Mille Pour mille - + Degree Symbol Degré - + Minus Sign Moins - + Times Sign Multiplication - + Division Sign Division - + Tags and References Étiquettes et références - + Special Comments Commentaires spéciaux - + Synopsis Comment Commentaire de synopsis - + Short Description Comment Commentaire de description courte - + Page Break and Space Saut de page et espace - + Page Break Saut de page - + Vertical Space (Single) Espace vertical (simple) - + Vertical Space (Multi) Espace vertical (multiple) - + Placeholder Text Texte de remplissage - + &Format Mise en &forme - + Bold Gras - + Italic Italique - + Strikethrough Biffure - + Wrap Double Quotes Guillemets doubles - + Wrap Single Quotes Guillemets simples - + More Formats ... Davantage de formats... - + Bold (Shortcode) Gras (code court) - + Italics (Shortcode) Italiques (code court) - + Strikethrough (Shortcode) Barré (code court) - + Underline Souligné - + + Highlight + + + + Superscript Exposant - + Subscript Indice - - - 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 Title Titre du roman - + Unnumbered Chapter Chapitre sans numéro - + + Hard Scene + + + + Align Left Aligner à gauche - + Align Centre Aligner au centre - + Align Right Aligner à droite - + Indent Left Indenter à gauche - + Indent Right Indenter à droite - + Toggle Comment Commentaire - + Toggle Ignore Text Activer/désactiver ignorer le texte - + Remove Block Format Enlever 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 Breaks Enlever les ruptures dans les paragraphes - + &Search Rec&herche - + Find Chercher - + Replace Remplacer - + Find Next Chercher en avant - + Find Previous Chercher en arrière - + Replace Next Remplacer le prochain - + + Find in Project + + + + &Tools &Outils - + Check Spelling Vérifier l'orthographe - + Spell Check Language Langue de vérification orthographique - + Default Valeurs par défauts - + Re-Run Spell Check Réeffectuer la vérification orthographique - + Project Word List Lexique du projet - + Add Dictionaries Ajouter des dictionnaires - + Rebuild Index Reconstruire l'index - + Backup Project Sauvegarder le dossier contenant les fichiers du projet - + Build Manuscript Compiler le manuscrit - + Writing Statistics Statistiques d'écriture - + Preferences Préférences - + &Help Aid&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 Website Site web de novelWriter @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Compiler le manuscrit - + Add New Build Ajouter une nouvelle compilation - + Delete Selected Build Supprimer la compilation sélectionnée - + Edit Selected Build Modifier la compilation sélectionnée - + Builds Compilations - + + Details + + + + + Outline + + + + Preview Aperçu - + Print Imprimer - + Build Construire - + Close Fermer - - + + My Manuscript Mon manuscrit @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Compiler le manuscrit - + Output Format Format de sortie - + Table of Contents Table des matières - + Path Emplacement - + File Name Nom du fichier - + Reset file name to default Rétablir le nom de fichier par défaut - + Open Folder Ouvrir le dossier - + &Build &Compiler - + Select Folder Sé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 Details Détails du roman - + Overview Vue d'ensemble - + Contents Contenu @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Plan de {0} - + Novel Root Racine du roman - + Refresh Mettre à jour - + Last Column Dernière colonne - + Hidden Caché - + Point of View Character Personnage du point de vue - + Focus Character Personnage central - + Novel Plot Intrigue du roman - - + + Column Size Largeur de colonne - + More Options Autres options - + Maximum column size in % Largeur de colonne max en % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data Pas de métadonnées @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Titre - + Chapter Chapitre - + Scene Scène - + Section Section - + Document Document - + Status État - + Characters Caractères - + Words Mots - + Paragraphs Paragraphes - + Synopsis Synopsis - + Title Details Titre et Détails - + Reference Tags Etiquettes de référence @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Sélectionner les colonnes @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Plan de - + Refresh Mettre à jour - + Export CSV Exporter en CSV @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Enregistrer le résumé sous @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Préférences - + Search Chercher @@ -2413,561 +2462,589 @@ Apparence - + Display language Langue d'affichage - - - + + + Requires restart to take effect. Nécessite un redémarrage pour prendre effet. - + Colour theme Couleur du thème - + General colour theme and icons. Thème de couleur et icônes généraux. - + Application font family Famille de la police de l'application - + Application font size Taille de la police de l'application - - + + pt pt - + Hide vertical scroll bars in main windows Masquer 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 windows Masquer les barres de défilement horizontales dans les fenêtres principales - + Document Style Style du document - + Document colour theme Thè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 family Famille de la police du document - - - - + + + + Applies to both document editor and viewer. S'applique à l'éditeur et à l'afficheur de documents. - + Document font size Taille de la police du document - + Emphasise partition and chapter labels Rehausser 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 header Montrer 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 count Inclure les notes du projet dans le compte total de mots - + Auto Save Enregistrement automatique - + Save document interval Intervalle d'enregistrement - + How often the document is automatically saved. À quelle fréquence le document ouvert est automatiquement enregistré. - - + + seconds secondes - + Save project interval Intervalle d'enregistrement du projet - + How often the project is automatically saved. À quelle fréquence le projet ouvert est automatiquement enregistré. - + Project Backup Sauvegarde du projet - + Browse Parcourir - + Backup storage location Emplacement de sauvegarde du projet - - + + Path: {0} Chemin : {0} - + Run backup when the project is closed Sauvegarder à 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 backup Demander avant de sauvegarder - + If off, backups will run in the background. Si désactivé, les sauvegardes seront effectuées en arrière-plan. - + Session Timer Chronomètre de session - + Pause the session timer when not writing Arrê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 timer Duré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. - + minutes minutes - + Writing Ecriture - + Text Flow Dé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é. - - - - + + + + px px - + 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 margins Justifier le texte aux marges - + Minimum text margin Marge minimale de texte - + Tab width Largeur 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 language Langue de vérification orthographique - + Available languages are determined by your system. Les langues disponibles dépendent de votre système. - + Auto-select word under cursor Auto-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 spaces Montrer les tabulations et les espaces - + Show line endings Montrer les fins de lignes - + Editor Scrolling Défilement de l'éditeur - + Scroll past end of the document Le 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 type Dé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 scrolling Position 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 Highlighting Surlignage du texte - + Highlight text wrapped in quotes Mettre 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 quotes Autoriser 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 quotes Autoriser 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 text Mettre en évidence le texte appuyé - + Highlight multiple or trailing spaces Surligner les espaces multiples ou terminaux - + Text Automation Automatisation de texte - + Auto-replace text as you type Auto-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 quotes Auto-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 quotes Auto-remplacement des guillemets doubles - + Auto-replace dashes Auto-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 dots Auto-remplacement des points - + Three consecutive dots become ellipsis. Trois points consécutifs deviennent des points de suspension. - + Insert non-breaking space before Espace 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 after Espace 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 instead Utiliser des espaces fines - + Inserts a thin space instead of a regular space. Insérer une espace fine au lieu d'une espace-mot. - + Quotation Style Style de guillemets - + Single quote open style Guillemets simples ouvrants - + The symbol to use for a leading single quote. Symbole à utiliser pour un guillemet simple ouvrant. - + Single quote close style Guillemets simples fermants - + The symbol to use for a trailing single quote. Symbole à utiliser pour un guillemet simple fermant. - + Double quote open style Guillemets doubles ouvrants - + The symbol to use for a leading double quote. Symbole à utiliser pour un guillemet double ouvrant. - + Double quote close style Guillemets doubles fermants - + The symbol to use for a trailing double quote. Symbole à utiliser pour un guillemet double fermant. - + Backup Directory Ré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 Settings Paramètres du projet - + Settings Général - + Status État - + Importance Importance - + Auto-Replace Auto-remplacement @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Contenu du projet - + Quick Links Liens rapides - + Move Up Déplacer vers le haut - + Move Down Déplacer vers le bas - + Add Item Ajouter un élément - + Expand All Tout développer - + Collapse All Tout replier - + Empty Trash Vider la corbeille - + More Options Autres options @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active Actif - + Inactive Inactif - + 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 Note Nouvelle note - + New Chapter Nouveau chapitre - + New Scene Nouvelle scène - + New Document Nouveau document - + New Folder Nouveau 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. - + Merged Fusionné - - + + 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 View Vue de l'arborescence du projet - + Novel Tree View Vue de l'arborescence du roman - + + Project Search + + + + Novel Outline View Vue d'ensemble du roman - + Build Manuscript Compiler le manuscrit - + Novel Details Détails du roman - + Writing Statistics Statistiques d'écriture - + Settings Paramètres @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Bienvenue - + List Liste - + New Nouveau - + Browse Parcourir - + Cancel Annuler - + Create Créer - + Open Ouvrir @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Lexique du projet - + Import words from text file Importer des mots depuis un fichier texte - + Export words to text file Exporter 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 File Importer un fichier - + Export File Exporter le fichier @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Statistiques d'écriture - + Session Start Début de session - + Length Durée - + Idle Inactif - + Words Mots - + Histogram Histogramme - + Sum Totals Totaux - + 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 : - + Filters Filtres - + Count novel files Compter les fichiers du roman - + Count note files Compter les fichiers de notes - + Hide zero word count Masquer les comptes de mots à zéro - + Hide negative word count Masquer les comptes de mots négatifs - + Group entries by day Regrouper par jour - + Show idle time Montrer le temps d'inactivité - + Word count cap for the histogram Compte de mots maximum dans l'histogramme - + Save As Enregistrer sous - + JSON Data File (.json) Fichier données JSON (.json) - + CSV Data File (.csv) Fichier données CSV (.csv) - + JSON Data File Fichier données JSON - + CSV Data File Fichier données CSV - + Save Data As Enregistrer 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. - + Unknown Inconnu - + 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 ? - + Recovered Ré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} - - + + New Nouveau - + Note Note - + Draft Brouillon - + Finished Terminé - + Minor Mineur - + Major Majeur - + Main Principal @@ -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 Project Nouveau projet - + Title Page Page de titre - + By Par - + 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 Plot Intrigue principale - + Protagonist Protagoniste - + Main Location Lieu 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 File Fichier de projet ou fichier Zip novelWriter - + novelWriter Project File Fichier projet novelWriter - + Open Project Ouvrir un projet @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Table des matières - + Title Titre - + Words Mots - + Pages Pages - + Page Page - + Progress Progression - + Words per page Mots par page - + First page offset Décalage de la première page - + Chapters on odd pages Chapitres sur les pages impaires - + Untitled Sans titre - + END FIN @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Paramètre - + Value Valeur - + Name Nom - + Selection Sélection - + Title Titre + + + Hidden + Caché + _FilterTab @@ -4012,12 +4099,12 @@ Rétablir les valeurs par défaut - + Mark selection as Marquer la sélection comme - + Select Root Folders Sélectionner les dossiers racine @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Information - + Warning Avertissement - + Error Erreur - + Question Question @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Cacher - - + + Editing: {0} Modification : {0} - - + + None Aucun - + Title Titre - + Chapter Number Numé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 Character Personnage du point de vue - + Focus Character Personnage central - + Insert Insérer - + Apply Appliquer + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Saut de page + _NewProjectForm - + Required Obligatoire - + Optional Optionnel - + Create a fresh project Créer un nouveau projet - + Create an example project Créer un projet d'exemple - + Copy an existing project Copier un projet existant - + Project Name Nom du projet - + Author Auteur - + Project Path Chemin d'accès - + Prefill Project Préremplir le projet - + Set to 0 to only add scenes Mettre à 0 pour n'ajouter que des scènes - + Add {0} chapter documents Ajouter {0} documents de chapitre - + Add {0} scene documents (to each chapter) Ajouter {0} documents de scènes (à chaque chapitre) - + Add a folder for plot notes Ajouter un dossier pour les notes sur l'intrigue - + Add a folder for character notes Ajouter un dossier pour les notes sur les personnages - + Add a folder for location notes Ajouter un dossier pour les notes sur les lieux - + Add example notes to the above Ajouter des exemples de notes à ce qui précède - + Chapters and Scenes Chapitres et scènes - + Project Notes Notes de projet - + Create New Project Créer un nouveau projet - + Select Project Folder Sélectionner le dossier du projet - + Fresh Project Nouveau projet - + Example Project Projet 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. - + Path Chemin - + 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 Project Ouvrir un projet - + Remove Project Supprimer le projet @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Projet - - + + Name Nom - + Revisions Révisions - + Editing Time Durée d'édition - - + + Word Count Compteur de mots - + In Novels Dans les romans - + In Notes Dans les Notes - + Selected Novel Roman sélectionné - + Chapters Chapitres - + Scenes Scè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... - + Done Terminé - + Unknown Inconnu - + Built Compilé @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Compteur de mots - + Last Opened Dernier ouvert @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Remplacements automatiques de texte pour la prévisualisation et la compilation - + Keyword Mot-clé - + Replace With Remplacer par - + Select item to edit Choisir l'élément à éditer - + Save Enregistrer @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Nom 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 language Langue du projet - + Default Défauts - + Spell check language Langue de vérification orthographique - - + + Overrides main preferences. Remplace les préférences principales. - + Disable backup on close Dé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 Levels Niveaux d'état du roman - + Project Note Importance Levels Niveaux d'importance pour les notes de projet - + Label Étiquette - + Usage Utilisation - + Select item to edit Choisir l'élément à éditer - + Colour Couleur - + Save Enregistrer - + Select Colour Choisir la couleur - + New Item Nouvel é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 use Inutilisé - + Used once Utilisé une fois - + Used by {0} items Utilisé {0} fois @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Vider la corbeille - + Rename Renommer - + Open Document Ouvrir le document - + View Document Afficher le document - + Create New ... Créer un nouveau... - + Rename to Heading Renommer comme en-tête - + Set Active to ... Définir Actif à ... - + Toggle Active Activer/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 Self Intégrer les éléments enfants - + Merge Child Items into New Créer une fusion des éléments enfants - + Merge Documents in Folder Fusionner les documents du dossier - - Split Document by Headers - Diviser le document selon les en-têtes + + Split Document by Headings + - + Expand All Tout développer - + Collapse All Tout replier - - Duplicate from Here - Dupliquer à partir d'ici + + Duplicate + - - Duplicate Document - Dupliquer le document - - - - + + Delete Permanently Supprimer définitivement - - + + Move to Trash Dé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 Template Depuis le modèle @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Document - + First Heading Premier titre @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Étiquette - + Importance Importance - + Document Document - + Heading Titre - + Short Description Description 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 Filters Filtri del documento - + Novel Documents Documenti del romanzo - + Project Notes Note del progetto - + Inactive Documents Documenti inattivi - + Headings Intestazioni - - 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 Content Contenuto del testo - + Include Synopsis Includi sinossi - + Include Comments Includi commenti - + Include Keywords Includi parole chiave - + Include Body Text Includi il corpo del testo - + + Ignore These Keywords + + + + Insert Content Inserisci il contenuto - + Add Titles for Notes Aggiungi i titoli per le note - + Text Format Formato del testo - + Font Family Famiglia dei caratteri - + Font Size Dimensioni dei caratteri - + Line Height Altezza della riga - + Text Options Opzioni del testo - + Justify Text Margins Giustifica i margini del testo - + Replace Unicode Characters Sostituisci Caratteri Unicode - + Replace Tabs with Spaces Sostituisci le tabulazioni con gli spazi - + Page Layout Impaginazione - + Unit Unità - + Page Size Dimensioni pagina - + Page Width Larghezza pagina - + Page Height Altezza pagina - + Top Margin Margine superiore - + Bottom Margin Margine inferiore - + Left Margin Margine sinistro - + Right Margin Margine destro - + Open Document (.odt) Apri documento (.odt) - + Add Highlight Colours Aggiungi colori evidenziati - + Page Header Intestazione della pagina - + Page Counter Offset Scostamento del contatore di pagina - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles Aggiungi stile CSS + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None Nessuno - + Novel Romanzo - - + + Plot Trama - - + + Characters Personaggi - - + + Locations Luoghi - - + + Timeline Sequenza temporale - - + + Objects Oggetti - - + + Entities Entità - - - + + + Custom Personalizzato - + Archive Archivio - + Templates Modelli - + Trash Cestino - - + + Novel Document Documento del romanzo - - + + Project Note Nota del progetto - + Root Folder Cartella principale - + Folder Cartella - + Novel Title Page Pagina del titolo del romanzo - + Novel Chapter Capitolo del romanzo - + Novel Scene Scena del romanzo - + Novel Section Sezione del romanzo - + Tag Etichetta - + Point of View Punto di vista - - + + Focus Focus - + Title Titolo - + Level Livello - + Document Documento - + Line Righe - + Chars Caratteri - + Words Parole - + Pars Paragrafi - + POV POV - + Synopsis Sommario - + 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 files File di testo - + Markdown files File Markdown - + novelWriter files File di novelWriter - + CSV files File CSV - + All files Tutti i file - + Millimetres Millimetri - + Centimetres Centimetri - + Inches Pollici - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legale - + US Letter US Lettera - + Straight single quotation mark Virgoletta singola diritta - + Straight double quotation mark Virgolette doppie diritte - + Left single quotation mark Virgoletta singola a sinistra - + Right single quotation mark Virgoletta singola a destra - + Single low-9 quotation mark Singola virgoletta bassa 9 - + Single high-reversed-9 quotation mark Singola virgoletta alta inversa-9 - + Left double quotation mark Virgolette doppie a sinistra - + Right double quotation mark Virgolette doppie a destra - + Double low-9 quotation mark Doppie virgolette basse 9 - + Double high-reversed-9 quotation mark Doppie virgolette alte inverse 9 - + Double low-reversed-9 quotation mark Doppie virgolette basse inverse 9 - + Single left-pointing angle quotation mark Virgoletta singola ad angolo sinistro (<) - + Single right-pointing angle quotation mark Virgoletta singola ad angolo destro (>) - + Double left-pointing angle quotation mark Virgolette doppie ad angolo sinistro (<<) - + Double right-pointing angle quotation mark Virgolette doppie ad angolo destro (>>) - + Left corner bracket Staffa angolare sinistra - + Right corner bracket Staffa angolare destra - + Left white corner bracket Staffa angolare bianca sinistra - + Right white corner bracket Staffa angolare bianca destra @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Impostazioni di creazione del manoscritto - + Name Nome - + Selection Selezione - + Headings Intestazioni - + Content Contenuto - + Format Formato - + Output Risultato @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Aggiungi 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 Dictionary Aggiungi dizionario - + Dictionary install location Posizione installazione del dizionario - + Additional dictionaries found: {0} Dizionari aggiuntivi trovati: {0} - + Free or Libre Office extension Estensione di Free o Libre Office - + Browse Files Sfoglia i file - + Could not process dictionary file Impossibile 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} selected Parole: {0} selezionate - - Character count: {0} - Conteggio caratteri: {0} + + Status + Stato GuiDocEditHeader - + Toggle Tool Bar Attiva/disattiva la Barra degli strumenti - + + Outline + + + + Search Cerca - + Toggle Focus Mode Attiva/Disattiva modalità Focus - + Close Chiudi @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Cerca - - Replace - Sostituisci - - - + Case Sensitive Considera maiuscole/minuscole - + Whole Words Only Solo parole intere - + RegEx Mode Modalità RegEx - + Loop Search Ricerca a ciclo continuo - + Search Next File Cerca nel file successivo - + Preserve Case Non considerare maiuscole/minuscole - + Close Search Chiudi ricerca - + Find in current document Trova nel documento corrente - + Find and replace in current document Trova 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 complete Controllo ortografico completo - + Document Details Dettagli del documento - + Created: {0} Creato: {0} - + Updated: {0} Aggiornato: {0} - + File Location: {0} Posizione del file: {0} - + Set as Document Name Imposta come nome del documento - + Follow Tag Segui i Tag - + Create Note for Tag Crea una nota per il Tag - + Cut Taglia - + Copy Copia - + Paste Incolla - + Select All Seleziona tutto - + Select Word Seleziona parola - + Select Paragraph Seleziona paragrafo - + Spelling Suggestion(s) Suggerimento(i) ortografico(i) - + No Suggestions Nessun suggerimento - + Add Word to Dictionary Aggiungi 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 Documents Unisci i documenti - + Documents to Merge Documenti 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 Trash Sposta gli elementi uniti nel cestino @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Dividi 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 folder Dividi in una nuova cartella - + Create document hierarchy Crea gerarchia dei documenti - + Move split document to Trash Sposta il documento diviso nel cestino @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Markdown grassetto - + Markdown Italic Markdown corsivo - + Markdown Strikethrough Markdown barrato - + Shortcode Bold Shortcode grassetto - + Shortcode Italic Shortcode corsivo - + Shortcode Strikethrough Shortcode barrato - + Shortcode Underline Shortcode sottolineato - + + Shortcode Highlight + + + + Shortcode Superscript Shortcode apice - + Shortcode Subscript Shortcode pendice @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Mostra/Nascondi il Pannello di visualizzazione - + Comments Commenti - + Show Comments Mostra i commenti - + Synopsis Sinossi - + Show Synopsis Comments Mostra i commenti relativi alla sinossi @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Vai Indietro - + Go Forward Vai Avanti - + Reload Ricarica - + Close Chiudi @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. Si è verificato un errore durante la generazione dell'anteprima. - + Copy Copia - + Select All Seleziona tutto - + Select Word Seleziona parola - + Select Paragraph Seleziona paragrafo @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Nascondi le etichette inattive - + References Riferimenti @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Etichetta dell'elemento - + Label Etichetta @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Etichetta - + Status Stato - + Class Classe - + Usage Utilizzo - + Characters Caratteri - + Words Parole - + Paragraphs Paragrafi @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Inserisci testo segnaposto - + Insert Lorem Ipsum Text Inserisci testo Lorem Ipsum - + Number of paragraphs Numero dei paragrafi - + Randomise order Ordine casuale - + Insert Inserisci @@ -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 File Importa 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} ms Indicizzazione 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 Project Crea o apri un progetto - + Save Project Salva progetto - + Close Project Chiudi progetto - + Project Settings Impostazioni del progetto - + Novel Details Dettagli del romanzo - + Rename Item Rinomina l'elemento - + Delete Item Elimina l'elemento - + Empty Trash Svuota il cestino - + Exit Esci - + &Document &Documento - + Open Document Apri documento - + Save Document Salva documento - + Close Document Chiudi documento - + View Document Visualizza documento - + Close Document View Chiudi visualizzazione documento - + Show File Details Mostra dettagli del file - + Import Text from File Importa testo da file - + &Edit &Modifica - + Undo Annulla - + Redo Ripristina - + Cut Taglia - + Copy Copia - + Paste Incolla - + Select All Seleziona tutto - + Select Paragraph Seleziona paragrafo - + &View &Visualizza - + Go to Project Tree Vai all'albero del progetto - + Go to Document Editor Vai all'editor dei documenti - + Go to Outline Vai allo schema riassuntivo - + Navigate Backward Naviga indietro - + Navigate Forward Naviga avanti - + Focus Mode Modalità Focus - + Full Screen Mode Modalità a schermo intero - + &Insert &Inserisci - + Dashes Trattini - + Short Dash Trattino breve - + Long Dash Trattino lungo - + Horizontal Bar Barra orizzontale - + Figure Dash Simbolo 'Tilde' - + Quote Marks Marcatori di citazione - + Left Single Quote Virgoletta singola a sinistra - + Right Single Quote Virgoletta singola a destra - + Left Double Quote Virgolette doppie a sinistra - + Right Double Quote Virgolette doppie a destra - + Alternative Apostrophe Apostrofo alternativo - + General Punctuation Punteggiatura generica - + Ellipsis Ellisse - + Prime Apostrofo - + Double Prime Doppie virgolette - + White Spaces Spazi bianchi - + Non-Breaking Space Spaziatura larga - + Thin Space Spaziatura sottile - + Thin Non-Breaking Space Spaziatura media - + Other Symbols Altri simboli - + List Bullet Elenco puntato - + Hyphen Bullet Elenco listato - + Flower Mark Asterisco a forma di fiore - + Per Mille Per mille - + Degree Symbol Simbolo di grado - + Minus Sign Segno meno - + Times Sign Segno di moltiplicazione - + Division Sign Segno di divisione - + Tags and References Etichette e riferimenti - + Special Comments Commenti speciali - + Synopsis Comment Commenti relativi alla sinossi - + Short Description Comment Breve commento descrittivo - + Page Break and Space Interruzioni di pagina e spaziature - + Page Break Interruzione di pagina - + Vertical Space (Single) Spazio verticale (Singolo) - + Vertical Space (Multi) Spazio verticale (Multiplo) - + Placeholder Text Testo segnaposto - + &Format &Formato - + Bold Grassetto - + Italic Corsivo - + Strikethrough Barrato - + Wrap Double Quotes Doppie virgolette automatiche - + Wrap Single Quotes Singole virgolette automatiche - + More Formats ... Altri formati ... - + Bold (Shortcode) Grassetto (Shortcode) - + Italics (Shortcode) Corsivi (Shortcode) - + Strikethrough (Shortcode) Barrato (Shortcode) - + Underline Sottolineato - + + Highlight + + + + Superscript Apice - + Subscript Pedice - - - 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 Title Titolo del romanzo - + Unnumbered Chapter Capitolo non numerato - + + Hard Scene + + + + Align Left Allineamento a sinistra - + Align Centre Centrato - + Align Right Allineamento a destra - + Indent Left Rientro a sinistra - + Indent Right Rientro a destra - + Toggle Comment Attiva/Disattiva commento - + Toggle Ignore Text Attiva/disattiva ignora testo - + Remove Block Format Rimuovi 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 Breaks Rimuovi le interruzioni di paragrafo - + &Search &Cerca - + Find Trova - + Replace Sostituisci - + Find Next Trova successivo - + Find Previous Trova precedente - + Replace Next Sostituisci successivo - + + Find in Project + + + + &Tools &Strumenti - + Check Spelling Controllo ortografico - + Spell Check Language Lingua per il controllo ortografico - + Default Predefinito - + Re-Run Spell Check Riavvia il controllo ortografico - + Project Word List Elenco delle parole del progetto - + Add Dictionaries Aggiungi dizionari - + Rebuild Index Ricostruisci l'indice - + Backup Project Crea una copia di backup - + Build Manuscript Compila manoscritto - + Writing Statistics Statistiche di scrittura - + Preferences Preferenze - + &Help &Aiuto - + About novelWriter A proposito di novelWriter - + About Qt5 A 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 Website Il sito web di novelWriter @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Compila manoscritto - + Add New Build Aggiungi nuova compilazione - + Delete Selected Build Elimina la compilazione selezionata - + Edit Selected Build Modifica la compilazione selezionata - + Builds Compilazioni - + + Details + + + + + Outline + + + + Preview Anteprima - + Print Stampa - + Build Compila - + Close Chiudi - - + + My Manuscript Il mio manoscritto @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Compila manoscritto - + Output Format Formato di output - + Table of Contents Tavola dei contenuti - + Path Percorso - + File Name Nome file - + Reset file name to default Ripristina il nome del file predefinito - + Open Folder Apri cartella - + &Build &Compila - + Select Folder Seleziona 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 Details Dettagli del romanzo - + Overview Panoramica - + Contents Contenuti @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Schema di {0} - + Novel Root Radice del romanzo - + Refresh Aggiorna - + Last Column Ultima colonna - + Hidden Nascosto - + Point of View Character Personaggio con punto di vista - + Focus Character Personaggio oggetto del focus - + Novel Plot Trama del romanzo - - + + Column Size Dimensione della colonna - + More Options Altre opzioni - + Maximum column size in % Dimensione massima della colonna in % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data Nessun metadato @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Titolo - + Chapter Capitolo - + Scene Scena - + Section Sezione - + Document Documento - + Status Stato - + Characters Caratteri - + Words Parole - + Paragraphs Paragrafi - + Synopsis Sinossi - + Title Details Dettagli Titolo - + Reference Tags Riferimenti @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Seleziona colonne @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Struttura di - + Refresh Aggiorna - + Export CSV Esporta in formato CSV @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Salva lo schema come @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Preferenze - + Search Cerca @@ -2413,561 +2462,589 @@ Aspetto - + Display language Lingua dell'interfaccia - - - + + + Requires restart to take effect. Richiede il riavvio per avere effetto. - + Colour theme Tema colore - + General colour theme and icons. Colore del tema generale e icone. - + Application font family Famiglia di caratteri dell'applicazione - + Application font size Dimensione dei caratteri dell'applicazione - - + + pt pt - + Hide vertical scroll bars in main windows Nascondi 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 windows Nascondi le barre di scorrimento orizzontali nelle finestre principali - + Document Style Stile del documento - + Document colour theme Tema colore del documento - + Colour theme for the editor and viewer. Colore del tema per l'editor e il visualizzatore. - + Document font family Famiglia di caratteri del documento - - - - + + + + Applies to both document editor and viewer. Si applica sia all'editor di documenti che al visualizzatore. - + Document font size Dimensione dei caratteri del documento - + Emphasise partition and chapter labels Evidenzia 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 header Mostra 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 count Includi le note del progetto nel conteggio delle parole della barra di stato - + Auto Save Salvataggio automatico - + Save document interval Intervallo di salvataggio del documento - + How often the document is automatically saved. Quante volte il documento viene salvato automaticamente. - - + + seconds secondi - + Save project interval Intervallo di salvataggio del progetto - + How often the project is automatically saved. Quante volte il progetto viene salvato automaticamente. - + Project Backup Backup del progetto - + Browse Sfoglia - + Backup storage location Posizione di archiviazione del backup - - + + Path: {0} Percorso: {0} - + Run backup when the project is closed Esegui 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 backup Chiedi prima di eseguire il backup - + If off, backups will run in the background. Se disattivato, i backup verranno eseguiti in background. - + Session Timer Timer della sessione - + Pause the session timer when not writing Metti 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 timer Tempo 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. - + minutes minuti - + Writing Scrittura - + Text Flow Flusso 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. - - - - + + + + px px - + 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 margins Giustifica i margini del testo - + Minimum text margin Dimensione minima del margine del testo - + Tab width Larghezza 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 Editing Modifica del testo - + Spell check language Lingua per il controllo ortografico - + Available languages are determined by your system. Le lingue disponibili sono determinate dal tuo sistema. - + Auto-select word under cursor Seleziona 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 spaces Mostra tabulazioni e spazi - + Show line endings Mostra terminazioni di riga - + Editor Scrolling Scorrimento dell'editor - + Scroll past end of the document Scorri alla fine del documento - + Also centres the cursor when scrolling. Centra anche il cursore durante lo scorrimento. - + Typewriter style scrolling when you type Scorrimento 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 scrolling Posizione minima per lo scorrimento della macchina da scrivere - + Percentage of the editor height from the top. Percentuale dell'altezza dell'editor dall'alto. - + Text Highlighting Evidenziazione del testo - + Highlight text wrapped in quotes Evidenzia il testo racchiuso tra virgolette - - - + + + Applies to the document editor only. Si applica solo all'editor dei documenti. - + Allow open-ended single quotes Consenti 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 quotes Consenti 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 text Aggiungi un colore per evidenziare ed enfatizzare il testo - + Highlight multiple or trailing spaces Evidenzia spazi multipli o finali - + Text Automation Automatismi del testo - + Auto-replace text as you type Sostituisci 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 quotes Sostituisci 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 quotes Sostituisci automaticamente le virgolette doppie - + Auto-replace dashes Sostituisci automaticamente i trattini - + Double and triple hyphens become short and long dashes. I trattini doppi e tripli diventano brevi e lunghi trattini. - + Auto-replace dots Sostituisci automaticamente i puntini - + Three consecutive dots become ellipsis. Tre punti consecutivi diventano puntini di sospensione. - + Insert non-breaking space before Inserisci 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 after Inserisci uno spazio dopo di - + Automatically add space after any of these symbols. Aggiungi automaticamente uno spazio dopo uno di questi simboli. - + Use thin space instead Usa invece uno spazio sottile - + Inserts a thin space instead of a regular space. Inserisce uno spazio sottile invece di uno spazio regolare. - + Quotation Style Stile delle citazioni - + Single quote open style Singola virgoletta aperta - + The symbol to use for a leading single quote. Il simbolo da usare per una singola virgoletta iniziale. - + Single quote close style Singola virgoletta chiusa - + The symbol to use for a trailing single quote. Il simbolo da usare per una singola virgoletta finale. - + Double quote open style Doppie virgolette aperte - + The symbol to use for a leading double quote. Il simbolo da usare per avere doppie virgolette iniziali. - + Double quote close style Doppie virgolette chiuse - + The symbol to use for a trailing double quote. Il simbolo da usare per avere doppie virgolette finali. - + Backup Directory Percorso di backup + + GuiProjectSearch + + + Project Search + + + + + Case Sensitive + Considera maiuscole/minuscole + + + + Whole Words Only + Solo parole intere + + + + RegEx Mode + Modalità RegEx + + + + Search for + + + GuiProjectSettings - - + + Project Settings Impostazioni del progetto - + Settings Impostazioni - + Status Stato - + Importance Importanza - + Auto-Replace Auto - sostituisci @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Contenuto del progetto - + Quick Links Collegamenti rapidi - + Move Up Sposta su - + Move Down Sposta giù - + Add Item Aggiungi elemento - + Expand All Espandi tutto - + Collapse All Collassa tutto - + Empty Trash Svuota il cestino - + More Options Altre opzioni @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active Attivo - + Inactive Inattivo - + 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 Note Nuova nota - + New Chapter Nuovo capitolo - + New Scene Nuova scena - + New Document Nuovo documento - + New Folder Nuova 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. - + Merged Uniti - - + + 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 View Vista ad albero del progetto - + Novel Tree View Vista ad albero del romanzo - + + Project Search + + + + Novel Outline View Vista della struttura del romanzo - + Build Manuscript Genera manoscritto - + Novel Details Dettagli del romanzo - + Writing Statistics Statistiche di scrittura - + Settings Opzioni @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Benvenuto/a - + List Elenco - + New Nuovo - + Browse Sfoglia - + Cancel Cancella - + Create Crea - + Open Apri @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Elenco delle parole del progetto - + Import words from text file Importa parole da un file di testo - + Export words to text file Esporta 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 File Importa file - + Export File Esporta file @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Statistiche di scrittura - + Session Start Avvii di sessione - + Length Durata - + Idle Inattività - + Words Parole - + Histogram Istogramma - + Sum Totals Totalizzazioni - + 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: - + Filters Filtri - + Count novel files Conteggio file del romanzo - + Count note files Conteggio file delle note - + Hide zero word count Nascondi il conteggio parole se a zero - + Hide negative word count Nascondi il conteggio parole se negativo - + Group entries by day Raggruppa le voci per giorno - + Show idle time Mostra tempo d'inattività - + Word count cap for the histogram Max n° di parole per l'istogramma - + Save As Salva come - + JSON Data File (.json) File di dati JSON (.json) - + CSV Data File (.csv) File di dati CSV (.csv) - + JSON Data File File di dati JSON - + CSV Data File File di dati CSV - + Save Data As Salva 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. - + Unknown Sconosciuto - + 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? - + Recovered Ripristinato - + 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}' - - + + New Nuovo - + Note Nota - + Draft Bozza - + Finished Finito - + Minor Minore - + Major Maggiore - + Main Principale @@ -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 Project Nuovo progetto - + Title Page Pagina del titolo - + By Di - + 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 Plot Trama principale - + Protagonist Protagonista - + Main Location Località 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 File File di progetto di novelWriter o file Zip - + novelWriter Project File File di progetto di novelWriter - + Open Project Apri progetto @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Tavola dei contenuti - + Title Titolo - + Words Parole - + Pages Pagine - + Page Pagina - + Progress Avanzamento - + Words per page Parole per pagina - + First page offset Scostamento prima pagina - + Chapters on odd pages Capitoli su pagine dispari - + Untitled Senza titolo - + END FINE @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Impostazioni - + Value Valore - + Name Nome - + Selection Selezione - + Title Titolo + + + Hidden + Nascosto + _FilterTab @@ -4012,12 +4099,12 @@ Ripristina predefinito - + Mark selection as Segna la selezione come - + Select Root Folders Seleziona cartelle radice @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Informazioni - + Warning Attenzione - + Error Errore - + Question Domanda @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Nascondi - - + + Editing: {0} Modifiche: {0} - - + + None Nessuno - + Title Titolo - + Chapter Number Numero 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 Character Personaggio con punto di vista - + Focus Character Personaggio oggetto del focus - + Insert Inserisci - + Apply Applica + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Interruzione di pagina + _NewProjectForm - + Required Necessario - + Optional Facoltativo - + Create a fresh project Crea un nuovo progetto - + Create an example project Crea un progetto di esempio - + Copy an existing project Copia un progetto esistente - + Project Name Nome del progetto - + Author Autore - + Project Path Percorso del progetto - + Prefill Project Tipo di progetto - + Set to 0 to only add scenes Imposta a 0 per aggiungere solo scene - + Add {0} chapter documents Aggiungi {0} capitoli come documenti - + Add {0} scene documents (to each chapter) Aggiungi {0} scene come documenti (a ogni capitolo) - + Add a folder for plot notes Aggiungi una cartella per le note sulla trama - + Add a folder for character notes Aggiungi una cartella per le note sui personaggi - + Add a folder for location notes Aggiungi una cartella per le note sulle località - + Add example notes to the above Aggiungi note di esempio alle precedenti - + Chapters and Scenes Capitoli e scene - + Project Notes Note del progetto - + Create New Project Crea un nuovo progetto - + Select Project Folder Seleziona la cartella del progetto - + Fresh Project Nuovo progetto - + Example Project Progetto 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. - + Path Percorso - + 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 Project Apri il progetto - + Remove Project Rimuovi il progetto @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Progetto - - + + Name Nome - + Revisions Revisioni - + Editing Time Tempo di lavorazione - - + + Word Count Conteggio delle parole - + In Novels nel romanzo - + In Notes nelle note - + Selected Novel Romanzo selezionato - + Chapters Capitoli - + Scenes Scene @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Premi il tasto "Anteprima" per compilarla ... - + Processing ... In elaborazione ... - + Done Fatto - + Unknown Sconosciuto - + Built Realizzata @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Conteggio delle parole - + Last Opened Ultima apertura @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Sostituzione automatica del testo per l'anteprima e la generazione - + Keyword Parola chiave - + Replace With Sostituisci con - + Select item to edit Seleziona elemento da modificare - + Save Salva @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Nome del progetto - + Changing this will affect the backup path. Questo cambiamento influirà sul percorso di backup. - + Author(s) Autore(i) - - + + Only used when building the manuscript. Usato solo durante la costruzione del manoscritto. - + Project language Lingua del progetto - + Default Predefinita - + Spell check language Lingua per il controllo ortografico - - + + Overrides main preferences. Sovrascrive i valori predefiniti. - + Disable backup on close Disabilita il backup alla chiusura + + _StatsWidget + + + + Words + Parole + + + + + Characters + Caratteri + + + + Words in Headings + + + + + Words in Text + + + + + Headings + Intestazioni + + + + Paragraphs + Paragrafi + + + + Characters in Headings + + + + + Characters in Text + + + + + Characters, No Spaces + + + + + Characters in Headings, No Spaces + + + + + Characters in Text, No Spaces + + + _StatusPage - + Novel Document Status Levels Livelli di avanzamento dei file del romanzo - + Project Note Importance Levels Livelli d'importanza dei file delle note - + Label Etichetta - + Usage Utilizzo - + Select item to edit Seleziona elemento da modificare - + Colour Colore - + Save Salva - + Select Colour Seleziona colore - + New Item Nuovo elemento - + Cannot delete a status item that is in use. Impossibile eliminare un elemento di stato in uso. - + Not in use Non utilizzato - + Used once Usato una volta - + Used by {0} items Usato da {0} elementi @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Svuota il cestino - + Rename Rinomina - + Open Document Apri documento - + View Document Visualizza documento - + Create New ... Crea nuovo ... - + Rename to Heading Rinomina nell'intestazione - + Set Active to ... Imposta attività su ... - + Toggle Active Commuta Attiva/Disattiva - + Set Status to ... Imposta lo stato su ... - - + + Manage Labels ... Gestisci Etichette ... - + Set Importance to ... Imposta l'importanza su ... - + Transform ... Trasforma ... - + Convert to {0} Converti in {0} - + Merge Child Items into Self Fondi elementi figli - + Merge Child Items into New Fondi elementi figli in uno nuovo - + Merge Documents in Folder Fondi i documenti nella cartella - - Split Document by Headers - Dividi il documento alle intestazioni + + Split Document by Headings + - + Expand All Espandi tutto - + Collapse All Collassa tutto - - Duplicate from Here - Duplica da qui + + Duplicate + - - Duplicate Document - Duplica il documento - - - - + + Delete Permanently Elimina definitivamente - - + + Move to Trash Sposta nel cestino - + Move {0} items to Trash? Spostare {0} elementi nel cestino? - + Do you want to convert the folder to a {0}? This action cannot be reversed. Vuoi convertire la cartella in un {0}? Questa azione non può essere annullata. @@ -4654,7 +4814,7 @@ _UpdatableMenu - + From Template Dal modello @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Documento - + First Heading Prima intestazione @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Etichetta - + Importance Importanza - + Document Documento - + Heading Intestazione - + Short Description Breve descrizione diff --git a/i18n/nw_ja_JP.ts b/i18n/nw_ja_JP.ts index 52ee652d..1018ff39 100644 --- a/i18n/nw_ja_JP.ts +++ b/i18n/nw_ja_JP.ts @@ -4,215 +4,235 @@ Builds - + Document Filters ドキュメントフィルター - + Novel Documents 小説ドキュメント - + Project Notes プロジェクトノート - + Inactive Documents 非アクティブなドキュメント - + Headings 見出し - - Title Headings - タイトルの見出し + + Partition Format + - - Chapter Headings - 章の見出し + + Chapter Format + - - Unnumbered Headings - 番号のない見出し + + Unnumbered Format + - - Scene Headings - 場面の見出し + + Scene Format + - - Section Headings - 節の見出し + + Hard Scene Format + - - Hide Scene Headings - 場面の見出しを隠す + + Section Format + - - Hide Section Headings - 節の見出しを隠す - - - + Text Content テキストコンテンツ - + Include Synopsis あらすじを含める - + Include Comments コメントを含める - + Include Keywords キーワードを含める - + Include Body Text 本文テキストを含める - + + Ignore These Keywords + + + + Insert Content コンテンツを挿入 - + Add Titles for Notes ノートにタイトルを追加 - + Text Format テキストの書式 - + Font Family フォントファミリー - + Font Size フォントサイズ - + Line Height 行の高さ - + Text Options テキストオプション - + Justify Text Margins テキストの余白を揃える - + Replace Unicode Characters Unicode文字を置換 - + Replace Tabs with Spaces タブをスペースで置換 - + Page Layout ページレイアウト - + Unit ユニット - + Page Size ページサイズ - + Page Width ページ幅 - + Page Height ページ高さ - + Top Margin 上マージン - + Bottom Margin 下マージン - + Left Margin 左マージン - + Right Margin 右マージン - + Open Document (.odt) オープンドキュメント (.odt) - + Add Highlight Colours ハイライト色を追加 - + Page Header ページ見出し - + Page Counter Offset ページカウンターオフセット - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles CSSスタイルを追加 + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None なし - + Novel 小説 - - + + Plot プロット - - + + Characters 登場人物 - - + + Locations 場所 - - + + Timeline タイムライン - - + + Objects オブジェクト - - + + Entities エンティティ - - - + + + Custom カスタム - + Archive アーカイブ - + Templates テンプレート - + Trash ごみ箱 - - + + Novel Document 小説のドキュメント - - + + Project Note プロジェクトノート - + Root Folder ルートフォルダー - + Folder フォルダー - + Novel Title Page 小説のタイトルページ - + Novel Chapter 小説の章 - + Novel Scene 小説の場面 - + Novel Section 小説の節 - + Tag タグ - + Point of View 視点 - - + + Focus 焦点 - + Title タイトル - + Level 階層 - + Document ドキュメント - + Line - + Chars 文字 - + Words 単語 - + Pars 段落 - + POV 視点 - + Synopsis あらすじ - + Open Document (.odt) オープンドキュメント (.odt) - + Flat Open Document (.fodt) フラットオープンドキュメント (.fodt) - + novelWriter HTML (.html) novelWriter HTML (.html) - + novelWriter Markup (.txt) novelWriterマークアップ (.txt) - + Standard Markdown (.md) 標準マークダウン (.md) - + Extended Markdown (.md) 拡張マークダウン (.md) - + JSON + novelWriter HTML (.json) JSON + novelWriter HTML (.json) - + JSON + novelWriter Markup (.json) JSON + novelWriter マークアップ (.json) - + Text files テキストファイル - + Markdown files マークダウンファイル - + novelWriter files novelWriterファイル - + CSV files CSVファイル - + All files すべてのファイル - + Millimetres ミリメートル - + Centimetres センチメートル - + Inches インチ - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US リーガル - + US Letter US レター - + Straight single quotation mark 直線形シングルクォーテーション - + Straight double quotation mark 直線形ダブルクォーテーション - + Left single quotation mark 左シングルクォーテーション - + Right single quotation mark 右シングルクォーテーション - + Single low-9 quotation mark シングルローナインクォーテーション - + Single high-reversed-9 quotation mark 上反転シングルローナインクォーテーション - + Left double quotation mark 左ダブルクォーテーション - + Right double quotation mark 右ダブルクォーテーション - + Double low-9 quotation mark ダブルローナインクォーテーション - + Double high-reversed-9 quotation mark 上反転ダブルローナインクォーテーション - + Double low-reversed-9 quotation mark 下反転ダブルローナインクォーテーション - + Single left-pointing angle quotation mark 左フレンチシングルクォーテーション - + Single right-pointing angle quotation mark 右フレンチシングルクォーテーション - + Double left-pointing angle quotation mark 左フレンチダブルクォーテーション - + Double right-pointing angle quotation mark 右フレンチダブルクォーテーション - + Left corner bracket 左鉤括弧 - + Right corner bracket 右鉤括弧 - + Left white corner bracket 左二重鉤括弧 - + Right white corner bracket 右二重鉤括弧 @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings 原稿のビルド設定 - + Name 名前 - + Selection 選択 - + Headings 見出し - + Content コンテンツ - + Format 書式 - + Output アウトプット @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries 辞書を追加 - + Download a dictionary from one of the links, and add it below. いずれかのリンクから辞書をダウンロードして、以下に追加します。 - + Add Dictionary 辞書を追加 - + Dictionary install location 辞書のインストール場所 - + Additional dictionaries found: {0} 追加の辞書が見つかりました: {0} - + Free or Libre Office extension Free または Libre Office拡張 - + Browse Files ファイルを参照 - + Could not process dictionary file 辞書ファイルを処理できませんでした - + Added: {0} [{1}B] 追加: {0} [{1}B] @@ -771,55 +791,50 @@ GuiDocEditFooter - - Status - ステータス - - - + Line: {0} ({1}) 行: {0} ({1}) - + Words: {0} ({1}) 単語: {0} ({1}) - - Document size is {0} bytes - ドキュメントサイズは {0} バイトです - - - + Words: {0} selected 単語: {0} 選択済み - - Character count: {0} - 文字数: {0} + + Status + ステータス GuiDocEditHeader - + Toggle Tool Bar ツールバーの切り替え - + + Outline + + + + Search 検索 - + Toggle Focus Mode フォーカスモードの切り替え - + Close 閉じる @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search 検索 - - Replace - 置き換え - - - + Case Sensitive 大文字と小文字を区別 - + Whole Words Only 完全一致のみ - + RegEx Mode 正規表現モード - + Loop Search ループ検索 - + Search Next File 次のファイルを検索 - + Preserve Case 大文字と小文字を保持 - + Close Search 検索を閉じる - + Find in current document 現在のドキュメント内を検索 - + Find and replace in current document 現在のドキュメント内を検索して置き換え @@ -886,150 +905,145 @@ GuiDocEditor - + Opened Document: {0} 開かれたドキュメント: {0} - + This document has been changed outside of novelWriter while it was open. Overwrite the file on disk? このドキュメントは、開いている間にnovelWriter以外で変更されました。ディスクにファイルを上書きしますか? - + Could not save document. ドキュメントを保存できませんでした。 - + Saved Document: {0} 保存済みドキュメント: {0} - + Spell checking requires the package PyEnchant. It does not appear to be installed. スペルチェックにはPyEnchantパッケージが必要ですが、インストールされていないようです。 - + Spell check complete スペルチェック完了 - + Document Details ドキュメントの詳細 - + Created: {0} 作成済み: {0} - + Updated: {0} 更新: {0} - + File Location: {0} ファイル場所: {0} - + Set as Document Name ドキュメント名として設定 - + Follow Tag タグをフォロー - + Create Note for Tag タグのメモを作成 - + Cut 切り取り - + Copy コピー - + Paste 貼り付け - + Select All すべて選択 - + Select Word 単語を選択 - + Select Paragraph 段落を選択 - + Spelling Suggestion(s) スペルの提案 - + No Suggestions 候補なし - + Add Word to Dictionary 単語を辞書に追加 - + Please select some text before calling replace quotes. 置き換え引用符を呼び出す前にテキストを選択してください。 - + Do you want to create a new project note for the tag '{0}'? タグ '{0}' の新しいプロジェクトノートを作成しますか? - - - Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first. - 「{0}」のルートフォルダにノートを作成できませんでした。存在しない場合は、先にノートを作成してください。 - GuiDocMerge - + Merge Documents ドキュメントを結合 - + Documents to Merge 結合するドキュメント - + Drag and drop items to change the order, or uncheck to exclude. アイテムをドラッグ&ドロップして順序を変更するか、チェックを外して除外します。 - + Move merged items to Trash 結合したアイテムをごみ箱に移動 @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document ドキュメントを分割 - - Document Headers - ドキュメントの見出し + + Document Headings + - + Select the maximum level to split into files. ファイルに分割する最大階層を選択します。 - - - Split on Header Level 1 (Title) - 見出し階層1 (H1、タイトル) で分割 - - - - Split up to Header Level 2 (Chapter) - 見出し階層2 (H2、章) で分割 - - Split up to Header Level 3 (Scene) - 見出し階層3 (H3、場面) で分割 + Split on Heading Level 1 (Partition) + - Split up to Header Level 4 (Section) - 見出し階層4 (H4、節) で分割 + 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 folder 新しいフォルダーに分割 - + Create document hierarchy ドキュメント階層を作成 - + Move split document to Trash 分割したドキュメントをごみ箱に移動 @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold マークダウン 太字 - + Markdown Italic マークダウン 斜体 - + Markdown Strikethrough マークダウン 取り消し線 - + Shortcode Bold ショートコード 太字 - + Shortcode Italic ショートコード 斜体 - + Shortcode Strikethrough ショートコード 取り消し線 - + Shortcode Underline ショートコード 下線 - + + Shortcode Highlight + + + + Shortcode Superscript ショートコード 上付き文字 - + Shortcode Subscript ショートコード 下付き文字 @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel ビューアーパネルの表示/非表示 - + Comments コメント - + Show Comments コメントを表示 - + Synopsis あらすじ - + Show Synopsis Comments あらすじコメントを表示 @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward 戻る - + Go Forward 進む - + Reload リロード - + Close 閉じる @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. プレビューの生成中にエラーが発生しました。 - + Copy コピー - + Select All すべて選択 - + Select Word 単語を選択 - + Select Paragraph 段落を選択 @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags 非アクティブなタグを非表示 - + References 参照 @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label アイテムラベル - + Label ラベル @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label ラベル - + Status ステータス - + Class クラス - + Usage 用途 - + Characters 文字 - + Words 単語 - + Paragraphs 段落 @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text プレースホルダーテキスト (ダミーテキスト) を挿入 - + Insert Lorem Ipsum Text ロレム・イプサムテキストを挿入 - + Number of paragraphs 段落数 - + Randomise order 順番をランダム化 - + Insert 挿入 @@ -1309,103 +1333,103 @@ GuiMain - + novelWriter is ready ... novelWriterの準備ができました... - + You are now running novelWriter version {0}. novelWriter バージョン {0} を実行しています。 - + Please check the {0}release notes{1} for further details. 詳細については、 {0}リリース ノート{1} を確認してください。 - + Close the current project? 現在のプロジェクトを閉じますか? - - + + Changes are saved automatically. 変更は自動的に保存されます。 - + Backup the current project? 現在のプロジェクトをバックアップしますか? - + The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway? プロジェクトは既に別のnovelWriterのインスタンスによって開かれているためロックされています。無視して続行しますか? - + 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. 注意: プログラムまたはコンピュータが以前にクラッシュした場合、ロックを無視しても安全に続行することができます。 ただし、novelWriterの別のインスタンスでプロジェクトが開いている場合は、無視して続行することは推奨されません。プロジェクトが破損する可能性があります。 - + The project was locked by the computer '{0}' ({1} {2}), last active on {3}. このプロジェクトは、コンピューター '{0}' ({1} {2}) によってロックされました。最後に有効になったのは {3} です。 - + The project index is outdated or broken. Rebuilding index. プロジェクトインデックスが古くなっているか、破損しています。インデックスを再構築します。 - + Import File ファイルをインポート - + Could not read file. The file must be an existing text file. ファイルを読み込めませんでした。ファイルは既存のテキストファイルである必要があります。 - + 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? ファイルをインポートするとドキュメントの現在の内容が上書きされます。続行しますか? - + Indexing completed in {0} ms インデックス作成は {0} ミリ秒で完了しました - + The project index has been successfully rebuilt. プロジェクト インデックスが正常に再構築されました。 - + Could not initialise the dialog. ダイアログを初期化できませんでした。 - + Do you want to exit novelWriter? novelWriterを終了しますか? - + Some changes will not be applied until novelWriter has been restarted. いくつかの変更は、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}. タグ '{0}' の参照が見つかりませんでした。タグが存在しないか、インデックスが古いかのどちらかです。インデックスはツールメニューから更新するか、{1} を押して更新することができます。 @@ -1413,642 +1437,657 @@ GuiMainMenu - + &Project &プロジェクト - + Create or Open Project プロジェクトを作成または開く - + Save Project プロジェクトを保存 - + Close Project プロジェクトを閉じる - + Project Settings プロジェクト設定 - + Novel Details 小説の詳細 - + Rename Item アイテム名を変更 - + Delete Item アイテムを削除 - + Empty Trash ごみ箱を空にする - + Exit 終了 - + &Document &ドキュメント - + Open Document ドキュメントを開く... - + Save Document ドキュメントを保存 - + Close Document ドキュメントを閉じる - + View Document ドキュメントを表示 - + Close Document View ドキュメント表示を閉じる - + Show File Details ファイルの詳細を表示 - + Import Text from File ファイルからテキストをインポート - + &Edit &編集 - + Undo 元に戻す - + Redo やり直す - + Cut 切り取り - + Copy コピー - + Paste 貼り付け - + Select All すべて選択 - + Select Paragraph 段落を選択 - + &View &表示 - + Go to Project Tree プロジェクトツリーへ移動 - + Go to Document Editor ドキュメントエディターへ移動 - + Go to Outline アウトラインへ移動 - + Navigate Backward 前に戻る - + Navigate Forward 次に進む - + Focus Mode フォーカスモード - + Full Screen Mode フルスクリーンモード - + &Insert &挿入 - + Dashes ダッシュ - + Short Dash enダッシュ - + Long Dash emダッシュ - + Horizontal Bar 水平線 - + Figure Dash フィギュアダッシュ - + Quote Marks 引用符 - + Left Single Quote 左シングルクォーテーション - + Right Single Quote 右シングルクォーテーション - + Left Double Quote 左ダブルクォーテーション - + Right Double Quote 右ダブルクォーテーション - + Alternative Apostrophe 代替アポストロフ - + General Punctuation 一般的な句読点 - + Ellipsis 省略記号 - + Prime プライム - + Double Prime ダブルプライム - + White Spaces 空白 - + Non-Breaking Space ノーブレークスペース - + Thin Space 細いスペース - + Thin Non-Breaking Space 細いノーブレークスペース - + Other Symbols その他の記号 - + List Bullet 箇条書きリスト - + Hyphen Bullet ハイフンリスト - + Flower Mark 花記号 - + Per Mille パーミル - + Degree Symbol 度記号 - + Minus Sign 引き算記号 - + Times Sign 掛け算記号 - + Division Sign 割り算記号 - + Tags and References タグと参照 - + Special Comments 特殊コメント - + Synopsis Comment あらすじコメント - + Short Description Comment 短文説明コメント - + Page Break and Space 改ページとスペース - + Page Break 改ページ - + Vertical Space (Single) 垂直スペース (シングル) - + Vertical Space (Multi) 垂直スペース (マルチ) - + Placeholder Text プレースホルダーテキスト - + &Format &書式 - + Bold 太字 - + Italic 斜体 - + Strikethrough 取り消し線 - + Wrap Double Quotes ダブルクォーテーションで包む - + Wrap Single Quotes シングルクォーテーションで包む - + More Formats ... より多くのフォーマット... - + Bold (Shortcode) 太字(ショートコード) - + Italics (Shortcode) 斜体 (ショートコード) - + Strikethrough (Shortcode) 取り消し線 (ショートコード) - + Underline 下線 - + + Highlight + + + + Superscript 上付き文字 - + Subscript 下付き文字 - - - Header 1 (Partition) - 見出し1 (部) - - Header 2 (Chapter) - 見出し2 (章) + Heading 1 (Partition) + - Header 3 (Scene) - 見出し3 (場面) + Heading 2 (Chapter) + - Header 4 (Section) - 見出し4 (節) + Heading 3 (Scene) + - + + Heading 4 (Section) + + + + Novel Title 小説のタイトル - + Unnumbered Chapter 番号のない章 - + + Hard Scene + + + + Align Left 左揃え - + Align Centre 中央揃え - + Align Right 右揃え - + Indent Left 左側をインデント - + Indent Right 右側をインデント - + Toggle Comment コメントの切り替え - + Toggle Ignore Text 無視テキストの切り替え - + Remove Block Format ブロック形式を削除 - - Convert Single Quotes - シングルクォーテーションを変換 + + Replace Straight Single Quotes + - - Convert Double Quotes - ダブルクォーテーションを変換 + + Replace Straight Double Quotes + - + Remove In-Paragraph Breaks 段落内の区切りを削除 - + &Search &検索 - + Find 検索 - + Replace 置き換え - + Find Next 次を検索 - + Find Previous 前を検索 - + Replace Next 次を置換 - + + Find in Project + + + + &Tools &ツール - + Check Spelling スペルチェック - + Spell Check Language スペルチェック言語 - + Default 既定 - + Re-Run Spell Check スペルチェックを再実行 - + Project Word List プロジェクト単語リスト - + Add Dictionaries 辞書を追加 - + Rebuild Index インデックスを再構築 - + Backup Project プロジェクトをバックアップ - + Build Manuscript 原稿をビルド - + Writing Statistics 統計の作成 - + Preferences 環境設定 - + &Help &ヘルプ - + About novelWriter novelWriterについて - + About Qt5 Qt5について - + User Manual (Online) ユーザーマニュアル (オンライン) - + User Manual (PDF) ユーザーマニュアル (PDF) - + Report an Issue (GitHub) 問題を報告 (GitHub) - + Ask a Question (GitHub) 質問する (GitHub) - + The novelWriter Website novelWriterのウェブサイト @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript 原稿をビルド - + Add New Build 新しいビルドを追加 - + Delete Selected Build 選択したビルドを削除 - + Edit Selected Build 選択したビルドを編集 - + Builds ビルド - + + Details + + + + + Outline + + + + Preview プレビュー - + Print 印刷 - + Build ビルド - + Close 閉じる - - + + My Manuscript 私の原稿 @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript 原稿をビルド - + Output Format 出力形式 - + Table of Contents 目次 - + Path パス - + File Name ファイル名 - + Reset file name to default ファイル名をデフォルトにリセット - + Open Folder フォルダーを開く - + &Build &ビルド - + Select Folder フォルダーを選択 - + Output folder does not exist. 出力フォルダが存在しません。 - + The file already exists. Do you want to overwrite it? このファイルはすでに存在します。上書きしますか? @@ -2207,18 +2256,18 @@ GuiNovelDetails - - + + Novel Details 小説の詳細 - + Overview 概要 - + Contents 内容 @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} {0} のアウトライン - + Novel Root 小説のルート - + Refresh 更新 - + Last Column 最後の列 - + Hidden 非表示 - + Point of View Character 視点人物 - + Focus Character 焦点人物 - + Novel Plot 小説のプロット - - + + Column Size 列のサイズ - + More Options その他の設定 - + Maximum column size in % 列の最大サイズ (%) @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data メタデータなし @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title タイトル - + Chapter - + Scene 場面 - + Section - + Document ドキュメント - + Status ステータス - + Characters 文字 - + Words 単語 - + Paragraphs 段落 - + Synopsis あらすじ - + Title Details タイトルの詳細 - + Reference Tags 参照タグ @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns 列の選択 @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of アウトライン - + Refresh 更新 - + Export CSV CSVを出力 @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As アウトラインを名前を付けて保存 @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences 環境設定 - + Search 検索 @@ -2413,561 +2462,589 @@ 外観 - + Display language 表示言語 - - - + + + Requires restart to take effect. 有効にするには再起動が必要です。 - + Colour theme カラーテーマ - + General colour theme and icons. 一般的なカラーテーマとアイコン。 - + Application font family アプリケーションのフォントファミリー - + Application font size アプリケーションのフォントサイズ - - + + pt pt - + Hide vertical scroll bars in main windows メインウィンドウの垂直スクロールバーを非表示 - - + + Scrolling available with mouse wheel and keys only. スクロールはマウスホイールとキーでのみ利用可能です。 - + Hide horizontal scroll bars in main windows メインウィンドウの横スクロールバーを非表示 - + Document Style ドキュメントスタイル - + Document colour theme ドキュメントのカラーテーマ - + Colour theme for the editor and viewer. エディタとビューアーのカラーテーマ。 - + Document font family ドキュメントのフォントファミリー - - - - + + + + Applies to both document editor and viewer. ドキュメントエディターとビューアーの両方に適用されます。 - + Document font size ドキュメントのフォントサイズ - + Emphasise partition and chapter labels パーティションと章ラベルを強調 - + Makes them stand out in the project tree. プロジェクトツリーで目立つようにします。 - + Show full path in document header ドキュメント見出しにフルパスを表示 - + Add the parent folder names to the header. 親フォルダ名を見出しに追加します。 - + Include project notes in status bar word count ステータスバーの単語数にプロジェクトノートを含める - + Auto Save 自動保存 - + Save document interval ドキュメントの保存間隔 - + How often the document is automatically saved. ドキュメントが自動的に保存される頻度。 - - + + seconds - + Save project interval プロジェクトの保存間隔 - + How often the project is automatically saved. プロジェクトが自動的に保存される頻度。 - + Project Backup プロジェクトのバックアップ - + Browse ブラウズ - + Backup storage location バックアップストレージの場所 - - + + Path: {0} パス: {0} - + Run backup when the project is closed プロジェクトを閉じたときにバックアップを実行 - + Can be overridden for individual projects in Project Settings. プロジェクト設定で個々のプロジェクトに対して上書きできます。 - + Ask before running backup バックアップを実行する前に確認 - + If off, backups will run in the background. オフの場合、バックアップはバックグラウンドで実行されます。 - + Session Timer セッションタイマー - + Pause the session timer when not writing 書き込んでいない時にセッションタイマーを一時停止 - + Also pauses when the application window does not have focus. また、アプリケーションウィンドウにフォーカスがない場合は一時停止します。 - + Editor inactive time before pausing timer タイマーを一時停止するまでのエディターの非アクティブ時間 - + User activity includes typing and changing the content. ユーザーアクティビティには、入力とコンテンツの変更が含まれます。 - + minutes - + Writing 執筆 - + Text Flow テキストフロー - + Maximum text width in "Normal Mode" "ノーマルモード"でのテキストの最大幅 - + Set to 0 to disable this feature. この機能を無効にするには0に設定してください。 - - - - + + + + px px - + Maximum text width in "Focus Mode" "フォーカスモード"でのテキストの最大幅 - + The maximum width cannot be disabled. 最大幅を無効にすることはできません - + Hide document footer in "Focus Mode" "フォーカスモード"でドキュメントのフッターを非表示 - + Hide the information bar in the document editor. ドキュメントエディターで情報バーを非表示にします。 - + Justify the text margins テキストの余白を揃える - + Minimum text margin テキストの最小マージン - + Tab width タブの幅 - + The width of a tab key press in the editor and viewer. タブキーを押した時のエディターとプレービューでの幅。 - + Text Editing テキスト編集 - + Spell check language スペルチェック言語 - + Available languages are determined by your system. 利用可能な言語はシステムによって決定されます。 - + Auto-select word under cursor カーソルの下にある単語を自動選択 - + Apply formatting to word under cursor if no selection is made. 選択が行われていない場合は、カーソルの下にある単語に書式を適用します。 - + Show tabs and spaces タブとスペースを表示 - + Show line endings 行末を表示 - + Editor Scrolling エディタースクロール - + Scroll past end of the document ドキュメントの最後までスクロール - + Also centres the cursor when scrolling. また、スクロール時にカーソルを中央に移動します。 - + Typewriter style scrolling when you type 入力時にタイプライタースタイルスクロール - + Keeps the cursor at a fixed vertical position. カーソルを固定の垂直位置に維持します。 - + Minimum position for Typewriter scrolling タイプライタースクロールの最小位置 - + Percentage of the editor height from the top. エディタの高さの上からの割合。 - + Text Highlighting テキストのハイライト - + Highlight text wrapped in quotes 引用符で囲まれたテキストを強調 - - - + + + Applies to the document editor only. ドキュメントエディターにのみ適用されます。 - + Allow open-ended single quotes オープンエンドのシングルクォートを許可 - + Highlight single-quoted line with no closing quote. 終了引用符がないシングルクォートの行を強調表示します。 - + Allow open-ended double quotes オープンエンドのダブルクォートを許可 - + Highlight double-quoted line with no closing quote. 終了引用符がないダブルクォートの行を強調表示します。 - + Add highlight colour to emphasised text 強調テキストにハイライト色を追加 - + Highlight multiple or trailing spaces 複数または末尾のスペースをハイライト表示 - + Text Automation テキストの自動化 - + Auto-replace text as you type 入力時にテキストを自動的に置き換え - + Allow the editor to replace symbols as you type. 入力時にエディタが記号を置き換えることを許可します。 - + Auto-replace single quotes シングルクォートの自動置換 - - + + Try to guess which is an opening or a closing quote. 引用符が開始と終了のどちらかを推測する - + Auto-replace double quotes ダブルクォートの自動置換 - + Auto-replace dashes ダッシュの自動置換 - + Double and triple hyphens become short and long dashes. 二重および三重のハイフンはenおよびemダッシュに置き換えらます。 - + Auto-replace dots ドットの自動置換 - + Three consecutive dots become ellipsis. 3つ連続したドットは省略記号に置き換えられます。 - + Insert non-breaking space before ノーブレークスペースを前に挿入 - + Automatically add space before any of these symbols. これらの記号の前にスペースを自動的に追加します。 - + Insert non-breaking space after ノーブレークスペースを後に挿入 - + Automatically add space after any of these symbols. これらの記号の後にスペースを自動的に追加します。 - + Use thin space instead 細いスペースを代わりに使用 - + Inserts a thin space instead of a regular space. 通常のスペースの代わりに細いスペースを挿入します。 - + Quotation Style クォーテーションスタイル - + Single quote open style シングルクォートオープンスタイル - + The symbol to use for a leading single quote. 先頭のシングルクォートに使用する記号です。 - + Single quote close style シングルクォートクローズスタイル - + The symbol to use for a trailing single quote. 末尾のシングルクォートに使用する記号です。 - + Double quote open style ダブルクォートオープンスタイル - + The symbol to use for a leading double quote. 先頭のダブルクォートに使用する記号です。 - + Double quote close style シングルクォートクローズスタイル - + The symbol to use for a trailing double quote. 末尾のダブルクォートに使用する記号です。 - + Backup Directory バックアップディレクトリー + + GuiProjectSearch + + + Project Search + + + + + Case Sensitive + 大文字と小文字を区別 + + + + Whole Words Only + 完全一致のみ + + + + RegEx Mode + 正規表現モード + + + + Search for + + + GuiProjectSettings - - + + Project Settings プロジェクト設定 - + Settings 設定 - + Status ステータス - + Importance 重要度 - + Auto-Replace 自動置換 @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content プロジェクトの内容 - + Quick Links クイックリンク - + Move Up 上へ移動 - + Move Down 下へ移動 - + Add Item アイテムを追加 - + Expand All すべて展開 - + Collapse All すべて折りたたむ - + Empty Trash ごみ箱を空にする - + More Options その他の設定 @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active アクティブ - + Inactive 非アクティブ - + Permanently delete {0} file(s) from Trash? ごみ箱から {0} 個のファイルを完全に削除しますか? - + Did not find anywhere to add the file or folder! ファイルまたはフォルダを追加する場所が見つかりませんでした! - + Cannot add new files or folders to the Trash folder. ごみ箱フォルダには新しいファイルやフォルダを追加できません。 - + New Note 新規ノート - + New Chapter 新規章 - + New Scene 新規場面 - + New Document 新規ドキュメント - + New Folder 新規フォルダー - + There is currently no Trash folder in this project. このプロジェクトには現在ごみ箱フォルダーがありません。 - + The Trash folder is already empty. ごみ箱フォルダーはすでに空です。 - + Move '{0}' to Trash? '{0}' をごみ箱に移動しますか? - + Root folders can only be deleted when they are empty. ルートフォルダーは空の場合にのみ削除できます。 - + Permanently delete '{0}'? '{0}' を完全に削除しますか? - + Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent. ドラッグ&ドロップは、単一のアイテム、ルート以外のアイテム、または同じ親を持つ複数のアイテムにのみ使用できます。 - + No documents selected for merging. 結合するドキュメントが選択されていません。 - + Merged 結合された - - + + Could not write document content. ドキュメントの内容を書き込めませんでした。 - + Do you want to duplicate this document? このドキュメントを複製しますか? - + Do you want to duplicate this item and all child items? このアイテムとすべての子アイテムを複製しますか? - + Could not duplicate all items. すべてのアイテムを複製できませんでした。 - + There is nowhere to add item with name '{0}'. '{0}' という名前のアイテムを追加する場所がありません。 @@ -3142,37 +3219,42 @@ GuiSideBar - + Project Tree View プロジェクトツリービュー - + Novel Tree View 小説ツリービュー - + + Project Search + + + + Novel Outline View 小説アウトラインビュー - + Build Manuscript 原稿をビルド - + Novel Details 小説の詳細 - + Writing Statistics 執筆の統計 - + Settings 設定 @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome ようこそ - + List 一覧 - + New 新規 - + Browse ブラウズ - + Cancel キャンセル - + Create 作成 - + Open 開く @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List プロジェクト単語リスト - + Import words from text file テキストファイルから単語をインポート - + Export words to text file 単語をテキストファイルにエクスポート - + Note: The import file must be a plain text file with UTF-8 or ASCII encoding. 注: インポート ファイルは、UTF-8 または ASCII エンコーディングのプレーンテキストファイルである必要があります。 - + Import File ファイルをインポート - + Export File ファイルをエクスポート @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics 執筆の統計 - + Session Start セッション開始 - + Length 長さ - + Idle アイドル - + Words 単語 - + Histogram ヒストグラム - + Sum Totals 合計 - + Total Time: 合計時間: - + Idle Time: アイドル時間: - + Filtered Time: フィルター時間: - + Novel Word Count: 小説の単語数: - + Notes Word Count: ノートの単語数: - + Total Word Count: 合計単語数: - + Filters フィルター - + Count novel files 小説ファイルをカウント - + Count note files ノートファイルをカウント - + Hide zero word count 単語数0を非表示 - + Hide negative word count 負の単語数を非表示 - + Group entries by day 日毎にグループ化 - + Show idle time アイドル時間の表示 - + Word count cap for the histogram ヒストグラムの単語数上限 - + Save As 名前を付けて保存 - + JSON Data File (.json) JSON データファイル (.json) - + CSV Data File (.csv) CSV データファイル (.csv) - + JSON Data File JSON データファイル - + CSV Data File CSV データファイル - + Save Data As 名前を付けてデータを保存 - + {0} file successfully written to: {0} ファイルの書き込みに成功しました: - + Failed to write {0} file. {0} ファイルの書き込みに失敗しました。 @@ -3400,153 +3482,153 @@ NWProject - + Could not delete document file. ドキュメントファイルを削除できませんでした。 - + Not a known project file format. 既知のプロジェクトファイル形式ではありません。 - + Project file not found. プロジェクトファイルが見つかりません。 - + Failed to open project. プロジェクトを開けませんでした。 - + Unknown 不明 - + Project file does not appear to be a novelWriterXML file. プロジェクトファイルがnovelWriter XMLファイルではないようです。 - + 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}. 不明な、またはサポートされていないnovelWriterプロジェクトファイル形式です。このバージョンのnovelWriterではプロジェクトを開くことはできません。 ファイルは、novelWriterのバージョン {0} で保存されました。 - + Failed to parse project xml. プロジェクト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? プロジェクトのファイル形式を更新しようとしています。 続行すると、古いバージョンのnovelWriterはこのプロジェクトを開くことができなくなります。続行しますか? - + 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? このプロジェクトは、新しいバージョンのnovelWriter、バージョン {0} によって保存されました。 このインスタンスはバージョン {1} です。 プロジェクトを開くと、いくつかの属性や設定は保持されませんが、プロジェクト全体は問題ありません。 プロジェクトを開きますか? - + Recovered 復元されました - + Found {0} orphaned file(s) in the project. {1} file(s) were recovered. プロジェクト内に孤立している {0} ファイルが見つかりました。 {1} ファイルを復元しました。 - + Opened Project: {0} 開いたプロジェクト: {0} - + There is no project open. プロジェクトが開かれていません。 - + Failed to save project. プロジェクトを保存できませんでした。 - + Saved Project: {0} 保存されたプロジェクト: {0} - + Backing up project ... プロジェクトをバックアップ中... - + Cannot backup project because no project name is set. Please set a Project Name in Project Settings. プロジェクト名が設定されていないため、プロジェクトをバックアップできません。プロジェクト設定でプロジェクト名を設定してください。 - + Could not create backup folder. バックアップフォルダーを作成できませんでした。 - + Created a backup of your project of size {0}B. プロジェクトサイズ {0}Bのバックアップを作成しました。 - + Path: {0} パス: {0} - + Could not write backup archive. バックアップアーカイブを書き込めませんでした。 - + Project backed up to '{0}' プロジェクトはバックアップされました '{0}' - - + + New 新規 - + Note ノート - + Draft 下書き - + Finished 終了 - + Minor マイナー - + Major メジャー - + Main メイン @@ -3562,89 +3644,89 @@ ProjectBuilder - + The target folder is not empty. Please choose another folder. ターゲットフォルダが空ではありません。別のフォルダを選択してください。 - + An error occurred while trying to create the project. プロジェクトの作成中にエラーが発生しました。 - + New Project 新規プロジェクト - + Title Page タイトルページ - + By - + Summary of the chapter. 章の概要。 - + Summary of the scene. 場面の概要。 - + A short description. 簡潔な説明。 - + Chapter {0} 章 {0} - - + + Scene {0} 場面 {0} - + Main Plot メインプロット - + Protagonist 主人公 - + Main Location メインの場所 - - + + The target folder already exists. Please choose another folder. ターゲットフォルダは既に存在します。別のフォルダを選択してください。 - + Could not copy project files. プロジェクトファイルをコピーできませんでした。 - + 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. 新しいサンプルプロジェクトの作成に失敗しました。必要なファイルが見つかりませんでした。インストール時に欠落しているようです。 @@ -3840,17 +3922,17 @@ SharedData - + novelWriter Project File or Zip File novelWriterプロジェクトファイルまたはZipファイル - + novelWriter Project File novelWriterプロジェクトファイル - + Open Project プロジェクトを開く @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents 目次 - + Title タイトル - + Words 単語 - + Pages ページ数 - + Page ページ - + Progress 進捗 - + Words per page 1ページあたりの単語 - + First page offset 最初のページオフセット - + Chapters on odd pages 奇数ページ上の章 - + Untitled 無題 - + END END @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting 設定 - + Value - + Name 名前 - + Selection 選択 - + Title タイトル + + + Hidden + 非表示 + _FilterTab @@ -4012,12 +4099,12 @@ デフォルトにリセット - + Mark selection as 選択範囲を次としてマーク - + Select Root Folders ルートフォルダーを選択 @@ -4025,22 +4112,22 @@ _GuiAlert - + Information 情報 - + Warning 警告 - + Error エラー - + Question 質問 @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide 非表示 - - + + Editing: {0} 編集中: {0} - - + + None なし - + Title タイトル - + Chapter Number 章番号 - + Chapter Number (Word) 章番号 (文章) - + Chapter Number (Upper Case Roman) 章番号 (大文字のローマ字) - + Chapter Number (Lower Case Roman) 章番号 (小文字のローマ字) - + Scene Number (In Chapter) 場面番号 (チャプター内) - + Scene Number (Absolute) 場面番号 (絶対) - + Point of View Character 視点人物 - + Focus Character 焦点人物 - + Insert 挿入 - + Apply 適用 + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + 改ページ + _NewProjectForm - + Required 必須 - + Optional 任意 - + Create a fresh project 新鮮なプロジェクトを作成 - + Create an example project サンプルプロジェクトを作成 - + Copy an existing project 既存のプロジェクトをコピー - + Project Name プロジェクト名 - + Author 著者 - + Project Path プロジェクトパス - + Prefill Project プロジェクトのプリフィル - + Set to 0 to only add scenes シーンのみを追加するには0に設定してください - + Add {0} chapter documents {0} 章ドキュメントを追加 - + Add {0} scene documents (to each chapter) {0} 場面ドキュメントを追加(各章に) - + Add a folder for plot notes プロットノート用のフォルダーを追加 - + Add a folder for character notes 登場人物ノート用のフォルダーを追加 - + Add a folder for location notes 場所ノート用のフォルダーを追加 - + Add example notes to the above 上記にノートの例を追加する - + Chapters and Scenes 章と場面 - + Project Notes プロジェクトノート - + Create New Project 新規プロジェクトを作成 - + Select Project Folder プロジェクトフォルダーを選択 - + Fresh Project 新鮮なプロジェクト - + Example Project サンプルプロジェクト - + Template: {0} テンプレート: {0} @@ -4242,7 +4347,7 @@ _NewProjectPage - + A project name is required. プロジェクト名は必須です。 @@ -4250,27 +4355,27 @@ _OpenProjectPage - + The project path is not reachable. プロジェクトパスに到達できません。 - + Path パス - + Remove '{0}' from the recent projects list? The project files will not be deleted. '{0}' を最近のプロジェクトリストから削除しますか? プロジェクトファイルは削除されません。 - + Open Project プロジェクトを開く - + Remove Project プロジェクトを削除 @@ -4278,54 +4383,54 @@ _OverviewPage - + Project プロジェクト - - + + Name 名前 - + Revisions 修正 - + Editing Time 編集時間 - - + + Word Count 単語カウント - + In Novels 小説内 - + In Notes ノート内 - + Selected Novel 選択した小説 - + Chapters - + Scenes 場面 @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... "プレビュー" ボタンを押して生成します ... - + Processing ... 処理中… - + Done 完了 - + Unknown 不明 - + Built ビルドされた @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count 単語カウント - + Last Opened 最後に開いた @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build プレビューとビルドのためのテキスト自動置換 - + Keyword キーワード - + Replace With 置換候補 - + Select item to edit 編集するアイテムを選択 - + Save 保存 @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name プロジェクト名 - + Changing this will affect the backup path. これを変更すると、バックアップパスに影響します。 - + Author(s) 著者 - - + + Only used when building the manuscript. 原稿の作成時にのみ使用されます。 - + Project language プロジェクトの言語 - + Default 既定 - + Spell check language スペルチェック言語 - - + + Overrides main preferences. メイン設定よりも優先されます。 - + Disable backup on close 終了時にバックアップを無効にする + + _StatsWidget + + + + Words + 単語 + + + + + Characters + 文字 + + + + Words in Headings + + + + + Words in Text + + + + + Headings + 見出し + + + + Paragraphs + 段落 + + + + Characters in Headings + + + + + Characters in Text + + + + + Characters, No Spaces + + + + + Characters in Headings, No Spaces + + + + + Characters in Text, No Spaces + + + _StatusPage - + Novel Document Status Levels 小説のドキュメントの状態レベル - + Project Note Importance Levels プロジェクトノートの重要度レベル - + Label ラベル - + Usage 用途 - + Select item to edit 編集するアイテムを選択 - + Colour - + Save 保存 - + Select Colour 色を選択 - + New Item 新規アイテム - + Cannot delete a status item that is in use. 使用中のステータスアイテムは削除できません。 - + Not in use 使用されていません - + Used once 一度だけ使用 - + Used by {0} items {0} 個のアイテムで使用 @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash ごみ箱を空にする - + Rename 名前を変更 - + Open Document ドキュメントを開く - + View Document ドキュメントを表示 - + Create New ... 新規作成... - + Rename to Heading 見出し名に変更 - + Set Active to ... アクティブに設定... - + Toggle Active アクティブを切り替え - + Set Status to ... ステータスを... に設定 - - + + Manage Labels ... ラベルを管理... - + Set Importance to ... 重要度を... に設定 - + Transform ... 変換... - + Convert to {0} {0} へ変換 - + Merge Child Items into Self 子アイテムを自分に結合 - + Merge Child Items into New 子アイテムを新規アイテムに結合 - + Merge Documents in Folder フォルダ内のドキュメントを結合 - - Split Document by Headers - 見出しでドキュメントを分割 + + Split Document by Headings + - + Expand All すべて展開 - + Collapse All すべて折りたたむ - - Duplicate from Here - ここから複製 + + Duplicate + - - Duplicate Document - ドキュメントを複製 - - - - + + Delete Permanently 完全に削除 - - + + Move to Trash ごみ箱に移動 - + Move {0} items to Trash? {0} アイテムをゴミ箱に移動しますか? - + Do you want to convert the folder to a {0}? This action cannot be reversed. フォルダーを {0} に変換しますか? この操作は元に戻せません。 @@ -4654,7 +4814,7 @@ _UpdatableMenu - + From Template テンプレートから @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document ドキュメント - + First Heading 最初の見出し @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag タグ - + Importance 重要度 - + Document ドキュメント - + Heading 見出し - + Short Description 短い説明 diff --git a/i18n/nw_nb_NO.ts b/i18n/nw_nb_NO.ts index c06d29da..51dee946 100644 --- a/i18n/nw_nb_NO.ts +++ b/i18n/nw_nb_NO.ts @@ -4,215 +4,235 @@ Builds - + Document Filters Dokumentfiltre - + Novel Documents Romandokumenter - + Project Notes Prosjektnotater - + Inactive Documents Inaktive dokumenter - + Headings Overskrifter - - Title Headings - Titler + + Partition Format + - - Chapter Headings - Kapitteloverskrifter + + Chapter Format + - - Unnumbered Headings - Unummererte overskrifter + + Unnumbered Format + - - Scene Headings - Sceneoverskrifter + + Scene Format + - - Section Headings - Seksjonoverskrifter + + Hard Scene Format + - - Hide Scene Headings - Skjul sceneoverskrifter + + Section Format + - - Hide Section Headings - Skjul seksjonsoverskrifter - - - + Text Content Tekstinnhold - + Include Synopsis Inkluder sammendrag - + Include Comments Inkluder kommentarer - + Include Keywords Inkluder kodeord - + Include Body Text Inkluder tekst - + + Ignore These Keywords + + + + Insert Content Legg til innhold - + Add Titles for Notes Legg til titler for notater - + Text Format Tekstformat - + Font Family Skriftfamilie - + Font Size Skriftstørrelse - + Line Height Linjehøyde - + Text Options Skriftvalg - + Justify Text Margins Juster tekstmarginer - + Replace Unicode Characters Erstatt unicode-tegn - + Replace Tabs with Spaces Erstatt tabulator med mellomrom - + Page Layout Sideoppsett - + Unit Enhet - + Page Size Sidestørrelse - + Page Width Sidebredde - + Page Height Sidehøyde - + Top Margin Toppmarg - + Bottom Margin Bunnmarg - + Left Margin Venstremarg - + Right Margin Høyremarg - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Bruk farger på spesielle elementer - + Page Header Topptekst - + Page Counter Offset Første side for sideteller - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles Legg til CSS style + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None Ingen - + Novel Roman - - + + Plot Plott - - + + Characters Karakterer - - + + Locations Lokasjoner - - + + Timeline Tidslinje - - + + Objects Objekter - - + + Entities Enheter - - - + + + Custom Annet - + Archive Arkiv - + Templates Maler - + Trash Søppel - - + + Novel Document Romandokument - - + + Project Note Prosjektnotat - + Root Folder Hovedmappe - + Folder Mappe - + Novel Title Page Tittelside - + Novel Chapter Kapittel - + Novel Scene Scene - + Novel Section Seksjon - + Tag Knagg - + Point of View Perspektiv - - + + Focus Fokus - + Title Tittel - + Level Nivå - + Document Dokument - + Line Linje - + Chars Tegn - + Words Ord - + Pars Avsnitt - + POV Persp. - + Synopsis Sammendrag - + Open Document (.odt) Open Document (.odt) - + Flat Open Document (.fodt) Flat Open Document (.fodt) - + novelWriter HTML (.html) novelWriter HTML (.htm) - + novelWriter Markup (.txt) novelWriter Markup (.txt) - + Standard Markdown (.md) Standard Markdown (.md) - + Extended Markdown (.md) Utvidet Markdown (.md) - + JSON + novelWriter HTML (.json) JSON + novelWriter HTML (.json) - + JSON + novelWriter Markup (.json) JSON + novelWriter Markup (.json) - + Text files Tekstfiler - + Markdown files Markdown-filer - + novelWriter files novelWriter-filer - + CSV files CSV-filer - + All files Alle filer - + Millimetres Millimeter - + Centimetres Centimeter - + Inches Tommer - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark Rett, enkelt sitattegn - + Straight double quotation mark Rett, dobbelt sitattegn - + Left single quotation mark Venstre, enkelt sitattegn - + Right single quotation mark Høyre, enkelt sitattegn - + Single low-9 quotation mark Enkelt, lavt-9 sitattegn - + Single high-reversed-9 quotation mark Enkelt, høyt, reversert-9 sitattegn - + Left double quotation mark Venstre, dobbelt sitattegn - + Right double quotation mark Høyre, dobbelt sitattegn - + Double low-9 quotation mark Dobbelt, lavt-9 sitattegn - + Double high-reversed-9 quotation mark Dobbelt, høyt, reversert-9 sitattegn - + Double low-reversed-9 quotation mark Dobbelt, lavt, reversert-9 sitattegn - + Single left-pointing angle quotation mark Enkelt, venstre, angulært sitattegn - + Single right-pointing angle quotation mark Enkelt, høyre, angulært sitattegn - + Double left-pointing angle quotation mark Dobbelt, venstre, angulært sitattegn - + Double right-pointing angle quotation mark Dobbelt, høyre, angulært sitattegn - + Left corner bracket Venstre hjørnevinkel - + Right corner bracket Høyre hjørnevinkel - + Left white corner bracket Venstre, hvit hjørnevinkel - + Right white corner bracket Høyre, hvit hjørnevinkel @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Byggeinnstillinger for manuskript - + Name Navn - + Selection Utvalg - + Headings Overskrifter - + Content Innhold - + Format Format - + Output Utdata @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Legg til ordbøker - + Download a dictionary from one of the links, and add it below. Last ned en ordbok fra en av lenkene, og legg den til nedenfor. - + Add Dictionary Legg til ordbok - + Dictionary install location Mappe hvor ordbøkene er installert - + Additional dictionaries found: {0} Ordbøker funnet: {0} - + Free or Libre Office extension Free- eller Libre Office-utvidelse - + Browse Files Bla gjennom - + Could not process dictionary file Kunne ikke behandle ordbokfilen - + Added: {0} [{1}B] Lagt til: {0} [{1}B] @@ -771,55 +791,50 @@ GuiDocEditFooter - - Status - Status - - - + Line: {0} ({1}) Linje: {0} ({1}) - + Words: {0} ({1}) Ord: {0} ({1}) - - Document size is {0} bytes - Dokumentet er {0} byte - - - + Words: {0} selected Ord: {0} valgt - - Character count: {0} - Antall tegn: {0} + + Status + Status GuiDocEditHeader - + Toggle Tool Bar Vis/skjul verktøylinje - + + Outline + + + + Search Søk - + Toggle Focus Mode Slå av/på "Fokus-modus" - + Close Lukk @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Søk - - Replace - Erstatt - - - + Case Sensitive Skill store/små bokstaver - + Whole Words Only Kun hele ord - + RegEx Mode RegEx-modus - + Loop Search Søk rundt - + Search Next File Søk i neste file - + Preserve Case Behold store/små bokstaver - + Close Search Lukk søk - + Find in current document Søk i det åpne dokumentet - + Find and replace in current document Søk og erstatt i det åpne dokumentet @@ -886,150 +905,145 @@ GuiDocEditor - + Opened Document: {0} Åpnet dokument: {0} - + This document has been changed outside of novelWriter while it was open. Overwrite the file on disk? Dette dokumentet er endret utenfor novelWriter mens det var åpent. Overskrive filen på disken? - + Could not save document. Kunne ikke lagre dokumentet. - + Saved Document: {0} Lagret dokument: {0} - + Spell checking requires the package PyEnchant. It does not appear to be installed. Stavekontroll krever at pakken PyEnchant er installert. Det ser det ikke ut til at den er. - + Spell check complete Stavekontrollen er ferdig - + Document Details Dokumentdetaljer - + Created: {0} Opprettet: {0} - + Updated: {0} Oppdatert: {0} - + File Location: {0} Filplassering: {0} - + Set as Document Name Sett som dokumentnavn - + Follow Tag Følg knagg - + Create Note for Tag Opprett notat for knagg - + Cut Klipp - + Copy Kopier - + Paste Lim inn - + Select All Velg hele teksten - + Select Word Velg hele ordet - + Select Paragraph Velg hele avsnittet - + Spelling Suggestion(s) Forslag fra stavekontrollen - + No Suggestions Ingen forslag - + Add Word to Dictionary Legg til ord i ordbok - + Please select some text before calling replace quotes. Venligst velg en del av teksten før du velger å erstatte sitattegn. - + Do you want to create a new project note for the tag '{0}'? Vil du opprette et nytt prosjektnotat for knaggen '{0}'? - - - Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first. - Kunne ikke opprette et notat i en rotmappe for '{0}'. Hvis en slik ikke eksisterer, må du opprette en først. - GuiDocMerge - + Merge Documents Slå sammen dokumenter - + Documents to Merge Dokumenter som skal slås sammen - + Drag and drop items to change the order, or uncheck to exclude. Dra og slipp elementer for å endre rekkefølgen, eller fjern merking for å ekskludere. - + Move merged items to Trash Flytt sammenslåtte elementer til papirkurven @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Del opp dokument - - Document Headers - Dokumentets overskrifter + + Document Headings + - + Select the maximum level to split into files. Velg hvilket nivå av overskrifter å dele opp til. - - - Split on Header Level 1 (Title) - Del på overskrifter på nivå 1 (titler) - - - - Split up to Header Level 2 (Chapter) - Del på overskrifter opp til nivå 2 (kapitler) - - Split up to Header Level 3 (Scene) - Del på overskrifter opp til nivå 3 (scener) + Split on Heading Level 1 (Partition) + - Split up to Header Level 4 (Section) - Del på overskrifter opp til nivå 4 (seksjoner) + 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 folder Del inn i en ny mappe - + Create document hierarchy Opprett dokumenthierarki - + Move split document to Trash Flytt splittet element til papirkurven @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Fet skrift med Markdown - + Markdown Italic Kursiv med Markdown - + Markdown Strikethrough Gjennomstrek med Markdown - + Shortcode Bold Fet skrift med kortkode - + Shortcode Italic Kursiv med kortkode - + Shortcode Strikethrough Gjennomstrek med kortkode - + Shortcode Underline Understrek med kortkode - + + Shortcode Highlight + + + + Shortcode Superscript Hevet skrift med kortkode - + Shortcode Subscript Senket skrift med kortkode @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Vis/skjul visningspanelet - + Comments Kommentarer - + Show Comments Vis kommentarer - + Synopsis Sammendrag - + Show Synopsis Comments Vis sammendrag @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Gå bakover - + Go Forward Gå fremover - + Reload Oppdater - + Close Lukk @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. Det har oppstått en feil under genereringen av visningen. - + Copy Kopier - + Select All Velg hele teksten - + Select Word Velg hele ordet - + Select Paragraph Velg hele avsnittet @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Skjul inaktive knagger - + References Referanser @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Enhetens navn - + Label Navn @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Navn - + Status Status - + Class Klasse - + Usage Formål - + Characters Tegn - + Words Ord - + Paragraphs Avsnitt @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Sett inn midlertidig tekst - + Insert Lorem Ipsum Text Sett inn Lorem Ipsum-tekst - + Number of paragraphs Antall avsnitt - + Randomise order Tilfeldig rekkefølge - + Insert Sett inn @@ -1309,103 +1333,103 @@ GuiMain - + novelWriter is ready ... novelWriter er klar ... - + You are now running novelWriter version {0}. Du kjører nå novelWriter versjon {0}. - + Please check the {0}release notes{1} for further details. Sjekk {0}utgivelsesnotater{1} for mer informasjon. - + Close the current project? Ønsker du å lukke dette prosjektet? - - + + Changes are saved automatically. Endringer lagres automatisk. - + Backup the current project? Ønsker du å ta sikkerhetskopi av dette prosjektet? - + The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway? Prosjektet er allerede åpent av en annen instans av novelWriter, og er derfor låst. Vil du overstyre denne låsen og fortsette likevel? - + 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. Merk: Hvis programmet eller datamaskinen tidligere krasjet, kan fil-låsen trygt overstyres. Det anbefales imidlertid ikke å overstyre den hvis prosjektet er åpent i en annen instans av novelWriter. Å gjøre det kan skape konflikter i prosjektets filer. - + The project was locked by the computer '{0}' ({1} {2}), last active on {3}. Prosjektet er låst av datamaskinen {0} ({1} {2}), siste registrerte aktivitet var {3}. - + The project index is outdated or broken. Rebuilding index. Prosjektets indeks er utdatert eller skadet. Bygger indeksen på nytt. - + Import File Importer fil - + Could not read file. The file must be an existing text file. Kunne ikke lese filen. Filen må eksistere fra før av. - + Please open a document to import the text file into. Vennligst åpne et dokument hvor teksten i filen kan importeres. - + Importing the file will overwrite the current content of the document. Do you want to proceed? Å importere filen vil overskrive all eksisterende tekst i dokumentet. Ønsker du å fortsette? - + Indexing completed in {0} ms Indekseringen tok {0} ms - + The project index has been successfully rebuilt. Prosjektets indeks har blitt bygget på nytt. - + Could not initialise the dialog. Kunne ikke initialisere dialogen. - + Do you want to exit novelWriter? Ønsker du å avslutte novelWriter? - + Some changes will not be applied until novelWriter has been restarted. Noen endringer vil ikke tas i bruk før neste gang novelWriter startes. - + 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}. Kunne ikke finne referansen til knagg {0}. Enten finnes den ikke, eller så er prosjektets indeks ikke oppdatert. Indeksen kan oppdateres fra Verktøy-menyen eller ved å trykke på {1}. @@ -1413,642 +1437,657 @@ GuiMainMenu - + &Project &Prosjekt - + Create or Open Project Opprett eller åpne prosjekt - + Save Project Lagre prosjektet - + Close Project Lukk prosjektet - + Project Settings Prosjektinnstillinger - + Novel Details Roman-detaljer - + Rename Item Endre navn - + Delete Item Slett enhet - + Empty Trash Tøm søppel - + Exit Avslutt - + &Document &Dokument - + Open Document Åpne dokument - + Save Document Lagre dokumentet - + Close Document Lukk dokumentet - + View Document Vis dokument - + Close Document View Lukk dokumentvisning - + Show File Details Vis filinformasjon - + Import Text from File Importer tekst fra fil - + &Edit &Rediger - + Undo Angre - + Redo Gjenopprett - + Cut Klipp - + Copy Kopier - + Paste Lim inn - + Select All Velg hele teksten - + Select Paragraph Velg hele avsnittet - + &View &Vis - + Go to Project Tree Gå til prosjekt-tre - + Go to Document Editor Gå til dokument-editor - + Go to Outline Gå til disposisjon - + Navigate Backward Navigere bakover - + Navigate Forward Navigere fremover - + Focus Mode Focus-modus - + Full Screen Mode Fullskjerm-modus - + &Insert Sett &inn - + Dashes Bindestreker - + Short Dash Kort bindestrek - + Long Dash Lang bindestrek - + Horizontal Bar Horisontal strek - + Figure Dash Tallstrek - + Quote Marks Sitattegn - + Left Single Quote Venstre, enkelt sitattegn - + Right Single Quote Høyre, enkelt sitattegn - + Left Double Quote Venstre, dobbelt sitattegn - + Right Double Quote Høyre, dobbelt sitattegn - + Alternative Apostrophe Alternativ apostrof - + General Punctuation Generell tegnsetting - + Ellipsis Ellipsis - + Prime Primtegn - + Double Prime Dobbelt primtegn - + White Spaces Mellomrom - + Non-Breaking Space Hardt mellomrom - + Thin Space Kort mellomrom - + Thin Non-Breaking Space Hardt, kort mellomrom - + Other Symbols Andre symboler - + List Bullet Kulepunkt - + Hyphen Bullet Bindestrekpunkt - + Flower Mark Blomsterpunkt - + Per Mille Promille - + Degree Symbol Gradertegn - + Minus Sign Minustegn - + Times Sign Gangetegn - + Division Sign Deletegn - + Tags and References Knagger og referanser - + Special Comments Andre kommentartyper - + Synopsis Comment Kommentar med sammendrag - + Short Description Comment Kommentar for kort beskrivelse - + Page Break and Space Sideskift og avstand - + Page Break Sideskift - + Vertical Space (Single) Vertikal avstand (enkel) - + Vertical Space (Multi) Vertikal avstand (flere) - + Placeholder Text Midlertidig tekst - + &Format &Formattering - + Bold Fet - + Italic Kursiv - + Strikethrough Gjennomstrek - + Wrap Double Quotes Sett i doble sitattegn - + Wrap Single Quotes Sett i enkle sitattegn - + More Formats ... Flere formater ... - + Bold (Shortcode) Fet (kortkode) - + Italics (Shortcode) Kursiv (kortkode) - + Strikethrough (Shortcode) Gjennomstrek (Kortkode) - + Underline Understrek - + + Highlight + + + + Superscript Hevet skrift - + Subscript Senket skrift - - - Header 1 (Partition) - Overskrift 1 (inndeling) - - Header 2 (Chapter) - Overskrift 2 (kapittel) + Heading 1 (Partition) + - Header 3 (Scene) - Overskrift 3 (scene) + Heading 2 (Chapter) + - Header 4 (Section) - Overskrift 4 (seksjon) + Heading 3 (Scene) + - + + Heading 4 (Section) + + + + Novel Title Boktittel - + Unnumbered Chapter Unumrert kapittel - + + Hard Scene + + + + Align Left Venstrejuster - + Align Centre Sentrer - + Align Right Høyrejuster - + Indent Left Innrykk fra venstre - + Indent Right Innrykk fra høyre - + Toggle Comment Veksle kommentar - + Toggle Ignore Text Aktiver/deaktiver ignorert tekst - + Remove Block Format Fjern formattering - - Convert Single Quotes - Konverter enkle sitattegn + + Replace Straight Single Quotes + - - Convert Double Quotes - Konverter doble sitattegn + + Replace Straight Double Quotes + - + Remove In-Paragraph Breaks Fjern linjeskift i avsnittet - + &Search &Søk - + Find Søk - + Replace Erstatt - + Find Next Finn neste - + Find Previous Finn forrige - + Replace Next Erstatt neste - + + Find in Project + + + + &Tools &Verktøy - + Check Spelling Stavekontroll - + Spell Check Language Språk for stavekontroll - + Default Ingen valg - + Re-Run Spell Check Kjør stavekontroll - + Project Word List Prosjektets ordliste - + Add Dictionaries Legg til ordbøker - + Rebuild Index Bygg indeks - + Backup Project Lag sikkerhetskopi av prosjektets mappe - + Build Manuscript Bygg manuskript - + Writing Statistics Statistikk - + Preferences Innstillinger - + &Help &Hjelp - + About novelWriter Om novelWriter - + About Qt5 Om Qt5 - + User Manual (Online) Brukermanual (på nett) - + User Manual (PDF) Brukermanual (PDF) - + Report an Issue (GitHub) Rapporter en feil (GitHub) - + Ask a Question (GitHub) Still et spørsmål (GitHub) - + The novelWriter Website novelWriters nettside @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Bygg manuskript - + Add New Build Legg til ny byggedefinisjon - + Delete Selected Build Slett valgte byggedefinisjon - + Edit Selected Build Rediger valgte byggedefinisjon - + Builds Byggedefinisjoner - + + Details + + + + + Outline + + + + Preview Forhåndsvis - + Print Skriv ut - + Build Bygg - + Close Lukk - - + + My Manuscript Mitt manuskript @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Bygg manuskript - + Output Format Dokumentformat - + Table of Contents Innholdsfortegnelse - + Path Filbane - + File Name Filnavn - + Reset file name to default Tilbakestill filnavn til standard - + Open Folder Åpne mappe - + &Build &Bygg - + Select Folder Velg mappe - + Output folder does not exist. Mappen eksisterer ikke. - + The file already exists. Do you want to overwrite it? Filen eksisterer allerede. Vil du overskrive den? @@ -2207,18 +2256,18 @@ GuiNovelDetails - - + + Novel Details Roman-detaljer - + Overview Oversikt - + Contents Innhold @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Innhold i {0} - + Novel Root Roman-mappe - + Refresh Oppdatér - + Last Column Siste kolonne - + Hidden Skjult - + Point of View Character Synsvinkel-karakter - + Focus Character Fokus-karakter - + Novel Plot Roman-plott - - + + Column Size Kolonnebredde - + More Options Flere valg - + Maximum column size in % Maksimal kolonnebredde i % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data Ingen meta-data @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Tittel - + Chapter Kapittel - + Scene Scene - + Section Seksjon - + Document Dokument - + Status Status - + Characters Tegn - + Words Ord - + Paragraphs Avsnitt - + Synopsis Sammendrag - + Title Details Oversikt - + Reference Tags Referanser @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Velg kolonner @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Disposisjon for - + Refresh Oppdatér - + Export CSV Eksporter CSV @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Lagre disposisjon som @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Innstillinger - + Search Søk @@ -2413,561 +2462,589 @@ Utseende - + Display language Visningspråk - - - + + + Requires restart to take effect. Krever omstart for å tre i kraft. - + Colour theme Fargetema - + General colour theme and icons. Generelt fargetema og ikoner. - + Application font family Skriftfamilie for program - + Application font size Skriftstørrelse for program - - + + pt pt - + Hide vertical scroll bars in main windows Skjul vertikale rullefelt i hovedvinduer - - + + Scrolling available with mouse wheel and keys only. Rulling kan bare gjøres med mus og tastatur. - + Hide horizontal scroll bars in main windows Skjul horisontale rullefelt i hovedvinduer - + Document Style Dokumentets stil - + Document colour theme Dokumentets fargetema - + Colour theme for the editor and viewer. Fargetema for redigering og visning. - + Document font family Dokumentets skriftfamilie - - - - + + + + Applies to both document editor and viewer. Gjelder både redigerings- og visningsvindu. - + Document font size Dokumentets skriftstørrelse - + Emphasise partition and chapter labels Fremhev filnavn for inndeling og kapitler - + Makes them stand out in the project tree. Får dem til å skille seg ut i prosjekttreet. - + Show full path in document header Vis full prosjektbane i dokumenthoder - + Add the parent folder names to the header. Legger til mappene foran dokumentets navn. - + Include project notes in status bar word count Inkluder prosjektnotater i antallet ord i statuslinjen - + Auto Save Automatisk lagring - + Save document interval Intervall for lagring av dokument - + How often the document is automatically saved. Hvor ofte dokumentet lagres automatisk. - - + + seconds sekunder - + Save project interval Intervall for lagring av prosjekt - + How often the project is automatically saved. Hvor ofte prosjektet lagres automatisk. - + Project Backup Sikkerhetskopi - + Browse Bla - + Backup storage location Filbane for sikkerhetskopi - - + + Path: {0} Filbane: {0} - + Run backup when the project is closed Lag sikkerhetskopi når prosjektet lukkes - + Can be overridden for individual projects in Project Settings. Kan overstyres fra individuelle prosjektinnstillinger. - + Ask before running backup Spør før sikkerhetskopi tas - + If off, backups will run in the background. Hvis avslått, tas sikkerhetskopi automatisk. - + Session Timer Sesjons-klokke - + Pause the session timer when not writing Sett klokka på pause når du er inaktiv - + Also pauses when the application window does not have focus. Pauses også når du ikke jobber i applikasjonens vindu. - + Editor inactive time before pausing timer Tid uten skriving før klokka settes på pause - + User activity includes typing and changing the content. Dette måler kun endringer i teksteditoren. - + minutes minutter - + Writing Skriving - + Text Flow Tekstflyt - + Maximum text width in "Normal Mode" Maks tekstbredde i "Normal-modus" - + Set to 0 to disable this feature. Sett til 0 for å deaktivere denne funksjonen. - - - - + + + + px px - + Maximum text width in "Focus Mode" Maks tekstbredde i "Fokus-modus" - + The maximum width cannot be disabled. Denne maks-bredden kan ikke deaktiveres. - + Hide document footer in "Focus Mode" Gjem dokumentets bunnlinje i "Fokus-modus" - + Hide the information bar in the document editor. Skjul informasjonslinjen i dokumenteditoren. - + Justify the text margins Juster tekstmarginer - + Minimum text margin Minimum tekstmargin - + Tab width Tabulatorens bredde - + The width of a tab key press in the editor and viewer. Hvor langt tabulatoren hopper i editor og visning. - + Text Editing Redigering av tekst - + Spell check language Språk for stavekontroll - + Available languages are determined by your system. Tilgjengelige språk hentes fra operativystemet ditt. - + Auto-select word under cursor Auto-velg ord under markør - + Apply formatting to word under cursor if no selection is made. Hvis ingen tekst er valgt, formatter ordet hvor markøren står. - + Show tabs and spaces Synlige tabulatorer og mellomrom - + Show line endings Synlige linjeender - + Editor Scrolling Tekstbehandler rulling - + Scroll past end of the document Tillat å rulle forbi slutten av dokumentet - + Also centres the cursor when scrolling. Sentrerer også markøren når man ruller. - + Typewriter style scrolling when you type Skrivemaskin-liknende rulling mens du skriver - + Keeps the cursor at a fixed vertical position. Holder markøren på samme sted vertikalt. - + Minimum position for Typewriter scrolling Minste avstand for skrivemaskin-rulling - + Percentage of the editor height from the top. I prosent fra toppen av editor-vinduet. - + Text Highlighting Fremheving - + Highlight text wrapped in quotes Fremhev tekst mellom sitattegn - - - + + + Applies to the document editor only. Gjelder bare for redigeringsvindu. - + Allow open-ended single quotes Tillat enkle sitattegn som ikke lukkes - + Highlight single-quoted line with no closing quote. Fremhev sitater som ikke er lukket i samme avsnitt. - + Allow open-ended double quotes Tillat doble sitattegn som ikke lukkes - + Highlight double-quoted line with no closing quote. Fremhev sitater som ikke er lukket i samme avsnitt. - + Add highlight colour to emphasised text Fremhev formattert tekst - + Highlight multiple or trailing spaces Fremhev flere eller etterfølgende mellomrom - + Text Automation Tekstautomatisering - + Auto-replace text as you type Erstatt mens du skriver - + Allow the editor to replace symbols as you type. Erstatt symboler mens du skriver. - + Auto-replace single quotes Erstatt enkle sitattegn - - + + Try to guess which is an opening or a closing quote. Prøv å gjette om det er et åpne- eller lukketegn. - + Auto-replace double quotes Erstatt doble sitattegn - + Auto-replace dashes Erstatt bindestreker - + Double and triple hyphens become short and long dashes. To og tre bindestreker erstattes med kort og lang bindestrek. - + Auto-replace dots Erstatt tre punktum - + Three consecutive dots become ellipsis. Tre punktum på rad erstattes med ellipsis. - + Insert non-breaking space before Sett inn hardt mellomrom foran - + Automatically add space before any of these symbols. Legg til mellomrom automatisk foran disse tegnene. - + Insert non-breaking space after Sett inn hardt mellomrom etter - + Automatically add space after any of these symbols. Legg til mellomrom automatisk etter disse tegnene. - + Use thin space instead Bruk tynt mellomrom istedet - + Inserts a thin space instead of a regular space. Sett inn et tynt mellomrom istedenfor et vanlig et. - + Quotation Style Sitattegn - + Single quote open style Enkelt sitat, venstre side - + The symbol to use for a leading single quote. Symbol for enkelt sitattegn før et sitat. - + Single quote close style Enkelt sitat, høyre side - + The symbol to use for a trailing single quote. Symbol for enkelt sitattegn etter et sitat. - + Double quote open style Dobbelt sitat, venstre side - + The symbol to use for a leading double quote. Symbol for dobbelt sitattegn før et sitat. - + Double quote close style Dobbelt sitat, høyre side - + The symbol to use for a trailing double quote. Symbol for dobbelt sitattegn etter et sitat. - + Backup Directory Mappe for sikkerhetskopi + + GuiProjectSearch + + + Project Search + + + + + Case Sensitive + Skill store/små bokstaver + + + + Whole Words Only + Kun hele ord + + + + RegEx Mode + RegEx-modus + + + + Search for + + + GuiProjectSettings - - + + Project Settings Prosjektinnstillinger - + Settings Innstillinger - + Status Status - + Importance Viktighet - + Auto-Replace Autoerstatt @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Prosjektets innhold - + Quick Links Hurtiglenker - + Move Up Flytt opp - + Move Down Flytt ned - + Add Item Legg til element - + Expand All Utvid alle - + Collapse All Lukk alle - + Empty Trash Tøm papirkurven - + More Options Flere valg @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active Aktiv - + Inactive Inaktiv - + Permanently delete {0} file(s) from Trash? Vil du slette {0} filer i papirkurven for godt? - + Did not find anywhere to add the file or folder! Fant ikke noe sted å legge til filen eller mappen! - + Cannot add new files or folders to the Trash folder. Kan ikke legge til nye filer eller mapper i papirkurvmappen. - + New Note Nytt notat - + New Chapter Nytt kapittel - + New Scene Ny scene - + New Document Nytt dokument - + New Folder Ny mappe - + There is currently no Trash folder in this project. Det er for øyeblikket ingen papirkurv i dette prosjektet. - + The Trash folder is already empty. Papirkurven er allerede tom. - + Move '{0}' to Trash? Vil du flytte filen "{0}" til søpla? - + Root folders can only be deleted when they are empty. Rotmapper kan bare slettes når de er tomme. - + Permanently delete '{0}'? Slette filen "{0}" for godt? - + Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent. Dra og slipp er bare tillatt for enkeltelementer, ikke hovedmapper, eller elementer under samme mappe eller dokument. - + No documents selected for merging. Ingen dokumenter er valgt for sammenslåing. - + Merged Sammenslått - - + + Could not write document content. Kan ikke skrive til dokumentet. - + Do you want to duplicate this document? Vil du duplisere dette dokumentet? - + Do you want to duplicate this item and all child items? Vil du duplisere dette elementet og alle underelementer? - + Could not duplicate all items. Kunne ikke duplisere alle elementer. - + There is nowhere to add item with name '{0}'. Fant ikke noe sted å legge til enheten med navn {0}'. @@ -3142,37 +3219,42 @@ GuiSideBar - + Project Tree View Prosjektoversikt - + Novel Tree View Romanoversikt - + + Project Search + + + + Novel Outline View Disposisjon - + Build Manuscript Bygg manuskript - + Novel Details Roman-detaljer - + Writing Statistics Statistikk - + Settings Oppsett @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Velkommen - + List Liste - + New Nytt - + Browse Bla gjennom - + Cancel Avbryt - + Create Opprett - + Open Åpne @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Prosjektets ordliste - + Import words from text file Importer ord fra tekstfil - + Export words to text file Eksporter ord til tekstfil - + Note: The import file must be a plain text file with UTF-8 or ASCII encoding. Merk: Importfilen må være en standard tekstfil med UTF-8 eller ASCII-koding. - + Import File Importer fil - + Export File Eksporter fil @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Statistikk - + Session Start Starttid - + Length Lengde - + Idle Inaktiv - + Words Ord - + Histogram Histogram - + Sum Totals Totalsummer - + Total Time: Totaltid: - + Idle Time: Inaktiv tid: - + Filtered Time: Filtrert tid: - + Novel Word Count: Ord i roman: - + Notes Word Count: Ord i notater: - + Total Word Count: Ord totalt: - + Filters Filtre - + Count novel files Tell i romanfiler - + Count note files Tell i notatfiler - + Hide zero word count Skjul null-verdier - + Hide negative word count Skjul negative verdier - + Group entries by day Samle rader per dag - + Show idle time Vis inaktiv som tid - + Word count cap for the histogram Maks antall ord for histogram - + Save As Lagre som - + JSON Data File (.json) JSON-format (.json) - + CSV Data File (.csv) CSV-format (.csv) - + JSON Data File JSON-format - + CSV Data File CSV-format - + Save Data As Lagre data som - + {0} file successfully written to: {0}-filen ble skrevet til: - + Failed to write {0} file. Kunne ikke skrive {0}-filen. @@ -3400,153 +3482,153 @@ NWProject - + Could not delete document file. Kunne ikke slette dokumentets fil. - + Not a known project file format. Ikke et kjent prosjektfilformat. - + Project file not found. Prosjektfilen finnes ikke. - + Failed to open project. Kunne ikke åpne prosjektet. - + Unknown Ukjent - + Project file does not appear to be a novelWriterXML file. Prosjektfilen later ikke til å være en novelWriterXML-fil. - + 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}. Prosjektfilen har et ukjent eller ikke støttet format, og kan ikke åpnes med denne versjonen av novelWriter. Prosjektet ble lagret av novelWriter versjon {0}. - + Failed to parse project xml. Kunne ikke lese prosjektets xml-data. - + 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? Filformatet til prosjektet ditt er i ferd med å bli oppdatert. Hvis du fortsetter, vil ikke eldre versjoner av novelWriter lenger kunne åpne dette prosjektet. Fortsette? - + 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? Dette prosjektet ble lagret av en nyere versjon av novelWriter, versjon {0}. Dette er versjon {1}. Hvis du ønsker å fortsette med å åpne prosjektet, kan noen av innstillingene bli borte, men selve prosjektet vil være i orden. Vil du fortsatt åpne prosjektet? - + Recovered Gjennopprettet - + Found {0} orphaned file(s) in the project. {1} file(s) were recovered. {0} foreldreløse fil(er) ble funnet i prosjektet. {1} fil(er) ble gjenopprettet. - + Opened Project: {0} Åpnet prosjekt: {0} - + There is no project open. Det er ikke noe prosjekter åpent. - + Failed to save project. Kunne ikke lagre prosjektet. - + Saved Project: {0} Lagret prosjekt: {0} - + Backing up project ... Lager sikkerhetskopi ... - + Cannot backup project because no project name is set. Please set a Project Name in Project Settings. Kan ikke ta sikkerhetskopi av prosjektet da prosjektnavn ikke er satt. Du må først sette et prosjektnavn i Prosjektinnstillinger. - + Could not create backup folder. Kunne ikke lage mappe til sikkerhetskopi. - + Created a backup of your project of size {0}B. Opprettet en sikkerhetskopi av prosjektet med størrelse {0}B. - + Path: {0} Filbane: {0} - + Could not write backup archive. Kunne ikke lage sikkerhetskopi. - + Project backed up to '{0}' Sikkerhetskopi skrevet til '{0}' - - + + New Ny - + Note Notat - + Draft Utkast - + Finished Ferdig - + Minor Mindre - + Major Større - + Main Hoved @@ -3562,89 +3644,89 @@ ProjectBuilder - + The target folder is not empty. Please choose another folder. Den valgte mappen er ikke tom. Vennligst velg en annen mappe. - + An error occurred while trying to create the project. Det oppsto en feil under forsøk på å opprette prosjektet. - + New Project Nytt prosjekt - + Title Page Tittelside - + By Av - + Summary of the chapter. Sammendrag av kapittelet. - + Summary of the scene. Sammendrag av scenen. - + A short description. En kort beskrivelse. - + Chapter {0} Kapittel {0} - - + + Scene {0} Scene {0} - + Main Plot Hovedplott - + Protagonist Protagonist - + Main Location Hovedlokasjon - - + + The target folder already exists. Please choose another folder. Den valgte mappen finnes allerede. Vennligst velg en annen mappe. - + Could not copy project files. Kunne ikke kopiere prosjektfiler. - + Failed to create a new example project. Kunne ikke lage nytt eksempel-prosjekt. - + Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation. Kunne ikke lage nytt eksempel-prosjekt. Kunne ikke finne de nødvendige filene. De ser ut til å mangle i denne installasjonen. @@ -3840,17 +3922,17 @@ SharedData - + novelWriter Project File or Zip File novelWriter prosjektfil eller Zip-fil - + novelWriter Project File novelWriter prosjektfil - + Open Project Åpne prosjekt @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Innholdsfortegnelse - + Title Tittel - + Words Ord - + Pages Sider - + Page Side - + Progress Fremdrift - + Words per page Ord per side - + First page offset Første side forskjøvet - + Chapters on odd pages Kapittel på oddetall-sider - + Untitled Uten tittel - + END SLUTT @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Innstilling - + Value Verdi - + Name Navn - + Selection Utvalg - + Title Tittel + + + Hidden + Skjult + _FilterTab @@ -4012,12 +4099,12 @@ Tilbakestill til standard - + Mark selection as Merk utvalg som - + Select Root Folders Velg hovedmapper @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Informasjon - + Warning Advarsel - + Error Feil - + Question Spørsmål @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Skjul - - + + Editing: {0} Redigerer: {0} - - + + None Ingen - + Title Tittel - + Chapter Number Kapittelnummer - + Chapter Number (Word) Kapittelnummer (som ord) - + Chapter Number (Upper Case Roman) Kapittelnummer (store romertall) - + Chapter Number (Lower Case Roman) Kapittelnummer (små romertall) - + Scene Number (In Chapter) Scenenummer (i kapittel) - + Scene Number (Absolute) Scenenummer (absolutt) - + Point of View Character Synsvinkel-karakter - + Focus Character Fokus-karakter - + Insert Sett inn - + Apply Anvend + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Sideskift + _NewProjectForm - + Required Påkrevd - + Optional Valgfritt - + Create a fresh project Opprett et nytt prosjekt - + Create an example project Opprett et eksempelprosjekt - + Copy an existing project Kopier et eksisterende prosjekt - + Project Name Prosjektnavn - + Author Forfatter - + Project Path Filbane - + Prefill Project Forhåndsfyll prosjektet - + Set to 0 to only add scenes Satt til 0 for bare å legge til scener - + Add {0} chapter documents Legg til {0} kapitteldokumenter - + Add {0} scene documents (to each chapter) Legg til {0} scenedokumenter (til hvert kapittel) - + Add a folder for plot notes Legg til en mappe for plott-notater - + Add a folder for character notes Legg til en mappe for karakterer - + Add a folder for location notes Legg til en mappe for lokasjoner - + Add example notes to the above Lag eksempelfiler til ovennevnte - + Chapters and Scenes Kapittel og scener - + Project Notes Prosjektnotater - + Create New Project Opprett nytt prosjekt - + Select Project Folder Velg prosjektmappe - + Fresh Project Nytt prosjekt - + Example Project Eksempelprosjekt - + Template: {0} Mal: {0} @@ -4242,7 +4347,7 @@ _NewProjectPage - + A project name is required. Vennligst oppgi et prosjektnavn. @@ -4250,27 +4355,27 @@ _OpenProjectPage - + The project path is not reachable. Prosjektets bane er ikke tilgjengelig. - + Path Filbane - + Remove '{0}' from the recent projects list? The project files will not be deleted. Vil du fjerne {0} fra listen over tidligere åpnede prosjekter? Selve prosjektfilene blir ikke slettet. - + Open Project Åpne prosjekt - + Remove Project Fjern prosjekt @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Prosjekt - - + + Name Navn - + Revisions Revisjoner - + Editing Time Redigeringstid - - + + Word Count Antall ord - + In Novels I romaner - + In Notes I notater - + Selected Novel Velg roman - + Chapters Kapitler - + Scenes Scener @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Trykk på "Forhåndsvisning"-knappen for å generere ... - + Processing ... Behandler ... - + Done Ferdig - + Unknown Ukjent - + Built Bygget @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Antall ord - + Last Opened Sist åpnet @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Erstatt automatisk for forhåndsvisning og manuskript - + Keyword Nøkkelord - + Replace With Erstatt med - + Select item to edit Velg enhet å redigere - + Save Lagre @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Prosjektnavn - + Changing this will affect the backup path. Å endring denne vil påvirke banen til sikkerhetskopier. - + Author(s) Forfatter(e) - - + + Only used when building the manuscript. Brukes kun ved bygging av manuskript. - + Project language Prosjektets språk - + Default Ingen valg - + Spell check language Språk for stavekontroll - - + + Overrides main preferences. Overstyrer valg i innstillinger. - + Disable backup on close Ikke lag sikkerhetskopi når prosjektet lukkes + + _StatsWidget + + + + Words + Ord + + + + + Characters + Tegn + + + + Words in Headings + + + + + Words in Text + + + + + Headings + Overskrifter + + + + Paragraphs + Avsnitt + + + + Characters in Headings + + + + + Characters in Text + + + + + Characters, No Spaces + + + + + Characters in Headings, No Spaces + + + + + Characters in Text, No Spaces + + + _StatusPage - + Novel Document Status Levels Statusnivåer i roman-filer - + Project Note Importance Levels Viktighetsnivåer i notatfiler - + Label Navn - + Usage Bruk - + Select item to edit Velg enhet å redigere - + Colour Farge - + Save Lagre - + Select Colour Velg farge - + New Item Legg til - + Cannot delete a status item that is in use. Kan ikke slette status som er i bruk. - + Not in use Ikke i bruk - + Used once Brukt ett sted - + Used by {0} items Brukt {0} steder @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Tøm papirkurven - + Rename Endre navn - + Open Document Åpne dokument - + View Document Vis dokument - + Create New ... Opprett ny ... - + Rename to Heading Endre navn til overskriften - + Set Active to ... Sett aktiv til ... - + Toggle Active Aktiver/deaktiver - + Set Status to ... Sett status til ... - - + + Manage Labels ... Administrer etiketter ... - + Set Importance to ... Sett viktighetsnivå til ... - + Transform ... Endre ... - + Convert to {0} Konverter til {0} - + Merge Child Items into Self Lim inn underelementer i dette dokumentet - + Merge Child Items into New Lim inn underelementer i nytt dokument - + Merge Documents in Folder Slå sammen dokumenter i mappen - - Split Document by Headers - Del dokumentet etter overskrift + + Split Document by Headings + - + Expand All Utvid alle - + Collapse All Lukk alle - - Duplicate from Here - Dupliser herfra + + Duplicate + - - Duplicate Document - Dupliser dokument - - - - + + Delete Permanently Slett permanent - - + + Move to Trash Flytt til papirkurv - + Move {0} items to Trash? Vil du flytte {0} filer til papirkurven? - + Do you want to convert the folder to a {0}? This action cannot be reversed. Vil du konvertere mappen til et {0}? Denne handlingen kan ikke angres. @@ -4654,7 +4814,7 @@ _UpdatableMenu - + From Template Fra mal @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Dokument - + First Heading Første overskrift @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Knagg - + Importance Viktighet - + Document Dokument - + Heading Overskrift - + Short Description Kort beskrivelse diff --git a/i18n/nw_nl_NL.ts b/i18n/nw_nl_NL.ts index 9aae253c..5b913a16 100644 --- a/i18n/nw_nl_NL.ts +++ b/i18n/nw_nl_NL.ts @@ -4,215 +4,235 @@ Builds - + Document Filters Document Filters - + Novel Documents Roman bestanden - + Project Notes Projectnotities - + Inactive Documents Inactieve documenten - + Headings Koppen - - Title Headings - Titel kopteksten + + Partition Format + - - Chapter Headings - Hoofdstuk koppen + + Chapter Format + - - Unnumbered Headings - Ongenummerde koppen + + Unnumbered Format + - - Scene Headings - Scène Koppen + + Scene Format + - - Section Headings - Sectie koppen + + Hard Scene Format + - - Hide Scene Headings - Verberg scènekoppen + + Section Format + - - Hide Section Headings - Verberg sectie koppen - - - + Text Content Tekstinhoud - + Include Synopsis Inclusief synopsis - + Include Comments Inclusief opmerkingen - + Include Keywords Inclusief trefwoorden - + Include Body Text Inclusief inhoudstekst - + + Ignore These Keywords + + + + Insert Content Inhoud invoegen - + Add Titles for Notes Titels voor notities toevoegen - + Text Format Tekstformaat - + Font Family Lettertypefamilie - + Font Size Lettertypegrootte - + Line Height Regelhoogte - + Text Options Tekstopties - + Justify Text Margins Tekstmarges uitlijnen - + Replace Unicode Characters Unicode karakters vervangen - + Replace Tabs with Spaces Vervang tabs door spaties - + Page Layout Pagina lay-out - + Unit Eenheid - + Page Size Paginagrootte - + Page Width Paginabreedte - + Page Height Paginahoogte - + Top Margin Bovenmarge - + Bottom Margin Ondermarge - + Left Margin Linkermarge - + Right Margin Rechtermarge - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Voeg markeerkleuren toe - + Page Header Pagina kop - + Page Counter Offset Pagina teller offset - + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles CSS stijlen toevoegen + + + Preserve Tab Characters + + Common @@ -290,375 +310,375 @@ Constant - - - + + + None Geen - + Novel Roman - - + + Plot Plot - - + + Characters Personages - - + + Locations Locaties - - + + Timeline Tijdslijn - - + + Objects Objecten - - + + Entities Entiteiten - - - + + + Custom Custom - + Archive Archief - + Templates Templates - + Trash Prullenbak - - + + Novel Document Roman Document - - + + Project Note Project Notitie - + Root Folder Hoofdmap - + Folder Map - + Novel Title Page Roman Titel Pagina - + Novel Chapter Roman Hoofdstuk - + Novel Scene Roman Scene - + Novel Section Roman Sectie - + Tag Label - + Point of View Perspectief - - + + Focus Focus - + Title Titel - + Level Niveau - + Document Document - + Line Regel - + Chars Tekens - + Words Woorden - + Pars Par. - + POV Perspectief - + Synopsis Synopsis - + Open Document (.odt) Open Document (.odt) - + Flat Open Document (.fodt) Plat Open Document (.fodt) - + novelWriter HTML (.html) novelWriter HTML (.html) - + novelWriter Markup (.txt) novelWriter Opmaak (.txt) - + Standard Markdown (.md) Standaard Markdown (.md) - + Extended Markdown (.md) Uitgebreide Markdown (.md) - + JSON + novelWriter HTML (.json) JSON + novelWriter HTML (.json) - + JSON + novelWriter Markup (.json) JSON + novelWriter Opmaak (.json) - + Text files Tekst bestanden - + Markdown files Markdown bestanden - + novelWriter files novelWriter bestanden - + CSV files CSV bestanden - + All files Alle bestanden - + Millimetres Millimeters - + Centimetres Centimeters - + Inches Inches - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark Recht enkel aanhalingsteken - + Straight double quotation mark Recht dubbel aanhalingsteken - + Left single quotation mark Linker enkel aanhalingsteken - + Right single quotation mark Rechter enkel aanhalingsteken - + Single low-9 quotation mark Enkel lage-9 aanhalingsteken - + Single high-reversed-9 quotation mark Enkel hoog-omgekeerd-9 aanhalingsteken - + Left double quotation mark Linker dubbel aanhalingsteken - + Right double quotation mark Rechter dubbel aanhalingsteken - + Double low-9 quotation mark Dubbel lage-9 aanhalingsteken - + Double high-reversed-9 quotation mark Dubbel hoog-omgekeerd-9 aanhalingsteken - + Double low-reversed-9 quotation mark Dubbel laag-omgekeerd-9 aanhalingsteken - + Single left-pointing angle quotation mark Enkel links-wijzende hoek aanhalingsteken - + Single right-pointing angle quotation mark Enkel rechts-wijzende hoek aanhalingsteken - + Double left-pointing angle quotation mark Dubbel links-wijzende hoek aanhalingsteken - + Double right-pointing angle quotation mark Dubbel rechts-wijzende hoek aanhalingsteken - + Left corner bracket Linker hoekbeugel - + Right corner bracket Rechter hoekbeugel - + Left white corner bracket Linker holle hoekbeugel - + Right white corner bracket Rechter holle hoekbeugel @@ -684,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Manuscript bouw instellingen - + Name Naam - + Selection Selectie - + Headings Koppen - + Content Inhoud - + Format Formaat - + Output Uitvoer @@ -723,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Woordenboeken toevoegen - + Download a dictionary from one of the links, and add it below. Download een woordenboek van een van de links, en voeg het hieronder toe. - + Add Dictionary Woordenboek toevoegen - + Dictionary install location Woordenboek installatie lokatie - + Additional dictionaries found: {0} Extra woordenboeken gevonden: {0} - + Free or Libre Office extension Free of Libre Office extensie - + Browse Files Bestanden bekijken - + Could not process dictionary file Woordenboekbestand kan niet worden verwerkt - + Added: {0} [{1}B] Toegevoegd: {0} [{1}B] @@ -771,55 +791,50 @@ GuiDocEditFooter - - Status - Status - - - + Line: {0} ({1}) Regel: {0} ({1}) - + Words: {0} ({1}) Woorden: {0} ({1}) - - Document size is {0} bytes - Document grootte is {0} bytes - - - + Words: {0} selected Woorden: {0} geselecteerd - - Character count: {0} - Aantal tekens: {0} + + Status + Status GuiDocEditHeader - + Toggle Tool Bar Toon/verberg werkbalk - + + Outline + + + + Search Zoek - + Toggle Focus Mode Schakel focus modus in/uit - + Close Sluiten @@ -827,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Zoek - - Replace - Vervang - - - + Case Sensitive Hoofdlettergevoelig - + Whole Words Only Alleen hele woorden - + RegEx Mode RegEx modus - + Loop Search Zoekopdracht lus - + Search Next File Doorzoek volgend bestand - + Preserve Case Behoud hoofd/kleine letters - + Close Search Zoekopdracht afsluiten - + Find in current document Zoeken in huidige document - + Find and replace in current document Zoek en vervang in huidig document @@ -886,150 +905,145 @@ GuiDocEditor - + Opened Document: {0} Geopend document: {0} - + This document has been changed outside of novelWriter while it was open. Overwrite the file on disk? Dit document is gewijzigd buiten de openstaande novelWriter instantie. Het bestand op de schijf overschrijven? - + Could not save document. Kon document niet opslaan. - + Saved Document: {0} Document opgeslagen: {0} - + Spell checking requires the package PyEnchant. It does not appear to be installed. Spellingscontrole vereist het pakket PyEnchant. Het lijkt niet geïnstalleerd te zijn. - + Spell check complete Spellingscontrole compleet - + Document Details Document details - + Created: {0} Aangemaakt: {0} - + Updated: {0} Bijgewerkt: {0} - + File Location: {0} Bestandslocatie: {0} - + Set as Document Name Instellen als documentnaam - + Follow Tag Volg label - + Create Note for Tag Creëer notitie voor label - + Cut Knippen - + Copy Kopiëren - + Paste Plakken - + Select All Selecteer alles - + Select Word Selecteer woord - + Select Paragraph Selecteer paragraaf - + Spelling Suggestion(s) Spelling suggestie(s) - + No Suggestions Geen suggesties - + Add Word to Dictionary Woord toevoegen aan woordenboek - + Please select some text before calling replace quotes. Selecteer a.u.b. een tekst voordat u vervang aanhalingstekens aanroept. - + Do you want to create a new project note for the tag '{0}'? Wilt u een nieuwe project notitie maken voor het label '{0}'? - - - Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first. - Kon notitie niet maken in een bron folder voor '{0}'. Als er geen bestaat, moet u deze eerst aanmaken. - GuiDocMerge - + Merge Documents Documenten Samenvoegen - + Documents to Merge Documenten om samen te voegen - + Drag and drop items to change the order, or uncheck to exclude. Slepen en neerzetten van items om de volgorde te wijzigen, of deselecteren om uit te sluiten. - + Move merged items to Trash Verplaats samengevoegde items naar Prullenbak @@ -1037,52 +1051,52 @@ GuiDocSplit - + Split Document Splits Document - - Document Headers - Document Koppen + + Document Headings + - + Select the maximum level to split into files. Selecteer het maximale niveau om in bestanden op te splitsen. - - - Split on Header Level 1 (Title) - Splits op kop niveau 1 (Titel) - - - - Split up to Header Level 2 (Chapter) - Opsplitsen tot kop niveau 2 (Hoofdstuk) - - Split up to Header Level 3 (Scene) - Opsplitsen tot kop niveau 3 (Scène) + Split on Heading Level 1 (Partition) + - Split up to Header Level 4 (Section) - Opsplitsen tot kop niveau 4 (Sectie) + 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 folder Opsplitsen in een nieuwe map - + Create document hierarchy Maak documenthiërarchie aan - + Move split document to Trash Gesplitst document verplaatsen naar Prullenbak @@ -1090,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Markdown vet - + Markdown Italic Markdown cursief - + Markdown Strikethrough Markdown doorstrepen - + Shortcode Bold Korte code vet - + Shortcode Italic Korte code cursief - + Shortcode Strikethrough Korte code doorstrepen - + Shortcode Underline Korte code onderstrepen - + + Shortcode Highlight + + + + Shortcode Superscript Korte code superscript - + Shortcode Subscript Korte code subscript @@ -1138,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Toon/verberg bekijker paneel - + Comments Opmerkingen - + Show Comments Opmerkingen weergeven - + Synopsis Synopsis - + Show Synopsis Comments Toon synopsis commentaren @@ -1166,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward Ga terug - + Go Forward Ga vooruit - + Reload Herladen - + Close Sluiten @@ -1189,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. Er is een fout opgetreden tijdens het genereren van het voorbeeld. - + Copy Kopiëren - + Select All Selecteer alles - + Select Word Selecteer woord - + Select Paragraph Selecteer paragraaf @@ -1217,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Verberg inactieve labels - + References Referenties @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label Item Label - + Label Label @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label Label - + Status Status - + Class Klasse - + Usage Gebruik - + Characters Tekens - + Words Woorden - + Paragraphs Paragrafen @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Plaatshouder Tekst Invoegen - + Insert Lorem Ipsum Text Lorem Ipsum Tekst Invoegen - + Number of paragraphs Aantal paragrafen - + Randomise order Volgorde willekeurig maken - + Insert Invoegen @@ -1309,103 +1333,103 @@ GuiMain - + novelWriter is ready ... novelWriter is klaar ... - + You are now running novelWriter version {0}. U gebruikt nu novelWriter versie {0}. - + Please check the {0}release notes{1} for further details. Controleer a.u.b. de {0}release notes{1} voor verdere details. - + Close the current project? Sluit het huidige project? - - + + Changes are saved automatically. Wijzigingen worden automatisch opgeslagen. - + Backup the current project? Reservekopie maken van het huidige project? - + The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway? Het project is al geopend door een andere instantie van novelWriter, en is daarom vergrendeld. Vergrendeling negeren en toch verder gaan? - + 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. Opmerking: als het programma of de computer eerder is vastgelopen, kan de vergrendeling veilig worden genegeerd. Het wordt echter niet aanbevolen als het project open is in een andere instantie van novelWriter. Toch doen kan het project beschadigen. - + The project was locked by the computer '{0}' ({1} {2}), last active on {3}. Het project is vergrendeld door de computer '{0}' ({1} {2}), voor het laatst actief op {3}. - + The project index is outdated or broken. Rebuilding index. De projectindex is verouderd of gebroken. De index wordt herbouwd. - + Import File Importeer bestand - + Could not read file. The file must be an existing text file. Kon het bestand niet lezen. Het bestand moet een bestaand tekst bestand zijn. - + Please open a document to import the text file into. Open a.u.b. een document om het tekst bestand in te importeren. - + Importing the file will overwrite the current content of the document. Do you want to proceed? Het importeren van het bestand overschrijft de huidige inhoud van het document. Wilt u doorgaan? - + Indexing completed in {0} ms Indexeren voltooid in {0} ms - + The project index has been successfully rebuilt. De projectindex is succesvol opnieuw opgebouwd. - + Could not initialise the dialog. Kon de dialoog niet initialiseren. - + Do you want to exit novelWriter? Wil je novelWriter afsluiten? - + Some changes will not be applied until novelWriter has been restarted. Sommige wijzigingen zullen niet worden toegepast totdat novelWriter opnieuw is gestart. - + 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}. Kon de verwijzing voor tag '{0}' niet vinden. Hij bestaat niet of de index is verouderd. De index kan worden bijgewerkt in het Hulpmiddelen menu, of door op {1} te drukken. @@ -1413,642 +1437,657 @@ GuiMainMenu - + &Project &Project - + Create or Open Project Creëer of open project - + Save Project Project opslaan - + Close Project Sluit project - + Project Settings Project instellingen - + Novel Details Roman details - + Rename Item Item Hernoemen - + Delete Item Item verwijderen - + Empty Trash Leeg prullenbak - + Exit Afsluiten - + &Document &Document - + Open Document Open document - + Save Document Document opslaan - + Close Document Sluit document - + View Document Document weergeven - + Close Document View Sluit document weergave - + Show File Details Toon bestandsdetails - + Import Text from File Tekst importeren uit bestand - + &Edit &Bewerken - + Undo Ongedaan maken - + Redo Opnieuw uitvoeren - + Cut Knippen - + Copy Kopiëren - + Paste Plakken - + Select All Selecteer alles - + Select Paragraph Selecteer paragraaf - + &View &Weergave - + Go to Project Tree Ga naar projectboom - + Go to Document Editor Ga naar document tekstbewerker - + Go to Outline Ga naar omlijning - + Navigate Backward Navigeer achteruit - + Navigate Forward Navigeer vooruit - + Focus Mode Focus modus - + Full Screen Mode Volledig scherm modus - + &Insert &Invoegen - + Dashes Streepjes - + Short Dash Korte streep - + Long Dash Lange streep - + Horizontal Bar Horizontale lijn - + Figure Dash Figuur streep - + Quote Marks Aanhalingstekens - + Left Single Quote Enkel Aanhalingsteken Links - + Right Single Quote Enkel Aanhalingsteken Rechts - + Left Double Quote Dubbel Aanhalingsteken Links - + Right Double Quote Dubbele Aanhalingstekens Rechts - + Alternative Apostrophe Alternatieve Apostrof - + General Punctuation Algemene leestekens - + Ellipsis Ellips - + Prime Priem - + Double Prime Dubbele priem - + White Spaces Witruimtes - + Non-Breaking Space Vaste spatie - + Thin Space Dunne spatie - + Thin Non-Breaking Space Dunne vaste spatie - + Other Symbols Andere symbolen - + List Bullet Lijst opsommingsteken - + Hyphen Bullet Koppelteken opsommingsteken - + Flower Mark Bloem markering - + Per Mille Per mille - + Degree Symbol Graden symbool - + Minus Sign Minus teken - + Times Sign Vermenigvuldigingsteken - + Division Sign Deelteken - + Tags and References Tags en Referenties - + Special Comments Speciale Opmerkingen - + Synopsis Comment Commentaar Synopsis - + Short Description Comment Korte beschrijving commentaar - + Page Break and Space Pagina-einde en Spatie - + Page Break Nieuwe pagina - + Vertical Space (Single) Verticale spatie (enkel) - + Vertical Space (Multi) Verticale spatie (multi) - + Placeholder Text Plaatshouder tekst - + &Format Opmaak - + Bold Vet - + Italic Cursief - + Strikethrough Doorhalen - + Wrap Double Quotes Dubbele aanhalingstekens omwikkelen - + Wrap Single Quotes Enkel aanhalingsteken omwikkelen - + More Formats ... Meer formaten... - + Bold (Shortcode) Vet (korte code) - + Italics (Shortcode) Cursief (korte code) - + Strikethrough (Shortcode) Doorstreep (korte code) - + Underline Onderstrepen - + + Highlight + + + + Superscript Superscript - + Subscript Subscript - - - Header 1 (Partition) - Kop 1 (Partitie) - - Header 2 (Chapter) - Kop 2 (Hoofdstuk) + Heading 1 (Partition) + - Header 3 (Scene) - Kop 3 (Scène) + Heading 2 (Chapter) + - Header 4 (Section) - Kop 4 (Sectie) + Heading 3 (Scene) + - + + Heading 4 (Section) + + + + Novel Title Roman titel - + Unnumbered Chapter Ongenummerd hoofdstuk - + + Hard Scene + + + + Align Left Links uitlijnen - + Align Centre Centreren - + Align Right Rechts uitlijnen - + Indent Left Links inspringen - + Indent Right Rechts inspringen - + Toggle Comment Opmerking in-/uitschakelen - + Toggle Ignore Text Schakel tekst negeren - + Remove Block Format Verwijder blokformaat - - Convert Single Quotes - Converteer enkele aanhalingstekens + + Replace Straight Single Quotes + - - Convert Double Quotes - Converteer dubbele aanhalingstekens + + Replace Straight Double Quotes + - + Remove In-Paragraph Breaks Verwijder in-paragraaf onderbrekingen - + &Search &Zoeken - + Find Vinden - + Replace Vervangen - + Find Next Volgende zoeken - + Find Previous Vorige zoeken - + Replace Next Vervang volgende - + + Find in Project + + + + &Tools &Hulpmiddelen - + Check Spelling Spelling controleren - + Spell Check Language Taal voor spellingscontrole - + Default Standaard - + Re-Run Spell Check Spellingscontrole opnieuw uitvoeren - + Project Word List Project woordenlijst - + Add Dictionaries Woordenboeken toevoegen - + Rebuild Index Index opnieuw opbouwen - + Backup Project Project reservekopie maken - + Build Manuscript Bouw manuscript - + Writing Statistics Schrijf statistieken - + Preferences Voorkeuren - + &Help &Help - + About novelWriter Over novelWriter - + About Qt5 Over Qt5 - + User Manual (Online) Gebruikershandleiding (Online) - + User Manual (PDF) Gebruikershandleiding (PDF) - + Report an Issue (GitHub) Meld een probleem (GitHub) - + Ask a Question (GitHub) Stel een vraag (GitHub) - + The novelWriter Website De novelWriter website @@ -2095,53 +2134,63 @@ GuiManuscript - + Build Manuscript Bouw manuscript - + Add New Build Voeg nieuw bouwwerk toe - + Delete Selected Build Verwijder geselecteerd bouwwerk - + Edit Selected Build Bewerk geselecteerd bouwwerk - + Builds Bouwwerken - + + Details + + + + + Outline + + + + Preview Voorvertoning - + Print Afdrukken - + Build Bouwen - + Close Sluiten - - + + My Manuscript Mijn manuscript @@ -2149,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Bouw manuscript - + Output Format Uitvoerformaat - + Table of Contents Inhoudsopgave - + Path Pad - + File Name Bestandsnaam - + Reset file name to default Herstel bestandsnaam naar standaard - + Open Folder Map openen - + &Build &Bouwen - + Select Folder Selecteer map - + Output folder does not exist. Uitvoermap bestaat niet. - + The file already exists. Do you want to overwrite it? Het bestand bestaat al. Wil je het overschrijven? @@ -2207,18 +2256,18 @@ GuiNovelDetails - - + + Novel Details Roman details - + Overview Overzicht - + Contents Inhoud @@ -2226,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Omlijning van {0} - + Novel Root Roman Hoofdmap - + Refresh Verversen - + Last Column Laatste Kolom - + Hidden Verborgen - + Point of View Character Perspectief Karakter - + Focus Character Focus Karakter - + Novel Plot Roman Plot - - + + Column Size Kolom grootte - + More Options Meer Opties - + Maximum column size in % Maximum kolom grootte in % @@ -2285,7 +2334,7 @@ GuiNovelTree - + No meta data Geen metadata @@ -2293,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Titel - + Chapter Hoofdstuk - + Scene Scène - + Section Sectie - + Document Document - + Status Status - + Characters Tekens - + Words Woorden - + Paragraphs Paragrafen - + Synopsis Synopsis - + Title Details Titel Details - + Reference Tags Referentie Tags @@ -2358,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Selecteer Kolommen @@ -2366,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Omlijning van - + Refresh Verversen - + Export CSV Exporteren als CSV @@ -2384,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Sla omlijning op als @@ -2392,13 +2441,13 @@ GuiPreferences - - + + Preferences Voorkeuren - + Search Zoek @@ -2413,561 +2462,589 @@ Uiterlijk - + Display language Weergavetaal - - - + + + Requires restart to take effect. Vereist herstart om van kracht te worden. - + Colour theme Kleurenthema - + General colour theme and icons. Algemene kleuren thema en iconen. - + Application font family Applicatie lettertype familie - + Application font size Applicatie lettergrootte - - + + pt pt - + Hide vertical scroll bars in main windows Verticale schuifbalken in hoofdvensters verbergen - - + + Scrolling available with mouse wheel and keys only. Scrollen alleen beschikbaar met muiswiel en toetsen. - + Hide horizontal scroll bars in main windows Verberg horizontale schuifbalken in hoofdvensters - + Document Style Document stijl - + Document colour theme Document kleurenthema - + Colour theme for the editor and viewer. Kleur thema voor de tekstbewerker en kijker. - + Document font family Lettertype familie document - - - - + + + + Applies to both document editor and viewer. Van toepassing op zowel de documentbewerker als de kijker. - + Document font size Lettergrootte document - + Emphasise partition and chapter labels Partitie en hoofdstuk labels benadrukken - + Makes them stand out in the project tree. Laat ze opvallen in de projectboom. - + Show full path in document header Volledig pad in document kop weergeven - + Add the parent folder names to the header. Voeg de bovenliggende mapnamen toe aan de kop. - + Include project notes in status bar word count Project notities opnemen in de statusbalk woord telling - + Auto Save Automatisch opslaan - + Save document interval Document opslag interval - + How often the document is automatically saved. Hoe vaak het document automatisch wordt opgeslagen. - - + + seconds seconden - + Save project interval Project opslag interval - + How often the project is automatically saved. Hoe vaak het project automatisch wordt opgeslagen. - + Project Backup Project Reservekopie - + Browse Blader - + Backup storage location Opslaglocatie voor reservekopie - - + + Path: {0} Pad: {0} - + Run backup when the project is closed Reservekopie maken wanneer het project wordt gesloten - + Can be overridden for individual projects in Project Settings. Kan voor individuele projecten overschreven worden in Projectinstellingen. - + Ask before running backup Vraag voor het maken van een reservekopie - + If off, backups will run in the background. Indien uit, worden reservekopieën op de achtergrond gemaakt. - + Session Timer Sessie Timer - + Pause the session timer when not writing De sessie timer pauzeren wanneer niet geschreven wordt - + Also pauses when the application window does not have focus. Pauzeert ook wanneer het toepassingsvenster geen focus heeft. - + Editor inactive time before pausing timer Inactieve tekstbewerker duur voordat timer wordt gepauzeerd - + User activity includes typing and changing the content. Gebruikersactiviteit omvat typen en het wijzigen van de inhoud. - + minutes minuten - + Writing Schrijven - + Text Flow Tekst Flow - + Maximum text width in "Normal Mode" Maximale tekstbreedte in "Normale Modus" - + Set to 0 to disable this feature. Stel in op 0 om deze functie uit te schakelen. - - - - + + + + px px - + Maximum text width in "Focus Mode" Maximale tekstbreedte in "Focus Modus" - + The maximum width cannot be disabled. De maximale breedte kan niet worden uitgeschakeld. - + Hide document footer in "Focus Mode" Verberg document voettekst in "Focus Modus" - + Hide the information bar in the document editor. Verberg de informatiebalk in de documentbewerker. - + Justify the text margins De tekstmarges uitvullen - + Minimum text margin Minimale tekstmarge - + Tab width Tab breedte - + The width of a tab key press in the editor and viewer. De breedte van een tab teken in de tekstbewerker en kijker. - + Text Editing Tekstbewerking - + Spell check language Taal voor spellingscontrole - + Available languages are determined by your system. Beschikbare talen worden bepaald door uw systeem. - + Auto-select word under cursor Automatisch woord onder cursor selecteren - + Apply formatting to word under cursor if no selection is made. Opmaak toepassen op woord onder de cursor als er geen selectie is gemaakt. - + Show tabs and spaces Tabs en spaties weergeven - + Show line endings Regeleindes weergeven - + Editor Scrolling Bewerker scrollen - + Scroll past end of the document Scroll voorbij het einde van het document - + Also centres the cursor when scrolling. Centreer ook de cursor bij het scrollen. - + Typewriter style scrolling when you type Schrijfmachine stijl scrollen bij het typen - + Keeps the cursor at a fixed vertical position. Houd de cursor op een vaste verticale positie. - + Minimum position for Typewriter scrolling Minimumpositie voor Schrijfmachine scrollen - + Percentage of the editor height from the top. Percentage van de tekstverwerker hoogte vanaf de bovenkant. - + Text Highlighting Tekstmarkering - + Highlight text wrapped in quotes Markeer tekst verpakt in aanhalingstekens - - - + + + Applies to the document editor only. Alleen van toepassing op de tekst bewerker. - + Allow open-ended single quotes Toestaan van open einde enkele aanhalingstekens - + Highlight single-quoted line with no closing quote. Markeer regel zonder afsluitend enkel aanhalingsteken. - + Allow open-ended double quotes Toestaan van open einde dubbele aanhalingstekens - + Highlight double-quoted line with no closing quote. Markeer regel zonder afsluitend dubbel aanhalingsteken. - + Add highlight colour to emphasised text Voeg markeerkleur toe aan geaccentueerde tekst - + Highlight multiple or trailing spaces Markeer meerdere of afsluitende spaties - + Text Automation Tekstautomatisering - + Auto-replace text as you type Automatisch tekst vervangen terwijl u typt - + Allow the editor to replace symbols as you type. Sta de tekstbewerker toe om symbolen te vervangen terwijl u typt. - + Auto-replace single quotes Automatisch enkele aanhalingstekens vervangen - - + + Try to guess which is an opening or a closing quote. Probeer te raden wat een openend of afsluitend aanhalingsteken is. - + Auto-replace double quotes Automatisch dubbele aanhalingstekens vervangen - + Auto-replace dashes Automatisch streepjes vervangen - + Double and triple hyphens become short and long dashes. Dubbele en drievoudige koppeltekens worden korte en lange streepjes. - + Auto-replace dots Automatisch stippen vervangen - + Three consecutive dots become ellipsis. Drie opeenvolgende stippen worden ellips. - + Insert non-breaking space before Vaste spatie invoegen voor - + Automatically add space before any of these symbols. Voeg automatisch een spatie toe voor één van deze symbolen. - + Insert non-breaking space after Vaste spatie invoegen na - + Automatically add space after any of these symbols. Voeg automatisch een spatie toe na één van deze symbolen. - + Use thin space instead Gebruik dunne spatie in plaats van - + Inserts a thin space instead of a regular space. Voegt een dunne spatie toe in plaats van een normale spatie. - + Quotation Style Citeer Stijl - + Single quote open style Enkel aanhalingsteken open stijl - + The symbol to use for a leading single quote. Het symbool om te gebruiken voor een leidend enkel aanhalingsteken. - + Single quote close style Enkel aanhalingsteken sluit stijl - + The symbol to use for a trailing single quote. Het symbool om te gebruiken voor een afsluitend enkel aanhalingsteken. - + Double quote open style Dubbele aanhalingsteken open stijl - + The symbol to use for a leading double quote. Het symbool om te gebruiken voor een leidend dubbel aanhalingsteken. - + Double quote close style Dubbel aanhalingsteken sluit stijl - + The symbol to use for a trailing double quote. Het symbool om te gebruiken voor een afsluitend dubbel aanhalingsteken. - + Backup Directory Reservekopie map + + GuiProjectSearch + + + Project Search + + + + + Case Sensitive + Hoofdlettergevoelig + + + + Whole Words Only + Alleen hele woorden + + + + RegEx Mode + RegEx modus + + + + Search for + + + GuiProjectSettings - - + + Project Settings Project Instellingen - + Settings Instellingen - + Status Status - + Importance Belangrijkheid - + Auto-Replace Auto-Vervang @@ -2975,47 +3052,47 @@ GuiProjectToolBar - + Project Content Project Inhoud - + Quick Links Snelle Koppelingen - + Move Up Omhoog Schuiven - + Move Down Omlaag Schuiven - + Add Item Item Toevoegen - + Expand All Alles Uitklappen - + Collapse All Alles Samenvouwen - + Empty Trash Leeg Prullenbak - + More Options Meer Opties @@ -3023,118 +3100,118 @@ GuiProjectTree - + Active Actief - + Inactive Inactief - + Permanently delete {0} file(s) from Trash? {0} bestand(en) permanent verwijderen uit de prullenbak? - + Did not find anywhere to add the file or folder! Kon geen plek vinden om het bestand of de map aan toe te voegen! - + Cannot add new files or folders to the Trash folder. Kan geen nieuwe bestanden of mappen toevoegen aan de Prullenbak map. - + New Note Nieuwe notitie - + New Chapter Nieuw Hoofdstuk - + New Scene Nieuwe Scène - + New Document Nieuw document - + New Folder Nieuwe map - + There is currently no Trash folder in this project. Er is momenteel geen Prullenbak map in dit project. - + The Trash folder is already empty. De Prullenbak map is al leeg. - + Move '{0}' to Trash? Verplaats '{0}' naar Prullenbak? - + Root folders can only be deleted when they are empty. Root mappen kunnen alleen verwijderd worden wanneer ze leeg zijn. - + Permanently delete '{0}'? '{0}' permanent verwijderen? - + Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent. Slepen en neerzetten is alleen toegestaan voor enkele items, niet-hoofditems of meerdere items met dezelfde bovenliggende item. - + No documents selected for merging. Geen documenten geselecteerd voor samenvoegen. - + Merged Samengevoegd - - + + Could not write document content. Kon documenteninhoud niet schrijven. - + Do you want to duplicate this document? Wilt u dit document dupliceren? - + Do you want to duplicate this item and all child items? Wilt u dit item en alle onderliggende items dupliceren? - + Could not duplicate all items. Kon niet alle items dupliceren. - + There is nowhere to add item with name '{0}'. Er is geen plek om item toe te voegen met de naam '{0}'. @@ -3142,37 +3219,42 @@ GuiSideBar - + Project Tree View Project Boomstructuur Weergave - + Novel Tree View Roman Boomstructuur Weergave - + + Project Search + + + + Novel Outline View Roman Omlijning Weergave - + Build Manuscript Bouw manuscript - + Novel Details Roman details - + Writing Statistics Schrijf Statistieken - + Settings Instellingen @@ -3180,37 +3262,37 @@ GuiWelcome - + Welcome Welkom - + List Lijst - + New Nieuw - + Browse Blader - + Cancel Annuleer - + Create Creëren - + Open Openen @@ -3218,33 +3300,33 @@ GuiWordList - - + + Project Word List Project woordenlijst - + Import words from text file Importeer woorden uit tekstbestand - + Export words to text file Exporteer woorden naar tekstbestand - + Note: The import file must be a plain text file with UTF-8 or ASCII encoding. Opmerking: Het import bestand moet een platte tekst bestand zijn met UTF-8 of ASCII codering. - + Import File Importeer bestand - + Export File Bestand exporteren @@ -3252,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Schrijf Statistieken - + Session Start Sessie Start - + Length Lengte - + Idle Inactief - + Words Woorden - + Histogram Histogram - + Sum Totals Som totalen - + Total Time: Totale tijd: - + Idle Time: Inactieve tijd: - + Filtered Time: Gefilterde tijd: - + Novel Word Count: Roman woord telling: - + Notes Word Count: Notities woord telling: - + Total Word Count: Totaal woord telling: - + Filters Filters - + Count novel files Roman bestanden meetellen - + Count note files Notitie bestanden tellen - + Hide zero word count Verberg nul woorden telling - + Hide negative word count Verberg negatieve woord telling - + Group entries by day Vermeldingen groeperen per dag - + Show idle time Inactieve tijd weergeven - + Word count cap for the histogram Woord telling limiet voor het histogram - + Save As Opslaan als - + JSON Data File (.json) JSON-gegevensbestand (.json) - + CSV Data File (.csv) CSV-gegevensbestand (.csv) - + JSON Data File JSON-gegevensbestand - + CSV Data File CSV-gegevensbestand - + Save Data As Gegevens opslaan als - + {0} file successfully written to: {0} bestand succesvol weggeschreven naar: - + Failed to write {0} file. Schrijven van {0} bestand mislukt. @@ -3400,153 +3482,153 @@ NWProject - + Could not delete document file. Kon documentbestand niet verwijderen. - + Not a known project file format. Niet een bekend project bestandsformaat. - + Project file not found. Projectbestand niet gevonden. - + Failed to open project. Kon project niet openen. - + Unknown Onbekend - + Project file does not appear to be a novelWriterXML file. Projectbestand lijkt geen novelWriter XML-bestand te zijn. - + 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}. Onbekend of niet ondersteund bestandsformaat van novelWriter. Het project kan niet worden geopend door deze versie van novelWriter. Het bestand was opgeslagen met versie {0} van novelWriter. - + Failed to parse project xml. Parsen van project xml mislukt. - + 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? De bestandsindeling van uw project zal worden bijgewerkt. Als u doorgaat, kunnen oudere versies van novelWriter dit project niet meer openen. Doorgaan? - + 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? Dit project was aangemaakt door een nieuwere versie van novelWriter, versie {0}. Dit is versie {1}. Als je het project blijft openen, kunnen sommige kenmerken en instellingen niet worden behouden, maar over het algemeen moet het project goed zijn. Doorgaan met het openen van het project? - + Recovered Hersteld - + Found {0} orphaned file(s) in the project. {1} file(s) were recovered. Gevonden {0} weesbestand(en) in het project. {1} bestand(en) werd(en) hersteld. - + Opened Project: {0} Geopend project: {0} - + There is no project open. Er is geen project open. - + Failed to save project. Opslaan project mislukt. - + Saved Project: {0} Project opgeslagen: {0} - + Backing up project ... Reservekopie van project wordt gemaakt... - + Cannot backup project because no project name is set. Please set a Project Name in Project Settings. Kan geen back-up maken van het project omdat er geen projectnaam is ingesteld. Stel een projectnaam in in Projectinstellingen. - + Could not create backup folder. Kon de reservekopie map niet maken. - + Created a backup of your project of size {0}B. Een back-up gemaakt van je project van grootte {0}B. - + Path: {0} Pad: {0} - + Could not write backup archive. Kon reservekopie archief niet wegschrijven. - + Project backed up to '{0}' Project reservekopie gemaakt naar '{0}' - - + + New Nieuw - + Note Notitie - + Draft Concept - + Finished Voltooid - + Minor Klein - + Major Groot - + Main Hoofd @@ -3562,89 +3644,89 @@ ProjectBuilder - + The target folder is not empty. Please choose another folder. De doelmap is niet leeg. Kies een andere map. - + An error occurred while trying to create the project. Er is een fout opgetreden tijdens het aanmaken van het project. - + New Project Nieuw Project - + Title Page Titel Pagina - + By Door - + Summary of the chapter. Samenvatting van het hoofdstuk. - + Summary of the scene. Samenvatting van de scène. - + A short description. Een korte beschrijving. - + Chapter {0} Hoofdstuk {0} - - + + Scene {0} Scène {0} - + Main Plot Hoofd Plot - + Protagonist Protagonist - + Main Location Hoofd Locatie - - + + The target folder already exists. Please choose another folder. De doelmap bestaat al. Kies een andere map. - + Could not copy project files. Kon projectbestanden niet kopiëren. - + Failed to create a new example project. Aanmaken van een nieuw voorbeeldproject is mislukt. - + Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation. Aanmaken van een nieuw voorbeeldproject is mislukt. Kon de benodigde bestanden niet vinden. Ze lijken te ontbreken in deze installatie. @@ -3840,17 +3922,17 @@ SharedData - + novelWriter Project File or Zip File novelWriter project- of zip bestand - + novelWriter Project File novelWriter Projectbestand - + Open Project Project openen @@ -3901,57 +3983,57 @@ _ContentsPage - + Table of Contents Inhoudsopgave - + Title Titel - + Words Woorden - + Pages Pagina's - + Page Pagina - + Progress Voortgang - + Words per page Woorden per pagina - + First page offset Eerste pagina offset - + Chapters on odd pages Hoofdstukken op oneven pagina's - + Untitled Naamloos - + END EINDE @@ -3959,30 +4041,35 @@ _DetailsWidget - + Setting Instelling - + Value Waarde - + Name Naam - + Selection Selectie - + Title Titel + + + Hidden + Verborgen + _FilterTab @@ -4012,12 +4099,12 @@ Herstellen naar standaard - + Mark selection as Markeer selectie als - + Select Root Folders Selecteer hoofd mappen @@ -4025,22 +4112,22 @@ _GuiAlert - + Information Informatie - + Warning Waarschuwing - + Error Foutmelding - + Question Vraag @@ -4048,193 +4135,211 @@ _HeadingsTab - - + Hide Verbergen - - + + Editing: {0} Bewerken: {0} - - + + None Geen - + Title Titel - + Chapter Number Hoofdstuknummer - + Chapter Number (Word) Hoofdstuknummer (Word) - + Chapter Number (Upper Case Roman) Hoofdstuk nummer (Romeinse hoofdletters) - + Chapter Number (Lower Case Roman) Hoofdstuk nummer (Romeinse kleine letters) - + Scene Number (In Chapter) Scènenummer (in Hoofdstuk) - + Scene Number (Absolute) Scènenummer (Absoluut) - + Point of View Character Perspectief Karakter - + Focus Character Focus Karakter - + Insert Invoegen - + Apply Toepassen + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Nieuwe pagina + _NewProjectForm - + Required Vereist - + Optional Optioneel - + Create a fresh project Maak een nieuw project aan - + Create an example project Maak een voorbeeldproject aan - + Copy an existing project Een bestaand project kopiëren - + Project Name Projectnaam - + Author Auteur - + Project Path Project pad - + Prefill Project Vulling Project - + Set to 0 to only add scenes Stel in op 0 om alleen scènes toe te voegen - + Add {0} chapter documents Voeg {0} hoofdstuk documenten toe - + Add {0} scene documents (to each chapter) Voeg {0} scène documenten toe (aan elk hoofdstuk) - + Add a folder for plot notes Voeg een map toe voor plot notities - + Add a folder for character notes Voeg een map toe voor karakter notities - + Add a folder for location notes Voeg een map toe voor locatie notities - + Add example notes to the above Voeg voorbeeld notities toe aan bovenstaand - + Chapters and Scenes Hoofdstukken en scènes - + Project Notes Projectnotities - + Create New Project Nieuw Project Maken - + Select Project Folder Selecteer Projectmap - + Fresh Project Nieuw project - + Example Project Voorbeeld project - + Template: {0} Sjabloon: {0} @@ -4242,7 +4347,7 @@ _NewProjectPage - + A project name is required. Een projectnaam is vereist. @@ -4250,27 +4355,27 @@ _OpenProjectPage - + The project path is not reachable. Project pad is niet bereikbaar. - + Path Pad - + Remove '{0}' from the recent projects list? The project files will not be deleted. '{0}' uit de lijst met recente projecten verwijderen? De project bestanden zullen niet worden verwijderd. - + Open Project Project openen - + Remove Project Project verwijderen @@ -4278,54 +4383,54 @@ _OverviewPage - + Project Project - - + + Name Naam - + Revisions Revisies - + Editing Time Bewerk tijd - - + + Word Count Woord Telling - + In Novels In romans - + In Notes In notities - + Selected Novel Geselecteerde roman - + Chapters Hoofdstukken - + Scenes Scènes @@ -4333,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Druk op de knop "Preview" om te genereren... - + Processing ... Wordt verwerkt... - + Done Gereed - + Unknown Onbekend - + Built Gebouwd @@ -4361,12 +4466,12 @@ _ProjectListModel - + Word Count Woord Telling - + Last Opened Laatst geopend @@ -4374,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Tekst Auto-Vervang voor Preview en Bouwen - + Keyword Sleutelwoord - + Replace With Vervang door - + Select item to edit Selecteer te bewerken item - + Save Opslaan @@ -4402,117 +4507,177 @@ _SettingsPage - + Project name Projectnaam - + Changing this will affect the backup path. Dit veranderen heeft invloed op het pad van de back-up. - + Author(s) Auteur(s) - - + + Only used when building the manuscript. Wordt alleen gebruikt bij het bouwen van het manuscript. - + Project language Project taal - + Default Standaard - + Spell check language Taal voor spellingscontrole - - + + Overrides main preferences. Overschrijft de hoofd voorkeuren. - + Disable backup on close Back-up bij sluiten uitschakelen + + _StatsWidget + + + + Words + Woorden + + + + + Characters + Tekens + + + + Words in Headings + + + + + Words in Text + + + + + Headings + Koppen + + + + Paragraphs + Paragrafen + + + + Characters in Headings + + + + + Characters in Text + + + + + Characters, No Spaces + + + + + Characters in Headings, No Spaces + + + + + Characters in Text, No Spaces + + + _StatusPage - + Novel Document Status Levels Roman Document Status Niveaus - + Project Note Importance Levels Project Notitie Belangrijkheid Niveaus - + Label Label - + Usage Gebruik - + Select item to edit Selecteer te bewerken item - + Colour Kleur - + Save Opslaan - + Select Colour Selecteer kleur - + New Item Nieuw item - + Cannot delete a status item that is in use. Kan status item dat in gebruik is niet verwijderen. - + Not in use Niet in gebruik - + Used once Eenmalig gebruikt - + Used by {0} items Gebruikt door {0} items @@ -4520,133 +4685,128 @@ _TreeContextMenu - + Empty Trash Prullenbak legen - + Rename Hernoemen - + Open Document Document openen - + View Document Bekijk document - + Create New ... Nieuwe aanmaken... - + Rename to Heading Hernoemen naar titel - + Set Active to ... Stel Actief in op... - + Toggle Active Schakel actief - + Set Status to ... Status instellen op ... - - + + Manage Labels ... Labels beheren ... - + Set Importance to ... Belangrijkheid instellen op ... - + Transform ... Transformeren ... - + Convert to {0} Converteer naar {0} - + Merge Child Items into Self Onderliggende items samenvoegen in zelf - + Merge Child Items into New Onderliggende items samenvoegen in nieuw - + Merge Documents in Folder Documenten in Map Samenvoegen - - Split Document by Headers - Document Splitsen op Koptekst + + Split Document by Headings + - + Expand All Alles Uitklappen - + Collapse All Alles Samenvouwen - - Duplicate from Here - Dupliceer vanaf hier + + Duplicate + - - Duplicate Document - Document dupliceren - - - - + + Delete Permanently Permanent Verwijderen - - + + Move to Trash Verplaatsen naar Prullenbak - + Move {0} items to Trash? {0} items naar prullenbak verplaatsen? - + Do you want to convert the folder to a {0}? This action cannot be reversed. Wilt u de map converteren naar een {0}? Deze actie kan niet ongedaan worden gemaakt. @@ -4654,7 +4814,7 @@ _UpdatableMenu - + From Template Van sjabloon @@ -4662,12 +4822,12 @@ _ViewPanelBackRefs - + Document Document - + First Heading Eerste titel @@ -4675,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Label - + Importance Belangrijkheid - + Document Document - + Heading Titel - + Short Description Korte beschrijving diff --git a/i18n/nw_pt_BR.ts b/i18n/nw_pt_BR.ts index ce051fb1..79da50a6 100644 --- a/i18n/nw_pt_BR.ts +++ b/i18n/nw_pt_BR.ts @@ -4,280 +4,305 @@ Builds - + Document Filters Filtros de Documentos - + Novel Documents Documentos do Livro - + Project Notes Notas do Projeto - + Inactive Documents Documentos Inativos - + Headings Cabeçalhos - - Title Headings - Cabeçalho de Títulos + + Partition Format + - - Chapter Headings - Cabeçalhos de Capítulos + + Chapter Format + - - Unnumbered Headings - Cabeçalhos sem Numeração + + Unnumbered Format + - - Scene Headings - Cabeçalhos de Cenas + + Scene Format + - - Section Headings - Cabeçalhos de Seções + + Hard Scene Format + - - Hide Scene Headings - Ocultar Cabeçalhos de Cenas + + Section Format + - - Hide Section Headings - Ocultar Cabeçalhos de Seções - - - + Text Content Conteúdo do Texto - + Include Synopsis Incluir Sinopse - + Include Comments Incluir Comentários - + Include Keywords Incluir Palavras-Chave - + Include Body Text Incluir Corpo do Texto - + + Ignore These Keywords + + + + Insert Content Inserir Conteúdo - + Add Titles for Notes Adicionar Títulos para as Notas - + Text Format Formatação do Texto - - Language - Idioma - - - + Font Family Família da Fonte - + Font Size Tamanho da Fonte - + Line Height Altura da Linha - + Text Options Opções de Texto - + Justify Text Margins Justificar Margens do Texto - + Replace Unicode Characters Substituir Caracteres Unicode - + Replace Tabs with Spaces Substituir Tabulações por Espaços - + Page Layout Layout da Página - + Unit Unidade - + Page Size Tamanho da Página - + Page Width Largura da Página - + Page Height Altura da Página - + Top Margin Margem Superior - + Bottom Margin Margem Inferior - + Left Margin Margem Esquerda - + Right Margin Margem direitaD - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Adicionar Cores de Destaque - + + Page Header + + + + + Page Counter Offset + + + + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles Adicionar Estilos CSS + + + Preserve Tab Characters + + Common - + in the future no futuro - + just now agora - + a minute ago um minuto atrás - + {0} minutes ago {0} minutos atrás - + an hour ago uma hora atrás - + {0} hours ago {0} horas atrás - + a day ago um dia atrás - + {0} days ago {0} dias atrás - + a week ago uma semana atrás - + {0} weeks ago {0} semanas atrás - + a month ago um mês atrás - + {0} months ago {0} meses atrás - + a year ago um ano atrás - + {0} years ago {0} anos atrás @@ -285,345 +310,375 @@ Constant - - - + + + None Nenhum - + Novel Livro - - + + Plot Enredo - - + + Characters Personagens - - + + Locations Lugares - - + + Timeline Linha do Tempo - - + + Objects Objetos - - + + Entities Entidades - - - + + + Custom Outros - + Archive Arquivados - + + Templates + + + + Trash Lixeira - - + + Novel Document Documento do Livro - - + + Project Note Notas do Projeto - + Root Folder Diretório-Raíz - + Folder Diretório - + Novel Title Page Página de Título do Livro - + Novel Chapter Capítulo do Livro - + Novel Scene Cena do Livro - + Novel Section Seção do Livro - + Tag Etiqueta - + Point of View Ponto de Vista - - + + Focus Foco - + Title Título - + Level Nível - + Document Documento - + Line Linha - + Chars Caracteres - + Words Palavras - + Pars Parágrafos - + POV P.V. - + Synopsis Sinopse - + Open Document (.odt) Open Document (.odt) - + Flat Open Document (.fodt) Flat Open Document (.fodt) - + novelWriter HTML (.html) HTML do novelWriter (.htm) - + novelWriter Markup (.txt) Markup do novelWriter (.txt) - + Standard Markdown (.md) Markdown Padrão (.md) - + Extended Markdown (.md) Markdown Estendido (.md) - + JSON + novelWriter HTML (.json) JSON + HTML do novelWriter (.json) - + JSON + novelWriter Markup (.json) JSON + Markup do novelWriter (.json) - + + Text files + + + + + Markdown files + + + + + novelWriter files + + + + + CSV files + + + + + All files + + + + Millimetres Milímetros - + Centimetres Centímetros - + Inches Polegadas - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal Ofício - + US Letter Carta - + Straight single quotation mark Aspas simples retas - + Straight double quotation mark Aspas duplas retas - + Left single quotation mark Aspas simples à esquerda - + Right single quotation mark Aspas simples à direita - + Single low-9 quotation mark Aspas 9-baixo simples - + Single high-reversed-9 quotation mark Aspas 9-alto-invertido simples - + Left double quotation mark Aspas duplas à esquerda - + Right double quotation mark Aspas duplas à direita - + Double low-9 quotation mark Aspas 9-baixo duplas - + Double high-reversed-9 quotation mark Aspas 9-alto-invertido duplas - + Double low-reversed-9 quotation mark Aspas 9-baixo-invertido duplas - + Single left-pointing angle quotation mark Aspas angulares simples à esquerda - + Single right-pointing angle quotation mark Aspas angulares simples à direita - + Double left-pointing angle quotation mark Aspas angulares duplas apontando à esquerda - + Double right-pointing angle quotation mark Aspas angulares duplas apontando à direita - + Left corner bracket Colchete de canto à esquerda - + Right corner bracket Right corner bracket - + Left white corner bracket Colchete branco de canto à esquerda - + Right white corner bracket Colchete branco de canto à direita @@ -631,211 +686,218 @@ GuiAbout - - + About novelWriter Sobre o novelWriter - - About - Sobre + + This application is licenced under {0} + - - Release - Lançamento - - - + Credits Créditos - - - Licence - Licença - - - - Website: {0} - Website: {0} - - - - novelWriter is a markdown-like text editor designed for organising and writing novels. It is written in Python 3 with a Qt5 GUI, using PyQt5. - novelWriter é um editor de texto som sintaxe semelhante ao markdown, projetado para a escrita e organização de livros. É escrito em Python 3 com interface de usuário em Qr5, usando PyQt5. - - - - novelWriter is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - novelWriter é um software livre: você pode redistribuí-lo e/ou modificá-lo sob os termos da GNU Licença Pública Geral, assim como publicada pela Free Software Foundation, tanto na versão 3 da licença, ou (à sua escolha) qualquer versão subsequente. - - - - novelWriter is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - novelWriter é distribuído na especativa de que seja útil, mas SEM NENHUMA GARANTIA, nem mesmo a garantia implícita de COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA UM PROPÓSITO ESPECÍFICO. - - - - See the Licence tab for the full licence text, or visit the GNU website at {0} for more details. - Veja a aba de Licença para o texto completo de licença, ou visite o website da GNU em {0} para mais detalhes. - GuiBuildSettings - + + Manuscript Build Settings Configurações de Compilação do Manuscrito - - Options - Opções + + Name + Nome - + Selection Seleção - + Headings Cabeçalhos - + Content Conteúdo - + Format Formatação - + Output Saída + + + GuiDictionaries - - Name - Nome + + Add Dictionaries + + + + + Download a dictionary from one of the links, and add it below. + + + + + Add Dictionary + + + + + Dictionary install location + + + + + Additional dictionaries found: {0} + + + + + Free or Libre Office extension + + + + + Browse Files + + + + + Could not process dictionary file + + + + + Added: {0} [{1}B] + GuiDocEditFooter - - Status - Estado - - - + Line: {0} ({1}) Linha: {0} ({1}) - + Words: {0} ({1}) Palavras: {0} ({1}) - - Document size is {0} bytes - O tamanho do documento é {0} bytes - - - + Words: {0} selected Palavras: {0} selecionadas - - Character count: {0} - Contagem de carecteres: {0} + + Status + Estado GuiDocEditHeader - - Edit document label - Editar etiqueta do documento + + Toggle Tool Bar + - - Search document - Procurar no documento + + Outline + Esboço - + + Search + Pesquisa + + + Toggle Focus Mode Alternar o "Modo Foco" - - Close the document - Fechar o documento + + Close + Fechar GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search Pesquisa - - Replace - Substituir - - - + Case Sensitive Diferenciar Maiúsculas e Minúsculas - + Whole Words Only Apenas Palavras Inteiras - + RegEx Mode Expressão Regular - + Loop Search Pesquisa do Início - + Search Next File Busca no Próximo Arquivo - + Preserve Case Preserva Maiúsculas e Minúsculas - + Close Search Fechar a Busca - + Find in current document Encontrar no documento atual - + Find and replace in current document Encontrar e substituir no documento atual @@ -843,145 +905,145 @@ GuiDocEditor - - The document you are trying to open is too big. The document size is {0} MB. The maximum size allowed is {1} MB. - O documento que você está tentando abrir é muito grande. O tamanho do documento é {0} MB. O tamanho máximo permitido é {1} MB. - - - + Opened Document: {0} Documento Aberto: {0} - - The text you are trying to add is too big. The text size is {0} MB. The maximum size allowed is {1} MB. - O texto que você está tentando adicionar é muito grande. O tamanho do texto é {0} MB. O tamanho máximo permitido é {1} MB. - - - + This document has been changed outside of novelWriter while it was open. Overwrite the file on disk? Este documento foi alterado fora do novelWriter enquanto estava aberto. Sobrescrever o arquivo no disco? - + Could not save document. Não foi possível salvar o documento. - + Saved Document: {0} Documento Salvo: {0} - + Spell checking requires the package PyEnchant. It does not appear to be installed. A verificação ortográfica requer o pacote PyEnchant. Ele parece não estar instalado. - + Spell check complete Verificação ortográfica completa - + Document Details Detalhes do Documento - + Created: {0} Criado em: {0} - + Updated: {0} Atualizado em: {0} - + File Location: {0} Caminho do Arquivo: {0} - - The document has grown too big and you cannot add more text to it. The maximum size of a single novelWriter document is {0} MB. - O tamanho do documento aumentou muito e você não pode adicionar mais texto nele. O tamanho máximo de um único documento do novelWriter é {0} MB. + + Set as Document Name + - + Follow Tag Seguir Etiqueta - + + Create Note for Tag + + + + Cut Recortar - + Copy Copiar - + Paste Colar - + Select All Selecionar Tudo - + Select Word Selecionar Palavra - + Select Paragraph Selecionar Parágrafo - + Spelling Suggestion(s) Sugestão de Ortografia - + No Suggestions Sem Sugestões - + Add Word to Dictionary Adicionar Palavra ao Dicionário - + Please select some text before calling replace quotes. Por favor, selecione algum texto antes de invocar a substituição de aspas. + + + Do you want to create a new project note for the tag '{0}'? + + GuiDocMerge - + Merge Documents Mescla de Documentos - + Documents to Merge Documentos para Mesclar - + Drag and drop items to change the order, or uncheck to exclude. Arraste e solte itens para alterar a ordem, ou desmarque para excluir. - + Move merged items to Trash Mover arquivos selecionados pro Lixo @@ -989,159 +1051,215 @@ GuiDocSplit - + Split Document Divisão de Documento - - Document Headers - Cabeçalhos do Documento + + Document Headings + - + Select the maximum level to split into files. Selecione o nível máximo para dividir em arquivos. - - - Split on Header Level 1 (Title) - Dividir nos cabeçalhos de nível 1 (Título) - - - - Split up to Header Level 2 (Chapter) - Dividir até os cabeçalhos de nível 2 (Capítulo) - - - - Split up to Header Level 3 (Scene) - Dividir até os cabeçalhos de nível 3 (Cena) - - Split up to Header Level 4 (Section) - Dividir até os cabeçalhos de nível 4 (Seção) + Split on Heading Level 1 (Partition) + - + + 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 folder Dividir em um novo diretório - + Create document hierarchy Criar hierarquia do documento - + Move split document to Trash Mover documento dividido para o Lixeira + + GuiDocToolBar + + + Markdown Bold + + + + + Markdown Italic + + + + + Markdown Strikethrough + + + + + Shortcode Bold + + + + + Shortcode Italic + + + + + Shortcode Strikethrough + + + + + Shortcode Underline + + + + + Shortcode Highlight + + + + + Shortcode Superscript + + + + + Shortcode Subscript + + + GuiDocViewFooter - - Show/hide the references panel - Mostrar/ocultar o painel de referências + + Show/Hide Viewer Panel + - - Activate to freeze the content of the references panel when changing document - Ative para manter o conteúdo do painel de referências quando trocar o documento - - - - Show comments - Mostrar comentários - - - - Show synopsis comments - Mostrar comentários de sinopse - - - - References - Referências - - - - Sticky - Aderente - - - + Comments Comentários - + + Show Comments + + + + Synopsis Sinopse + + + Show Synopsis Comments + + GuiDocViewHeader - - Go backward - Voltar + + Outline + Esboço - - Go forward - Avançar + + Go Backward + - - Reload the document - Recarregar o documento + + Go Forward + - - Close the document - Fechar o documento + + Reload + + + + + Close + Fechar GuiDocViewer - + An error occurred while generating the preview. Um erro ocorreu enquanto gerava o rascunho. - + Copy Copiar - + Select All Selecionar Tudo - + Select Word Selecionar Palavra - + Select Paragraph Selecionar Parágrafo + + GuiDocViewerPanel + + + Hide Inactive Tags + + + + + References + Referências + + GuiEditLabel - + Item Label Rótulo do item - + Label Rótulo @@ -1149,37 +1267,37 @@ GuiItemDetails - + Label Rótulo - + Status Estado - + Class Classe - + Usage Uso - + Characters Caracteres - + Words Palavras - + Paragraphs Parágrafos @@ -1187,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Inserir Espaço Reservado para Texto - + Insert Lorem Ipsum Text Inserir Texto Fictício (Lorem Ipsum) - + Number of paragraphs Número de parágrafos - + Randomise order Ordem aleatória - + Insert Inserir @@ -1215,123 +1333,103 @@ GuiMain - - You are running an untested development version of novelWriter. Please be careful when working on a live project and make sure you take regular backups. - Você está executando uma versão de desenvolvimento e não testada do novelWriter. Por favor, tenha cuidado ao trabalhar em um projeto em desenvolvimento e certifique-se de fazer backups regulares. - - - + novelWriter is ready ... O novelWriter está pronto ... - - Cannot create a new project when another project is open. - Não é possível criar um novo projeto quando outro projeto está aberto. + + You are now running novelWriter version {0}. + - - A project already exists in that location. Please choose another folder. - Um projeto já existe neste local. Por favor escolha outro diretório. + + Please check the {0}release notes{1} for further details. + - + Close the current project? Fechar o projeto atual? - - + + Changes are saved automatically. As alterações serão salvas automaticamente. - + Backup the current project? Criar cópia de segurança do projeto atual? - + The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway? O projeto já está aberto em outra instância do novelWriter, e portanto foi bloqueado. Deseja sobrescrever o bloqueio e continuar mesmo assim? - + 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 o programa ou o computador travaram anteriormente, o bloqueio pode ser substituído com segurança. No entanto, sobrescrevê-lo não é recomendado se o projeto estiver aberto em outra instância do novelWriter. Fazer isso pode corromper o projeto. - + The project was locked by the computer '{0}' ({1} {2}), last active on {3}. O projeto foi bloqueado pelo computador '{0}' ({1} {2}), ativo pela última vez em {3}. - + The project index is outdated or broken. Rebuilding index. O índice do projeto está desatualizado ou quebrado. Reconstruíndo o indice. - - Text files ({0}) - Arquivos de texto ({0}) - - - - Markdown files ({0}) - Arquivos Markdown ({0}) - - - - novelWriter files ({0}) - Arquivos do novelWriter ({0}) - - - - All files ({0}) - Todos os arquivos ({0}) - - - + Import File Importar Arquivo - + Could not read file. The file must be an existing text file. Não foi possível ler o arquivo. O arquivo deve ser um arquivo de texto existente. - + Please open a document to import the text file into. Por favor, abra um documento para importar o text nele. - + Importing the file will overwrite the current content of the document. Do you want to proceed? Importar o arquivo vai sobrescrever o conteúdo atual do documento. Você deseja continuar? - + Indexing completed in {0} ms Indexação completa em {0} ms - + The project index has been successfully rebuilt. O índice do projeto foi reconstruído com sucesso. - - Some changes will not be applied until novelWriter has been restarted. - Algumas alterações não serão aplicadas enquanto o novelWriter não for reiniciado. + + Could not initialise the dialog. + - + Do you want to exit novelWriter? Você deseja realmente sair do novelWriter? - + + Some changes will not be applied until novelWriter has been restarted. + Algumas alterações não serão aplicadas enquanto o novelWriter não for reiniciado. + + + 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}. Não foi possível encontrar a referência para a etiqueta '{0}'. Pode ser que ela não exista ou que o índice esteja desatualizado. O índice pode ser atualizado à partir do menu Ferramentas ou pressionando {1}. @@ -1339,345 +1437,340 @@ GuiMainMenu - + &Project &Projeto - - New Project - Novo Projeto + + Create or Open Project + - - Open Project - Abrir Projeto - - - + Save Project Salvar Projeto - + Close Project Fechar Projeto - + Project Settings Configurações do Projeto - - Project Details - Detalhes do Projeto + + Novel Details + - + Rename Item Renomear Item - + Delete Item Remover Item - + Empty Trash Esvaziar a Lixeira - + Exit Sair - + &Document &Documento - + Open Document Abrir Documento - + Save Document Salvar Documento - + Close Document Fechar Documento - + View Document Ver Documento - + Close Document View Fechar a Visualização do Documento - + Show File Details Mostrar Detalhes do Arquivo - + Import Text from File Importar Texto de Arquivo - + &Edit &Editar - + Undo Desfazer - + Redo Refazer - + Cut Recortar - + Copy Copiar - + Paste Colar - + Select All Selecionar Tudo - + Select Paragraph Selecionar Parágrafo - + &View &Visualizar - + Go to Project Tree Ir para a Estrutura do Projeto - + Go to Document Editor Ir para o Editor de Documentos - - Go to Document Viewer - Ir para o Visualizador de Documentos - - - + Go to Outline Ir para o Escoço - + Navigate Backward Navegar para Trás - + Navigate Forward Navegar para Frente - + Focus Mode Modo de Foco - + Full Screen Mode Tela Cheia - + &Insert &Inserir - + Dashes Travessões - + Short Dash Travessão Curto - + Long Dash Travessão Longo - + Horizontal Bar Barra Horizontal - + Figure Dash Travessão de Número - + Quote Marks Aspas - + Left Single Quote Aspas Simples à Esquerda - + Right Single Quote Aspas Simples à Direita - + Left Double Quote Aspas Duplas à Esquerda - + Right Double Quote Aspas Duplas à Direita - + Alternative Apostrophe Apóstrofo Alternativo - + General Punctuation Pontuação Geral - + Ellipsis Reticências - + Prime Prime - + Double Prime Prime Duplo - + White Spaces Espaços em Branco - + Non-Breaking Space Espaço Não-Separável - + Thin Space Espaço Estreito - + Thin Non-Breaking Space Espaço Estreito Não-Separável - + Other Symbols Outros Simbolos - + List Bullet Marcador de Lista - + Hyphen Bullet Marcador em Hífen - + Flower Mark Marcador em Flor - + Per Mille Por Milha - + Degree Symbol Simbolo de Grau - + Minus Sign Sinal de Menos - + Times Sign Sinal de Multiplicação - + Division Sign Sinal de Divisão - + Tags and References Etiquetas e Referências - + Special Comments Comentários Especiais - + Synopsis Comment Comentário de Sinopse + + + Short Description Comment + + Page Break and Space @@ -1689,296 +1782,351 @@ Quebra de Página - + Vertical Space (Single) Espaço Vertical (Único) - + Vertical Space (Multi) Espaço Vertical (Múltiplos) - + Placeholder Text Texto de Espaço Reservado - + &Format &Formatar - - Emphasis - Ênfase + + Bold + - - Strong Emphasis - Ênfase Forte + + Italic + - + Strikethrough Tachado - + Wrap Double Quotes Aspas Duplas - + Wrap Single Quotes Aspas Simples - - Header 1 (Partition) - Cabeçalho 1 (Partição) - - - - Header 2 (Chapter) - Cabeçalho 2 (Capítulo) + + More Formats ... + - Header 3 (Scene) - Cabeçalho 3 (Cena) + Bold (Shortcode) + - Header 4 (Section) - Cabeçalho 4 (Seção) + Italics (Shortcode) + - + + Strikethrough (Shortcode) + + + + + Underline + + + + + Highlight + + + + + Superscript + + + + + Subscript + + + + + Heading 1 (Partition) + + + + + Heading 2 (Chapter) + + + + + Heading 3 (Scene) + + + + + Heading 4 (Section) + + + + Novel Title Nome do Livro - + Unnumbered Chapter Capítulo Não Numerado - + + Hard Scene + + + + Align Left Alinhar à Esquerda - + Align Centre Alinhar ao Centro - + Align Right Alinhar à Direita - + Indent Left Recuo à Esquerda - + Indent Right Recuo à Direita - + Toggle Comment Alternar Comentários - + + Toggle Ignore Text + + + + Remove Block Format Limpar Formatação do Bloco - - Convert Single Quotes - Converter Aspas Simples + + Replace Straight Single Quotes + - - Convert Double Quotes - Converter Aspas Duplas + + Replace Straight Double Quotes + - + Remove In-Paragraph Breaks Remover Quebras no Parágrafo - + &Search Pe&squisa - + Find Procurar - + Replace Substituir - + Find Next Procurar o Próximo - + Find Previous Procurar a Anterior - + Replace Next Substituir o Próximo - + + Find in Project + + + + &Tools Ferramen&tas - + Check Spelling Checar Ortografia - + Spell Check Language Idioma da Verificação Ortográfica - + Default Padrão - + Re-Run Spell Check Checar Ortografia Agora - + Project Word List Lista de Palavras do Projeto - + + Add Dictionaries + + + + Rebuild Index Reindexar - + Backup Project Cria uma cópia de segurança do diretório do projeto - + Build Manuscript Compilar Manuscrito - + Writing Statistics Estatísticas de Escrita - + Preferences Preferências - + &Help A&juda - + About novelWriter Sobre o novelWriter - + About Qt5 Sobre o Qt5 - + User Manual (Online) Manual do Usuário (Online) - + User Manual (PDF) Manual do Usuário (PDF) - + Report an Issue (GitHub) Reportar um Problema (Github) - + Ask a Question (GitHub) Fazer uma Pergunta (Github) - + The novelWriter Website Website do novelWriter - - - Check for New Release - Verificar por Nova Versão - GuiMainStatus - - + + None Nenhum - + Editor Editor - + Project Projeto - + Session Time Tempo de Sessão - + Words: {0} ({1}) Palavras: {0} ({1}) - + Project word count (session change) Contagem de palavras do projeto (alteradas na sessão) - + Novel word count (session change) Contagem de palavras do livro (alteradas na sessão) @@ -1986,53 +2134,63 @@ GuiManuscript - + Build Manuscript Compilar Manuscrito - + Add New Build Adicionar uma Nova Compilação - + Delete Selected Build Excluir a Compilação Selecionada - + Edit Selected Build Editar a Compilação Selecionada - + Builds Compilações - + + Details + Detalhes + + + + Outline + Esboço + + + Preview Pré-Visualização - + Print Imprimir - + Build Compilar - + Close Fechar - - + + My Manuscript Meu Manuscrito @@ -2040,70 +2198,94 @@ GuiManuscriptBuild - + Build Manuscript Compilar Manuscrito - + Output Format Formato de Saída - + Table of Contents Sumário - + Path Caminho - + File Name Nome do Arquivo - + Reset file name to default Restaurar o nome do arquivo para o padrão - + + Open Folder + + + + &Build &Compilar - + Select Folder Selecionar Diretório - + Output folder does not exist. Diretório de destino não existe. - + The file already exists. Do you want to overwrite it? O arquivo já existe. Deseja sobrescrevê-lo? + + GuiNovelDetails + + + + Novel Details + + + + + Overview + Visão Geral + + + + Contents + Conteúdo + + GuiNovelToolBar - + Outline of {0} Esboço de {0} - + Novel Root Raiz do Livro - + Refresh Atualizar @@ -2133,7 +2315,7 @@ Enredo do Livro - + Column Size Tamanho da Coluna @@ -2144,7 +2326,7 @@ Mais Opções - + Maximum column size in % Tamanho máximo da coluna em % @@ -2152,7 +2334,7 @@ GuiNovelTree - + No meta data Sem metadados @@ -2160,65 +2342,64 @@ GuiOutlineDetails - - - - + + + Title Título - + Chapter Capítulo - + Scene Cena - + Section Seção - + Document Documento - + Status Estado - + Characters Caracteres - + Words Palavras - + Paragraphs Parágrafos - + Synopsis Sinopse - + Title Details Detalhes do Título - + Reference Tags Referências das Etiquetas @@ -2226,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Selecionar Colunas @@ -2234,1052 +2415,636 @@ GuiOutlineToolBar - + Outline of Esboço de - + Refresh Atualizar + + + Export CSV + + + + + GuiOutlineTree + + + Save Outline As + + GuiPreferences - + + Preferences Preferências - + + Search + Pesquisa + + + General Geral - - Projects - Projetos + + Appearance + - - Documents - Documentos + + Display language + - - Editor - Editor + + + + Requires restart to take effect. + É necessário reiniciar para ter efeito. - - - Highlighting - Destaque - - - - Automation - Automação - - - - Quotes - Citações - - - - GuiPreferencesAutomation - - - Automatic Features - Funcionalidades Automáticas - - - - Auto-select word under cursor - Selecionar automaticamente a palavra sob o cursor - - - - Apply formatting to word under cursor if no selection is made. - Aplicar a formatação à palavra sob o cursor se nenhuma seleção for feita. - - - - Auto-replace text as you type - Substituir automaticamente o texto enquanto digita - - - - Allow the editor to replace symbols as you type. - Permite que o editor substituia símbolos emquanto você digita. - - - - Replace as You Type - Substituição Durante a Digitação - - - - Auto-replace single quotes - Substituir automaticamente aspas simples - - - - - Try to guess which is an opening or a closing quote. - Tenta adivinhar se a aspa é de abertura ou de fechamento. - - - - Auto-replace double quotes - Subsitituir automaticamente aspas duplas - - - - Auto-replace dashes - Substituir automaticamente os travessões - - - - Double and triple hyphens become short and long dashes. - Hífens duplos ou triplos se tornam travessões curtos ou longos. - - - - Auto-replace dots - Substituir automaticamente os pontos - - - - Three consecutive dots become ellipsis. - Três pontos consecutivos se tornam uma reticência. - - - - Automatic Padding - Espaçamento Automático - - - - Insert non-breaking space before - Insere um espaço não-separável antes - - - - Automatically add space before any of these symbols. - Adicionar automaticamente um espaço antes de cada um desses símbolos. - - - - Insert non-breaking space after - Insere um espaço não-separável após - - - - Automatically add space after any of these symbols. - Adicionar automaticamente um espaço após cada um desses símbolos. - - - - Use thin space instead - Usar um espaço estreito - - - - Inserts a thin space instead of a regular space. - Insere um espaço estreito ao invés de um espaço regular. - - - - GuiPreferencesDocuments - - - Text Style - Estilo do Texto - - - - Font family - Família da fonte - - - - - - - Applies to both document editor and viewer. - Aplica-se para o editor e visualizador de documentos. - - - - Font size - Tamanho da fonte - - - - pt - pt - - - - Text Flow - Fluxo do Texto - - - - Maximum text width in "Normal Mode" - Largura máxima do texto no "Modo Normal" - - - - Set to 0 to disable this feature. - Defina 0 para desativar esta funcionalidade. - - - - - - - px - px - - - - Maximum text width in "Focus Mode" - Largura máxima do texto no "Modo Foco" - - - - The maximum width cannot be disabled. - A largura máxima não pode ser desativada. - - - - Hide document footer in "Focus Mode" - Ocultar o rodapé do documento no "Modo Foco" - - - - Hide the information bar in the document editor. - Ocultar a barra de informações no editor de documentos. - - - - Justify the text margins - Justificar as margens de texto - - - - Minimum text margin - Margem de texto mínima - - - - Tab width - Largura da tabulação - - - - The width of a tab key press in the editor and viewer. - A largura de uma tabulação no editor e visualizador. - - - - GuiPreferencesEditor - - - Spell Checking - Correção Ortográfica - - - - None - Nenhum - - - - Spell check language - Idioma do corretor ortográfico - - - - Available languages are determined by your system. - Os idiomas disponíveis são determinados pelo seu sistema. - - - - Big document limit - Limite de documento grande - - - - Full spell checking is disabled above this limit. - A verificação ortográfica é desabilitada acima desse limite. - - - - kB - kB - - - - Word Count - Contagem de Palavras - - - - Word count interval - Intervalo de contagem de palavras - - - - seconds - segundos - - - - Include project notes in status bar word count - Incluir as notas do projeto na contagem de palavras - - - - Writing Guides - Guias de Escrita - - - - Show tabs and spaces - Mostrar tabulações e espaços - - - - Show line endings - Mostrar terminações de linha - - - - Scroll Behaviour - Comportamento da Rolagem - - - - Scroll past end of the document - Rolar após o final do documento - - - - Set to 0 to disable this feature. - Defina 0 para desativar esta funcionalidade. - - - - lines - linhas - - - - Typewriter style scrolling when you type - Rolagem no estilo de máquina de escrever quando digita - - - - Keeps the cursor at a fixed vertical position. - Mantém o cursor em uma posição vertical fixa. - - - - Minimum position for Typewriter scrolling - Posição máxima da rolagem de máquina de escrever - - - - Percentage of the editor height from the top. - Porcentagem da altura do editor desde o topo. - - - - GuiPreferencesGeneral - Look and Feel - Aparência + Colour theme + - - Main GUI language - Idioma da Interface + + General colour theme and icons. + Cores e ícones gerais do tema. - - - - Requires restart to take effect. - É necessário reiniciar para ter efeito. + + Application font family + - - Main GUI theme - Tema da interface + + Application font size + + + + + + pt + pt - General colour theme and icons. - Cores e ícones gerais do tema. + Hide vertical scroll bars in main windows + Ocultar a barra de rolagem vertical nas janelas principais - - Editor theme - Tema do editor + + + Scrolling available with mouse wheel and keys only. + A rolagem de tela estará diponível apenas com o mouse ou teclado. - - Colour theme for the editor and viewer. - Tema de cores do editor e do visualizador. + + Hide horizontal scroll bars in main windows + Ocultar a barra de rolagem horizontal nas janelas principais + + + + Document Style + - Font family - Família da fonte + Document colour theme + - - Font size - Tamanho da fonte + + Colour theme for the editor and viewer. + Tema de cores do editor e do visualizador. - - pt - pt - - - - GUI Settings - Configurações da Interface - - - - Emphasise partition and chapter labels - Destaca os rótulos de partições e capítulos - - - - Makes them stand out in the project tree. - Faz com que eles se destaquem na estrutura do projeto. - - - - Show full path in document header - Mostrar o caminho completo do documento no cabeçalho - - - - Add the parent folder names to the header. - Adiciona o nome dos diretórios-pai ao cabeçalho. - - - - Hide vertical scroll bars in main windows - Ocultar a barra de rolagem vertical nas janelas principais - - - - - Scrolling available with mouse wheel and keys only. - A rolagem de tela estará diponível apenas com o mouse ou teclado. - - - - Hide horizontal scroll bars in main windows - Ocultar a barra de rolagem horizontal nas janelas principais - - - - GuiPreferencesProjects - - - Automatic Save - Salvamento Automático - - - - Save document interval - Intervalo de salvamento do documento - - - - How often the document is automatically saved. - Com qual frequência o documento é salvo automaticamente. - - - - - seconds - segundos - - - - Save project interval - Intervalo de salvamento do projeto - - - - How often the project is automatically saved. - Com qual frequência o projeto é salvo automaticamente. - - - - Project Backup - Cópia de Segurança - - - - Browse - Procurar - - - - Backup storage location - Localização da cópia de segurança - - - - - Path: {0} - Caminho: {0} - - - - Run backup when the project is closed - Executar a cópia de segurança quando o projeto é fechado - - - - Can be overridden for individual projects in Project Settings. - Pode ser sobrescrito para projetos individuais nas configurações do projeto. - - - - Ask before running backup - Perguntar antes de executar a cópia de segurança - - - - If off, backups will run in the background. - Se desativado, cópias de segurança serão executadas em segundo plano. - - - - Session Timer - Temporizador da Sessão - - - - Pause the session timer when not writing - Pausa o temporizador da sessão quando não estiver escrevendo - - - - Also pauses when the application window does not have focus. - Também pausa quando a janela da aplicação não estiver em foco. - - - - Editor inactive time before pausing timer - Tempo inativo do editor antes de pausar o temporizador + + Document font family + + + + + Applies to both document editor and viewer. + Aplica-se para o editor e visualizador de documentos. + + + + Document font size + + + + + Emphasise partition and chapter labels + Destaca os rótulos de partições e capítulos + + + + Makes them stand out in the project tree. + Faz com que eles se destaquem na estrutura do projeto. + + + + Show full path in document header + Mostrar o caminho completo do documento no cabeçalho + + + + Add the parent folder names to the header. + Adiciona o nome dos diretórios-pai ao cabeçalho. + + + + Include project notes in status bar word count + Incluir as notas do projeto na contagem de palavras + + + + Auto Save + + + + + Save document interval + Intervalo de salvamento do documento + + + + How often the document is automatically saved. + Com qual frequência o documento é salvo automaticamente. + + + + + seconds + segundos + + + + Save project interval + Intervalo de salvamento do projeto + + + + How often the project is automatically saved. + Com qual frequência o projeto é salvo automaticamente. + + + + Project Backup + Cópia de Segurança + + + + Browse + Procurar + + + + Backup storage location + Localização da cópia de segurança + + + + + Path: {0} + Caminho: {0} + + + + Run backup when the project is closed + Executar a cópia de segurança quando o projeto é fechado + + + + Can be overridden for individual projects in Project Settings. + Pode ser sobrescrito para projetos individuais nas configurações do projeto. + + + + Ask before running backup + Perguntar antes de executar a cópia de segurança + + + + If off, backups will run in the background. + Se desativado, cópias de segurança serão executadas em segundo plano. + + + + Session Timer + Temporizador da Sessão + + + + Pause the session timer when not writing + Pausa o temporizador da sessão quando não estiver escrevendo + + + + Also pauses when the application window does not have focus. + Também pausa quando a janela da aplicação não estiver em foco. + + + + Editor inactive time before pausing timer + Tempo inativo do editor antes de pausar o temporizador + + + User activity includes typing and changing the content. - Atividades de usuário incluem escrever e alterar o conteúdo. + Atividades de usuário incluem escrever e alterar o conteúdo. - + minutes - minutos + minutos - - Backup Directory - Diretório das Cópias de Segurança - - - - GuiPreferencesQuotes - - - Quotation Style - Estilo de Aspas + + Writing + - - Single quote open style - Estilo da aspa de abertura simples + + Text Flow + Fluxo do Texto - - The symbol to use for a leading single quote. - O símbolo usado para a aspa simples à esquerda. + + Maximum text width in "Normal Mode" + Largura máxima do texto no "Modo Normal" - - Single quote close style - Estilo da aspa de fechamento simples + + Set to 0 to disable this feature. + Defina 0 para desativar esta funcionalidade. - - The symbol to use for a trailing single quote. - O símbolo usado para a aspa simples à esquerda. + + + + + px + px - - Double quote open style - Estilo da aspa de abertura dupla + + Maximum text width in "Focus Mode" + Largura máxima do texto no "Modo Foco" - - The symbol to use for a leading double quote. - O símbolo usado para a aspa dupla à esquerda. + + The maximum width cannot be disabled. + A largura máxima não pode ser desativada. - - Double quote close style - Estilo da aspa de fechamento dupla + + Hide document footer in "Focus Mode" + Ocultar o rodapé do documento no "Modo Foco" - - The symbol to use for a trailing double quote. - O símbolo usado para a aspa dupla à direita. - - - - GuiPreferencesSyntax - - - Quotes & Dialogue - Citações e Diálogos + + Hide the information bar in the document editor. + Ocultar a barra de informações no editor de documentos. - - Highlight text wrapped in quotes - Destaca o texto em citações + + Justify the text margins + Justificar as margens de texto - - - - Applies to the document editor only. - Aplica-se apenas para o editor de documentos. + + Minimum text margin + Margem de texto mínima - - Allow open-ended single quotes - Permite citações com aspas simples sem fechamento + + Tab width + Largura da tabulação - - Highlight single-quoted line with no closing quote. - Destaca a linha com citação de aspas simples sem aspas de fechamento. + + The width of a tab key press in the editor and viewer. + A largura de uma tabulação no editor e visualizador. - - Allow open-ended double quotes - Permite citações com aspas duplas sem fechamento + + Text Editing + - - Highlight double-quoted line with no closing quote. - Destaca a linha com citação de aspas duplas sem aspas de fechamento. - - - - Text Emphasis - Ênfase de Texto - - - - Add highlight colour to emphasised text - Adiciona destaque de cor ao texto enfatizado - - - - Text Errors - Erros de Texto - - - - Highlight multiple or trailing spaces - Destacar espaços múltiplos ou no final - - - - GuiProjectDetails - - - Project Details - Detalhes do Projeto - - - - Overview - Visão Geral - - - - Contents - Conteúdo - - - - GuiProjectDetailsContents - - - Table of Contents - Sumário - - - - Title - Título - - - - Words - Palavras - - - - Pages - Páginas - - - - Page - Página - - - - Progress - Progresso - - - - Typical word count for a 5 by 8 inch book page with 11 pt font is 350. - Contagem de palavras típica para uma página de livro de 5 por 8 polegadas com a fonte de 11 pt é 350. - - - - Start counting page numbers from this page. - Inicia a contagem de numero de páginas à partir dessa página. - - - - Assume a new chapter or partition always start on an odd numbered page. - Assume que um capítulo ou partição sempre começa em uma página com numeração ímpar. - - - - Words per page - Palavras por página - - - - Count pages from - Contar páginas à partir da página - - - - Clear double pages - Eliminar páginas duplas - - - - END - FIM - - - - Untitled - Sem Título - - - - GuiProjectDetailsMain - - - Words - Palavras - - - - Chapters - Capítulos - - - - Scenes - Cenas - - - - Revisions - Revisões - - - - Editing Time - Tempo de Edição - - - - Path - Caminho - - - - Project: {0} - Projeto: {0} - - - - By {0} - Por {0} - - - - GuiProjectEditMain - - - Project Settings - Configurações do Projeto - - - - Project name - Nome do projeto - - - - Should be set only once. - Deve ser definido apenas uma vez. - - - - Novel title - Título do tivro - - - - - Change whenever you want! - Mude quando quiser! - - - - Author(s) - Autor(es) - - - - Default - Padrão - - - + Spell check language - Idioma do corretor ortográfico + Idioma do corretor ortográfico - - - Overrides main preferences. - Sobrescreve as preferências globais. + + Available languages are determined by your system. + Os idiomas disponíveis são determinados pelo seu sistema. - - No backup on close - Não salvar cópia de segurança ao fechar + + Auto-select word under cursor + Selecionar automaticamente a palavra sob o cursor + + + + Apply formatting to word under cursor if no selection is made. + Aplicar a formatação à palavra sob o cursor se nenhuma seleção for feita. + + + + Show tabs and spaces + Mostrar tabulações e espaços + + + + Show line endings + Mostrar terminações de linha + + + + Editor Scrolling + + + + + Scroll past end of the document + Rolar após o final do documento + + + + Also centres the cursor when scrolling. + + + + + Typewriter style scrolling when you type + Rolagem no estilo de máquina de escrever quando digita + + + + Keeps the cursor at a fixed vertical position. + Mantém o cursor em uma posição vertical fixa. + + + + Minimum position for Typewriter scrolling + Posição máxima da rolagem de máquina de escrever + + + + Percentage of the editor height from the top. + Porcentagem da altura do editor desde o topo. + + + + Text Highlighting + + + + + Highlight text wrapped in quotes + Destaca o texto em citações + + + + + + Applies to the document editor only. + Aplica-se apenas para o editor de documentos. + + + + Allow open-ended single quotes + Permite citações com aspas simples sem fechamento + + + + Highlight single-quoted line with no closing quote. + Destaca a linha com citação de aspas simples sem aspas de fechamento. + + + + Allow open-ended double quotes + Permite citações com aspas duplas sem fechamento + + + + Highlight double-quoted line with no closing quote. + Destaca a linha com citação de aspas duplas sem aspas de fechamento. + + + + Add highlight colour to emphasised text + Adiciona destaque de cor ao texto enfatizado + + + + Highlight multiple or trailing spaces + Destacar espaços múltiplos ou no final + + + + Text Automation + + + + + Auto-replace text as you type + Substituir automaticamente o texto enquanto digita + + + + Allow the editor to replace symbols as you type. + Permite que o editor substituia símbolos emquanto você digita. + + + + Auto-replace single quotes + Substituir automaticamente aspas simples + + + + + Try to guess which is an opening or a closing quote. + Tenta adivinhar se a aspa é de abertura ou de fechamento. + + + + Auto-replace double quotes + Subsitituir automaticamente aspas duplas + + + + Auto-replace dashes + Substituir automaticamente os travessões + + + + Double and triple hyphens become short and long dashes. + Hífens duplos ou triplos se tornam travessões curtos ou longos. + + + + Auto-replace dots + Substituir automaticamente os pontos + + + + Three consecutive dots become ellipsis. + Três pontos consecutivos se tornam uma reticência. + + + + Insert non-breaking space before + Insere um espaço não-separável antes + + + + Automatically add space before any of these symbols. + Adicionar automaticamente um espaço antes de cada um desses símbolos. + + + + Insert non-breaking space after + Insere um espaço não-separável após + + + + Automatically add space after any of these symbols. + Adicionar automaticamente um espaço após cada um desses símbolos. + + + + Use thin space instead + Usar um espaço estreito + + + + Inserts a thin space instead of a regular space. + Insere um espaço estreito ao invés de um espaço regular. + + + + Quotation Style + Estilo de Aspas + + + + Single quote open style + Estilo da aspa de abertura simples + + + + The symbol to use for a leading single quote. + O símbolo usado para a aspa simples à esquerda. + + + + Single quote close style + Estilo da aspa de fechamento simples + + + + The symbol to use for a trailing single quote. + O símbolo usado para a aspa simples à esquerda. + + + + Double quote open style + Estilo da aspa de abertura dupla + + + + The symbol to use for a leading double quote. + O símbolo usado para a aspa dupla à esquerda. + + + + Double quote close style + Estilo da aspa de fechamento dupla + + + + The symbol to use for a trailing double quote. + O símbolo usado para a aspa dupla à direita. + + + + Backup Directory + Diretório das Cópias de Segurança - GuiProjectEditReplace + GuiProjectSearch - - Text Replace List for Preview and Export - Lista de Substituição de Texto para o Preview ou Exportação + + Project Search + - - Keyword - Palavra-chave + + Case Sensitive + Diferenciar Maiúsculas e Minúsculas - - Replace With - Substituir Com + + Whole Words Only + Apenas Palavras Inteiras - - Select item to edit - Selecione um item para editar + + RegEx Mode + Expressão Regular - - Save - Salvar - - - - GuiProjectEditStatus - - - Novel File Status Levels - Níves de Estado do Arquivo do Livro - - - - Note File Importance Levels - Níves de Importância do Arquivo do Livro - - - - Label - Rótulo - - - - Usage - Uso - - - - Select item to edit - Selecione um item para editar - - - - Colour - Cor - - - - Save - Salvar - - - - Select Colour - Selecione a Cor - - - - New Item - Novo Item - - - - Cannot delete a status item that is in use. - Não é possível remove um item de status em uso. - - - - Not in use - Não utilizado - - - - Used once - Utilizado uma vez - - - - Used by {0} items - Utilizado por {0} items - - - - GuiProjectLoad - - - - Open Project - Abrir Projeto - - - - Working Title - Nome do projeto - - - - Words - Palavras - - - - Last Opened - Aberto Pela Última Vez - - - - Recently Opened Projects - Projetos Abertos Recentemente - - - - Path - Caminho - - - - New - Novo - - - - Remove - Remover - - - - novelWriter Project File ({0}) - Arquivo de Projeto do novelWriter ({0}) - - - - All files ({0}) - Todos os arquivos ({0}) - - - - Remove '{0}' from the recent projects list? The project files will not be deleted. - Remover '{0}' da lista de projetos recentes? Os arquivos do projeto não serão excluídos. + + Search for + GuiProjectSettings - + + Project Settings Configurações do Projeto - + Settings Configurações - + Status Estado - + Importance Importância - + Auto-Replace Substituição Automática @@ -3287,52 +3052,47 @@ GuiProjectToolBar - + Project Content Conteúdo do Projeto - + Quick Links Links Rápidos - + Move Up Mover para Cima - + Move Down Mover para Baixo - + Add Item Adicionar Item - + Expand All Expandir Tudo - + Collapse All Recolher Tudo - - Undo Move - Desfazer Mover - - - + Empty Trash Esvaziar a Lixeira - + More Options Mais Opções @@ -3340,216 +3100,118 @@ GuiProjectTree - + Active Ativo - + Inactive Inativo - - Did not find anywhere to add the file or folder! - Não foi possível encontrar nenhum lugar para adicionar o arquivo ou diretório! - - - - Cannot add new files or folders to the Trash folder. - Não foi possível adicionar novos arquivos ou diretórios à Lixeira. - - - - New Note - Nova Nota - - - - New Chapter - Novo Capítulo - - - - New Scene - Nova Cena - - - - New Document - Novo Documento - - - - New Folder - Novo Diretório - - - - There is currently no Trash folder in this project. - Não exite um diretório de Lixeira neste projeto. - - - - The Trash folder is already empty. - O diretório de Lixeira já está vazio. - - - + Permanently delete {0} file(s) from Trash? Permanentemente remover {0} arquivo(s) da Lixeira? - + + Did not find anywhere to add the file or folder! + Não foi possível encontrar nenhum lugar para adicionar o arquivo ou diretório! + + + + Cannot add new files or folders to the Trash folder. + Não foi possível adicionar novos arquivos ou diretórios à Lixeira. + + + + New Note + Nova Nota + + + + New Chapter + Novo Capítulo + + + + New Scene + Nova Cena + + + + New Document + Novo Documento + + + + New Folder + Novo Diretório + + + + There is currently no Trash folder in this project. + Não exite um diretório de Lixeira neste projeto. + + + + The Trash folder is already empty. + O diretório de Lixeira já está vazio. + + + Move '{0}' to Trash? Mover '{0}' para a Lixeira? - + Root folders can only be deleted when they are empty. Os diretórios-raiz só podem ser excluídos quando estiverem vazios. - + Permanently delete '{0}'? Excluir permanentemente '{0}? - - Empty Trash - Esvaziar a Lixeira + + Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent. + - - Open Document - Abrir Documento - - - - View Document - Ver Documento - - - - Rename - Renomear - - - - Toggle Active - Alternar Ativo - - - - Set Status to ... - Definir o Estado para... - - - - Set Importance to ... - Definir a Importância para... - - - - Transform - Transformar - - - - - - - Convert to {0} - Converter para {0} - - - - Merge Child Items into Self - Mesclar Sub-Itens Neste - - - - Merge Child Items into New - Mesclar Sub-Itens em um Novo - - - - Merge Documents in Folder - Mesclar os Documentos no Diretório - - - - Split Document by Headers - Dividir o Documento por Cabeçalhos - - - - Expand All - Expandir Tudo - - - - Collapse All - Recolher Tudo - - - - Duplicate from Here - Duplicar Daqui - - - - Duplicate Document - Duplicar Documento - - - - Delete Permanently - Excluir Permanentemente - - - - Move to Trash - Mover para o Lixo - - - - Do you want to convert the folder to a {0}? This action cannot be reversed. - Você deseja converter o diretório para {0}? Esta ação não pode ser revertida. - - - + No documents selected for merging. Nenhum documento selecionado para mesclagem. - + Merged Mesclado - - + + Could not write document content. Não foi possível escrever o conteúdo do documento. - + Do you want to duplicate this document? Deseja duplicar este documento? - + Do you want to duplicate this item and all child items? Deseja duplicar este item e todos seus subitens? - + Could not duplicate all items. Não foi possível duplicar todos os itens. - + There is nowhere to add item with name '{0}'. Não há lugar para adicionar o item com o nome '{0}'. @@ -3557,268 +3219,262 @@ GuiSideBar - - Project - Projeto - - - + Project Tree View Exibição em Árvore do Projeto - - Novel - Livro - - - + Novel Tree View Visualização em Árvore do Livro - - Outline - Esboço + + Project Search + - + Novel Outline View Visão do Esboço do Livro - - Build - Construir - - - + Build Manuscript Compilar Manuscrito - - Details - Detalhes + + Novel Details + - Project Details - Detalhes do Projeto - - - - Stats - Estatísticas - - - Writing Statistics Estatísticas de Escrita - + Settings Configurações - GuiUpdates + GuiWelcome - - Check for Updates - Verificar Atualizações + + Welcome + - - Current Release - Versão Atual + + List + - - - novelWriter {0} released on {1} - novelWriter {0} lançado em {1} + + New + Novo - - Latest Release - Versão Mais Recente + + Browse + Procurar - - Checking ... - Verificando ... + + Cancel + Cancelar - - Download: {0} - Transferir: {0} + + Create + + + + + Open + Abrir GuiWordList - - + + Project Word List Lista de Palavras do Projeto - - Cannot add a blank word. - Não é possível adicionar uma palavra em branco. + + Import words from text file + - - The word '{0}' is already in the word list. - A palavra '{0}' já está na lista de palavras. + + Export words to text file + + + + + Note: The import file must be a plain text file with UTF-8 or ASCII encoding. + + + + + Import File + Importar Arquivo + + + + Export File + GuiWritingStats - + Writing Statistics Estatísticas de Escrita - + Session Start Início da Sessão - + Length Tamanho - + Idle Ocioso - + Words Palavras - + Histogram Histograma - + Sum Totals Soma dos Totais - + Total Time: Tempo Total: - + Idle Time: Tempo Ocioso: - + Filtered Time: Tempo Filtrado: - + Novel Word Count: Contagem de Palavras do Livro: - + Notes Word Count: Contagem de Palavras das Notas: - + Total Word Count: Contagem Total de Palavras: - + Filters Filtros - + Count novel files Contagem dos arquivos do livro - + Count note files Contagem dos arquvos de notas - + Hide zero word count Ocultar contagem zerada de palavras - + Hide negative word count Ocultar contagem negativa de palavras - + Group entries by day Agrupar entradas por dia - + Show idle time Mostrar tempo ocioso - + Word count cap for the histogram Limite de quantidade de palavras no histograma - + Save As Salvar Como - + JSON Data File (.json) Aruivo de Dados JSON (.json) - + CSV Data File (.csv) Arquivo de Dados CSV (.csv) - + JSON Data File Aruivo de Dados JSON - + CSV Data File Arquivo de Dados CSV - + Save Data As Salvar Dados Como - + {0} file successfully written to: Arquivo {0} escrito com sucesso para: - + Failed to write {0} file. Falha ao escrever o arquivo {0}. @@ -3826,143 +3482,153 @@ NWProject - + Could not delete document file. Não foi possível Excluir o arquivo do documento. - - Could not open project with path: {0} - Não foi possível abrir o projeto com o caminho: {0} + + Not a known project file format. + - + + Project file not found. + + + + + Failed to open project. + + + + Unknown Desconhecido - + Project file does not appear to be a novelWriterXML file. O arquivo do projeto não parece ser um arquivo XML do novelWriter. - + 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 arquivo de projeto do novelWriter desconhecido ou não-suportado. O projeto não pode ser aberto por essa versão do novelWriter. O arquivo foi salvo com a versão {0} do novelWriter. - + Failed to parse project xml. Houve uma falha ao interpretar o conteúdo XML do projeto. - + 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? O formato do arquivo do seu projeto está prestes a ser atualizado. Se você continuar, as versões mais antigas do novelWriter não poderão mais abrir este projeto. 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? O projeto foi salvo por uma versão mais nova do novelWriter, versão {0}. Esta é a versão {1}. Caso deseje continuar a abrir o projeto, alguns atributos e configurações podem não ser preservados, mas o projeto deve funcionar corretamente. Continuar a abrir o projeto? - + Recovered Recuperado - + Found {0} orphaned file(s) in the project. {1} file(s) were recovered. Encontrado(s) {0} arquivo(s) órfão(s) no projeto. {1} arquivo(s) recuperado(s). - + Opened Project: {0} Projeto Aberto: {0} - + There is no project open. Não há um projeto aberto. - + Failed to save project. Houve uma falha ao salvar o projeto. - + Saved Project: {0} Projeto Salvo: {0} - + Backing up project ... Realizando uma cópia de segurança do projeto... - + Cannot backup project because no project name is set. Please set a Project Name in Project Settings. Não foi possível realizar a cópia de segurança do projeto porque o nome do projeto não está definido. Por favor defina o Nome do Projeto em Configurações do Projeto. - + Could not create backup folder. Não foi possível ler o diretório de cópias de segurança. - + Created a backup of your project of size {0}B. Foi criado um backup do seu projeto com {0}B de tamanho. - + Path: {0} Caminho: {0} - + Could not write backup archive. Não foi possível escrever o arquivo da cópia de segurança. - + Project backed up to '{0}' Cópia de segurança do projeto realizada em '{0}' - - + + New Novo - + Note Nota - + Draft Rascunho - + Finished Finalizado - + Minor Menor - + Major Maior - + Main Principal @@ -3970,313 +3636,97 @@ NovelSelector - + All Novel Folders Todos os Diretórios do Livro - - ProjWizardCustomPage - - - Custom Project Options - Opções Personalizadas do Projeto - - - - Select which additional elements to populate the project with. You can skip making chapters and add only scenes by setting the number of chapters to 0. - Selecione quais elementos adicionais serão preenchidos com o projeto. Você pode pular a criação de capítulos e adicionar apenas cenas definindo o número de capítulos para 0. - - - - Add a folder for plot notes - Adicionar um diretório para notas do enredo - - - - Add a folder for character notes - Adicionar um diretório para notas de personagens - - - - Add a folder for location notes - Adicionar um diretório para notas de local - - - - Add example notes to the above - Adicionar notas de exemplo aos itens acima - - - - Add chapters to the novel folder - Adicionar capítulos ao diretório do livro - - - - Add scenes to each chapter - Adicione cenas a cada capítulo - - - - ProjWizardFinalPage - - - Summary - Sumário - - - - Project Name: {0} - Nome do Projeto: {0} - - - - Project Path: {0} - Caminho do Projeto: {0} - - - - Fill the project with a minimal set of items - Popular o projeto com um conjunto mínimo de items - - - - Fill the project with example files - Popular o projeto com arquivos de exemplo - - - - Add a folder for plot notes - Adicionar um diretório para notas de enredo - - - - Add a folder for character notes - Adicionar um diretório para notas de personagens - - - - Add a folder for location notes - Adicionar um diretório para notas de local - - - - Add example notes to the above - Adicionar notas de exemplo aos itens acima - - - - Add {0} chapters to the novel folder - Adicionar {0} capítulos ao diretório do livro - - - - Add {0} scenes to each chapter - Adicione {0} cenas a cada capítulo - - - - Add {0} scenes - Adicionar {0} cenas - - - - You have selected the following: - Você selecionou o seguinte: - - - - Press '{0}' to create the new project. - Pressione '{0}' para criar um novo projeto. - - - - Done - Pronto - - - - Finish - Terminar - - - - ProjWizardFolderPage - - - - Select Project Folder - Selecione o Diretório do Projeto - - - - Select a location to store the project. A new project folder will be created in the selected location. - Selecione o local para armazenar o projeto. Um novo diretório será criado para o projeto no local selecionado. - - - - Required - Obrigatório - - - - Project Path - Caminho do projeto - - - - Error: A project folder cannot be created using this path. - Erro: Um diretório de projeto não pode ser criado utilizando este caminho. - - - - Error: The selected path already exists. - Erro: O caminho selecionado já existe. - - - - ProjWizardIntroPage - - - Create New Project - Criar um Projeto Novo - - - - Provide at least a project name. The project name should not be changed beyond this point as it is used for generating file names for for instance backups. The other fields are optional and can be changed at any time in Project Settings. - Forneça pelo menos o nome do projeto. O nome do projeto não poderá ser modificado após esse ponto pois é utilizado pela aplicação para a geração de nomes de arquivos e para cópias de segurança. Os outros campos são opcionais e podem ser modificados a qualquer momento nas Configurações do Projeto. - - - - Side image by {0}, {1} - Imagem ao lado por {0}, {1} - - - - Required - Obrigatório - - - - - Optional - Opcional - - - - Project Name - Nome do Projeto - - - - Novel Title - Nome do Livro - - - - Author(s) - Autor(es) - - - - ProjWizardPopulatePage - - - Populate Project - Popular o Projeto - - - - Choose how to pre-fill the project. Either with a minimal set of starter items, an example project explaining and showing many of the features, or show further custom options on the next page. - Escolha como pré-popular o projeto. escolha entre um conjunto mínimo de items iniciais, um projeto de exemplo explicando e mostrando várias das funcionalidades ou escolha opções personalizadas na próxima página. - - - - Fill the project with a minimal set of items - Popular o projeto com um conjunto mínimo de items - - - - Fill the project with example files - Popular o projeto com arquivos de exemplo - - - - Show detailed options for filling the project - Mostrar opções detalhadas para popular o projeto - - ProjectBuilder - + + The target folder is not empty. Please choose another folder. + + + + + An error occurred while trying to create the project. + + + + New Project Novo Projeto - - New Chapter - Novo Capítulo - - - - New Scene - Nova Cena - - - + Title Page Página de Título - + By Por - + Summary of the chapter. Resumo do capítulo. - + Summary of the scene. Resumo da cena. - + + A short description. + + + + Chapter {0} Capítulo {0} - - + + Scene {0} Cena {0} - + Main Plot Enredo Principal - + Protagonist Protagonista - + Main Location Local Principal - + + + The target folder already exists. Please choose another folder. + + + + + Could not copy project files. + + + + Failed to create a new example project. Houve uma falha ao criar um novo projeto de exemplo. - + Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation. Houve uma falha ao criar um novo projeto de exemplo. Não foi possível encontrar os arquivos necessários. Eles parecem estar faltando nesta instalação. @@ -4470,60 +3920,166 @@ - Tokenizer + SharedData - - Synopsis - Sinopse + + novelWriter Project File or Zip File + - - Document '{0}' is too big ({1} MB). Skipping. - O documento '{0}' é muito grande ({1} MB). Ignorando. + + novelWriter Project File + - - ERROR - ERRO + + Open Project + Abrir Projeto + + + + VersionInfoWidget + + + Latest Version: {0} + + + + + Checking ... + Verificando ... + + + + Download from {0} + + + + + Version + + + + + Released on + + + + + Release Notes + + + + + Check Now + + + + + Failed + + + + + _ContentsPage + + + Table of Contents + Sumário + + + + Title + Título + + + + Words + Palavras + + + + Pages + Páginas + + + + Page + Página + + + + Progress + Progresso + + + + Words per page + Palavras por página + + + + First page offset + + + + + Chapters on odd pages + + + + + Untitled + Sem Título + + + + END + FIM _DetailsWidget - + Setting Configuração - + Value Valor - + Name Nome - + Selection Seleção - + Title Título + + + Hidden + Oculto + _FilterTab - + Included in manuscript Incluído no Manuscrito - + Excluded from manuscript Excluído do Manuscrito @@ -4543,43 +4099,35 @@ Redefinir para o padrão - + Mark selection as Marcar a seleção como - + Select Root Folders Selecionar os Diretórios-Raíz - - _FormatTab - - - Not Set - Não Definido - - _GuiAlert - + Information Informação - + Warning Alerta - + Error Erro - + Question Questão @@ -4587,95 +4135,729 @@ _HeadingsTab - - + Hide Ocultar - - + + Editing: {0} Editando: {0} - - + + None Nenhum - + Title Título - + Chapter Number Número do Capítulo - + Chapter Number (Word) Número do Capítulo (por Extenso) - + Chapter Number (Upper Case Roman) Número do Capítulo (Numeral Romano, Maiúsculas) - + Chapter Number (Lower Case Roman) Número do Capítulo (Numeral Romano, Minúsculas) - + Scene Number (In Chapter) Número da Cena (no Capítulo) - + Scene Number (Absolute) Número da Cena (Absoluto) - + + Point of View Character + Ponto de Vista do Personagem + + + + Focus Character + Personagem em Foco + + + Insert Inserir - + Apply Aplicar + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + Quebra de Página + + + + _NewProjectForm + + + Required + Obrigatório + + + + Optional + Opcional + + + + Create a fresh project + + + + + Create an example project + + + + + Copy an existing project + + + + + Project Name + Nome do Projeto + + + + Author + + + + + Project Path + Caminho do projeto + + + + Prefill Project + + + + + Set to 0 to only add scenes + + + + + Add {0} chapter documents + + + + + Add {0} scene documents (to each chapter) + + + + + Add a folder for plot notes + Adicionar um diretório para notas de enredo + + + + Add a folder for character notes + Adicionar um diretório para notas de personagens + + + + Add a folder for location notes + Adicionar um diretório para notas de local + + + + Add example notes to the above + Adicionar notas de exemplo aos itens acima + + + + Chapters and Scenes + + + + + Project Notes + Notas do Projeto + + + + Create New Project + Criar um Projeto Novo + + + + Select Project Folder + Selecione o Diretório do Projeto + + + + Fresh Project + + + + + Example Project + + + + + Template: {0} + + + + + _NewProjectPage + + + A project name is required. + + + + + _OpenProjectPage + + + The project path is not reachable. + + + + + Path + Caminho + + + + Remove '{0}' from the recent projects list? The project files will not be deleted. + Remover '{0}' da lista de projetos recentes? Os arquivos do projeto não serão excluídos. + + + + Open Project + Abrir Projeto + + + + Remove Project + + + + + _OverviewPage + + + Project + Projeto + + + + + Name + Nome + + + + Revisions + Revisões + + + + Editing Time + Tempo de Edição + + + + + Word Count + Contagem de Palavras + + + + In Novels + + + + + In Notes + + + + + Selected Novel + + + + + Chapters + Capítulos + + + + Scenes + Cenas + _PreviewWidget - + Press the "Preview" button to generate ... Clique no botão "Pré-Visualização" para gerar ... - + Processing ... Processando ... - + Done Pronto - + Unknown Desconhecido - + Built Criado + + _ProjectListModel + + + Word Count + Contagem de Palavras + + + + Last Opened + Aberto Pela Última Vez + + + + _ReplacePage + + + Text Auto-Replace for Preview and Build + + + + + Keyword + Palavra-chave + + + + Replace With + Substituir Com + + + + Select item to edit + Selecione um item para editar + + + + Save + Salvar + + + + _SettingsPage + + + Project name + Nome do projeto + + + + Changing this will affect the backup path. + + + + + Author(s) + Autor(es) + + + + + Only used when building the manuscript. + + + + + Project language + + + + + Default + Padrão + + + + Spell check language + Idioma do corretor ortográfico + + + + + Overrides main preferences. + Sobrescreve as preferências globais. + + + + Disable backup on close + + + + + _StatsWidget + + + + Words + Palavras + + + + + Characters + Caracteres + + + + Words in Headings + + + + + Words in Text + + + + + Headings + Cabeçalhos + + + + Paragraphs + Parágrafos + + + + Characters in Headings + + + + + Characters in Text + + + + + Characters, No Spaces + + + + + Characters in Headings, No Spaces + + + + + Characters in Text, No Spaces + + + + + _StatusPage + + + Novel Document Status Levels + + + + + Project Note Importance Levels + + + + + Label + Rótulo + + + + Usage + Uso + + + + Select item to edit + Selecione um item para editar + + + + Colour + Cor + + + + Save + Salvar + + + + Select Colour + Selecione a Cor + + + + New Item + Novo Item + + + + Cannot delete a status item that is in use. + Não é possível remove um item de status em uso. + + + + Not in use + Não utilizado + + + + Used once + Utilizado uma vez + + + + Used by {0} items + Utilizado por {0} items + + + + _TreeContextMenu + + + Empty Trash + Esvaziar a Lixeira + + + + Rename + Renomear + + + + Open Document + Abrir Documento + + + + View Document + Ver Documento + + + + Create New ... + + + + + Rename to Heading + + + + + Set Active to ... + + + + + Toggle Active + Alternar Ativo + + + + Set Status to ... + Definir o Estado para... + + + + + Manage Labels ... + + + + + Set Importance to ... + Definir a Importância para... + + + + Transform ... + + + + + + + + Convert to {0} + Converter para {0} + + + + Merge Child Items into Self + Mesclar Sub-Itens Neste + + + + Merge Child Items into New + Mesclar Sub-Itens em um Novo + + + + Merge Documents in Folder + Mesclar os Documentos no Diretório + + + + Split Document by Headings + + + + + Expand All + Expandir Tudo + + + + Collapse All + Recolher Tudo + + + + Duplicate + + + + + + Delete Permanently + Excluir Permanentemente + + + + + Move to Trash + Mover para o Lixo + + + + Move {0} items to Trash? + + + + + Do you want to convert the folder to a {0}? This action cannot be reversed. + Você deseja converter o diretório para {0}? Esta ação não pode ser revertida. + + + + _UpdatableMenu + + + From Template + + + + + _ViewPanelBackRefs + + + Document + Documento + + + + First Heading + + + + + _ViewPanelKeyWords + + + Tag + Etiqueta + + + + Importance + Importância + + + + Document + Documento + + + + Heading + + + + + Short Description + + + diff --git a/i18n/nw_zh_CN.ts b/i18n/nw_zh_CN.ts index 0fd8b227..3eb34177 100644 --- a/i18n/nw_zh_CN.ts +++ b/i18n/nw_zh_CN.ts @@ -4,275 +4,305 @@ Builds - + Document Filters 文档过滤器 - + Novel Documents 小说文档 - + Project Notes 项目笔记 - + Inactive Documents 非活动文档 - + Headings 标题 - - Title Headings - 标题头 + + Partition Format + - - Chapter Headings - 章节标题 + + Chapter Format + - - Unnumbered Headings - 无编号标题 + + Unnumbered Format + - - Scene Headings - 场景标题 + + Scene Format + - - Section Headings - 小节标题 + + Hard Scene Format + - - Hide Scene Headings - 隐藏场景标题 + + Section Format + - - Hide Section Headings - 隐藏章节标题 - - - + Text Content 文本内容 - + Include Synopsis 包含概要 - + Include Comments 包含注释 - + Include Keywords 包含关键字 - + Include Body Text 包含正文 - + + Ignore These Keywords + + + + Insert Content 插入内容 - + Add Titles for Notes 为笔记添加标题 - + Text Format 文本格式 - + Font Family 字体 - + Font Size 字体大小 - + Line Height 行高 - + Text Options 文本选项 - + Justify Text Margins 两端对齐 - + Replace Unicode Characters 替换 Unicode 字符 - + Replace Tabs with Spaces 用空格替换制表符 - + Page Layout 页面布局 - + Unit 单位设置 - + Page Size 页面大小 - + Page Width 页面宽度 - + Page Height 页面高度 - + Top Margin 上边距 - + Bottom Margin 下边距 - + Left Margin 左边距 - + Right Margin 右边距 - + Open Document (.odt) 打开文档 (.odt) - + Add Highlight Colours 添加高亮颜色 - + + Page Header + + + + + Page Counter Offset + + + + + First Line Indent + + + + + Markdown (.md) + + + + + Preserve Hard Line Breaks + + + + HTML (.html) HTML (.html) - + Add CSS Styles 添加CSS样式 + + + Preserve Tab Characters + + Common - + in the future 在未来 - + just now 刚才 - + a minute ago 一分钟之前 - + {0} minutes ago {0} 分钟之前 - + an hour ago 一小时之前 - + {0} hours ago {0} 小时之前 - + a day ago 一天之前 - + {0} days ago {0} 天之前 - + a week ago 一周之前 - + {0} weeks ago {0} 周之前 - + a month ago 一个月之前 - + {0} months ago {0} 个月之前 - + a year ago 一年之前 - + {0} years ago {0} 年之前 @@ -280,8 +310,8 @@ Constant - - + + None @@ -292,44 +322,44 @@ 小说 - + Plot 情节 - + Characters 角色 - + Locations 位置 - + Timeline 时间线 - + Objects 物品 - + Entities 条目 - - + + Custom 自定义 @@ -341,284 +371,314 @@ + Templates + + + + Trash 回收站 - - + + Novel Document 小说文档 - - + + Project Note 项目笔记 - + Root Folder 根文件夹 - + Folder 文件夹 - + Novel Title Page 小说标题页 - + Novel Chapter 小说章节 - + Novel Scene 小说场景 - + Novel Section 小说章节 - + Tag 标签 - + Point of View 视角 - - + + Focus 聚焦 - + Title 标题 - + Level 登记 - + Document 文档 - + Line - + Chars 字母 - + Words 单词 - + Pars 段落 - + POV 视角 - + Synopsis 概要 - + Open Document (.odt) 打开文档 (.odt) - + Flat Open Document (.fodt) Flat Open Document (.fodt) - + novelWriter HTML (.html) novelWriter HTML (.htm) - + novelWriter Markup (.txt) novelWriter Markdown (.nwd) - + Standard Markdown (.md) Standard Markdown (.md) - + Extended Markdown (.md) Standard Markdown (.md) - + JSON + novelWriter HTML (.json) JSON + NovelWriter HTML (.json) - + JSON + novelWriter Markup (.json) JSON + NovelWriter Markdown (.json) - + + Text files + + + + + Markdown files + + + + + novelWriter files + + + + + CSV files + + + + + All files + + + + Millimetres 毫米 - + Centimetres 厘米 - + Inches 英寸 - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal 美国法律格式 - + US Letter 美国信件 - + Straight single quotation mark 单引号 - + Straight double quotation mark 双引号 - + Left single quotation mark 左单引号标记 - + Right single quotation mark 右单引号标记 - + Single low-9 quotation mark 低单引号 - + Single high-reversed-9 quotation mark 反转的高单引号 - + Left double quotation mark 左双引号标记 - + Right double quotation mark 右双引号标记 - + Double low-9 quotation mark 低双引号 - + Double high-reversed-9 quotation mark 反转的高双引号 - + Double low-reversed-9 quotation mark 反转的低双引号 - + Single left-pointing angle quotation mark 左单角引号 - + Single right-pointing angle quotation mark 右单角引号 - + Double left-pointing angle quotation mark 左双角引号 - + Double right-pointing angle quotation mark 右双角引号 - + Left corner bracket 左角括号 - + Right corner bracket 右角括号 - + Left white corner bracket 白色左角括号 - + Right white corner bracket 白色右角括号 @@ -626,136 +686,91 @@ GuiAbout - - + About novelWriter 关于 novelWriter - - About - 关于 + + This application is licenced under {0} + - - Release - 发布 - - - + Credits 赞助 - - - Licence - 许可证 - - - - Website: {0} - 网站: {0} - - - - novelWriter is a markdown-like text editor designed for organising and writing novels. It is written in Python 3 with a Qt5 GUI, using PyQt5. - novelWriter 是一个类似 Markdown 的文本编辑器,用于组织和编写小说。 它是用 Python 3 编写的,使用 PyQt5提供 Qt5 图形界面。 - - - - novelWriter is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - novelWriter 是免费软件:您可以根据自由软件基金会发布的 GNU 通用公共许可证(许可证的第 3 版或(由您选择)任何更高版本)的条款重新分发和/或修改它。 - - - - novelWriter is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - 发布novelWriter 是希望它有用,没有任何保证; 甚至没有对适销性或针对特定目的的适用性的暗示保证。 - - - - See the Licence tab for the full licence text, or visit the GNU website at {0} for more details. - 在许可证页面查看完整的许可证内容,或者访问GNU 网站 {0}。 - GuiBuildSettings - + + Manuscript Build Settings 手稿构建设置 - - Options - 选项 + + Name + 名称 - + Selection 选择 - + Headings 标题 - + Content 内容 - + Format 格式 - + Output 输出 - - - Name - 名称 - GuiDictionaries - + Add Dictionaries 添加字典… - + Download a dictionary from one of the links, and add it below. 从其中一个链接下载字典,并在下方添加。 - + Add Dictionary 添加词典 - + Dictionary install location 字典安装位置 - + Additional dictionaries found: {0} 找到其他字典: {0} - - - Free or Libre Office extension ({0}) - 免费或 Libre Office 扩展({0}) - - All files ({0}) - 所有文件 ({0}) + Free or Libre Office extension + @@ -776,55 +791,50 @@ GuiDocEditFooter - - Status - 状态 - - - + Line: {0} ({1}) 行数: {0} ({1}) - + Words: {0} ({1}) 单词树: {0} ({1}) - - Document size is {0} bytes - 文档大小为 {0} bytes - - - + Words: {0} selected 单词:{0} 已选 - - Character count: {0} - 字数:{0} + + Status + 状态 GuiDocEditHeader - + Toggle Tool Bar 切换工具栏 - + + Outline + + + + Search 搜索 - + Toggle Focus Mode 切换聚焦模式 - + Close 关闭 @@ -832,58 +842,62 @@ GuiDocEditSearch - - + + Search for + + + + + Replace with + + + + Search 搜索 - - Replace - 替换 - - - + Case Sensitive 大小写敏感 - + Whole Words Only 匹配整个单词 - + RegEx Mode 正则表达式模式 - + Loop Search 循环搜索 - + Search Next File 搜索下一个文件 - + Preserve Case 保留大小写 - + Close Search 关闭搜索 - + Find in current document 在当前文档中查找 - + Find and replace in current document 在当前文档中查找和替换 @@ -891,150 +905,145 @@ GuiDocEditor - + Opened Document: {0} 已打开的文档: {0} - + This document has been changed outside of novelWriter while it was open. Overwrite the file on disk? 当前文件已在 novelWriter 之外被修改,是否覆盖掉磁盘上的版本? - + Could not save document. 无法保存文档。 - + Saved Document: {0} 已保存文档: {0} - + Spell checking requires the package PyEnchant. It does not appear to be installed. 拼写检查需要软件包 PyEnchant。它似乎未安装。 - + Spell check complete 完成拼写检查 - + Document Details 文档详情 - + Created: {0} 已创建{0} - + Updated: {0} 已更新: {0} - + File Location: {0} 文件位置 - + Set as Document Name 设置为文档名称 - + Follow Tag 跟随标签 - + Create Note for Tag 为标签创建笔记 - + Cut 剪贴 - + Copy 复制 - + Paste 粘贴 - + Select All 全选 - + Select Word 选定单词 - + Select Paragraph 选定段落 - + Spelling Suggestion(s) 拼写建议 - + No Suggestions 无建议 - + Add Word to Dictionary 向字典中添加单词 - + Please select some text before calling replace quotes. 在替换引号之前请选择文本。 - + Do you want to create a new project note for the tag '{0}'? 您想要为标记为'{0}'创建一个新的项目说明吗? - - - Could not create note in a root folder for '{0}'. If one doesn't exist, you must create one first. - 无法在 '{0}的根文件夹中创建备注。如果不存在,您必须先创建一个备注。 - GuiDocMerge - + Merge Documents 合并文档 - + Documents to Merge 合并文档 - + Drag and drop items to change the order, or uncheck to exclude. 拖放项目以更改顺序,或取消勾选以排除它。 - + Move merged items to Trash 将选中项移到废纸篓 @@ -1042,52 +1051,52 @@ GuiDocSplit - + Split Document 分割文档 - - Document Headers - 文档标题 + + Document Headings + - + Select the maximum level to split into files. 选择要拆分成文件的最大级别。 - - - Split on Header Level 1 (Title) - 拆分标题级别 1(标题) - - - - Split up to Header Level 2 (Chapter) - 拆分标题级别 2(章节) - - Split up to Header Level 3 (Scene) - 拆分标题级别 3(场景) + Split on Heading Level 1 (Partition) + - Split up to Header Level 4 (Section) - 拆分标题级别 4(小结) + 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 folder 拆分到新文件夹 - + Create document hierarchy 创建文档层次结构 - + Move split document to Trash 移动拆分文档到回收站 @@ -1095,47 +1104,52 @@ GuiDocToolBar - + Markdown Bold Markdown加粗 - + Markdown Italic Markdown斜体 - + Markdown Strikethrough Markdown 删除线 - + Shortcode Bold Shortcode 加粗 - + Shortcode Italic Shortcode斜体 - + Shortcode Strikethrough Shortcode删除线 - + Shortcode Underline Shortcode下划线 - + + Shortcode Highlight + + + + Shortcode Superscript Shortcode上标 - + Shortcode Subscript Shortcode下标 @@ -1143,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel 显示/隐藏查看器面板 - + Comments 注释 - + Show Comments 显示评论 - + Synopsis 概要 - + Show Synopsis Comments 显示概要注释 @@ -1171,22 +1185,27 @@ GuiDocViewHeader - + + Outline + + + + Go Backward 向后 - + Go Forward 向前 - + Reload 重新载入 - + Close 关闭 @@ -1194,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. 在生成预览时发生错误。 - + Copy 复制 - + Select All 全选 - + Select Word 选定单词 - + Select Paragraph 选定段落 @@ -1222,7 +1241,12 @@ GuiDocViewerPanel - + + Hide Inactive Tags + + + + References 参考 @@ -1230,12 +1254,12 @@ GuiEditLabel - + Item Label 条目标签 - + Label 标签 @@ -1243,37 +1267,37 @@ GuiItemDetails - + Label 标签 - + Status 状态 - + Class 分类 - + Usage 用法 - + Characters 字数 - + Words 单词 - + Paragraphs 段落 @@ -1281,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text 插入占位符文本 - + Insert Lorem Ipsum Text 插入示例文本 - + Number of paragraphs 段落数 - + Randomise order 随机排列 - + Insert 插入 @@ -1309,123 +1333,103 @@ GuiMain - + novelWriter is ready ... novelWriter 已准备就绪… - - Cannot create a new project when another project is open. - 当另一个项目开启时,无法创建新项目。 + + You are now running novelWriter version {0}. + - - A project already exists in that location. Please choose another folder. - 该位置已存在项目。请选择其他文件夹。 + + Please check the {0}release notes{1} for further details. + - + Close the current project? 关闭当前文档? - - + + Changes are saved automatically. 已自动保存。 - + Backup the current project? 备份当前项目? - + The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway? 该项目已被另一个novelWriter的实例打开,因而现在被锁定。是否覆盖锁定并继续? - + 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. 注意:如果程序或计算机在此前崩溃,你可以安全地覆盖锁定。 然而,如果项目是在另一个 novelWriter 中打开的,则不建议覆盖它。这样做可能会损坏该项目。 - + The project was locked by the computer '{0}' ({1} {2}), last active on {3}. 该项目被计算机“{0}”({1}{2})锁定,上次激活于{3}。 - + The project index is outdated or broken. Rebuilding index. 项目索引已过期或损坏,正在重建索引。 - - Text files ({0}) - 文本文件 ({0}) - - - - Markdown files ({0}) - Markdown文件 ({0}) - - - - novelWriter files ({0}) - novelWriter 文件 ({0}) - - - - All files ({0}) - 所有文件 ({0}) - - - + Import File 导入文件 - + Could not read file. The file must be an existing text file. 无法读取文件,文件须为已存在的文本文件。 - + 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? 导入文件将覆盖文档的当前内容。 您要继续吗? - + Indexing completed in {0} ms 在 {0} 秒内完成索引 - + The project index has been successfully rebuilt. 项目索引 重建成功。 - + Could not initialise the dialog. 无法初始化对话框。 - + Do you want to exit novelWriter? 您是否想退出novelWriter? - + Some changes will not be applied until novelWriter has been restarted. 某些改动在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}. 无法找到标签 {0} 的引用. 因为不存在或者索引已经过期。索引可在工具菜单或按 {1} 进行更新。 @@ -1433,686 +1437,696 @@ GuiMainMenu - + &Project &项目 - - New Project - 新的项目 + + Create or Open Project + - - Open Project - 打开项目 - - - + Save Project 保存项目 - + Close Project 关闭项目 - + Project Settings 项目设置 - - Project Details - 项目详情 + + Novel Details + - + Rename Item 重命名项 - + Delete Item 删除条目 - + Empty Trash 清空回收站 - + Exit 退出 - + &Document &文档 - + Open Document 打开文档 - + Save Document 保存文档 - + Close Document 关闭文档 - + View Document 查看文档 - + Close Document View 关闭文档查看 - + Show File Details 显示文件详情 - + Import Text from File 从文件中导入文本 - + &Edit &编辑 - + Undo 撤销 - + Redo 重做 - + Cut 剪贴 - + Copy 复制 - + Paste 粘贴 - + Select All 全选 - + Select Paragraph 选择段落 - + &View &查看 - + Go to Project Tree 转跳转到项目树 - + Go to Document Editor 转到文档编辑器 - + Go to Outline 跳转到大纲 - + Navigate Backward 向后导航 - + Navigate Forward 向前导航 - + Focus Mode 聚焦模式 - + Full Screen Mode 全屏模式 - + &Insert &插入 - + Dashes 破折号 - + Short Dash 短划线 - + Long Dash 长划线 - + Horizontal Bar 横杠 - + Figure Dash 数字线 - + Quote Marks 引号 - + Left Single Quote 左单引号 - + Right Single Quote 右单引号 - + Left Double Quote 左双引号 - + Right Double Quote 右双引号 - + Alternative Apostrophe 替代撇号 - + General Punctuation 一般标点符号 - + Ellipsis 省略号 - + Prime 角分符号 - + Double Prime 角秒符号 - + White Spaces 空白 - + Non-Breaking Space 不间断空格 - + Thin Space 窄空格 - + Thin Non-Breaking Space 窄的不间断空格 - + Other Symbols 其他符号 - + List Bullet 列表项目符号 - + Hyphen Bullet 连字符 - + Flower Mark 花标 - + Per Mille 千分符 - + Degree Symbol 度数符号 - + Minus Sign 减号 - + Times Sign 乘号 - + Division Sign 除号 - + Tags and References 标签和参考 - + Special Comments 特殊评论 - + Synopsis Comment 概要评论 - + Short Description Comment 简短描述评论 - + Page Break and Space 分页和空格 - + Page Break 分页 - + Vertical Space (Single) 垂直间距(单独) - + Vertical Space (Multi) 垂直间距(多重) - + Placeholder Text 占位符文本 - + &Format &格式 - + Bold 粗体 - + Italic 斜体 - + Strikethrough 删除线 - + Wrap Double Quotes 用双引号环绕 - + Wrap Single Quotes 环绕单引号 - + More Formats ... 更多格式... - + Bold (Shortcode) 粗体(代码) - + Italics (Shortcode) 斜体(代码) - + Strikethrough (Shortcode) 删除线(代码) - + Underline 下划线 - + + Highlight + + + + Superscript 上标 - + Subscript 下标 - - Header 1 (Partition) - 标题 1 (分区) + + Heading 1 (Partition) + - - Header 2 (Chapter) - 标题2(章节) + + Heading 2 (Chapter) + - - Header 3 (Scene) - 标题 3 (场景) + + Heading 3 (Scene) + - - Header 4 (Section) - 标题 4 (小节) + + Heading 4 (Section) + - + Novel Title 小说标题 - + Unnumbered Chapter 未编号章节 - + + Hard Scene + + + + Align Left 左对齐 - + Align Centre 居中 - + Align Right 右对齐 - + Indent Left 左缩进 - + Indent Right 右缩进 - + Toggle Comment 切换注释 - + + Toggle Ignore Text + + + + Remove Block Format 移除块格式 - - Convert Single Quotes - 转换单引号 + + Replace Straight Single Quotes + - - Convert Double Quotes - 转换双引号 + + Replace Straight Double Quotes + - + Remove In-Paragraph Breaks 删除段落间断行 - + &Search &搜索 - + Find 查找 - + Replace 替换 - + Find Next 查找下一个 - + Find Previous 查找上一个 - + Replace Next 替换下一个 - + + Find in Project + + + + &Tools &工具 - + Check Spelling 拼写检查 - + Spell Check Language 拼写检查语言 - + Default 默认 - + Re-Run Spell Check 重新执行拼写检查 - + Project Word List 项目单词列表 - + Add Dictionaries 添加字典… - + Rebuild Index 重建索引 - + Backup Project 备份项目 - + Build Manuscript 构建手稿 - + Writing Statistics 写作统计 - + Preferences 设置 - + &Help &帮助 - + About novelWriter 关于 novelWriter - + About Qt5 关于 Qt5 - + User Manual (Online) 用户手册 (在线) - + User Manual (PDF) 用户手册 (PDF) - + Report an Issue (GitHub) 报告issue(GitHub) - + Ask a Question (GitHub) 咨询(Github) - + The novelWriter Website novelWriter 网站 - - - Check for New Release - 检查新版本 - GuiMainStatus - - + + None - + Editor 编辑器 - + Project 项目 - + Session Time 会话时间 - + Words: {0} ({1}) 单词: {0} ({1}) - + Project word count (session change) 项目单词个数 (session chang) - + Novel word count (session change) 单词计数 (会话更改) @@ -2120,53 +2134,63 @@ GuiManuscript - + Build Manuscript 构建手稿 - + Add New Build 添加新构建 - + Delete Selected Build 删除选中的构建 - + Edit Selected Build 编辑选定的构建 - + Builds 构建 - + + Details + + + + + Outline + + + + Preview 预览 - + Print 打印 - + Build 构建 - + Close 关闭 - - + + My Manuscript 我的手稿: @@ -2174,116 +2198,135 @@ GuiManuscriptBuild - + Build Manuscript 构建手稿 - + Output Format 输出格式 - + Table of Contents 目录 - + Path 路径 - + File Name 文件名 - + Reset file name to default 重置文件名为默认值 - + Open Folder 打开文件夹 - + &Build &构建 - + Select Folder 选择文件夹 - + Output folder does not exist. 输出文件夹不存在。 - + The file already exists. Do you want to overwrite it? 文件已经存在。您想要覆盖它吗? + + GuiNovelDetails + + + + Novel Details + + + + + Overview + 概述 + + + + Contents + 内容 + + GuiNovelToolBar - + Outline of {0} {0} 的提纲 - + Novel Root 小说根 - + Refresh 刷新 - + Last Column 最后一列 - + Hidden 隐藏 - + Point of View Character 视角人物 - + Focus Character 聚焦章节 - + Novel Plot 小说情节 - - + + Column Size 列大小 - + More Options 更多选项 - + Maximum column size in % 最大列大小为% @@ -2291,7 +2334,7 @@ GuiNovelTree - + No meta data 没有元数据 @@ -2299,65 +2342,64 @@ GuiOutlineDetails - - - - + + + Title 标题 - + Chapter 章节 - + Scene 场景 - + Section 小结 - + Document 文档 - + Status 状态 - + Characters 人物 - + Words 单词 - + Paragraphs 段落 - + Synopsis 概要 - + Title Details 标题详情 - + Reference Tags 引用标签 @@ -2365,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns 选定列 @@ -2373,1042 +2415,636 @@ GuiOutlineToolBar - + Outline of 提纲 - + Refresh 刷新 + + + Export CSV + + + + + GuiOutlineTree + + + Save Outline As + + GuiPreferences - + + Preferences 设置 - + + Search + 搜索 + + + General 通用 - - Projects - 项目 + + Appearance + - - Documents - 文档 + + Display language + - - Editor - 编辑器 - - - - Highlighting - 突出显示 - - - - Automation - 自动化 - - - - Quotes - 引号 - - - - GuiPreferencesAutomation - - - Automatic Features - 自动化特性 - - - - Auto-select word under cursor - 自动选择光标下的单词 - - - - Apply formatting to word under cursor if no selection is made. - 如果未进行选择,则将格式应用于光标下的单词。 - - - - Auto-replace text as you type - 键入时自动替换文本 - - - - Allow the editor to replace symbols as you type. - 允许编辑器在您键入时替换符号。 - - - - Replace as You Type - 键入时替换 - - - - Auto-replace single quotes - 自动替换单引号 - - - - - Try to guess which is an opening or a closing quote. - 尝试猜测哪个是开头或结尾的引号。 - - - - Auto-replace double quotes - 自动替换双引号 - - - - Auto-replace dashes - 自动替换破折号 - - - - Double and triple hyphens become short and long dashes. - 双连字符和三连字符变成短划线和长破折号。 - - - - Auto-replace dots - 自动替换点 - - - - Three consecutive dots become ellipsis. - 三个连续的点变成省略号。 - - - - Automatic Padding - 自动填充 - - - - Insert non-breaking space before - 在之前插入不间断的空格 - - - - Automatically add space before any of these symbols. - 在任何这些符号之前自动添加空格。 - - - - Insert non-breaking space after - 在后面插入不间断的空格 - - - - Automatically add space after any of these symbols. - 在任何这些符号后自动添加空格。 - - - - Use thin space instead - 改用细空格 - - - - Inserts a thin space instead of a regular space. - 插入细空格而不是常规空格。 - - - - GuiPreferencesDocuments - - - Text Style - 文本类型 - - - - Font family - 字体系列 - - - - - - - Applies to both document editor and viewer. - 同时应用于文档编辑器和查看器。 - - - - Font size - 字体大小 - - - - pt - pt - - - - Text Flow - 文本流 - - - - Maximum text width in "Normal Mode" - “正常模式”下的最大文本长度 - - - - Set to 0 to disable this feature. - 设置为 0 以禁用此功能。 - - - - - - - px - px - - - - Maximum text width in "Focus Mode" - “聚焦模式”下的最大文本长度 - - - - The maximum width cannot be disabled. - 不能禁用最大宽度。 - - - - Hide document footer in "Focus Mode" - 在“聚焦模式”中隐藏文档页脚" - - - - Hide the information bar in the document editor. - 在文档编辑器中隐藏信息栏。 - - - - Justify the text margins - 对齐文本边距 - - - - Minimum text margin - 最小文本边距 - - - - Tab width - 制表符宽度 - - - - The width of a tab key press in the editor and viewer. - 编辑器和查看器中 制表符的宽度。 - - - - GuiPreferencesEditor - - - Spell Checking - 拼写检查 - - - - None - - - - - Spell check language - 拼写检查语言 - - - - Available languages are determined by your system. - 可用的语言由您的系统决定。 - - - - Word Count - 字数 - - - - Word count interval - 内部字数 - - - - seconds - - - - - Include project notes in status bar word count - 在状态栏单词计数中包含项目note - - - - Writing Guides - 写作指南 - - - - Show tabs and spaces - 显示制表符和空格 - - - - Show line endings - 显示行尾 - - - - Scroll Behaviour - 滚动行为 - - - - Scroll past end of the document - 滚动到文档末尾 - - - - Also centres the cursor when scrolling. - 滚动时光标居中 - - - - Typewriter style scrolling when you type - 打字时打字机样式滚动 - - - - Keeps the cursor at a fixed vertical position. - 将光标保持在一个固定的垂直位置。 - - - - Minimum position for Typewriter scrolling - 打字机滚动的最小位置 - - - - Percentage of the editor height from the top. - 从顶部到编辑器高度的百分比。 - - - - GuiPreferencesGeneral - - - Look and Feel - 外观 - - - - Main GUI language - 主要图形用户界面语言 - - - - - + + + Requires restart to take effect. - 需要重新启动才能生效。 + 需要重新启动才能生效。 - - Main GUI theme - 主界面的主题风格 + + Colour theme + - + General colour theme and icons. - 通用颜色主题和图标。 + 通用颜色主题和图标。 - - Editor theme - 编辑器主题 + + Application font family + - - Colour theme for the editor and viewer. - 应用于编辑器和查看器的颜色主题。 + + Application font size + - - Font family - 字体系列 + + + pt + pt + + + + Hide vertical scroll bars in main windows + 在主窗口中隐藏垂直滚动条 + + + + + Scrolling available with mouse wheel and keys only. + 仅可使用鼠标滚轮和按键进行滚动。 + + + + Hide horizontal scroll bars in main windows + 在主窗口中隐藏水平滚动条 + + + + Document Style + + + + + Document colour theme + - Font size - 字体大小 + Colour theme for the editor and viewer. + 应用于编辑器和查看器的颜色主题。 - - pt - pt + + Document font family + - - GUI Settings - GUI设置 - - - - Emphasise partition and chapter labels - 强调分区和章节标签 - - - - Makes them stand out in the project tree. - 在项目树中突出它们 - - - - Show full path in document header - 在文档标题中显示完整路径 + + + + + Applies to both document editor and viewer. + 同时应用于文档编辑器和查看器。 - Add the parent folder names to the header. - 将父文件夹名称添加到标题中。 + Document font size + - - Hide vertical scroll bars in main windows - 在主窗口中隐藏垂直滚动条 + + Emphasise partition and chapter labels + 强调分区和章节标签 + + + + Makes them stand out in the project tree. + 在项目树中突出它们 - - Scrolling available with mouse wheel and keys only. - 仅可使用鼠标滚轮和按键进行滚动。 + Show full path in document header + 在文档标题中显示完整路径 - - Hide horizontal scroll bars in main windows - 在主窗口中隐藏水平滚动条 + + Add the parent folder names to the header. + 将父文件夹名称添加到标题中。 + + + + Include project notes in status bar word count + 在状态栏单词计数中包含项目note + + + + Auto Save + + + + + Save document interval + 保存文档间隔 + + + + How often the document is automatically saved. + 自动保存打开的文档的频率。 + + + + + seconds + + + + + Save project interval + 保存项目间隔 + + + + How often the project is automatically saved. + 自动保存打开的项目的频率。 + + + + Project Backup + 项目备份 + + + + Browse + 浏览 + + + + Backup storage location + 备份存储位置 + + + + + Path: {0} + 路径: {0} + + + + Run backup when the project is closed + 项目关闭时进行备份 - - - GuiPreferencesProjects - Automatic Save - 自动保存 + Can be overridden for individual projects in Project Settings. + 可以在项目设置中为单个项目覆盖。 - Save document interval - 保存文档间隔 + Ask before running backup + 进行备份前询问 - - How often the document is automatically saved. - 自动保存打开的文档的频率。 + + If off, backups will run in the background. + 如果关闭,备份将在后台运行。 + + + + Session Timer + 会话计时器 - - seconds - + Pause the session timer when not writing + 不写入时暂停会话计时器 - - Save project interval - 保存项目间隔 - - - - How often the project is automatically saved. - 自动保存打开的项目的频率。 - - - - Project Backup - 项目备份 - - - - Browse - 浏览 + + Also pauses when the application window does not have focus. + 当应用程序窗口没有焦点时也会暂停。 - Backup storage location - 备份存储位置 + Editor inactive time before pausing timer + 暂停计时器前的编辑器非活动时间 + + + + User activity includes typing and changing the content. + 用户活动包括键入和更改内容。 - - Path: {0} - 路径: {0} + minutes + 分钟 - - Run backup when the project is closed - 项目关闭时进行备份 + + Writing + - - Can be overridden for individual projects in Project Settings. - 可以在项目设置中为单个项目覆盖。 - - - - Ask before running backup - 进行备份前询问 + + Text Flow + 文本流 - If off, backups will run in the background. - 如果关闭,备份将在后台运行。 + Maximum text width in "Normal Mode" + “正常模式”下的最大文本长度 - - Session Timer - 会话计时器 + + Set to 0 to disable this feature. + 设置为 0 以禁用此功能。 + + + + + + + px + px - Pause the session timer when not writing - 不写入时暂停会话计时器 + Maximum text width in "Focus Mode" + “聚焦模式”下的最大文本长度 - - Also pauses when the application window does not have focus. - 当应用程序窗口没有焦点时也会暂停。 + + The maximum width cannot be disabled. + 不能禁用最大宽度。 - - Editor inactive time before pausing timer - 暂停计时器前的编辑器非活动时间 + + Hide document footer in "Focus Mode" + 在“聚焦模式”中隐藏文档页脚" - - User activity includes typing and changing the content. - 用户活动包括键入和更改内容。 + + Hide the information bar in the document editor. + 在文档编辑器中隐藏信息栏。 - minutes - 分钟 + Justify the text margins + 对齐文本边距 + + + + Minimum text margin + 最小文本边距 + + + + Tab width + 制表符宽度 + + + + The width of a tab key press in the editor and viewer. + 编辑器和查看器中 制表符的宽度。 - Backup Directory - 备份目录 - - - - GuiPreferencesQuotes - - - Quotation Style - 引述样式 + Text Editing + - - Single quote open style - 单引号打开样式 - - - - The symbol to use for a leading single quote. - 用于前导单引号的符号。 - - - - Single quote close style - 单引号闭合样式 - - - - The symbol to use for a trailing single quote. - 用于尾随单引号的符号。 - - - - Double quote open style - 双引号打开样式 - - - - The symbol to use for a leading double quote. - 用于前导双引号的符号。 - - - - Double quote close style - 双引号闭合样式 - - - - The symbol to use for a trailing double quote. - 用于尾随双引号的符号。 - - - - GuiPreferencesSyntax - - - Quotes & Dialogue - 引用与对话 - - - - Highlight text wrapped in quotes - 突出包含在引用中的文本 - - - - - - Applies to the document editor only. - 仅应用于文档编辑器。 - - - - Allow open-ended single quotes - 允许开放式单引号 - - - - Highlight single-quoted line with no closing quote. - 突出显示没有结束引号的单引号行。 - - - - Allow open-ended double quotes - 允许开放式双引号 - - - - Highlight double-quoted line with no closing quote. - 突出显示没有结束引号的双引号行。 - - - - Text Emphasis - 文字强调 - - - - Add highlight colour to emphasised text - 为强调的文本添加高亮颜色 - - - - Text Errors - 文本错误 - - - - Highlight multiple or trailing spaces - 突显重复和结尾的空格 - - - - GuiProjectDetails - - - Project Details - 项目详情 - - - - Overview - 概述 - - - - Contents - 内容 - - - - GuiProjectDetailsContents - - - Table of Contents - 目录 - - - - Title - 标题 - - - - Words - 单词 - - - - Pages - 页面 - - - - Page - 页面 - - - - Progress - 进度 - - - - Typical word count for a 5 by 8 inch book page with 11 pt font is 350. - 具有 11 pt 字体的 5 x 8 英寸书页的典型字数为 350。 - - - - Start counting page numbers from this page. - 从此页开始计算页码。 - - - - Assume a new chapter or partition always start on an odd numbered page. - 假设新的章节或分区总是从奇数页开始的。 - - - - Words per page - 每页字数 - - - - Count pages from - 计算页数 - - - - Clear double pages - 清除双页 - - - - END - 结束 - - - - Untitled - 未命名 - - - - GuiProjectDetailsMain - - - Words - 单词 - - - - Chapters - 章节 - - - - Scenes - 场景 - - - - Revisions - 修订 - - - - Editing Time - 编辑时间 - - - - Path - 路径 - - - - Project: {0} - 项目: {0} - - - - By {0} - By {0} - - - - GuiProjectEditMain - - - Project Settings - 项目设置 - - - - Project name - 项目名称 - - - - Should be set only once. - 只应设置一次。 - - - - Novel title - 小说标题 - - - - - Change whenever you want! - 随时修改! - - - - Author(s) - 作者 - - - - Project language - 项目语言 - - - - Used when building the manuscript. - 在构建手稿时使用。 - - - - Default - 默认 - - - + Spell check language - 拼写检查语言 + 拼写检查语言 - - - Overrides main preferences. - 覆盖主要首选项。 + + Available languages are determined by your system. + 可用的语言由您的系统决定。 - - No backup on close - 关闭时没有备份 + + Auto-select word under cursor + 自动选择光标下的单词 + + + + Apply formatting to word under cursor if no selection is made. + 如果未进行选择,则将格式应用于光标下的单词。 + + + + Show tabs and spaces + 显示制表符和空格 + + + + Show line endings + 显示行尾 + + + + Editor Scrolling + + + + + Scroll past end of the document + 滚动到文档末尾 + + + + Also centres the cursor when scrolling. + 滚动时光标居中 + + + + Typewriter style scrolling when you type + 打字时打字机样式滚动 + + + + Keeps the cursor at a fixed vertical position. + 将光标保持在一个固定的垂直位置。 + + + + Minimum position for Typewriter scrolling + 打字机滚动的最小位置 + + + + Percentage of the editor height from the top. + 从顶部到编辑器高度的百分比。 + + + + Text Highlighting + + + + + Highlight text wrapped in quotes + 突出包含在引用中的文本 + + + + + + Applies to the document editor only. + 仅应用于文档编辑器。 + + + + Allow open-ended single quotes + 允许开放式单引号 + + + + Highlight single-quoted line with no closing quote. + 突出显示没有结束引号的单引号行。 + + + + Allow open-ended double quotes + 允许开放式双引号 + + + + Highlight double-quoted line with no closing quote. + 突出显示没有结束引号的双引号行。 + + + + Add highlight colour to emphasised text + 为强调的文本添加高亮颜色 + + + + Highlight multiple or trailing spaces + 突显重复和结尾的空格 + + + + Text Automation + + + + + Auto-replace text as you type + 键入时自动替换文本 + + + + Allow the editor to replace symbols as you type. + 允许编辑器在您键入时替换符号。 + + + + Auto-replace single quotes + 自动替换单引号 + + + + + Try to guess which is an opening or a closing quote. + 尝试猜测哪个是开头或结尾的引号。 + + + + Auto-replace double quotes + 自动替换双引号 + + + + Auto-replace dashes + 自动替换破折号 + + + + Double and triple hyphens become short and long dashes. + 双连字符和三连字符变成短划线和长破折号。 + + + + Auto-replace dots + 自动替换点 + + + + Three consecutive dots become ellipsis. + 三个连续的点变成省略号。 + + + + Insert non-breaking space before + 在之前插入不间断的空格 + + + + Automatically add space before any of these symbols. + 在任何这些符号之前自动添加空格。 + + + + Insert non-breaking space after + 在后面插入不间断的空格 + + + + Automatically add space after any of these symbols. + 在任何这些符号后自动添加空格。 + + + + Use thin space instead + 改用细空格 + + + + Inserts a thin space instead of a regular space. + 插入细空格而不是常规空格。 + + + + Quotation Style + 引述样式 + + + + Single quote open style + 单引号打开样式 + + + + The symbol to use for a leading single quote. + 用于前导单引号的符号。 + + + + Single quote close style + 单引号闭合样式 + + + + The symbol to use for a trailing single quote. + 用于尾随单引号的符号。 + + + + Double quote open style + 双引号打开样式 + + + + The symbol to use for a leading double quote. + 用于前导双引号的符号。 + + + + Double quote close style + 双引号闭合样式 + + + + The symbol to use for a trailing double quote. + 用于尾随双引号的符号。 + + + + Backup Directory + 备份目录 - GuiProjectEditReplace + GuiProjectSearch - - Text Replace List for Preview and Export - 预览和导出的文本替换列表 + + Project Search + - - Keyword - 关键字 + + Case Sensitive + 大小写敏感 - - Replace With - 替换为 + + Whole Words Only + 匹配整个单词 - - Select item to edit - 选择要修改的条目 + + RegEx Mode + 正则表达式模式 - - Save - 保存 - - - - GuiProjectEditStatus - - - Novel File Status Levels - Novel 文件状态级别 - - - - Note File Importance Levels - 笔记文件重要性等级 - - - - Label - 标签 - - - - Usage - 用法 - - - - Select item to edit - 选择要修改的条目 - - - - Colour - 颜色 - - - - Save - 保存 - - - - Select Colour - 选择颜色 - - - - New Item - 新项目 - - - - Cannot delete a status item that is in use. - 无法删除正在使用的状态项。 - - - - Not in use - 未使用 - - - - Used once - 使用过一次 - - - - Used by {0} items - 被 {0} 项目使用 - - - - GuiProjectLoad - - - - Open Project - 打开项目 - - - - Working Title - 工作标题 - - - - Words - 单词 - - - - Last Opened - 最近打开 - - - - Recently Opened Projects - 最近打开的项目 - - - - Path - 路径 - - - - New - 新建 - - - - Remove - 移除 - - - - novelWriter Project File ({0}) - novelWriter 文件 ({0}) - - - - All files ({0}) - 所有文件 ({0}) - - - - Remove '{0}' from the recent projects list? The project files will not be deleted. - 从最近的项目列表中删除 '{0}'?项目文件将不会被删除。 + + Search for + GuiProjectSettings - + + Project Settings 项目设置 - + Settings 设置 - + Status 状态 - + Importance 重要性 - + Auto-Replace 自动替换 @@ -3416,47 +3052,47 @@ GuiProjectToolBar - + Project Content 项目内容 - + Quick Links 快捷链接 - + Move Up 上移 - + Move Down 下移 - + Add Item 添加条目 - + Expand All 全部展开 - + Collapse All 全部折叠 - + Empty Trash 清空回收站 - + More Options 更多选项 @@ -3464,118 +3100,118 @@ GuiProjectTree - + Active 活跃 - + Inactive 非活跃 - - Did not find anywhere to add the file or folder! - 没有找到任何地方添加文件或文件夹! - - - - Cannot add new files or folders to the Trash folder. - 无法将新文件或文件夹添加到废纸篓文件夹。 - - - - New Note - 新笔记 - - - - New Chapter - 新章节 - - - - New Scene - 新场景 - - - - New Document - 新文档 - - - - New Folder - 新文件夹 - - - - There is currently no Trash folder in this project. - 此项目中当前没有回收站文件夹。 - - - - The Trash folder is already empty. - 回收站文件夹已清空。 - - - + Permanently delete {0} file(s) from Trash? 从回收站中永久删除 {0} 文件? - + + Did not find anywhere to add the file or folder! + 没有找到任何地方添加文件或文件夹! + + + + Cannot add new files or folders to the Trash folder. + 无法将新文件或文件夹添加到废纸篓文件夹。 + + + + New Note + 新笔记 + + + + New Chapter + 新章节 + + + + New Scene + 新场景 + + + + New Document + 新文档 + + + + New Folder + 新文件夹 + + + + There is currently no Trash folder in this project. + 此项目中当前没有回收站文件夹。 + + + + The Trash folder is already empty. + 回收站文件夹已清空。 + + + Move '{0}' to Trash? 将“{0}”移至回收站吗? - + Root folders can only be deleted when they are empty. 只有当根文件夹为空时才能删除。 - + Permanently delete '{0}'? 彻底删除“{0}”吗? - + Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent. 只允许对单个项目、非根项目或具有相同父项的多个项目进行拖放操作。 - + No documents selected for merging. 未选择要合并的文档。 - + Merged 已合并 - - + + Could not write document content. 无法写入文档内容。 - + Do you want to duplicate this document? 您想要复制此文档吗? - + Do you want to duplicate this item and all child items? 您想要复制此项目和所有子项目吗? - + Could not duplicate all items. 无法复制所有项目。 - + There is nowhere to add item with name '{0}'. 无处可添加名为 '{0}' 的项目。 @@ -3583,238 +3219,262 @@ GuiSideBar - + Project Tree View 项目树视图 - + Novel Tree View 小说树视图 - + + Project Search + + + + Novel Outline View 小说提纲视图 - + Build Manuscript 构建草稿 - - Project Details - 项目详情 + + Novel Details + - + Writing Statistics 写作统计 - + Settings 设置 - GuiUpdates + GuiWelcome - - Check for Updates - 检查更新 + + Welcome + - - Current Release - 当前版本 + + List + - - - novelWriter {0} released on {1} - novelWriter {0} 发布于 {1} + + New + 新建 - - Latest Release - 最新版本 + + Browse + 浏览 - - Checking ... - 正在检查... + + Cancel + 取消 - - Download: {0} - 下载: {0} + + Create + + + + + Open + 打开 GuiWordList - - + + Project Word List 项目单词列表 - - Cannot add a blank word. - 无法添加空白的单词。 + + Import words from text file + - - The word '{0}' is already in the word list. - 单词'{0}'已经在单词列表中。 + + Export words to text file + + + + + Note: The import file must be a plain text file with UTF-8 or ASCII encoding. + + + + + Import File + 导入文件 + + + + Export File + GuiWritingStats - + Writing Statistics 写作统计 - + Session Start 会话开始 - + Length 长度 - + Idle 空闲 - + Words 单词 - + Histogram 直方图 - + Sum Totals 总和 - + Total Time: 总时间: - + Idle Time: 空余时间: - + Filtered Time: 过滤时间: - + Novel Word Count: 小说字数: - + Notes Word Count: 笔记字数: - + Total Word Count: 总字数: - + Filters 过滤器 - + Count novel files 计算小说文件 - + Count note files 计算笔记文件 - + Hide zero word count 隐藏零字数 - + Hide negative word count 隐藏负字数 - + Group entries by day 按天分组 - + Show idle time 显示空闲时间 - + Word count cap for the histogram 直方图的字数上限 - + Save As 另存为 - + JSON Data File (.json) JSON Data File (.json) - + CSV Data File (.csv) CSV Data File (.csv) - + JSON Data File JSON Data File - + CSV Data File CSV Data File - + Save Data As 另存为 - + {0} file successfully written to: {0} 文件已被成功写入: - + Failed to write {0} file. 写入文件 {0} 失败. @@ -3822,143 +3482,153 @@ NWProject - + Could not delete document file. 无法删除文档文件。 - - Could not open project with path: {0} - 无法打开具有路径的项目: {0} + + Not a known project file format. + - + + Project file not found. + + + + + Failed to open project. + + + + Unknown 未知 - + Project file does not appear to be a novelWriterXML 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}. 未知或不受支持的 NovelWriter 项目文件格式。 此版本的NovelWriter 无法打开该项目。 该文件是用 NovelWriter 版本 {0} 保存的。 - + Failed to parse project xml. 无法解析项目 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? 您的项目的文件格式即将更新。 如果您继续,较旧版本的新作家将无法再打开此项目,是否继续? - + 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? 此项目由较新版本的 novelWriter 版本 {0} 保存。 这是版本 {1}。 如果继续打开项目,可能有些属性和设置不会保留,但整体项目应该没问题。 继续打开项目? - + Recovered 已复原 - + Found {0} orphaned file(s) in the project. {1} file(s) were recovered. 在项目中找到了 {0} 个无主文件(s) 。 {1} 文件已被恢复。 - + Opened Project: {0} 已打开的项目:{0} - + There is no project open. 没有打开的项目。 - + Failed to save project. 保存项目失败。 - + Saved Project: {0} 已保存项目: {0} - + Backing up project ... 项目备份中…… - + Cannot backup project because no project name is set. Please set a Project Name in Project Settings. 由于未设置项目名,无法备份项目。 请在项目设置中指定项目名。 - + Could not create backup folder. 无法创建备份文件夹。 - + Created a backup of your project of size {0}B. 创建了大小为 {0}B 的项目备份。 - + Path: {0} 路径: {0} - + Could not write backup archive. 无法写入备份存档。 - + Project backed up to '{0}' 项目备份到{0} - - + + New 新建 - + Note 笔记 - + Draft 草稿 - + Finished 已完成 - + Minor 次要 - + Major 主要 - + Main 主要的 @@ -3966,323 +3636,97 @@ NovelSelector - + All Novel Folders 所有小说文件夹 - - ProjWizardCustomPage - - - Custom Project Options - 自定义项目选项 - - - - Select which additional elements to populate the project with. You can skip making chapters and add only scenes by setting the number of chapters to 0. - 选择要使用项目的附加元素。 您可以通过设置章节数量为0来跳过制作章节,只添加场景。 - - - - Add a folder for plot notes - 为情节笔记添加一个文件夹 - - - - Add a folder for character notes - 为章节注释添加文件夹 - - - - Add a folder for location notes - 为位置注释添加文件夹 - - - - Add example notes to the above - 在上面添加示例注释 - - - - Add chapters to the novel folder - 将章节添加到新建文件夹 - - - - Add scenes to each chapter - 将场景添加到每个章节 - - - - ProjWizardFinalPage - - - Summary - 概述 - - - - Project Name: {0} - 项目名称:{0} - - - - Project Path: {0} - 项目路径:{0} - - - - Fill the project with a minimal set of items - 用最简项目集填充项目 - - - - Fill the project with example files - 用示例文件集填充项目 - - - - Add a folder for plot notes - 为情节笔记添加一个文件夹 - - - - Add a folder for character notes - 为章节笔记添加文件夹 - - - - Add a folder for location notes - 为位置笔记添加文件夹 - - - - Add example notes to the above - 在上面添加示例注释 - - - - Add {0} chapters to the novel folder - 将 {0} 章节添加到新建文件夹 - - - - Add {0} scenes to each chapter - 将{0} 场景添加到每个章节 - - - - Add {0} scenes - 添加{0} 场景 - - - - You have selected the following: - 您选择了以下内容: - - - - Press '{0}' to create the new project. - 按下'{0}' 创建新项目。 - - - - Done - 完成 - - - - Finish - 完成 - - - - ProjWizardFolderPage - - - - Select Project Folder - 选择项目文件夹 - - - - Select a location to store the project. A new project folder will be created in the selected location. - 选择一个位置来存储项目。 将在所选位置创建一个新的项目文件夹。 - - - - Required - 必须的 - - - - Project Path - 项目路径 - - - - Error: A project folder cannot be created using this path. - 错误:无法使用此路径创建项目文件夹。 - - - - Error: The selected path already exists. - 错误:所选路径已存在。 - - - - ProjWizardIntroPage - - - Create New Project - 新建项目 - - - - Provide at least a project name. The project name should not be changed beyond this point as it is used for generating file names for for instance backups. The other fields are optional and can be changed at any time in Project Settings. - 至少提供一个项目名称。 项目名称在此后不应被更改,因为它用于生成文件名,例如备份。 其他字段是可选的,可以随时在项目设置中更改。 - - - - Side image by {0}, {1} - 侧面图 {0}, {1} - - - - Required - 必须 - - - - - Optional - 可选 - - - - Project Name - 项目名称 - - - - Novel Title - 小说标题 - - - - Author(s) - 作者 - - - - Language - 语言 - - - - ProjWizardPopulatePage - - - Populate Project - 填充项目 - - - - Choose how to pre-fill the project. Either with a minimal set of starter items, an example project explaining and showing many of the features, or show further custom options on the next page. - 选择如何预填项目。 使用最少的入门项目集,一个显示许多功能的示例;或者在下一页显示更多自定义选项。 - - - - Fill the project with a minimal set of items - 用最少的项目集填充项目 - - - - Fill the project with example files - 用示例文件集填充项目 - - - - Show detailed options for filling the project - 显示填充项目的详细选项 - - ProjectBuilder - + + The target folder is not empty. Please choose another folder. + + + + + An error occurred while trying to create the project. + + + + New Project 创建项目 - - New Chapter - 新章节 - - - - New Scene - 新场景 - - - + Title Page 标题页面 - + By - + Summary of the chapter. 本章概要。 - + Summary of the scene. 场景概况。 - + A short description. 简短描述 - + Chapter {0} 章节 {0} - - + + Scene {0} 场景 {0} - + Main Plot 主线情节 - + Protagonist 主角 - + Main Location 主位置 - + + + The target folder already exists. Please choose another folder. + + + + + Could not copy project files. + + + + 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. 无法创建新的示例项目。 找不到必要的文件。此安装中似乎缺少它们。 @@ -4475,33 +3919,157 @@ &帮助 + + SharedData + + + novelWriter Project File or Zip File + + + + + novelWriter Project File + + + + + Open Project + 打开项目 + + + + VersionInfoWidget + + + Latest Version: {0} + + + + + Checking ... + 正在检查... + + + + Download from {0} + + + + + Version + + + + + Released on + + + + + Release Notes + + + + + Check Now + + + + + Failed + + + + + _ContentsPage + + + Table of Contents + 目录 + + + + Title + 标题 + + + + Words + 单词 + + + + Pages + 页面 + + + + Page + 页面 + + + + Progress + 进度 + + + + Words per page + 每页字数 + + + + First page offset + + + + + Chapters on odd pages + + + + + Untitled + 未命名 + + + + END + 结束 + + _DetailsWidget - + Setting 设置 - + Value - + Name 名称 - + Selection 选择 - + Title 标题 + + + Hidden + 隐藏 + _FilterTab @@ -4531,12 +4099,12 @@ 重置为默认值 - + Mark selection as 标记选区为 - + Select Root Folders 选择根文件夹 @@ -4544,22 +4112,22 @@ _GuiAlert - + Information 信息 - + Warning 警告 - + Error 错误 - + Question 问题 @@ -4567,239 +4135,699 @@ _HeadingsTab - - + Hide 隐藏 - - + + Editing: {0} 正在编辑 {0} - - + + None - + Title 标题 - + Chapter Number 章节编号 - + Chapter Number (Word) 章节编号(Word) - + Chapter Number (Upper Case Roman) 章节编号(大写罗马数字) - + Chapter Number (Lower Case Roman) 章节编号(小写罗马数字) - + Scene Number (In Chapter) 场景编号 (章节) - + Scene Number (Absolute) 场景编号(绝对) - + + Point of View Character + 视角人物 + + + + Focus Character + 聚焦章节 + + + Insert 插入 - + Apply 应用 + + + Additional Styling + + + + + + + Centre + + + + + + + Page Break + 分页 + + + + _NewProjectForm + + + Required + 必须 + + + + Optional + 可选 + + + + Create a fresh project + + + + + Create an example project + + + + + Copy an existing project + + + + + Project Name + 项目名称 + + + + Author + + + + + Project Path + 项目路径 + + + + Prefill Project + + + + + Set to 0 to only add scenes + + + + + Add {0} chapter documents + + + + + Add {0} scene documents (to each chapter) + + + + + Add a folder for plot notes + 为情节笔记添加一个文件夹 + + + + Add a folder for character notes + 为章节笔记添加文件夹 + + + + Add a folder for location notes + 为位置笔记添加文件夹 + + + + Add example notes to the above + 在上面添加示例注释 + + + + Chapters and Scenes + + + + + Project Notes + 项目笔记 + + + + Create New Project + 新建项目 + + + + Select Project Folder + 选择项目文件夹 + + + + Fresh Project + + + + + Example Project + + + + + Template: {0} + + + + + _NewProjectPage + + + A project name is required. + + + + + _OpenProjectPage + + + The project path is not reachable. + + + + + Path + 路径 + + + + Remove '{0}' from the recent projects list? The project files will not be deleted. + 从最近的项目列表中删除 '{0}'?项目文件将不会被删除。 + + + + Open Project + 打开项目 + + + + Remove Project + + + + + _OverviewPage + + + Project + 项目 + + + + + Name + 名称 + + + + Revisions + 修订 + + + + Editing Time + 编辑时间 + + + + + Word Count + 字数 + + + + In Novels + + + + + In Notes + + + + + Selected Novel + + + + + Chapters + 章节 + + + + Scenes + 场景 + _PreviewWidget - + Press the "Preview" button to generate ... 按“预览”按钮生成... - + Processing ... 处理中... - + Done 完成 - + Unknown 未知 - + Built 创建: + + _ProjectListModel + + + Word Count + 字数 + + + + Last Opened + 最近打开 + + + + _ReplacePage + + + Text Auto-Replace for Preview and Build + + + + + Keyword + 关键字 + + + + Replace With + 替换为 + + + + Select item to edit + 选择要修改的条目 + + + + Save + 保存 + + + + _SettingsPage + + + Project name + 项目名称 + + + + Changing this will affect the backup path. + + + + + Author(s) + 作者 + + + + + Only used when building the manuscript. + + + + + Project language + 项目语言 + + + + Default + 默认 + + + + Spell check language + 拼写检查语言 + + + + + Overrides main preferences. + 覆盖主要首选项。 + + + + Disable backup on close + + + + + _StatsWidget + + + + Words + 单词 + + + + + Characters + 人物 + + + + Words in Headings + + + + + Words in Text + + + + + Headings + 标题 + + + + Paragraphs + 段落 + + + + Characters in Headings + + + + + Characters in Text + + + + + Characters, No Spaces + + + + + Characters in Headings, No Spaces + + + + + Characters in Text, No Spaces + + + + + _StatusPage + + + Novel Document Status Levels + + + + + Project Note Importance Levels + + + + + Label + 标签 + + + + Usage + 用法 + + + + Select item to edit + 选择要修改的条目 + + + + Colour + 颜色 + + + + Save + 保存 + + + + Select Colour + 选择颜色 + + + + New Item + 新项目 + + + + Cannot delete a status item that is in use. + 无法删除正在使用的状态项。 + + + + Not in use + 未使用 + + + + Used once + 使用过一次 + + + + Used by {0} items + 被 {0} 项目使用 + + _TreeContextMenu - + Empty Trash 清空回收站 - + Rename 重命名 - + Open Document 打开文档 - + View Document 查看文档 - + + Create New ... + + + + + Rename to Heading + + + + Set Active to ... 设置活跃性为... - - Active - 活跃 - - - - Inactive - 非活跃 - - - + Toggle Active 切换活动状态 - + Set Status to ... 设置状态为... - - + + Manage Labels ... 管理标签... - + Set Importance to ... 设置重要性为... - - Transform - 转换 + + Transform ... + - - - - + + + + Convert to {0} 转换为 {0} - + Merge Child Items into Self 将子项合并到该项 - + Merge Child Items into New 将子项合并为新项 - + Merge Documents in Folder 合并文件夹中的文档 - - Split Document by Headers - 按标题拆分文档 + + Split Document by Headings + - + Expand All 全部展开 - + Collapse All 全部折叠 - - Duplicate from Here - 从此处复制 + + Duplicate + - - Duplicate Document - 复制文档 - - - + + Delete Permanently 永久删除 - - + + Move to Trash 移动到回收站 - + Move {0} items to Trash? 将“{0}”移至回收站吗? - + Do you want to convert the folder to a {0}? This action cannot be reversed. 您想要将文件夹转换为 {0} 吗?此操作不能被撤销。 + + _UpdatableMenu + + + From Template + + + _ViewPanelBackRefs - + Document 文档 - + First Heading 首页标题 @@ -4807,27 +4835,27 @@ _ViewPanelKeyWords - + Tag 标签 - + Importance 重要级 - + Document 文档 - + Heading 标题 - + Short Description 简短描述 From 4b112cf9c0392b8100dd62a3e5e89ed9289bcbd5 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 6 Apr 2024 19:10:47 +0200 Subject: [PATCH 3/3] Update Norwegian and US English translations --- i18n/nw_en_US.ts | 2070 ++++++++++++++++++++++----------------------- i18n/nw_nb_NO.ts | 2072 +++++++++++++++++++++++----------------------- 2 files changed, 2071 insertions(+), 2071 deletions(-) diff --git a/i18n/nw_en_US.ts b/i18n/nw_en_US.ts index 7528c133..a15a9cc7 100644 --- a/i18n/nw_en_US.ts +++ b/i18n/nw_en_US.ts @@ -4,305 +4,305 @@ Builds - + Document Filters Document Filters - + Novel Documents Novel Documents - + Project Notes Project Notes - + Inactive Documents Inactive Documents - + Headings Headings - + Partition Format - + Partition Format - + Chapter Format - + Chapter Format - + Unnumbered Format - + Unnumbered Format - + Scene Format - + Scene Format - + Hard Scene Format - + Hard Scene Format - + Section Format - + Section Format - + Text Content Text Content - + Include Synopsis Include Synopsis - + Include Comments Include Comments - + Include Keywords Include Keywords - + Include Body Text Include Body Text - + Ignore These Keywords - + Ignore These Keywords - + Insert Content Insert Content - + Add Titles for Notes Add Titles for Notes - + Text Format Text Format - + Font Family Font Family - + Font Size Font Size - + Line Height Line Height - + Text Options Text Options - + Justify Text Margins Justify Text Margins - + Replace Unicode Characters Replace Unicode Characters - + Replace Tabs with Spaces Replace Tabs with Spaces - + Page Layout Page Layout - + Unit Unit - + Page Size Page Size - + Page Width Page Width - + Page Height Page Height - + Top Margin Top Margin - + Bottom Margin Bottom Margin - + Left Margin Left Margin - + Right Margin Right Margin - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Add Highlight Colors - + Page Header Page Header - + Page Counter Offset Page Counter Offset - + First Line Indent - + First Line Indent - + Markdown (.md) - + Markdown (.md) - + Preserve Hard Line Breaks - + Preserve Hard Line Breaks - + HTML (.html) HTML (.html) - + Add CSS Styles Add CSS Styles - + Preserve Tab Characters - + Preserve Tab Characters Common - + in the future in the future - + just now just now - + a minute ago a minute ago - + {0} minutes ago {0} minutes ago - + an hour ago an hour ago - + {0} hours ago {0} hours ago - + a day ago a day ago - + {0} days ago {0} days ago - + a week ago a week ago - + {0} weeks ago {0} weeks ago - + a month ago a month ago - + {0} months ago {0} months ago - + a year ago a year ago - + {0} years ago {0} years ago @@ -310,375 +310,375 @@ Constant - - - + + + None None - + Novel Novel - - + + Plot Plot - - + + Characters Characters - - + + Locations Locations - - + + Timeline Timeline - - + + Objects Objects - - + + Entities Entities - - - + + + Custom Custom - + Archive Archive - + Templates Templates - + Trash Trash - - + + Novel Document Novel Document - - + + Project Note Project Note - + Root Folder Root Folder - + Folder Folder - + Novel Title Page Novel Title Page - + Novel Chapter Novel Chapter - + Novel Scene Novel Scene - + Novel Section Novel Section - + Tag Tag - + Point of View Point of View - - + + Focus Focus - + Title Title - + Level Level - + Document Document - + Line Line - + Chars Chars - + Words Words - + Pars Pars - + POV POV - + Synopsis Synopsis - + 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 files Text files - + Markdown files Markdown files - + novelWriter files novelWriter files - + CSV files CSV files - + All files All files - + Millimetres Millimeters - + Centimetres Centimeters - + Inches Inches - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark Straight single quotation mark - + Straight double quotation mark Straight double quotation mark - + Left single quotation mark Left single quotation mark - + Right single quotation mark Right single quotation mark - + Single low-9 quotation mark Single low-9 quotation mark - + Single high-reversed-9 quotation mark Single high-reversed-9 quotation mark - + Left double quotation mark Left double quotation mark - + Right double quotation mark Right double quotation mark - + Double low-9 quotation mark Double low-9 quotation mark - + Double high-reversed-9 quotation mark Double high-reversed-9 quotation mark - + Double low-reversed-9 quotation mark Double low-reversed-9 quotation mark - + Single left-pointing angle quotation mark Single left-pointing angle quotation mark - + Single right-pointing angle quotation mark Single right-pointing angle quotation mark - + Double left-pointing angle quotation mark Double left-pointing angle quotation mark - + Double right-pointing angle quotation mark Double right-pointing angle quotation mark - + Left corner bracket Left corner bracket - + Right corner bracket Right corner bracket - + Left white corner bracket Left white corner bracket - + Right white corner bracket Right white corner bracket @@ -686,17 +686,17 @@ GuiAbout - + About novelWriter About novelWriter - + This application is licenced under {0} This application is licensed under {0} - + Credits Credits @@ -704,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Manuscript Build Settings - + Name Name - + Selection Selection - + Headings Headings - + Content Content - + Format Format - + Output Output @@ -743,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Add 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 Dictionary Add Dictionary - + Dictionary install location Dictionary install location - + Additional dictionaries found: {0} Additional dictionaries found: {0} - + Free or Libre Office extension Free or Libre Office extension - + Browse Files Browse Files - + Could not process dictionary file Could not process dictionary file - + Added: {0} [{1}B] Added: {0} [{1}B] @@ -791,22 +791,22 @@ GuiDocEditFooter - + Line: {0} ({1}) Line: {0} ({1}) - + Words: {0} ({1}) Words: {0} ({1}) - + Words: {0} selected Words: {0} selected - + Status Status @@ -814,27 +814,27 @@ GuiDocEditHeader - + Toggle Tool Bar Toggle Tool Bar - + Outline - + Outline - + Search Search - + Toggle Focus Mode Toggle Focus Mode - + Close Close @@ -842,62 +842,62 @@ GuiDocEditSearch - + Search for - + Search for - + Replace with - + Replace with - + Search Search - + Case Sensitive Case Sensitive - + Whole Words Only Whole Words Only - + RegEx Mode RegEx Mode - + Loop Search Loop Search - + Search Next File Search Next File - + Preserve Case Preserve Case - + Close Search Close Search - + Find in current document Find in current document - + Find and replace in current document Find and replace in current document @@ -905,122 +905,122 @@ 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 complete Spell check complete - + Document Details Document Details - + Created: {0} Created: {0} - + Updated: {0} Updated: {0} - + File Location: {0} File Location: {0} - + Set as Document Name Set as Document Name - + Follow Tag Follow Tag - + Create Note for Tag Create Note for Tag - + Cut Cut - + Copy Copy - + Paste Paste - + Select All Select All - + Select Word Select Word - + Select Paragraph Select Paragraph - + Spelling Suggestion(s) Spelling Suggestion(s) - + No Suggestions No Suggestions - + Add Word to Dictionary Add 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}'? @@ -1028,22 +1028,22 @@ GuiDocMerge - + Merge Documents Merge Documents - + Documents to Merge Documents 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 Trash Move merged items to Trash @@ -1051,52 +1051,52 @@ GuiDocSplit - + Split Document Split Document - + Document Headings - + Document Headings - + Select the maximum level to split into files. Select the maximum level to split into files. - + Split on Heading Level 1 (Partition) - + Split on Heading Level 1 (Partition) - + Split up to Heading Level 2 (Chapter) - + Split up to Heading Level 2 (Chapter) - + Split up to Heading Level 3 (Scene) - + Split up to Heading Level 3 (Scene) - + Split up to Heading Level 4 (Section) - + Split up to Heading Level 4 (Section) - + Split into a new folder Split into a new folder - + Create document hierarchy Create document hierarchy - + Move split document to Trash Move split document to Trash @@ -1104,52 +1104,52 @@ GuiDocToolBar - + Markdown Bold Markdown Bold - + Markdown Italic Markdown Italic - + Markdown Strikethrough Markdown Strikethrough - + Shortcode Bold Shortcode Bold - + Shortcode Italic Shortcode Italic - + Shortcode Strikethrough Shortcode Strikethrough - + Shortcode Underline Shortcode Underline - + Shortcode Highlight - + Shortcode Highlight - + Shortcode Superscript Shortcode Superscript - + Shortcode Subscript Shortcode Subscript @@ -1157,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Show/Hide Viewer Panel - + Comments Comments - + Show Comments Show Comments - + Synopsis Synopsis - + Show Synopsis Comments Show Synopsis Comments @@ -1185,27 +1185,27 @@ GuiDocViewHeader - + Outline - + Outline - + Go Backward Go Backward - + Go Forward Go Forward - + Reload Reload - + Close Close @@ -1213,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. An error occurred while generating the preview. - + Copy Copy - + Select All Select All - + Select Word Select Word - + Select Paragraph Select Paragraph @@ -1241,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Hide Inactive Tags - + References References @@ -1254,12 +1254,12 @@ GuiEditLabel - + Item Label Item Label - + Label Label @@ -1267,37 +1267,37 @@ GuiItemDetails - + Label Label - + Status Status - + Class Class - + Usage Usage - + Characters Characters - + Words Words - + Paragraphs Paragraphs @@ -1305,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Insert Placeholder Text - + Insert Lorem Ipsum Text Insert Lorem Ipsum Text - + Number of paragraphs Number of paragraphs - + Randomise order Randomize order - + Insert Insert @@ -1333,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 File Import 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} ms Indexing 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}. @@ -1437,657 +1437,657 @@ GuiMainMenu - + &Project &Project - + Create or Open Project Create or Open Project - + Save Project Save Project - + Close Project Close Project - + Project Settings Project Settings - + Novel Details Novel Details - + Rename Item Rename Item - + Delete Item Delete Item - + Empty Trash Empty Trash - + Exit Exit - + &Document &Document - + Open Document Open Document - + Save Document Save Document - + Close Document Close Document - + View Document View Document - + Close Document View Close Document View - + Show File Details Show File Details - + Import Text from File Import Text from File - + &Edit &Edit - + Undo Undo - + Redo Redo - + Cut Cut - + Copy Copy - + Paste Paste - + Select All Select All - + Select Paragraph Select Paragraph - + &View &View - + Go to Project Tree Go to Project Tree - + Go to Document Editor Go to Document Editor - + Go to Outline Go to Outline - + Navigate Backward Navigate Backward - + Navigate Forward Navigate Forward - + Focus Mode Focus Mode - + Full Screen Mode Full Screen Mode - + &Insert &Insert - + Dashes Dashes - + Short Dash Short Dash - + Long Dash Long Dash - + Horizontal Bar Horizontal Bar - + Figure Dash Figure Dash - + Quote Marks Quote Marks - + Left Single Quote Left Single Quote - + Right Single Quote Right Single Quote - + Left Double Quote Left Double Quote - + Right Double Quote Right Double Quote - + Alternative Apostrophe Alternative Apostrophe - + General Punctuation General Punctuation - + Ellipsis Ellipsis - + Prime Prime - + Double Prime Double Prime - + White Spaces White Spaces - + Non-Breaking Space Non-Breaking Space - + Thin Space Thin Space - + Thin Non-Breaking Space Thin Non-Breaking Space - + Other Symbols Other Symbols - + List Bullet List Bullet - + Hyphen Bullet Hyphen Bullet - + Flower Mark Flower Mark - + Per Mille Per Mille - + Degree Symbol Degree Symbol - + Minus Sign Minus Sign - + Times Sign Times Sign - + Division Sign Division Sign - + Tags and References Tags and References - + Special Comments Special Comments - + Synopsis Comment Synopsis Comment - + Short Description Comment Short Description Comment - + Page Break and Space Page Break and Space - + Page Break Page Break - + Vertical Space (Single) Vertical Space (Single) - + Vertical Space (Multi) Vertical Space (Multi) - + Placeholder Text Placeholder Text - + &Format &Format - + Bold Bold - + Italic Italic - + Strikethrough Strikethrough - + Wrap Double Quotes Wrap Double Quotes - + Wrap Single Quotes Wrap Single Quotes - + More Formats ... More Formats ... - + Bold (Shortcode) Bold (Shortcode) - + Italics (Shortcode) Italics (Shortcode) - + Strikethrough (Shortcode) Strikethrough (Shortcode) - + Underline Underline - + Highlight - + Highlight - + Superscript Superscript - + Subscript Subscript - + Heading 1 (Partition) - + Heading 1 (Partition) - + Heading 2 (Chapter) - + Heading 2 (Chapter) - + Heading 3 (Scene) - + Heading 3 (Scene) - + Heading 4 (Section) - + Heading 4 (Section) - + Novel Title Novel Title - + Unnumbered Chapter Unnumbered Chapter - + Hard Scene - + Hard Scene - + Align Left Align Left - + Align Centre Align Center - + Align Right Align Right - + Indent Left Indent Left - + Indent Right Indent Right - + Toggle Comment Toggle Comment - + Toggle Ignore Text Toggle Ignore Text - + Remove Block Format Remove Block Format - + Replace Straight Single Quotes - + Replace Straight Single Quotes - + Replace Straight Double Quotes - + Replace Straight Double Quotes - + Remove In-Paragraph Breaks Remove In-Paragraph Breaks - + &Search &Search - + Find Find - + Replace Replace - + Find Next Find Next - + Find Previous Find Previous - + Replace Next Replace Next - + Find in Project - + Find in Project - + &Tools &Tools - + Check Spelling Check Spelling - + Spell Check Language Spell Check Language - + Default Default - + Re-Run Spell Check Re-Run Spell Check - + Project Word List Project Word List - + Add Dictionaries Add Dictionaries - + Rebuild Index Rebuild Index - + Backup Project Backup Project - + Build Manuscript Build Manuscript - + Writing Statistics Writing Statistics - + Preferences Preferences - + &Help &Help - + About novelWriter About novelWriter - + About Qt5 About 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 Website The novelWriter Website @@ -2095,38 +2095,38 @@ GuiMainStatus - - + + None None - + Editor Editor - + Project Project - + Session Time Session Time - + Words: {0} ({1}) Words: {0} ({1}) - + Project word count (session change) Project word count (session change) - + Novel word count (session change) Novel word count (session change) @@ -2134,63 +2134,63 @@ GuiManuscript - + Build Manuscript Build Manuscript - + Add New Build Add New Build - + Delete Selected Build Delete Selected Build - + Edit Selected Build Edit Selected Build - + Builds Builds - + Details - + Details - + Outline - + Outline - + Preview Preview - + Print Print - + Build Build - + Close Close - - + + My Manuscript My Manuscript @@ -2198,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Build Manuscript - + Output Format Output Format - + Table of Contents Table of Contents - + Path Path - + File Name File Name - + Reset file name to default Reset file name to default - + Open Folder Open Folder - + &Build &Build - + Select Folder Select 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? @@ -2256,18 +2256,18 @@ GuiNovelDetails - - + + Novel Details Novel Details - + Overview Overview - + Contents Contents @@ -2275,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Outline of {0} - + Novel Root Novel Root - + Refresh Refresh - + Last Column Last Column - + Hidden Hidden - + Point of View Character Point of View Character - + Focus Character Focus Character - + Novel Plot Novel Plot - - + + Column Size Column Size - + More Options More Options - + Maximum column size in % Maximum column size in % @@ -2334,7 +2334,7 @@ GuiNovelTree - + No meta data No meta data @@ -2342,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Title - + Chapter Chapter - + Scene Scene - + Section Section - + Document Document - + Status Status - + Characters Characters - + Words Words - + Paragraphs Paragraphs - + Synopsis Synopsis - + Title Details Title Details - + Reference Tags Reference Tags @@ -2407,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Select Columns @@ -2415,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Outline of - + Refresh Refresh - + Export CSV Export CSV @@ -2433,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Save Outline As @@ -2441,553 +2441,553 @@ GuiPreferences - - + + Preferences Preferences - + Search Search - + General General - + Appearance Appearance - + Display language Display language - - - + + + Requires restart to take effect. Requires restart to take effect. - + Colour theme Color theme - + General colour theme and icons. General color theme and icons. - + Application font family Application font family - + Application font size Application font size - - + + pt pt - + Hide vertical scroll bars in main windows Hide 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 windows Hide horizontal scroll bars in main windows - + Document Style Document Style - + Document colour theme Document color theme - + Colour theme for the editor and viewer. Color theme for the editor and viewer. - + Document font family Document font family - - - - + + + + Applies to both document editor and viewer. Applies to both document editor and viewer. - + Document font size Document font size - + Emphasise partition and chapter labels Emphasize 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 header Show 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 count Include project notes in status bar word count - + Auto Save Auto Save - + Save document interval Save document interval - + How often the document is automatically saved. How often the document is automatically saved. - - + + seconds seconds - + Save project interval Save project interval - + How often the project is automatically saved. How often the project is automatically saved. - + Project Backup Project Backup - + Browse Browse - + Backup storage location Backup storage location - - + + Path: {0} Path: {0} - + Run backup when the project is closed Run 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 backup Ask before running backup - + If off, backups will run in the background. If off, backups will run in the background. - + Session Timer Session Timer - + Pause the session timer when not writing Pause 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 timer Editor inactive time before pausing timer - + User activity includes typing and changing the content. User activity includes typing and changing the content. - + minutes minutes - + Writing Writing - + Text Flow Text 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. - - - - + + + + px px - + 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 margins Justify the text margins - + Minimum text margin Minimum text margin - + Tab width Tab 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 Editing Text Editing - + Spell check language Spell check language - + Available languages are determined by your system. Available languages are determined by your system. - + Auto-select word under cursor Auto-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 spaces Show tabs and spaces - + Show line endings Show line endings - + Editor Scrolling Editor Scrolling - + Scroll past end of the document Scroll past end of the document - + Also centres the cursor when scrolling. Also centers the cursor when scrolling. - + Typewriter style scrolling when you type Typewriter 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 scrolling Minimum position for Typewriter scrolling - + Percentage of the editor height from the top. Percentage of the editor height from the top. - + Text Highlighting Text Highlighting - + Highlight text wrapped in quotes Highlight text wrapped in quotes - - - + + + Applies to the document editor only. Applies to the document editor only. - + Allow open-ended single quotes Allow open-ended single quotes - + Highlight single-quoted line with no closing quote. Highlight single-quoted line with no closing quote. - + Allow open-ended double quotes Allow 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 text Add highlight color to emphasised text - + Highlight multiple or trailing spaces Highlight multiple or trailing spaces - + Text Automation Text Automation - + Auto-replace text as you type Auto-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 quotes Auto-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 quotes Auto-replace double quotes - + Auto-replace dashes Auto-replace dashes - + Double and triple hyphens become short and long dashes. Double and triple hyphens become short and long dashes. - + Auto-replace dots Auto-replace dots - + Three consecutive dots become ellipsis. Three consecutive dots become ellipsis. - + Insert non-breaking space before Insert non-breaking space before - + Automatically add space before any of these symbols. Automatically add space before any of these symbols. - + Insert non-breaking space after Insert non-breaking space after - + Automatically add space after any of these symbols. Automatically add space after any of these symbols. - + Use thin space instead Use thin space instead - + Inserts a thin space instead of a regular space. Inserts a thin space instead of a regular space. - + Quotation Style Quotation Style - + Single quote open style Single quote open style - + The symbol to use for a leading single quote. The symbol to use for a leading single quote. - + Single quote close style Single quote close style - + The symbol to use for a trailing single quote. The symbol to use for a trailing single quote. - + Double quote open style Double quote open style - + The symbol to use for a leading double quote. The symbol to use for a leading double quote. - + Double quote close style Double quote close style - + The symbol to use for a trailing double quote. The symbol to use for a trailing double quote. - + Backup Directory Backup Directory @@ -2995,56 +2995,56 @@ GuiProjectSearch - + Project Search - + Project Search - + Case Sensitive - Case Sensitive + Case Sensitive - + Whole Words Only - Whole Words Only + Whole Words Only - + RegEx Mode - RegEx Mode + RegEx Mode - + Search for - + Search for GuiProjectSettings - - + + Project Settings Project Settings - + Settings Settings - + Status Status - + Importance Importance - + Auto-Replace Auto-Replace @@ -3052,47 +3052,47 @@ GuiProjectToolBar - + Project Content Project Content - + Quick Links Quick Links - + Move Up Move Up - + Move Down Move Down - + Add Item Add Item - + Expand All Expand All - + Collapse All Collapse All - + Empty Trash Empty Trash - + More Options More Options @@ -3100,118 +3100,118 @@ GuiProjectTree - + Active Active - + Inactive Inactive - + 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 Note New Note - + New Chapter New Chapter - + New Scene New Scene - + New Document New Document - + New Folder New 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. - + Merged Merged - - + + 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}'. @@ -3219,42 +3219,42 @@ GuiSideBar - + Project Tree View Project Tree View - + Novel Tree View Novel Tree View - + Project Search - + Project Search - + Novel Outline View Novel Outline View - + Build Manuscript Build Manuscript - + Novel Details Novel Details - + Writing Statistics Writing Statistics - + Settings Settings @@ -3262,37 +3262,37 @@ GuiWelcome - + Welcome Welcome - + List List - + New New - + Browse Browse - + Cancel Cancel - + Create Create - + Open Open @@ -3300,33 +3300,33 @@ GuiWordList - - + + Project Word List Project Word List - + Import words from text file Import words from text file - + Export words to text file Export 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 File Import File - + Export File Export File @@ -3334,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Writing Statistics - + Session Start Session Start - + Length Length - + Idle Idle - + Words Words - + Histogram Histogram - + Sum Totals Sum 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: - + Filters Filters - + Count novel files Count novel files - + Count note files Count note files - + Hide zero word count Hide zero word count - + Hide negative word count Hide negative word count - + Group entries by day Group entries by day - + Show idle time Show idle time - + Word count cap for the histogram Word count cap for the histogram - + Save As Save As - + JSON Data File (.json) JSON Data File (.json) - + CSV Data File (.csv) CSV Data File (.csv) - + JSON Data File JSON Data File - + CSV Data File CSV Data File - + Save Data As Save Data As - + {0} file successfully written to: {0} file successfully written to: - + Failed to write {0} file. Failed to write {0} file. @@ -3482,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. - + Unknown Unknown - + 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? - + Recovered Recovered - + 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}' - - + + New New - + Note Note - + Draft Draft - + Finished Finished - + Minor Minor - + Major Major - + Main Main @@ -3636,7 +3636,7 @@ NovelSelector - + All Novel Folders All Novel Folders @@ -3644,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 Project New Project - + Title Page Title Page - + By By - + 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 Plot Main Plot - + Protagonist Protagonist - + Main Location Main 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. @@ -3734,7 +3734,7 @@ QDialogButtonBox - + OK OK @@ -3742,27 +3742,27 @@ QGnomeTheme - + &OK &OK - + &Save &Save - + &Cancel &Cancel - + &Close &Close - + Close without Saving Close without Saving @@ -3770,92 +3770,92 @@ QPlatformTheme - + OK OK - + Save Save - + Save All Save All - + Open Open - + &Yes &Yes - + Yes to &All Yes to &All - + &No &No - + N&o to All N&o to All - + Abort Abort - + Retry Retry - + Ignore Ignore - + Close Close - + Cancel Cancel - + Discard Discard - + Help Help - + Apply Apply - + Reset Reset - + Restore Defaults Restore Defaults @@ -3863,58 +3863,58 @@ QWizard - + Go Back Go Back - + < &Back < &Back - + Continue Continue - + &Next &Next - + &Next > &Next > - + Commit Commit - + Done Done - + &Finish &Finish - - + + Cancel Cancel - + Help Help - + &Help &Help @@ -3922,17 +3922,17 @@ SharedData - + novelWriter Project File or Zip File novelWriter Project File or Zip File - + novelWriter Project File novelWriter Project File - + Open Project Open Project @@ -3940,42 +3940,42 @@ VersionInfoWidget - + Latest Version: {0} Latest Version: {0} - + Checking ... Checking ... - + Download from {0} Download from {0} - + Version Version - + Released on Released on - + Release Notes Release Notes - + Check Now Check Now - + Failed Failed @@ -3983,57 +3983,57 @@ _ContentsPage - + Table of Contents Table of Contents - + Title Title - + Words Words - + Pages Pages - + Page Page - + Progress Progress - + Words per page Words per page - + First page offset First page offset - + Chapters on odd pages Chapters on odd pages - + Untitled Untitled - + END END @@ -4041,70 +4041,70 @@ _DetailsWidget - + Setting Setting - + Value Value - + Name Name - + Selection Selection - + Title Title - + Hidden - Hidden + Hidden _FilterTab - + Included in manuscript Included in manuscript - + Excluded from manuscript Excluded from manuscript - + Always included Always included - + Always excluded Always excluded - + Reset to default Reset to default - + Mark selection as Mark selection as - + Select Root Folders Select Root Folders @@ -4112,22 +4112,22 @@ _GuiAlert - + Information Information - + Warning Warning - + Error Error - + Question Question @@ -4135,211 +4135,211 @@ _HeadingsTab - + Hide Hide - - + + Editing: {0} Editing: {0} - - + + None None - + Title Title - + Chapter Number Chapter 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 Character Point of View Character - + Focus Character Focus Character - + Insert Insert - + Apply Apply - + Additional Styling - + Additional Styling - - - + + + Centre - + Center - - - + + + Page Break - Page Break + Page Break _NewProjectForm - + Required Required - + Optional Optional - + Create a fresh project Create a fresh project - + Create an example project Create an example project - + Copy an existing project Copy an existing project - + Project Name Project Name - + Author Author - + Project Path Project Path - + Prefill Project Prefill Project - + Set to 0 to only add scenes Set to 0 to only add scenes - + Add {0} chapter documents Add {0} chapter documents - + Add {0} scene documents (to each chapter) Add {0} scene documents (to each chapter) - + Add a folder for plot notes Add a folder for plot notes - + Add a folder for character notes Add a folder for character notes - + Add a folder for location notes Add a folder for location notes - + Add example notes to the above Add example notes to the above - + Chapters and Scenes Chapters and Scenes - + Project Notes Project Notes - + Create New Project Create New Project - + Select Project Folder Select Project Folder - + Fresh Project Fresh Project - + Example Project Example Project - + Template: {0} Template: {0} @@ -4347,7 +4347,7 @@ _NewProjectPage - + A project name is required. A project name is required. @@ -4355,27 +4355,27 @@ _OpenProjectPage - + The project path is not reachable. The project path is not reachable. - + Path Path - + 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 Project Open Project - + Remove Project Remove Project @@ -4383,54 +4383,54 @@ _OverviewPage - + Project Project - - + + Name Name - + Revisions Revisions - + Editing Time Editing Time - - + + Word Count Word Count - + In Novels In Novels - + In Notes In Notes - + Selected Novel Selected Novel - + Chapters Chapters - + Scenes Scenes @@ -4438,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Press the "Preview" button to generate ... - + Processing ... Processing ... - + Done Done - + Unknown Unknown - + Built Built @@ -4466,12 +4466,12 @@ _ProjectListModel - + Word Count Word Count - + Last Opened Last Opened @@ -4479,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Text Auto-Replace for Preview and Build - + Keyword Keyword - + Replace With Replace With - + Select item to edit Select item to edit - + Save Save @@ -4507,49 +4507,49 @@ _SettingsPage - + Project name Project 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 language Project language - + Default Default - + Spell check language Spell check language - - + + Overrides main preferences. Overrides main preferences. - + Disable backup on close Disable backup on close @@ -4557,127 +4557,127 @@ _StatsWidget - - + + Words - Words + Words - - + + Characters - Characters + Characters - + Words in Headings - + Words in Headings - + Words in Text - + Words in Text - + Headings - Headings + Headings - + Paragraphs - Paragraphs + Paragraphs - + Characters in Headings - + Characters in Headings - + Characters in Text - + Characters in Text - + Characters, No Spaces - + Characters, No Spaces - + Characters in Headings, No Spaces - + Characters in Headings, No Spaces - + Characters in Text, No Spaces - + Characters in Text, No Spaces _StatusPage - + Novel Document Status Levels Novel Document Status Levels - + Project Note Importance Levels Project Note Importance Levels - + Label Label - + Usage Usage - + Select item to edit Select item to edit - + Colour Color - + Save Save - + Select Colour Select Color - + New Item New Item - + Cannot delete a status item that is in use. Cannot delete a status item that is in use. - + Not in use Not in use - + Used once Used once - + Used by {0} items Used by {0} items @@ -4685,128 +4685,128 @@ _TreeContextMenu - + Empty Trash Empty Trash - + Rename Rename - + Open Document Open Document - + View Document View Document - + Create New ... Create New ... - + Rename to Heading Rename to Heading - + Set Active to ... Set Active to ... - + Toggle Active Toggle 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 Self Merge Child Items into Self - + Merge Child Items into New Merge Child Items into New - + Merge Documents in Folder Merge Documents in Folder - + Split Document by Headings - + Split Document by Headings - + Expand All Expand All - + Collapse All Collapse All - + Duplicate - + Duplicate - - + + Delete Permanently Delete Permanently - - + + Move to Trash Move 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. @@ -4814,7 +4814,7 @@ _UpdatableMenu - + From Template From Template @@ -4822,12 +4822,12 @@ _ViewPanelBackRefs - + Document Document - + First Heading First Heading @@ -4835,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Tag - + Importance Importance - + Document Document - + Heading Heading - + Short Description Short Description diff --git a/i18n/nw_nb_NO.ts b/i18n/nw_nb_NO.ts index 51dee946..20e3d251 100644 --- a/i18n/nw_nb_NO.ts +++ b/i18n/nw_nb_NO.ts @@ -4,305 +4,305 @@ Builds - + Document Filters Dokumentfiltre - + Novel Documents Romandokumenter - + Project Notes Prosjektnotater - + Inactive Documents Inaktive dokumenter - + Headings Overskrifter - + Partition Format - + Tittelformat - + Chapter Format - + Kapittelformat - + Unnumbered Format - + Unummerert format - + Scene Format - + Sceneformat - + Hard Scene Format - + Alt. sceneformat - + Section Format - + Seksjonformat - + Text Content Tekstinnhold - + Include Synopsis Inkluder sammendrag - + Include Comments Inkluder kommentarer - + Include Keywords Inkluder kodeord - + Include Body Text Inkluder tekst - + Ignore These Keywords - + Ignorer disse nøkkelordene - + Insert Content Legg til innhold - + Add Titles for Notes Legg til titler for notater - + Text Format Tekstformat - + Font Family Skriftfamilie - + Font Size Skriftstørrelse - + Line Height Linjehøyde - + Text Options Skriftvalg - + Justify Text Margins Juster tekstmarginer - + Replace Unicode Characters Erstatt unicode-tegn - + Replace Tabs with Spaces Erstatt tabulator med mellomrom - + Page Layout Sideoppsett - + Unit Enhet - + Page Size Sidestørrelse - + Page Width Sidebredde - + Page Height Sidehøyde - + Top Margin Toppmarg - + Bottom Margin Bunnmarg - + Left Margin Venstremarg - + Right Margin Høyremarg - + Open Document (.odt) Open Document (.odt) - + Add Highlight Colours Bruk farger på spesielle elementer - + Page Header Topptekst - + Page Counter Offset Første side for sideteller - + First Line Indent - + Innrykk på første linje - + Markdown (.md) - + Markdown (.md) - + Preserve Hard Line Breaks - + Bevar harde linjeskift - + HTML (.html) HTML (.html) - + Add CSS Styles Legg til CSS style - + Preserve Tab Characters - + Bevar tabulatorer Common - + in the future i fremtiden - + just now nå nettopp - + a minute ago for et minutt siden - + {0} minutes ago for {0} minutter siden - + an hour ago for en time siden - + {0} hours ago for {0} timer siden - + a day ago for en dag siden - + {0} days ago for {0} dager siden - + a week ago for en uke siden - + {0} weeks ago for {0} uker siden - + a month ago for en måned siden - + {0} months ago for {0} måneder siden - + a year ago for et år siden - + {0} years ago for {0} år siden @@ -310,375 +310,375 @@ Constant - - - + + + None Ingen - + Novel Roman - - + + Plot Plott - - + + Characters Karakterer - - + + Locations Lokasjoner - - + + Timeline Tidslinje - - + + Objects Objekter - - + + Entities Enheter - - - + + + Custom Annet - + Archive Arkiv - + Templates Maler - + Trash Søppel - - + + Novel Document Romandokument - - + + Project Note Prosjektnotat - + Root Folder Hovedmappe - + Folder Mappe - + Novel Title Page Tittelside - + Novel Chapter Kapittel - + Novel Scene Scene - + Novel Section Seksjon - + Tag Knagg - + Point of View Perspektiv - - + + Focus Fokus - + Title Tittel - + Level Nivå - + Document Dokument - + Line Linje - + Chars Tegn - + Words Ord - + Pars Avsnitt - + POV Persp. - + Synopsis Sammendrag - + Open Document (.odt) Open Document (.odt) - + Flat Open Document (.fodt) Flat Open Document (.fodt) - + novelWriter HTML (.html) novelWriter HTML (.htm) - + novelWriter Markup (.txt) novelWriter Markup (.txt) - + Standard Markdown (.md) Standard Markdown (.md) - + Extended Markdown (.md) Utvidet Markdown (.md) - + JSON + novelWriter HTML (.json) JSON + novelWriter HTML (.json) - + JSON + novelWriter Markup (.json) JSON + novelWriter Markup (.json) - + Text files Tekstfiler - + Markdown files Markdown-filer - + novelWriter files novelWriter-filer - + CSV files CSV-filer - + All files Alle filer - + Millimetres Millimeter - + Centimetres Centimeter - + Inches Tommer - + A4 A4 - + A5 A5 - + A6 A6 - + US Legal US Legal - + US Letter US Letter - + Straight single quotation mark Rett, enkelt sitattegn - + Straight double quotation mark Rett, dobbelt sitattegn - + Left single quotation mark Venstre, enkelt sitattegn - + Right single quotation mark Høyre, enkelt sitattegn - + Single low-9 quotation mark Enkelt, lavt-9 sitattegn - + Single high-reversed-9 quotation mark Enkelt, høyt, reversert-9 sitattegn - + Left double quotation mark Venstre, dobbelt sitattegn - + Right double quotation mark Høyre, dobbelt sitattegn - + Double low-9 quotation mark Dobbelt, lavt-9 sitattegn - + Double high-reversed-9 quotation mark Dobbelt, høyt, reversert-9 sitattegn - + Double low-reversed-9 quotation mark Dobbelt, lavt, reversert-9 sitattegn - + Single left-pointing angle quotation mark Enkelt, venstre, angulært sitattegn - + Single right-pointing angle quotation mark Enkelt, høyre, angulært sitattegn - + Double left-pointing angle quotation mark Dobbelt, venstre, angulært sitattegn - + Double right-pointing angle quotation mark Dobbelt, høyre, angulært sitattegn - + Left corner bracket Venstre hjørnevinkel - + Right corner bracket Høyre hjørnevinkel - + Left white corner bracket Venstre, hvit hjørnevinkel - + Right white corner bracket Høyre, hvit hjørnevinkel @@ -686,17 +686,17 @@ GuiAbout - + About novelWriter Om novelWriter - + This application is licenced under {0} Denne applikasjonen er lisensiert under {0} - + Credits Krediteringer @@ -704,38 +704,38 @@ GuiBuildSettings - - + + Manuscript Build Settings Byggeinnstillinger for manuskript - + Name Navn - + Selection Utvalg - + Headings Overskrifter - + Content Innhold - + Format Format - + Output Utdata @@ -743,47 +743,47 @@ GuiDictionaries - + Add Dictionaries Legg til ordbøker - + Download a dictionary from one of the links, and add it below. Last ned en ordbok fra en av lenkene, og legg den til nedenfor. - + Add Dictionary Legg til ordbok - + Dictionary install location Mappe hvor ordbøkene er installert - + Additional dictionaries found: {0} Ordbøker funnet: {0} - + Free or Libre Office extension Free- eller Libre Office-utvidelse - + Browse Files Bla gjennom - + Could not process dictionary file Kunne ikke behandle ordbokfilen - + Added: {0} [{1}B] Lagt til: {0} [{1}B] @@ -791,22 +791,22 @@ GuiDocEditFooter - + Line: {0} ({1}) Linje: {0} ({1}) - + Words: {0} ({1}) Ord: {0} ({1}) - + Words: {0} selected Ord: {0} valgt - + Status Status @@ -814,27 +814,27 @@ GuiDocEditHeader - + Toggle Tool Bar Vis/skjul verktøylinje - + Outline - + Disposisjon - + Search Søk - + Toggle Focus Mode - Slå av/på "Fokus-modus" + Slå av/på "Fokus-modus" - + Close Lukk @@ -842,62 +842,62 @@ GuiDocEditSearch - + Search for - + Søketekst - + Replace with - + Erstatt med - + Search Søk - + Case Sensitive Skill store/små bokstaver - + Whole Words Only Kun hele ord - + RegEx Mode RegEx-modus - + Loop Search Søk rundt - + Search Next File Søk i neste file - + Preserve Case Behold store/små bokstaver - + Close Search Lukk søk - + Find in current document Søk i det åpne dokumentet - + Find and replace in current document Søk og erstatt i det åpne dokumentet @@ -905,122 +905,122 @@ GuiDocEditor - + Opened Document: {0} Åpnet dokument: {0} - + This document has been changed outside of novelWriter while it was open. Overwrite the file on disk? Dette dokumentet er endret utenfor novelWriter mens det var åpent. Overskrive filen på disken? - + Could not save document. Kunne ikke lagre dokumentet. - + Saved Document: {0} Lagret dokument: {0} - + Spell checking requires the package PyEnchant. It does not appear to be installed. Stavekontroll krever at pakken PyEnchant er installert. Det ser det ikke ut til at den er. - + Spell check complete Stavekontrollen er ferdig - + Document Details Dokumentdetaljer - + Created: {0} Opprettet: {0} - + Updated: {0} Oppdatert: {0} - + File Location: {0} Filplassering: {0} - + Set as Document Name Sett som dokumentnavn - + Follow Tag Følg knagg - + Create Note for Tag Opprett notat for knagg - + Cut Klipp - + Copy Kopier - + Paste Lim inn - + Select All Velg hele teksten - + Select Word Velg hele ordet - + Select Paragraph Velg hele avsnittet - + Spelling Suggestion(s) Forslag fra stavekontrollen - + No Suggestions Ingen forslag - + Add Word to Dictionary Legg til ord i ordbok - + Please select some text before calling replace quotes. Venligst velg en del av teksten før du velger å erstatte sitattegn. - + Do you want to create a new project note for the tag '{0}'? Vil du opprette et nytt prosjektnotat for knaggen '{0}'? @@ -1028,22 +1028,22 @@ GuiDocMerge - + Merge Documents Slå sammen dokumenter - + Documents to Merge Dokumenter som skal slås sammen - + Drag and drop items to change the order, or uncheck to exclude. Dra og slipp elementer for å endre rekkefølgen, eller fjern merking for å ekskludere. - + Move merged items to Trash Flytt sammenslåtte elementer til papirkurven @@ -1051,52 +1051,52 @@ GuiDocSplit - + Split Document Del opp dokument - + Document Headings - + Dokumentets overskrifter - + Select the maximum level to split into files. Velg hvilket nivå av overskrifter å dele opp til. - + Split on Heading Level 1 (Partition) - + Splitt på overskrifter på nivå 1 (titler) - + Split up to Heading Level 2 (Chapter) - + Splitt på overskrifter opp til nivå 2 (kapitler) - + Split up to Heading Level 3 (Scene) - + Splitt på overskrifter opp til nivå 3 (scener) - + Split up to Heading Level 4 (Section) - + Splitt på overskrifter opp til nivå 4 (seksjoner) - + Split into a new folder Del inn i en ny mappe - + Create document hierarchy Opprett dokumenthierarki - + Move split document to Trash Flytt splittet element til papirkurven @@ -1104,52 +1104,52 @@ GuiDocToolBar - + Markdown Bold Fet skrift med Markdown - + Markdown Italic Kursiv med Markdown - + Markdown Strikethrough Gjennomstrek med Markdown - + Shortcode Bold Fet skrift med kortkode - + Shortcode Italic Kursiv med kortkode - + Shortcode Strikethrough Gjennomstrek med kortkode - + Shortcode Underline Understrek med kortkode - + Shortcode Highlight - + Tekstutheving med kortkode - + Shortcode Superscript Hevet skrift med kortkode - + Shortcode Subscript Senket skrift med kortkode @@ -1157,27 +1157,27 @@ GuiDocViewFooter - + Show/Hide Viewer Panel Vis/skjul visningspanelet - + Comments Kommentarer - + Show Comments Vis kommentarer - + Synopsis Sammendrag - + Show Synopsis Comments Vis sammendrag @@ -1185,27 +1185,27 @@ GuiDocViewHeader - + Outline - + Disposisjon - + Go Backward Gå bakover - + Go Forward Gå fremover - + Reload Oppdater - + Close Lukk @@ -1213,27 +1213,27 @@ GuiDocViewer - + An error occurred while generating the preview. Det har oppstått en feil under genereringen av visningen. - + Copy Kopier - + Select All Velg hele teksten - + Select Word Velg hele ordet - + Select Paragraph Velg hele avsnittet @@ -1241,12 +1241,12 @@ GuiDocViewerPanel - + Hide Inactive Tags Skjul inaktive knagger - + References Referanser @@ -1254,12 +1254,12 @@ GuiEditLabel - + Item Label Enhetens navn - + Label Navn @@ -1267,37 +1267,37 @@ GuiItemDetails - + Label Navn - + Status Status - + Class Klasse - + Usage Formål - + Characters Tegn - + Words Ord - + Paragraphs Avsnitt @@ -1305,27 +1305,27 @@ GuiLipsum - + Insert Placeholder Text Sett inn midlertidig tekst - + Insert Lorem Ipsum Text Sett inn Lorem Ipsum-tekst - + Number of paragraphs Antall avsnitt - + Randomise order Tilfeldig rekkefølge - + Insert Sett inn @@ -1333,103 +1333,103 @@ GuiMain - + novelWriter is ready ... novelWriter er klar ... - + You are now running novelWriter version {0}. Du kjører nå novelWriter versjon {0}. - + Please check the {0}release notes{1} for further details. Sjekk {0}utgivelsesnotater{1} for mer informasjon. - + Close the current project? Ønsker du å lukke dette prosjektet? - - + + Changes are saved automatically. Endringer lagres automatisk. - + Backup the current project? Ønsker du å ta sikkerhetskopi av dette prosjektet? - + The project is already open by another instance of novelWriter, and is therefore locked. Override lock and continue anyway? Prosjektet er allerede åpent av en annen instans av novelWriter, og er derfor låst. Vil du overstyre denne låsen og fortsette likevel? - + 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. Merk: Hvis programmet eller datamaskinen tidligere krasjet, kan fil-låsen trygt overstyres. Det anbefales imidlertid ikke å overstyre den hvis prosjektet er åpent i en annen instans av novelWriter. Å gjøre det kan skape konflikter i prosjektets filer. - + The project was locked by the computer '{0}' ({1} {2}), last active on {3}. Prosjektet er låst av datamaskinen {0} ({1} {2}), siste registrerte aktivitet var {3}. - + The project index is outdated or broken. Rebuilding index. Prosjektets indeks er utdatert eller skadet. Bygger indeksen på nytt. - + Import File Importer fil - + Could not read file. The file must be an existing text file. Kunne ikke lese filen. Filen må eksistere fra før av. - + Please open a document to import the text file into. Vennligst åpne et dokument hvor teksten i filen kan importeres. - + Importing the file will overwrite the current content of the document. Do you want to proceed? Å importere filen vil overskrive all eksisterende tekst i dokumentet. Ønsker du å fortsette? - + Indexing completed in {0} ms Indekseringen tok {0} ms - + The project index has been successfully rebuilt. Prosjektets indeks har blitt bygget på nytt. - + Could not initialise the dialog. Kunne ikke initialisere dialogen. - + Do you want to exit novelWriter? Ønsker du å avslutte novelWriter? - + Some changes will not be applied until novelWriter has been restarted. Noen endringer vil ikke tas i bruk før neste gang novelWriter startes. - + 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}. Kunne ikke finne referansen til knagg {0}. Enten finnes den ikke, eller så er prosjektets indeks ikke oppdatert. Indeksen kan oppdateres fra Verktøy-menyen eller ved å trykke på {1}. @@ -1437,657 +1437,657 @@ GuiMainMenu - + &Project &Prosjekt - + Create or Open Project Opprett eller åpne prosjekt - + Save Project Lagre prosjektet - + Close Project Lukk prosjektet - + Project Settings Prosjektinnstillinger - + Novel Details Roman-detaljer - + Rename Item Endre navn - + Delete Item Slett enhet - + Empty Trash Tøm søppel - + Exit Avslutt - + &Document &Dokument - + Open Document Åpne dokument - + Save Document Lagre dokumentet - + Close Document Lukk dokumentet - + View Document Vis dokument - + Close Document View Lukk dokumentvisning - + Show File Details Vis filinformasjon - + Import Text from File Importer tekst fra fil - + &Edit &Rediger - + Undo Angre - + Redo Gjenopprett - + Cut Klipp - + Copy Kopier - + Paste Lim inn - + Select All Velg hele teksten - + Select Paragraph Velg hele avsnittet - + &View &Vis - + Go to Project Tree Gå til prosjekt-tre - + Go to Document Editor Gå til dokument-editor - + Go to Outline Gå til disposisjon - + Navigate Backward Navigere bakover - + Navigate Forward Navigere fremover - + Focus Mode Focus-modus - + Full Screen Mode Fullskjerm-modus - + &Insert Sett &inn - + Dashes Bindestreker - + Short Dash Kort bindestrek - + Long Dash Lang bindestrek - + Horizontal Bar Horisontal strek - + Figure Dash Tallstrek - + Quote Marks Sitattegn - + Left Single Quote Venstre, enkelt sitattegn - + Right Single Quote Høyre, enkelt sitattegn - + Left Double Quote Venstre, dobbelt sitattegn - + Right Double Quote Høyre, dobbelt sitattegn - + Alternative Apostrophe Alternativ apostrof - + General Punctuation Generell tegnsetting - + Ellipsis Ellipsis - + Prime Primtegn - + Double Prime Dobbelt primtegn - + White Spaces Mellomrom - + Non-Breaking Space Hardt mellomrom - + Thin Space Kort mellomrom - + Thin Non-Breaking Space Hardt, kort mellomrom - + Other Symbols Andre symboler - + List Bullet Kulepunkt - + Hyphen Bullet Bindestrekpunkt - + Flower Mark Blomsterpunkt - + Per Mille Promille - + Degree Symbol Gradertegn - + Minus Sign Minustegn - + Times Sign Gangetegn - + Division Sign Deletegn - + Tags and References Knagger og referanser - + Special Comments Andre kommentartyper - + Synopsis Comment Kommentar med sammendrag - + Short Description Comment Kommentar for kort beskrivelse - + Page Break and Space Sideskift og avstand - + Page Break Sideskift - + Vertical Space (Single) Vertikal avstand (enkel) - + Vertical Space (Multi) Vertikal avstand (flere) - + Placeholder Text Midlertidig tekst - + &Format &Formattering - + Bold Fet - + Italic Kursiv - + Strikethrough Gjennomstrek - + Wrap Double Quotes Sett i doble sitattegn - + Wrap Single Quotes Sett i enkle sitattegn - + More Formats ... Flere formater ... - + Bold (Shortcode) Fet (kortkode) - + Italics (Shortcode) Kursiv (kortkode) - + Strikethrough (Shortcode) Gjennomstrek (Kortkode) - + Underline Understrek - + Highlight - + Tekstutheving - + Superscript Hevet skrift - + Subscript Senket skrift - + Heading 1 (Partition) - + Overskrift 1 (inndeling) - + Heading 2 (Chapter) - + Overskrift 2 (kapittel) - + Heading 3 (Scene) - + Overskrift 3 (scene) - + Heading 4 (Section) - + Overskrift 4 (seksjon) - + Novel Title Boktittel - + Unnumbered Chapter Unumrert kapittel - + Hard Scene - + Alt. scene - + Align Left Venstrejuster - + Align Centre Sentrer - + Align Right Høyrejuster - + Indent Left Innrykk fra venstre - + Indent Right Innrykk fra høyre - + Toggle Comment Veksle kommentar - + Toggle Ignore Text Aktiver/deaktiver ignorert tekst - + Remove Block Format Fjern formattering - + Replace Straight Single Quotes - + Erstatt enkle sitattegn - + Replace Straight Double Quotes - + Erstatt doble sitattegn - + Remove In-Paragraph Breaks Fjern linjeskift i avsnittet - + &Search &Søk - + Find Søk - + Replace Erstatt - + Find Next Finn neste - + Find Previous Finn forrige - + Replace Next Erstatt neste - + Find in Project - + Søk i prosjektet - + &Tools &Verktøy - + Check Spelling Stavekontroll - + Spell Check Language Språk for stavekontroll - + Default Ingen valg - + Re-Run Spell Check Kjør stavekontroll - + Project Word List Prosjektets ordliste - + Add Dictionaries Legg til ordbøker - + Rebuild Index Bygg indeks - + Backup Project Lag sikkerhetskopi av prosjektets mappe - + Build Manuscript Bygg manuskript - + Writing Statistics Statistikk - + Preferences Innstillinger - + &Help &Hjelp - + About novelWriter Om novelWriter - + About Qt5 Om Qt5 - + User Manual (Online) Brukermanual (på nett) - + User Manual (PDF) Brukermanual (PDF) - + Report an Issue (GitHub) Rapporter en feil (GitHub) - + Ask a Question (GitHub) Still et spørsmål (GitHub) - + The novelWriter Website novelWriters nettside @@ -2095,38 +2095,38 @@ GuiMainStatus - - + + None Ingen - + Editor Editor - + Project Prosjekt - + Session Time Tid brukt i gjeldende sesjon - + Words: {0} ({1}) Ord: {0} ({1}) - + Project word count (session change) Antall ord i prosjektet (endring i denne sesjonen) - + Novel word count (session change) Antall ord i roman-teksten (endring i denne sesjonen) @@ -2134,63 +2134,63 @@ GuiManuscript - + Build Manuscript Bygg manuskript - + Add New Build Legg til ny byggedefinisjon - + Delete Selected Build Slett valgte byggedefinisjon - + Edit Selected Build Rediger valgte byggedefinisjon - + Builds Byggedefinisjoner - + Details - + Detaljer - + Outline - + Disposisjon - + Preview Forhåndsvis - + Print Skriv ut - + Build Bygg - + Close Lukk - - + + My Manuscript Mitt manuskript @@ -2198,57 +2198,57 @@ GuiManuscriptBuild - + Build Manuscript Bygg manuskript - + Output Format Dokumentformat - + Table of Contents Innholdsfortegnelse - + Path Filbane - + File Name Filnavn - + Reset file name to default Tilbakestill filnavn til standard - + Open Folder Åpne mappe - + &Build &Bygg - + Select Folder Velg mappe - + Output folder does not exist. Mappen eksisterer ikke. - + The file already exists. Do you want to overwrite it? Filen eksisterer allerede. Vil du overskrive den? @@ -2256,18 +2256,18 @@ GuiNovelDetails - - + + Novel Details Roman-detaljer - + Overview Oversikt - + Contents Innhold @@ -2275,58 +2275,58 @@ GuiNovelToolBar - + Outline of {0} Innhold i {0} - + Novel Root Roman-mappe - + Refresh Oppdatér - + Last Column Siste kolonne - + Hidden Skjult - + Point of View Character Synsvinkel-karakter - + Focus Character Fokus-karakter - + Novel Plot Roman-plott - - + + Column Size Kolonnebredde - + More Options Flere valg - + Maximum column size in % Maksimal kolonnebredde i % @@ -2334,7 +2334,7 @@ GuiNovelTree - + No meta data Ingen meta-data @@ -2342,64 +2342,64 @@ GuiOutlineDetails - - - + + + Title Tittel - + Chapter Kapittel - + Scene Scene - + Section Seksjon - + Document Dokument - + Status Status - + Characters Tegn - + Words Ord - + Paragraphs Avsnitt - + Synopsis Sammendrag - + Title Details Oversikt - + Reference Tags Referanser @@ -2407,7 +2407,7 @@ GuiOutlineHeaderMenu - + Select Columns Velg kolonner @@ -2415,17 +2415,17 @@ GuiOutlineToolBar - + Outline of Disposisjon for - + Refresh Oppdatér - + Export CSV Eksporter CSV @@ -2433,7 +2433,7 @@ GuiOutlineTree - + Save Outline As Lagre disposisjon som @@ -2441,553 +2441,553 @@ GuiPreferences - - + + Preferences Innstillinger - + Search Søk - + General Generelt - + Appearance Utseende - + Display language Visningspråk - - - + + + Requires restart to take effect. Krever omstart for å tre i kraft. - + Colour theme Fargetema - + General colour theme and icons. Generelt fargetema og ikoner. - + Application font family Skriftfamilie for program - + Application font size Skriftstørrelse for program - - + + pt pt - + Hide vertical scroll bars in main windows Skjul vertikale rullefelt i hovedvinduer - - + + Scrolling available with mouse wheel and keys only. Rulling kan bare gjøres med mus og tastatur. - + Hide horizontal scroll bars in main windows Skjul horisontale rullefelt i hovedvinduer - + Document Style Dokumentets stil - + Document colour theme Dokumentets fargetema - + Colour theme for the editor and viewer. Fargetema for redigering og visning. - + Document font family Dokumentets skriftfamilie - - - - + + + + Applies to both document editor and viewer. Gjelder både redigerings- og visningsvindu. - + Document font size Dokumentets skriftstørrelse - + Emphasise partition and chapter labels Fremhev filnavn for inndeling og kapitler - + Makes them stand out in the project tree. Får dem til å skille seg ut i prosjekttreet. - + Show full path in document header Vis full prosjektbane i dokumenthoder - + Add the parent folder names to the header. Legger til mappene foran dokumentets navn. - + Include project notes in status bar word count Inkluder prosjektnotater i antallet ord i statuslinjen - + Auto Save Automatisk lagring - + Save document interval Intervall for lagring av dokument - + How often the document is automatically saved. Hvor ofte dokumentet lagres automatisk. - - + + seconds sekunder - + Save project interval Intervall for lagring av prosjekt - + How often the project is automatically saved. Hvor ofte prosjektet lagres automatisk. - + Project Backup Sikkerhetskopi - + Browse Bla - + Backup storage location Filbane for sikkerhetskopi - - + + Path: {0} Filbane: {0} - + Run backup when the project is closed Lag sikkerhetskopi når prosjektet lukkes - + Can be overridden for individual projects in Project Settings. Kan overstyres fra individuelle prosjektinnstillinger. - + Ask before running backup Spør før sikkerhetskopi tas - + If off, backups will run in the background. Hvis avslått, tas sikkerhetskopi automatisk. - + Session Timer Sesjons-klokke - + Pause the session timer when not writing Sett klokka på pause når du er inaktiv - + Also pauses when the application window does not have focus. Pauses også når du ikke jobber i applikasjonens vindu. - + Editor inactive time before pausing timer Tid uten skriving før klokka settes på pause - + User activity includes typing and changing the content. Dette måler kun endringer i teksteditoren. - + minutes minutter - + Writing Skriving - + Text Flow Tekstflyt - + Maximum text width in "Normal Mode" Maks tekstbredde i "Normal-modus" - + Set to 0 to disable this feature. Sett til 0 for å deaktivere denne funksjonen. - - - - + + + + px px - + Maximum text width in "Focus Mode" Maks tekstbredde i "Fokus-modus" - + The maximum width cannot be disabled. Denne maks-bredden kan ikke deaktiveres. - + Hide document footer in "Focus Mode" Gjem dokumentets bunnlinje i "Fokus-modus" - + Hide the information bar in the document editor. Skjul informasjonslinjen i dokumenteditoren. - + Justify the text margins Juster tekstmarginer - + Minimum text margin Minimum tekstmargin - + Tab width Tabulatorens bredde - + The width of a tab key press in the editor and viewer. Hvor langt tabulatoren hopper i editor og visning. - + Text Editing Redigering av tekst - + Spell check language Språk for stavekontroll - + Available languages are determined by your system. Tilgjengelige språk hentes fra operativystemet ditt. - + Auto-select word under cursor Auto-velg ord under markør - + Apply formatting to word under cursor if no selection is made. Hvis ingen tekst er valgt, formatter ordet hvor markøren står. - + Show tabs and spaces Synlige tabulatorer og mellomrom - + Show line endings Synlige linjeender - + Editor Scrolling Tekstbehandler rulling - + Scroll past end of the document Tillat å rulle forbi slutten av dokumentet - + Also centres the cursor when scrolling. Sentrerer også markøren når man ruller. - + Typewriter style scrolling when you type Skrivemaskin-liknende rulling mens du skriver - + Keeps the cursor at a fixed vertical position. Holder markøren på samme sted vertikalt. - + Minimum position for Typewriter scrolling Minste avstand for skrivemaskin-rulling - + Percentage of the editor height from the top. I prosent fra toppen av editor-vinduet. - + Text Highlighting Fremheving - + Highlight text wrapped in quotes Fremhev tekst mellom sitattegn - - - + + + Applies to the document editor only. Gjelder bare for redigeringsvindu. - + Allow open-ended single quotes Tillat enkle sitattegn som ikke lukkes - + Highlight single-quoted line with no closing quote. Fremhev sitater som ikke er lukket i samme avsnitt. - + Allow open-ended double quotes Tillat doble sitattegn som ikke lukkes - + Highlight double-quoted line with no closing quote. Fremhev sitater som ikke er lukket i samme avsnitt. - + Add highlight colour to emphasised text Fremhev formattert tekst - + Highlight multiple or trailing spaces Fremhev flere eller etterfølgende mellomrom - + Text Automation Tekstautomatisering - + Auto-replace text as you type Erstatt mens du skriver - + Allow the editor to replace symbols as you type. Erstatt symboler mens du skriver. - + Auto-replace single quotes Erstatt enkle sitattegn - - + + Try to guess which is an opening or a closing quote. Prøv å gjette om det er et åpne- eller lukketegn. - + Auto-replace double quotes Erstatt doble sitattegn - + Auto-replace dashes Erstatt bindestreker - + Double and triple hyphens become short and long dashes. To og tre bindestreker erstattes med kort og lang bindestrek. - + Auto-replace dots Erstatt tre punktum - + Three consecutive dots become ellipsis. Tre punktum på rad erstattes med ellipsis. - + Insert non-breaking space before Sett inn hardt mellomrom foran - + Automatically add space before any of these symbols. Legg til mellomrom automatisk foran disse tegnene. - + Insert non-breaking space after Sett inn hardt mellomrom etter - + Automatically add space after any of these symbols. Legg til mellomrom automatisk etter disse tegnene. - + Use thin space instead Bruk tynt mellomrom istedet - + Inserts a thin space instead of a regular space. Sett inn et tynt mellomrom istedenfor et vanlig et. - + Quotation Style Sitattegn - + Single quote open style Enkelt sitat, venstre side - + The symbol to use for a leading single quote. Symbol for enkelt sitattegn før et sitat. - + Single quote close style Enkelt sitat, høyre side - + The symbol to use for a trailing single quote. Symbol for enkelt sitattegn etter et sitat. - + Double quote open style Dobbelt sitat, venstre side - + The symbol to use for a leading double quote. Symbol for dobbelt sitattegn før et sitat. - + Double quote close style Dobbelt sitat, høyre side - + The symbol to use for a trailing double quote. Symbol for dobbelt sitattegn etter et sitat. - + Backup Directory Mappe for sikkerhetskopi @@ -2995,56 +2995,56 @@ GuiProjectSearch - + Project Search - + Søk i prosjektet - + Case Sensitive - Skill store/små bokstaver + Skill store/små bokstaver - + Whole Words Only - Kun hele ord + Kun hele ord - + RegEx Mode - RegEx-modus + RegEx-modus - + Search for - + Søketekst GuiProjectSettings - - + + Project Settings Prosjektinnstillinger - + Settings Innstillinger - + Status Status - + Importance Viktighet - + Auto-Replace Autoerstatt @@ -3052,47 +3052,47 @@ GuiProjectToolBar - + Project Content Prosjektets innhold - + Quick Links Hurtiglenker - + Move Up Flytt opp - + Move Down Flytt ned - + Add Item Legg til element - + Expand All Utvid alle - + Collapse All Lukk alle - + Empty Trash Tøm papirkurven - + More Options Flere valg @@ -3100,118 +3100,118 @@ GuiProjectTree - + Active Aktiv - + Inactive Inaktiv - + Permanently delete {0} file(s) from Trash? Vil du slette {0} filer i papirkurven for godt? - + Did not find anywhere to add the file or folder! Fant ikke noe sted å legge til filen eller mappen! - + Cannot add new files or folders to the Trash folder. Kan ikke legge til nye filer eller mapper i papirkurvmappen. - + New Note Nytt notat - + New Chapter Nytt kapittel - + New Scene Ny scene - + New Document Nytt dokument - + New Folder Ny mappe - + There is currently no Trash folder in this project. Det er for øyeblikket ingen papirkurv i dette prosjektet. - + The Trash folder is already empty. Papirkurven er allerede tom. - + Move '{0}' to Trash? Vil du flytte filen "{0}" til søpla? - + Root folders can only be deleted when they are empty. Rotmapper kan bare slettes når de er tomme. - + Permanently delete '{0}'? Slette filen "{0}" for godt? - + Drag and drop is only allowed for single items, non-root items, or multiple items with the same parent. Dra og slipp er bare tillatt for enkeltelementer, ikke hovedmapper, eller elementer under samme mappe eller dokument. - + No documents selected for merging. Ingen dokumenter er valgt for sammenslåing. - + Merged Sammenslått - - + + Could not write document content. Kan ikke skrive til dokumentet. - + Do you want to duplicate this document? Vil du duplisere dette dokumentet? - + Do you want to duplicate this item and all child items? Vil du duplisere dette elementet og alle underelementer? - + Could not duplicate all items. Kunne ikke duplisere alle elementer. - + There is nowhere to add item with name '{0}'. Fant ikke noe sted å legge til enheten med navn {0}'. @@ -3219,42 +3219,42 @@ GuiSideBar - + Project Tree View Prosjektoversikt - + Novel Tree View Romanoversikt - + Project Search - + Søk i prosjektet - + Novel Outline View Disposisjon - + Build Manuscript Bygg manuskript - + Novel Details Roman-detaljer - + Writing Statistics Statistikk - + Settings Oppsett @@ -3262,37 +3262,37 @@ GuiWelcome - + Welcome Velkommen - + List Liste - + New Nytt - + Browse Bla gjennom - + Cancel Avbryt - + Create Opprett - + Open Åpne @@ -3300,33 +3300,33 @@ GuiWordList - - + + Project Word List Prosjektets ordliste - + Import words from text file Importer ord fra tekstfil - + Export words to text file Eksporter ord til tekstfil - + Note: The import file must be a plain text file with UTF-8 or ASCII encoding. Merk: Importfilen må være en standard tekstfil med UTF-8 eller ASCII-koding. - + Import File Importer fil - + Export File Eksporter fil @@ -3334,147 +3334,147 @@ GuiWritingStats - + Writing Statistics Statistikk - + Session Start Starttid - + Length Lengde - + Idle Inaktiv - + Words Ord - + Histogram Histogram - + Sum Totals Totalsummer - + Total Time: Totaltid: - + Idle Time: Inaktiv tid: - + Filtered Time: Filtrert tid: - + Novel Word Count: Ord i roman: - + Notes Word Count: Ord i notater: - + Total Word Count: Ord totalt: - + Filters Filtre - + Count novel files Tell i romanfiler - + Count note files Tell i notatfiler - + Hide zero word count Skjul null-verdier - + Hide negative word count Skjul negative verdier - + Group entries by day Samle rader per dag - + Show idle time Vis inaktiv som tid - + Word count cap for the histogram Maks antall ord for histogram - + Save As Lagre som - + JSON Data File (.json) JSON-format (.json) - + CSV Data File (.csv) CSV-format (.csv) - + JSON Data File JSON-format - + CSV Data File CSV-format - + Save Data As Lagre data som - + {0} file successfully written to: {0}-filen ble skrevet til: - + Failed to write {0} file. Kunne ikke skrive {0}-filen. @@ -3482,153 +3482,153 @@ NWProject - + Could not delete document file. Kunne ikke slette dokumentets fil. - + Not a known project file format. Ikke et kjent prosjektfilformat. - + Project file not found. Prosjektfilen finnes ikke. - + Failed to open project. Kunne ikke åpne prosjektet. - + Unknown Ukjent - + Project file does not appear to be a novelWriterXML file. Prosjektfilen later ikke til å være en novelWriterXML-fil. - + 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}. Prosjektfilen har et ukjent eller ikke støttet format, og kan ikke åpnes med denne versjonen av novelWriter. Prosjektet ble lagret av novelWriter versjon {0}. - + Failed to parse project xml. Kunne ikke lese prosjektets xml-data. - + 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? Filformatet til prosjektet ditt er i ferd med å bli oppdatert. Hvis du fortsetter, vil ikke eldre versjoner av novelWriter lenger kunne åpne dette prosjektet. Fortsette? - + 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? Dette prosjektet ble lagret av en nyere versjon av novelWriter, versjon {0}. Dette er versjon {1}. Hvis du ønsker å fortsette med å åpne prosjektet, kan noen av innstillingene bli borte, men selve prosjektet vil være i orden. Vil du fortsatt åpne prosjektet? - + Recovered Gjennopprettet - + Found {0} orphaned file(s) in the project. {1} file(s) were recovered. {0} foreldreløse fil(er) ble funnet i prosjektet. {1} fil(er) ble gjenopprettet. - + Opened Project: {0} Åpnet prosjekt: {0} - + There is no project open. Det er ikke noe prosjekter åpent. - + Failed to save project. Kunne ikke lagre prosjektet. - + Saved Project: {0} Lagret prosjekt: {0} - + Backing up project ... Lager sikkerhetskopi ... - + Cannot backup project because no project name is set. Please set a Project Name in Project Settings. Kan ikke ta sikkerhetskopi av prosjektet da prosjektnavn ikke er satt. Du må først sette et prosjektnavn i Prosjektinnstillinger. - + Could not create backup folder. Kunne ikke lage mappe til sikkerhetskopi. - + Created a backup of your project of size {0}B. Opprettet en sikkerhetskopi av prosjektet med størrelse {0}B. - + Path: {0} Filbane: {0} - + Could not write backup archive. Kunne ikke lage sikkerhetskopi. - + Project backed up to '{0}' Sikkerhetskopi skrevet til '{0}' - - + + New Ny - + Note Notat - + Draft Utkast - + Finished Ferdig - + Minor Mindre - + Major Større - + Main Hoved @@ -3636,7 +3636,7 @@ NovelSelector - + All Novel Folders Alle roman-mapper @@ -3644,89 +3644,89 @@ ProjectBuilder - + The target folder is not empty. Please choose another folder. Den valgte mappen er ikke tom. Vennligst velg en annen mappe. - + An error occurred while trying to create the project. Det oppsto en feil under forsøk på å opprette prosjektet. - + New Project Nytt prosjekt - + Title Page Tittelside - + By Av - + Summary of the chapter. Sammendrag av kapittelet. - + Summary of the scene. Sammendrag av scenen. - + A short description. En kort beskrivelse. - + Chapter {0} Kapittel {0} - - + + Scene {0} Scene {0} - + Main Plot Hovedplott - + Protagonist Protagonist - + Main Location Hovedlokasjon - - + + The target folder already exists. Please choose another folder. Den valgte mappen finnes allerede. Vennligst velg en annen mappe. - + Could not copy project files. Kunne ikke kopiere prosjektfiler. - + Failed to create a new example project. Kunne ikke lage nytt eksempel-prosjekt. - + Failed to create a new example project. Could not find the necessary files. They seem to be missing from this installation. Kunne ikke lage nytt eksempel-prosjekt. Kunne ikke finne de nødvendige filene. De ser ut til å mangle i denne installasjonen. @@ -3734,7 +3734,7 @@ QDialogButtonBox - + OK OK @@ -3742,27 +3742,27 @@ QGnomeTheme - + &OK &OK - + &Save &Lagre - + &Cancel &Avbryt - + &Close &Lukk - + Close without Saving Lukk uten å lagre @@ -3770,92 +3770,92 @@ QPlatformTheme - + OK OK - + Save Lagre - + Save All Lagre alle - + Open Åpne - + &Yes &Ja - + Yes to &All Ja til &alle - + &No &Nei - + N&o to All N&ei til alle - + Abort Avbryt - + Retry Prøv igjen - + Ignore Ignorer - + Close Lukk - + Cancel Avbryt - + Discard Forkast - + Help Hjelp - + Apply Anvend - + Reset Nullstill - + Restore Defaults Gjennopprett standard @@ -3863,58 +3863,58 @@ QWizard - + Go Back Gå tilbake - + < &Back < &Tilbake - + Continue Fortsett - + &Next &Neste - + &Next > &Neste > - + Commit Gjennomfør - + Done Ferdig - + &Finish &Fullfør - - + + Cancel Avbryt - + Help Hjelp - + &Help &Hjelp @@ -3922,17 +3922,17 @@ SharedData - + novelWriter Project File or Zip File novelWriter prosjektfil eller Zip-fil - + novelWriter Project File novelWriter prosjektfil - + Open Project Åpne prosjekt @@ -3940,42 +3940,42 @@ VersionInfoWidget - + Latest Version: {0} Siste versjon: {0} - + Checking ... Sjekker ... - + Download from {0} Last ned fra {0} - + Version Versjon - + Released on Utgitt den - + Release Notes Lanseringsnotater - + Check Now Sjekk nå - + Failed Mislyktes @@ -3983,57 +3983,57 @@ _ContentsPage - + Table of Contents Innholdsfortegnelse - + Title Tittel - + Words Ord - + Pages Sider - + Page Side - + Progress Fremdrift - + Words per page Ord per side - + First page offset Første side forskjøvet - + Chapters on odd pages Kapittel på oddetall-sider - + Untitled Uten tittel - + END SLUTT @@ -4041,70 +4041,70 @@ _DetailsWidget - + Setting Innstilling - + Value Verdi - + Name Navn - + Selection Utvalg - + Title Tittel - + Hidden - Skjult + Skjult _FilterTab - + Included in manuscript Inkludert i manuskript - + Excluded from manuscript Ekskludert fra manuskript - + Always included Alltid inkludert - + Always excluded Alltid ekskludert - + Reset to default Tilbakestill til standard - + Mark selection as Merk utvalg som - + Select Root Folders Velg hovedmapper @@ -4112,22 +4112,22 @@ _GuiAlert - + Information Informasjon - + Warning Advarsel - + Error Feil - + Question Spørsmål @@ -4135,211 +4135,211 @@ _HeadingsTab - + Hide Skjul - - + + Editing: {0} Redigerer: {0} - - + + None Ingen - + Title Tittel - + Chapter Number Kapittelnummer - + Chapter Number (Word) Kapittelnummer (som ord) - + Chapter Number (Upper Case Roman) Kapittelnummer (store romertall) - + Chapter Number (Lower Case Roman) Kapittelnummer (små romertall) - + Scene Number (In Chapter) Scenenummer (i kapittel) - + Scene Number (Absolute) Scenenummer (absolutt) - + Point of View Character Synsvinkel-karakter - + Focus Character Fokus-karakter - + Insert Sett inn - + Apply Anvend - + Additional Styling - + Andre innstillinger - - - + + + Centre - + Sentrer - - - + + + Page Break - Sideskift + Sideskift _NewProjectForm - + Required Påkrevd - + Optional Valgfritt - + Create a fresh project Opprett et nytt prosjekt - + Create an example project Opprett et eksempelprosjekt - + Copy an existing project Kopier et eksisterende prosjekt - + Project Name Prosjektnavn - + Author Forfatter - + Project Path Filbane - + Prefill Project Forhåndsfyll prosjektet - + Set to 0 to only add scenes Satt til 0 for bare å legge til scener - + Add {0} chapter documents Legg til {0} kapitteldokumenter - + Add {0} scene documents (to each chapter) Legg til {0} scenedokumenter (til hvert kapittel) - + Add a folder for plot notes Legg til en mappe for plott-notater - + Add a folder for character notes Legg til en mappe for karakterer - + Add a folder for location notes Legg til en mappe for lokasjoner - + Add example notes to the above Lag eksempelfiler til ovennevnte - + Chapters and Scenes Kapittel og scener - + Project Notes Prosjektnotater - + Create New Project Opprett nytt prosjekt - + Select Project Folder Velg prosjektmappe - + Fresh Project Nytt prosjekt - + Example Project Eksempelprosjekt - + Template: {0} Mal: {0} @@ -4347,7 +4347,7 @@ _NewProjectPage - + A project name is required. Vennligst oppgi et prosjektnavn. @@ -4355,27 +4355,27 @@ _OpenProjectPage - + The project path is not reachable. Prosjektets bane er ikke tilgjengelig. - + Path Filbane - + Remove '{0}' from the recent projects list? The project files will not be deleted. Vil du fjerne {0} fra listen over tidligere åpnede prosjekter? Selve prosjektfilene blir ikke slettet. - + Open Project Åpne prosjekt - + Remove Project Fjern prosjekt @@ -4383,54 +4383,54 @@ _OverviewPage - + Project Prosjekt - - + + Name Navn - + Revisions Revisjoner - + Editing Time Redigeringstid - - + + Word Count Antall ord - + In Novels I romaner - + In Notes I notater - + Selected Novel Velg roman - + Chapters Kapitler - + Scenes Scener @@ -4438,27 +4438,27 @@ _PreviewWidget - + Press the "Preview" button to generate ... Trykk på "Forhåndsvisning"-knappen for å generere ... - + Processing ... Behandler ... - + Done Ferdig - + Unknown Ukjent - + Built Bygget @@ -4466,12 +4466,12 @@ _ProjectListModel - + Word Count Antall ord - + Last Opened Sist åpnet @@ -4479,27 +4479,27 @@ _ReplacePage - + Text Auto-Replace for Preview and Build Erstatt automatisk for forhåndsvisning og manuskript - + Keyword Nøkkelord - + Replace With Erstatt med - + Select item to edit Velg enhet å redigere - + Save Lagre @@ -4507,49 +4507,49 @@ _SettingsPage - + Project name Prosjektnavn - + Changing this will affect the backup path. Å endring denne vil påvirke banen til sikkerhetskopier. - + Author(s) Forfatter(e) - - + + Only used when building the manuscript. Brukes kun ved bygging av manuskript. - + Project language Prosjektets språk - + Default Ingen valg - + Spell check language Språk for stavekontroll - - + + Overrides main preferences. Overstyrer valg i innstillinger. - + Disable backup on close Ikke lag sikkerhetskopi når prosjektet lukkes @@ -4557,127 +4557,127 @@ _StatsWidget - - + + Words - Ord + Ord - - + + Characters - Tegn + Tegn - + Words in Headings - + Ord i overskrifter - + Words in Text - + Ord i tekst - + Headings - Overskrifter + Overskrifter - + Paragraphs - Avsnitt + Avsnitt - + Characters in Headings - + Tegn i overskrifter - + Characters in Text - + Tegn i tekst - + Characters, No Spaces - + Tegn, utenom mellomrom - + Characters in Headings, No Spaces - + Tegn i overskrifter, utenom mellomrom - + Characters in Text, No Spaces - + Tegn i tekst, utenom mellomrom _StatusPage - + Novel Document Status Levels Statusnivåer i roman-filer - + Project Note Importance Levels Viktighetsnivåer i notatfiler - + Label Navn - + Usage Bruk - + Select item to edit Velg enhet å redigere - + Colour Farge - + Save Lagre - + Select Colour Velg farge - + New Item Legg til - + Cannot delete a status item that is in use. Kan ikke slette status som er i bruk. - + Not in use Ikke i bruk - + Used once Brukt ett sted - + Used by {0} items Brukt {0} steder @@ -4685,128 +4685,128 @@ _TreeContextMenu - + Empty Trash Tøm papirkurven - + Rename Endre navn - + Open Document Åpne dokument - + View Document Vis dokument - + Create New ... Opprett ny ... - + Rename to Heading Endre navn til overskriften - + Set Active to ... Sett aktiv til ... - + Toggle Active Aktiver/deaktiver - + Set Status to ... Sett status til ... - - + + Manage Labels ... Administrer etiketter ... - + Set Importance to ... Sett viktighetsnivå til ... - + Transform ... Endre ... - - - - + + + + Convert to {0} Konverter til {0} - + Merge Child Items into Self Lim inn underelementer i dette dokumentet - + Merge Child Items into New Lim inn underelementer i nytt dokument - + Merge Documents in Folder Slå sammen dokumenter i mappen - + Split Document by Headings - + Splitt dokumentet etter overskrifter - + Expand All Utvid alle - + Collapse All Lukk alle - + Duplicate - + Dupliser - - + + Delete Permanently Slett permanent - - + + Move to Trash Flytt til papirkurv - + Move {0} items to Trash? Vil du flytte {0} filer til papirkurven? - + Do you want to convert the folder to a {0}? This action cannot be reversed. Vil du konvertere mappen til et {0}? Denne handlingen kan ikke angres. @@ -4814,7 +4814,7 @@ _UpdatableMenu - + From Template Fra mal @@ -4822,12 +4822,12 @@ _ViewPanelBackRefs - + Document Dokument - + First Heading Første overskrift @@ -4835,27 +4835,27 @@ _ViewPanelKeyWords - + Tag Knagg - + Importance Viktighet - + Document Dokument - + Heading Overskrift - + Short Description Kort beskrivelse