diff --git a/.gitignore b/.gitignore
index 9f7006b05..48b02884c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -44,30 +44,9 @@ target_wrapper.*
# QtCtreator CMake
CMakeLists.txt.user*
-CMakeCache.
-cmake_install.cmake
-Makefile
-__cmake_systeminformation
*.pyc
/build
-/build*
/icon/*.png
/icon/ImageMagick
-
-# JetBrains IDE prefs
-.idea/
-
-# macOS annoyances
-.DS_Store
-*DS_Store
-._*
-
-.cpm-cache/
-
-# ninja
-.ninja_deps
-.ninja_lock
-.ninja_log
-build.ninja
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 000000000..e54b4f345
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,15 @@
+[submodule "src/singleapplication"]
+ path = src/singleapplication
+ url = https://github.com/itay-grudev/SingleApplication.git
+[submodule "src/uchardet"]
+ path = src/uchardet
+ url = https://gitlab.freedesktop.org/uchardet/uchardet.git
+[submodule "src/editorconfig-core-qt"]
+ path = src/editorconfig-core-qt
+ url = https://github.com/editorconfig/editorconfig-core-qt.git
+[submodule "src/ads"]
+ path = src/ads
+ url = https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
+[submodule "src/QSimpleUpdater"]
+ path = src/QSimpleUpdater
+ url = https://github.com/alex-spataru/QSimpleUpdater
diff --git a/README.md b/README.md
index b972faf8f..13d97b74e 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ There are numerous bugs and half working implementations. Pull requests are grea
Packages are available for Windows, Linux, and MacOS.
-Below are the supported distribution mechanisms. There may be other ways to download/install the application, but this project will likely not be able to offer any support for those since they are made available by other individuals.
+Below are the supported distribution mechanisms. There may be other ways to download/install the application, but this project will likely not be able to offer any support for those since they are made availble by other individuals.
## Windows
Windows packages are available as an installer or a stand-alone zip file on the [release](https://github.com/dail8859/NotepadNext/releases) page. The installer provides additional components such as an auto-updater and Windows context menu integration. You can easily install it with Winget:
@@ -30,22 +30,13 @@ Linux packages can be obtained by downloading the stand-alone AppImage on the [r
flatpak install flathub com.github.dail8859.NotepadNext
```
-If you are using Ubuntu and prefer an up-to-date deb version, you can use the [PPA supporting Ubuntu 22.04 and newer](https://launchpad.net/~quentiumyt/+archive/ubuntu/notepadnext) provided by
-[Quentin Lienhardt](https://github.com/QuentiumYT). You can add it by executing:
-
-```bash
-sudo add-apt-repository ppa:quentiumyt/notepadnext
-sudo apt update
-sudo apt install notepadnext
-```
-
## MacOS
MacOS disk images can be downloaded from the [release](https://github.com/dail8859/NotepadNext/releases) page.
It can also be installed using brew:
```bash
brew tap dail8859/notepadnext
-brew install notepadnext
+brew install --no-quarantine notepadnext
```
#### MacOS Tweaks
@@ -59,9 +50,9 @@ defaults -currentHost write -g AppleFontSmoothing -int 0
A restart is required for this to take effect.
# Development
-Current development is done using QtCreator with the Microsoft Visual C++ (msvc) compiler. Qt 6.5 is the currently supported Qt version. Older versions of Qt are likely to work but are not tested. Any fixes for older versions will be accepted as long as they do not introduce complex fixes. This application is also known to build successfully on various Linux distributions and macOS. Other platforms/compilers should be usable with minor modifications.
+Current development is done using QtCreator with the Microsft Visual C++ (msvc) compiler. Qt 6.5 is the prefered Qt version but this can also be built with Qt 5.15. This is also known to build successfully on various Linux distributions and macOS. Other platforms/compilers should be usable with minor modifications.
-If you are familiar with building C++ Qt desktop applications with Qt Creator, then this should be as simple as opening `CMakeLists` and build/run the project.
+If you are familiar with building C++ Qt desktop applications with Qt Creator, then this should be as simple as opening `src/NotepadNext.pro` and build/run the project.
If you are new to building C++ Qt desktop applications, there is a more detailed guide [here](/doc/Building.md).
diff --git a/deploy/linux/NotepadNext.desktop b/deploy/linux/NotepadNext.desktop
index 62800d2eb..4e586d0f7 100644
--- a/deploy/linux/NotepadNext.desktop
+++ b/deploy/linux/NotepadNext.desktop
@@ -1,20 +1,10 @@
[Desktop Entry]
-Categories=Qt;TextEditor;Utility;
Exec=NotepadNext %f
+Comment=A cross-platform, reimplementation of Notepad++
+Type=Application
Icon=NotepadNext
-MimeType=text/plain;
+Name=Notepad Next
StartupNotify=true
-Type=Application
Terminal=false
-
-Name=Notepad Next
-Name[pt_BR]=Editor de Texto Notepad Next
-
-GenericName=Text Editor
-GenericName[pt_BR]=Editor de Texto
-
-Comment=A cross-platform, reimplementation of Notepad++
-Comment[pt_BR]=O ‘Notepad Next’ é um editor de texto e editor de código-fonte, trata-se de uma reimplementação do Notepad++ para várias plataformas, possui compatibilidade para várias linguagens de programação e oferece traduções para vários idiomas
-
-Keywords=notepad;next;text;editor;manager;IDE;programming tool;source code;tabs;
-Keywords[pt_BR]=notepad;next;bloco de notas;próximo;editor;texto;Ambiente de Desenvolvimento Integrado;IDE;ferramenta de programação;exibição de texto colorido;código-fonte;abas;guias;
+Categories=Qt;TextEditor;Utility;
+MimeType=text/plain;
diff --git a/deploy/linux/com.github.dail8859.NotepadNext.metainfo.xml b/deploy/linux/com.github.dail8859.NotepadNext.metainfo.xml
index 4e34eb8d7..3e7252098 100644
--- a/deploy/linux/com.github.dail8859.NotepadNext.metainfo.xml
+++ b/deploy/linux/com.github.dail8859.NotepadNext.metainfo.xml
@@ -26,12 +26,6 @@
com.github.dail8859.NotepadNext.desktop
-
-
-
-
-
-
diff --git a/doc/Building.md b/doc/Building.md
index e34b32a54..a93d81eed 100644
--- a/doc/Building.md
+++ b/doc/Building.md
@@ -1,10 +1,10 @@
# Building Notepad Next
-To build Notepad Next you will need CMake, a compatible C++ compiler, the Qt libraries, and the Notepad Next source code.
+To build Notepad Next you will need a compatible C++ compiler, the Qt libraries, and the Notepad Next source code.
# Windows
-This section specifically describes how to build Notepad Next using Microsoft's Visual Studio 2022 compiler.
+This section specifically describes how to build Notepad Next using Microsoft's Visual Studio 2019 compiler.
## Installing Visual Studio 2022
@@ -18,7 +18,7 @@ This section specifically describes how to build Notepad Next using Microsoft's
1. Download the [Qt installer](https://www.qt.io/download-qt-installer)
1. Run the installer.
1. Select 'custom installation'
-1. Install any version of Qt >= 6.5 (6.5 is recommended if possible)
+1. Install any version of Qt >= 6.2 (5.15 may also work):
* `MSVC 2019 64-bit` located under the desired version of Qt
* `Qt 5 Compatibility Module` (not needed for Qt 5.x)
* `Developer and Design Tools` > `Qt Creator CDB Debugger Support`
@@ -27,55 +27,25 @@ This section specifically describes how to build Notepad Next using Microsoft's
## Cloning the Notepad Next Repository
1. In a command prompt (or git shell, powershell, etc) run:
-1. `git clone https://github.com/dail8859/NotepadNext.git`
+1. `git clone --recurse-submodules https://github.com/dail8859/NotepadNext.git`
## Building/Running Notepad Next
-1. Open Qt Creator and open the root `CMakeLists.txt` file.
-1. Configure the project for 'Desktop Qt 6.5 MSVC2019 64bit' (or whatever version of Qt you have installed)
+1. Open `src/NotepadNext.pro` with Qt Creator
+1. Configure the project for 'Desktop Qt 6.2.4 MSVC2019 64bit'
1. Press `Ctrl+R`
1. Qt Creator will build and run the project.
# Linux
-Here's instructions for ubuntu/debian. Should be same across all distros as long as you get the packages.
-```sh
-export DISTRIBUTION=AppImage
-export EXTRA_PLATFORM_PLUGINS="libqwayland-generic.so"
+Using a fresh Ubuntu 21.10 setup, the following script will install the needed dependencies and build the executable:
-sudo apt update
-sudo apt install -y \
- cmake \
- ninja-build \
- file \
- libxkbcommon-dev \
- libxkbcommon-x11-0 \
- fuse \
- libxcb-cursor-dev \
- libcups2-dev \
- libglib2.0-0 \
- libglib2.0-dev \
- libproxy1v5 \
- libproxy-dev \
- qt6-base-dev \
- qt6-base-dev-tools \
- qt6-tools-dev \
- qt6-tools-dev-tools \
- qt6-wayland \
- qt6-wayland-dev \
- libqt6waylandclient6 \
- qml6-module-qtwayland-compositor \
- libqt6core5compat6 \
- libqt6core5compat6-dev \
- qt6-base-private-dev
-
-cmake -S . -B build \
- -G Ninja \
- -DCMAKE_BUILD_TYPE=Release \
- -DAPP_DISTRIBUTION=$DISTRIBUTION
-cmake --build build --target appimage --parallel
```
-
-# MacOS
-
-TODO
+sudo apt install qtbase5-dev qt5-qmake qtbase5-dev-tools qttools5-dev-tools qtbase5-private-dev libqt5x11extras5-dev build-essential git
+git clone --recurse-submodules https://github.com/dail8859/NotepadNext.git
+cd NotepadNext
+mkdir build
+cd build
+qmake ../src/NotepadNext.pro
+make -j$(nproc)
+```
diff --git a/doc/Create Release.md b/doc/Create Release.md
new file mode 100644
index 000000000..57696c4a4
--- /dev/null
+++ b/doc/Create Release.md
@@ -0,0 +1,29 @@
+## Prepare Release
+
+- Update version in `src/Version.pri`
+- Add new `` tag to metainfo file in `deploy/linux`
+- Commit
+- Tag commit with new version number
+- Push commit and tag to GitHub
+- Once GitHub action finishes, edit draft notes of new release that was automatically created
+- Publish
+
+## Manually Build Release
+Example bat script to build release
+
+```
+call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
+set PATH=C:\Qt\6.4.1\msvc2019_64\bin\;C:\Qt\Tools\QtCreator\bin\jom\;%PATH%
+set PATH=C:\Program Files\7-Zip;%PATH%
+set PATH=C:\Program Files (x86)\NSIS\Bin;%PATH%
+mkdir build
+cd build
+qmake ..\src\NotepadNext.pro
+jom
+jom package
+jom zip
+jom installer
+cd ..
+copy build\NotepadNext*.zip .
+copy installer\NotepadNext*.exe .
+```
\ No newline at end of file
diff --git a/doc/Translation.md b/doc/Translation.md
new file mode 100644
index 000000000..36b1911b7
--- /dev/null
+++ b/doc/Translation.md
@@ -0,0 +1,43 @@
+# Translation
+
+## Overview of the Process
+
+1. Strings meant for translation are marked using `tr()` in the source code.
+1. Qt's translation tool `lupdate` scans the source files for `tr()` and places the strings in a .ts XML file. At this point, the .ts file contains only strings that are meant to be translated.
+1. A translator provides translations by opening the .ts file using Qt Linguist. At this point, the .ts file contains both the string to be translated and the translation.
+1. When the application is built, the .ts files are converted into a binary .qm format.
+1. The application loads the .qm files at runtime (depending on the locale/settings) and all `tr()` invocations are translated.
+
+## Required Tools
+
+For translators:
+- Qt Linguist
+
+For developers:
+- lupdate
+
+## Translation Process for Developers
+
+Follow the [Writing Source Code for Translation](https://doc.qt.io/qt-6/i18n-source-translation.html) guide to properly expose string to be translated. Once strings are ready to be released to translators, use the `lupdate` tool. If you use Qt creator, you can execute the lupdate command from the menu `Tools > External > Qt linguist > lupdate` or from the console/terminal:
+
+```
+$ lupdate NotepadNext.pro
+```
+
+When the application is built, it automatically uses `lrelease` to convert the list of .ts files into binary .qm files for the application to load.
+
+### Project Setup
+
+The included .ts files are listed `i18n.pri`. New locales names can be added to the `LOCALES` variable.
+
+## Translation Process for Translators
+
+If you want to help with translations but the target language is not supported yet, please open an issue and a new .ts file will be added you can use. If one already exists, open the appropriate .ts file with Qt Linguist and follow the [Qt Linguist Manual](https://doc.qt.io/qt-6/linguist-translators.html). Once changes have been made to the .ts file you can create a pull request so new translated strings can be included in the application.
+
+Qt Linguist is contained in the Qt SDK that you can download [here](https://www.qt.io/download-qt-installer). If you don't want to download the whole SDK, there is a community made a standalone version for Qt Linguist [here](https://github.com/lelegard/qtlinguist-installers/releases).
+
+## Reference and Detailed Info
+
+- [Internationalization with Qt](https://doc.qt.io/qt-6/internationalization.html)
+- [Writing Source Code for Translation](https://doc.qt.io/qt-6/i18n-source-translation.html)
+- [Qt Linguist Manual](https://doc.qt.io/qt-6/linguist-translators.html)
diff --git a/doc/Update Scintilla.md b/doc/Update Scintilla.md
index da4bab714..632007b01 100644
--- a/doc/Update Scintilla.md
+++ b/doc/Update Scintilla.md
@@ -1,4 +1,4 @@
-1. Delete all files in `thirdparty\scintilla` except `CMakeLists.txt`
-1. Copy new release of Scintilla into `thirdparty\scintilla`
-1. Change directory into `thirdparty\scintilla\qt\ScintillaEdit\` and run `python WidgetGen.py`
-1. Update `thirdparty\scintilla\CMakeLists.txt` as needed
\ No newline at end of file
+1. Delete all files in `src\scintilla`
+1. Copy new release of Scintilla into `src\scintilla`
+1. Run `python src\scintilla\qt\ScintillaEdit\WidgetGen.py`
+1. Update `src\scintilla.pri` as needed
\ No newline at end of file
diff --git a/i18n/NotepadNext_pl_PL.ts b/i18n/NotepadNext_pl_PL.ts
new file mode 100644
index 000000000..ad811b693
--- /dev/null
+++ b/i18n/NotepadNext_pl_PL.ts
@@ -0,0 +1,2422 @@
+
+
+
+
+ ColumnEditorDialog
+
+
+ Column Mode
+ Tryb kolumnowy
+
+
+
+ Text
+ Tekst
+
+
+
+ Numbers
+ Liczby
+
+
+
+ Start:
+ Początek:
+
+
+
+ Step:
+ Krok:
+
+
+
+ DebugLogDock
+
+
+ Debug Log
+ Dziennik aplikacji
+
+
+
+ Downloader
+
+
+
+ Updater
+ Aktualizacje
+
+
+
+
+
+ Downloading updates
+ Pobieranie aktualizacji
+
+
+
+ Time remaining: 0 minutes
+ Pozostały czas: 0 minut
+
+
+
+ Open
+ Otwórz
+
+
+
+
+ Stop
+ Zatrzymaj
+
+
+
+
+ Time remaining
+ Pozostały czas
+
+
+
+ unknown
+ nieznany
+
+
+
+ Error
+ Błąd
+
+
+
+ Cannot find downloaded update!
+ Nie udało się znaleźć pobranej aktualizacji!
+
+
+
+ Close
+ Zamknij
+
+
+
+ Download complete!
+ Pobieranie zakończone!
+
+
+
+ The installer will open separately
+ Instalator otworzy się w osobnym oknie
+
+
+
+ Click "OK" to begin installing the update
+ Naciśnij "OK" aby zacząć instalację
+
+
+
+ In order to install the update, you may need to quit the application.
+ Aby zainstalować aktualizację może być konieczne wyjście z aplikacji.
+
+
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+ Aby zainstalować aktualizację może być konieczne wyjście z aplikacji. Ta aktualizacja jest obowiązkowa, wyjście spowoduje zamknięcie aplikacji
+
+
+
+ Click the "Open" button to apply the update
+ Naciśnij klawisz "Otwórz" aby zastosować aktualizację
+
+
+
+ Are you sure you want to cancel the download?
+ Czy na pewno chcesz anulować pobieranie?
+
+
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ Czy na pewno chcesz anulować pobieranie? Ta aktualizacja jest obowiązkowa, wyjście spowoduje zamknięcie aplikacji
+
+
+
+
+ %1 bytes
+ %1 bajtów
+
+
+
+
+ %1 KB
+ %1 KB
+
+
+
+
+ %1 MB
+ %1 MB
+
+
+
+ of
+ z
+
+
+
+ Downloading Updates
+ Pobieranie aktualizacji
+
+
+
+ Time Remaining
+ Pozostały czas
+
+
+
+ Unknown
+ nieznany
+
+
+
+ about %1 hours
+ około %1 godzin
+
+
+
+ about one hour
+ około godziny
+
+
+
+ %1 minutes
+ %1 minut
+
+
+
+ 1 minute
+ 1 minuta
+
+
+
+ %1 seconds
+ %1 sekund
+
+
+
+ 1 second
+ 1 sekunda
+
+
+
+ EditorInfoStatusBar
+
+
+ Length: %L1 Lines: %L2
+ Dług: %L1 Wierszy: %L2
+
+
+
+ Sel: N/A
+ Zazn: brak
+
+
+
+ Sel: %L1 | %L2
+ Zazn: %L1 | %L2
+
+
+
+ Ln: %L1 Col: %L2
+ Wrs: %L1 Kol: %L2
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ ANSI
+ ANSI
+
+
+
+ UTF-8
+ UTF-8
+
+
+
+ EditorInspectorDock
+
+
+ Editor Inspector
+ Inspektor zaznaczenia
+
+
+
+ Position Information
+ Informacja o pozycji
+
+
+
+ Current Position
+ Bieżąca pozycja
+
+
+
+ Current Position (x, y)
+ Bieżąca pozycja (x, y)
+
+
+
+ Column
+ Kolumna
+
+
+
+ Current Style
+ Bieżący styl
+
+
+
+ Current Line
+ Bieżący wiersz
+
+
+
+ Line Length
+ Długość wiersza
+
+
+
+ Line End Position
+ Pozycja końca wiersza
+
+
+
+ Line Indentation
+ Wcięcie wiersza
+
+
+
+ Line Indent Position
+ Pozycja wcięcia wiersza
+
+
+
+ Selection Information
+ Informacje o zaznaczeniu
+
+
+
+ Mode
+ Tryb
+
+
+
+ Is Rectangle
+ Czy prostokątne
+
+
+
+ Selection Empty
+ Puste zaznaczenie
+
+
+
+ Main Selection
+ Główne zaznaczenie
+
+
+
+ # of Selections
+ Liczba zaznaczeń
+
+
+
+ Multiple Selections
+ Wiele zaznaczeń
+
+
+
+ Document Information
+ Informacja o dokumencie
+
+
+
+ Length
+ Długość
+
+
+
+ Line Count
+ Liczba wierszy
+
+
+
+ View Information
+ Pokaż informacje
+
+
+
+ Lines on Screen
+ Wierszy na ekranie
+
+
+
+ First Visible Line
+ Pierwszy widoczny wiersz
+
+
+
+ X Offset
+ Przesunięcie w poziomie
+
+
+
+ Fold Information
+ Informacje o zwinięciu
+
+
+
+ Visible From Doc Line
+ Widoczne od wiersza
+
+
+
+ Doc Line From Visible
+ Wiersz od widocznego
+
+
+
+ Fold Level
+ Poziom zagnieżdżenia
+
+
+
+ Is Fold Header
+ Czy nagłówek zwinięcia
+
+
+
+ Fold Parent
+ Rodzic zwinięcia
+
+
+
+ Last Child
+ Ostatni potomek
+
+
+
+ Contracted Fold Next
+ Następne zwinięcie
+
+
+
+ Caret
+ Kursor
+
+
+
+ Anchor
+ Kotwica
+
+
+
+ Caret Virtual Space
+ Wirtualna przestrzeń kursora
+
+
+
+ Anchor Virtual Space
+ Wirtualna przestrzeń kotwicy
+
+
+
+ FileList
+
+
+ File List
+ Lista plików
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ Znajdź
+
+
+
+ Search Mode
+ Tryb wyszukiwania
+
+
+
+ &Normal
+ &Normalny
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ Rozsz&erzony (\n, \r, \t, \0, \x...)
+
+
+
+ Re&gular expression
+ Wyrażenia re&gularne
+
+
+
+ &. matches newline
+ &. nowy wiersz
+
+
+
+ Transparenc&y
+ Przeźrocz&ystość
+
+
+
+ On losing focus
+ Po utracie skupienia
+
+
+
+ Always
+ Zawsze
+
+
+
+ Coun&t
+ Policz
+
+
+
+ &Replace
+ Zamień
+
+
+
+ Replace &All
+ Zamień wszystko
+
+
+
+ Replace All in &Opened Documents
+ Zamień wszystko w &otwartych plikach
+
+
+
+ Find All in All &Opened Documents
+ Znajdź wszystko w &otwartych plikach
+
+
+
+ Find All in Current Document
+ Znajdź wszystko w bieżącym pliku
+
+
+
+ Close
+ Zamknij
+
+
+
+ &Find:
+ Znajdź:
+
+
+
+ Replace:
+ Zamień:
+
+
+
+ Backward direction
+ Wstecz
+
+
+
+ Match &whole word only
+ Całe sło&wa
+
+
+
+ Match &case
+ Wielkość liter
+
+
+
+ Wra&p Around
+ Zawijanie dokumentu
+
+
+
+ Replace
+ Zamień
+
+
+
+
+ Replaced %Ln matches
+
+ Zamieniono %Ln wystąpienie
+ Zamieniono %Ln wystąpienia
+ Zamieniono %Ln wystąpień
+
+
+
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ Osiągnięto koniec dokumentu. Znaleziono pierwsze wystąpienie od góry.
+
+
+
+ No matches found.
+ Nie znaleziono żadnego wystąpienia.
+
+
+
+ 1 occurrence was replaced
+ 1 wystąpienie zostało zamienione
+
+
+
+ No more occurrences were found
+ Nie znaleziono więcej wystąpień
+
+
+
+ Found %Ln matches
+
+ Znaleziono %Ln wystąpienie
+ Znaleziono %Ln wystąpienia
+ Znaleziono %Ln wystąpień
+
+
+
+
+ FolderAsWorkspaceDock
+
+
+ Folder as Workspace
+ Folder jako obszar roboczy
+
+
+
+ HexViewerDock
+
+
+ Hex Viewer
+ Podgląd heksadecymalny
+
+
+
+ LanguageInspectorDock
+
+
+ Language Inspector
+ Inspektor języka
+
+
+
+ Language:
+ Język:
+
+
+
+ Lexer:
+ Lekser:
+
+
+
+ Properties:
+ Właściwości:
+
+
+
+ Property
+ Właściwość
+
+
+
+ Type
+ Typ
+
+
+
+
+ Description
+ Opis
+
+
+
+ Value
+ Wartość
+
+
+
+ Keywords:
+ Słowa kluczowe:
+
+
+
+ ID
+ ID
+
+
+
+ Styles:
+ Style:
+
+
+
+ TextLabel
+ TextLabel
+
+
+
+ Position %1 Style %2
+ Pozycja %1 Styl %2
+
+
+
+ LuaConsoleDock
+
+
+ Lua Console
+ Konsola Lua
+
+
+
+ MacroEditorDialog
+
+
+ Macro Editor
+ Edytor makr
+
+
+
+ Name
+ Nazwa
+
+
+
+ Shortcut
+ Skrót
+
+
+
+ Steps:
+ Działania:
+
+
+
+ Insert Macro Step
+ Wstaw działanie
+
+
+
+ Delete Selected Macro Step
+ Usuń wybrane działanie
+
+
+
+ Move Selected Macro Step Up
+ Przesuń wybrane działanie w górę
+
+
+
+ Move Selected Macro Step Down
+ Przesuń wybrane działanie w dół
+
+
+
+ Copy Selected Macro
+ Skopiuj wybrane makro
+
+
+
+ Delete Selected Macro
+ Usuń wybrane makro
+
+
+
+ Delete Macro
+ Usuń makro
+
+
+
+ Are you sure you want to delete <b>%1</b>?
+ Czy na pewno chcesz usunąć <b>%1</b>?
+
+
+
+ (Copy)
+ (kopia)
+
+
+
+ MacroRunDialog
+
+
+ Run a Macro Multiple Times
+ Wykonaj makro wiele razy
+
+
+
+ Macro:
+ Makro:
+
+
+
+ Run Until End of File
+ Wykonaj do końca pliku
+
+
+
+ Execute...
+ Wykonaj...
+
+
+
+ times
+ raz(y)
+
+
+
+ Run
+ Uruchom
+
+
+
+ Cancel
+ Anuluj
+
+
+
+ MacroSaveDialog
+
+
+ Save Macro
+ Zapisz makro
+
+
+
+ Name:
+ Nazwa:
+
+
+
+ Shortcut:
+ Skrót:
+
+
+
+ OK
+ OK
+
+
+
+ Cancel
+ Anuluj
+
+
+
+ MacroStepTableModel
+
+
+ Name
+ Nazwa
+
+
+
+ Text
+ Tekst
+
+
+
+ MainWindow
+
+
+ Notepad Next[*]
+ Notepad Next[*]
+
+
+
+ +
+ +
+
+
+
+ &File
+ Plik
+
+
+
+ Close More
+ Zamknij więcej
+
+
+
+ &Recent Files
+ Ostatnie pliki
+
+
+
+
+ Export As
+ Eksportuj jako
+
+
+
+ &Edit
+ &Edycja
+
+
+
+ Copy More
+ Kopiuj więcej
+
+
+
+ Indent
+ Wcięcie
+
+
+
+ EOL Conversion
+ Konwersja znaku końca wiersza
+
+
+
+ Convert Case
+ Wielkość liter
+
+
+
+ Line Operations
+ Operacje na wierszach
+
+
+
+ Comment/Uncomment
+ Komentowanie/odkomentowanie
+
+
+
+ Copy As
+ Kopiuj jako
+
+
+
+ Encoding/Decoding
+ Kodowanie/dekodowanie
+
+
+
+ Search
+ Szukaj
+
+
+
+ Bookmarks
+ Zakładki
+
+
+
+ &View
+ Widok
+
+
+
+ &Zoom
+ Powięks&zenie
+
+
+
+ Show Symbol
+ Pokaż symbole
+
+
+
+ Fold Level
+ Poziom zagnieżdżenia
+
+
+
+ Unfold Level
+
+
+
+
+ Language
+ Język
+
+
+
+ Settings
+ Ustawienia
+
+
+
+ Macro
+ Makra
+
+
+
+ Help
+ Pomoc
+
+
+
+ Encoding
+ Kodowanie
+
+
+
+ Main Tool Bar
+ Główny pasek narzędziowy
+
+
+
+ &New
+ &Nowy
+
+
+
+ Create a new file
+ Utwórz nowy plik
+
+
+
+ Ctrl+N
+ Ctrl+N
+
+
+
+ &Open...
+ &Otwórz...
+
+
+
+ Ctrl+O
+ Ctrl+O
+
+
+
+ &Save
+ Zapi&sz
+
+
+
+ Save
+ Zapisz
+
+
+
+ Ctrl+S
+ Ctrl+S
+
+
+
+ E&xit
+ Wyjdź
+
+
+
+ &Undo
+ Cofnij
+
+
+
+ Ctrl+Z
+ Ctrl+Z
+
+
+
+ &Redo
+ Ponów
+
+
+
+ Ctrl+Y
+ Ctrl+Y
+
+
+
+ Cu&t
+ Wy&tnij
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Copy
+ Kopiuj
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Paste
+ Wklej
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ &Delete
+ Usuń
+
+
+
+ Del
+ Del
+
+
+
+ Copy Full Path
+ Kopiuj pełną ścieżkę
+
+
+
+ Copy File Name
+ Kopiuj nazwę pliku
+
+
+
+ Copy File Directory
+ Kopiuj folder pliku
+
+
+
+ &Close
+ Zamknij
+
+
+
+ Close the current file
+ Zamknij bieżący plik
+
+
+
+ Ctrl+W
+ Ctrl+W
+
+
+
+ Save &As...
+ Z&apisz jako...
+
+
+
+ Ctrl+Alt+S
+ Ctrl+Alt+S
+
+
+
+ Save a Copy As...
+ Zapisz kopię jako...
+
+
+
+ Sav&e All
+ Zapisz wszystko
+
+
+
+ Ctrl+Shift+S
+ Ctrl+Shift+S
+
+
+
+ Select A&ll
+ Zaznacz wszystko
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ Increase Indent
+ Zwiększ wcięcie
+
+
+
+ Decrease Indent
+ Zmniejsz wcięcie
+
+
+
+ Rename...
+ Zmień nazwę...
+
+
+
+ Re&load
+ Wczytaj ponownie
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ UPPER CASE
+ WIELKIE LITERY
+
+
+
+ Convert text to upper case
+ Konwersja do wielkich liter
+
+
+
+ lower case
+ małe litery
+
+
+
+ Convert text to lower case
+ Konwersja do małych liter
+
+
+
+ Duplicate Current Line
+ Powiel bieżący wiersz
+
+
+
+ Alt+Down
+ Alt+Down
+
+
+
+ Split Lines
+ Podziel wiersze
+
+
+
+ Join Lines
+ Połącz wiersze
+
+
+
+ Ctrl+J
+ Ctrl+J
+
+
+
+ Move Selected Lines Up
+ Przenieś zaznaczone wiersze w górę
+
+
+
+ Ctrl+Shift+Up
+ Ctrl+Shift+Up
+
+
+
+ Move Selected Lines Down
+ Przenieś zaznaczone wiersze w dół
+
+
+
+ Ctrl+Shift+Down
+ Ctrl+Shift+Down
+
+
+
+ Clos&e All
+ Zamknij wszystko
+
+
+
+ Close All files
+ Zamknij wszystkie pliki
+
+
+
+ Ctrl+Shift+W
+ Ctrl+Shift+W
+
+
+
+ Close All Except Active Document
+ Zamknij wszystko poza aktywnym dokumentem
+
+
+
+ Close All to the Left
+ Zamknij wszystko po lewej
+
+
+
+ Close All to the Right
+ Zamknij wszystko po prawej
+
+
+
+ Zoom &In
+ Zw&iększ
+
+
+
+ Ctrl++
+ Ctrl++
+
+
+
+ Zoom &Out
+ Zmniejsz
+
+
+
+ Ctrl+-
+ Ctrl+-
+
+
+
+ Reset Zoom
+ Przywróć domyślne
+
+
+
+ Ctrl+0
+ Ctrl+0
+
+
+
+ About Qt
+ O Qt
+
+
+
+ About Notepad Next
+ O Notepad Next
+
+
+
+ Show Whitespace
+ Pokaż znaki niedrukowalne
+
+
+
+ Show End of Line
+ Pokaż znaki końca wiersza
+
+
+
+ Show All Characters
+ Pokaż wszystkie znaki
+
+
+
+ Show Indent Guide
+ Pokaż linie wcięcia
+
+
+
+ Show Wrap Symbol
+ Pokaż symbol zawijania
+
+
+
+ Word Wrap
+ Zawijanie wierszy
+
+
+
+ Restore Recently Closed File
+ Przywróć ostatnio zamknięty plik
+
+
+
+ Ctrl+Shift+T
+ Ctrl+Shift+T
+
+
+
+ Open All Recent Files
+ Otwórz wszystkie ostatnie pliki
+
+
+
+ Clear Recent Files List
+ Wyczyść listę ostatnich plików
+
+
+
+ &Find...
+ Znajdź...
+
+
+
+ Ctrl+F
+ Ctrl+F
+
+
+
+ Find in Files...
+ Znajdź w plikach...
+
+
+
+ Find &Next
+ Znajdź &następne
+
+
+
+ F3
+ F3
+
+
+
+ Find &Previous
+ Znajdź &poprzednie
+
+
+
+ &Replace...
+ Zamień
+
+
+
+ Ctrl+H
+ Ctrl+H
+
+
+
+ Full Screen
+ Pełny ekran
+
+
+
+ F11
+ F11
+
+
+
+
+ Start Recording
+ Rozpocznij nagrywanie
+
+
+
+ Playback
+ Odtwórz
+
+
+
+ Ctrl+Shift+P
+ Ctrl+Shift+P
+
+
+
+ Save Current Recorded Macro...
+ Zapisz bieżące makro...
+
+
+
+ Run a Macro Multiple Times...
+ Uruchom makro wiele razy...
+
+
+
+ Preferences...
+ Preferencje...
+
+
+
+ Quick Find
+ Szybkie wyszukiwanie
+
+
+
+ Ctrl+Alt+I
+ Ctrl+Alt+I
+
+
+
+ Select Next Instance
+ Zaznacz następne wystąpienie
+
+
+
+ Ctrl+D
+ Ctrl+D
+
+
+
+ Move to Trash...
+ Przenieś do kosza...
+
+
+
+ Move to Trash
+ Przenieś do kosza
+
+
+
+ Check for Updates...
+ Sprawdź aktualizacje...
+
+
+
+ &Go to Line...
+ Idź do wiersza...
+
+
+
+ Ctrl+G
+ Ctrl+G
+
+
+
+ Print...
+ Drukuj...
+
+
+
+ Ctrl+P
+ Ctrl+P
+
+
+
+ Open Folder as Workspace...
+ Otwórz folder jako obszar roboczy...
+
+
+
+ Toggle Single Line Comment
+ Przełącz komentarz pojedynczego wiersza
+
+
+
+ Ctrl+/
+ Ctrl+/
+
+
+
+ Single Line Comment
+ Zakomentuj wiersz
+
+
+
+ Ctrl+K
+ Ctrl+K
+
+
+
+ Single Line Uncomment
+ Odkomentuj wiersz
+
+
+
+ Ctrl+Shift+K
+ Ctrl+Shift+K
+
+
+
+ Edit Macros...
+ Edytor makr...
+
+
+
+ This is not currently implemented
+ Ta funkcja nie jest obecnie zaimplementowana
+
+
+
+ Column Mode...
+ Tryb kolumnowy...
+
+
+
+ Export as HTML...
+ Eksportuj jako HTML...
+
+
+
+ Export as RTF...
+ Eksportuj jako RTF...
+
+
+
+ Copy as HTML
+ Kopiuj jako HTML
+
+
+
+ Copy as RTF
+ Kopiuj jako RTF
+
+
+
+ Base 64 Encode
+ Kodowanie Base 64
+
+
+
+ URL Encode
+ Kodowanie URL
+
+
+
+ Base 64 Decode
+ Dekodowanie Base 64
+
+
+
+ URL Decode
+ Dekodowanie URL
+
+
+
+ Copy URL
+ Kopiuj URL
+
+
+
+ Remove Empty Lines
+ Usuń puste wiersze
+
+
+
+
+ Show in Explorer
+ Pokaż w eksploratorze
+
+
+
+ Open Command Prompt Here
+ Otwórz wiersz poleceń
+
+
+
+ Toggle Bookmark
+ Przełącz zakładki
+
+
+
+ Ctrl+F2
+ Ctrl+F2
+
+
+
+ Next Bookmark
+ Następna zakładka
+
+
+
+ F2
+ F2
+
+
+
+ Previous Bookmark
+ Poprzednia zakładka
+
+
+
+ Shift+F2
+ Shift+F2
+
+
+
+ Clear Bookmarks
+ Wyczyść zakładki
+
+
+
+ Invert Bookmarks
+ Odwróć zakładki
+
+
+
+ Next Tab
+
+
+
+
+ Ctrl+Tab
+
+
+
+
+ Previous Tab
+
+
+
+
+ Ctrl+Shift+Tab
+
+
+
+
+ Fold Level 1
+
+
+
+
+ Alt+1
+
+
+
+
+ Fold Level 2
+
+
+
+
+ Alt+2
+
+
+
+
+ Fold Level 3
+
+
+
+
+ Alt+3
+
+
+
+
+ Fold Level 4
+
+
+
+
+ Alt+4
+
+
+
+
+ Unfold Level 1
+
+
+
+
+ Alt+Shift+1
+
+
+
+
+ Unfold Level 2
+
+
+
+
+ Alt+Shift+2
+
+
+
+
+ Unfold Level 3
+
+
+
+
+ Alt+Shift+3
+
+
+
+
+ Unfold Level 4
+
+
+
+
+ Alt+Shift+4
+
+
+
+
+ Fold All
+
+
+
+
+ Alt+0
+
+
+
+
+ Unfold All
+
+
+
+
+ Alt+Shift+0
+
+
+
+
+ Fold Level 5
+
+
+
+
+ Alt+5
+
+
+
+
+ Fold Level 6
+
+
+
+
+ Alt+6
+
+
+
+
+ Fold Level 7
+
+
+
+
+ Alt+7
+
+
+
+
+ Fold Level 8
+
+
+
+
+ Alt+8
+
+
+
+
+ Fold Level 9
+
+
+
+
+ Alt+9
+
+
+
+
+ Unfold Level 5
+
+
+
+
+ Alt+Shift+5
+
+
+
+
+ Unfold Level 6
+
+
+
+
+ Alt+Shift+6
+
+
+
+
+ Unfold Level 7
+
+
+
+
+ Alt+Shift+7
+
+
+
+
+ Unfold Level 8
+
+
+
+
+ Alt+Shift+8
+
+
+
+
+ Unfold Level 9
+
+
+
+
+ Alt+Shift+9
+
+
+
+
+ Go to line
+ Idź do wiersza
+
+
+
+ Line Number (1 - %1)
+ Numer wiersza (1-%1)
+
+
+
+ Stop Recording
+ Zakończ nagrywanie
+
+
+
+ New %1
+ Nowy %1
+
+
+
+ Create File
+ Utwórz plik
+
+
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> nie istnieje. Czy chcesz go utworzyć?
+ <b>%1</b> nie istnieje. Czy chcesz go utworzyć?
+
+
+
+
+ Save file <b>%1</b>?
+ Zapisać plik <b>%1</b>?
+
+
+
+
+ Save File
+ Zapisz plik
+
+
+
+ Open Folder as Workspace
+ Otwórz folder jako obszar roboczy
+
+
+
+ Reload File
+ Wczytaj plik ponownie
+
+
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ Czy na pewno chcesz ponownie wczytać<b>%1</b>? Niezapisane zmiany zostaną utracone.
+
+
+
+ Save a Copy As
+ Zapisz kopię jako
+
+
+
+
+ Rename
+ Zmień nazwę
+
+
+
+ Name:
+ Nazwa:
+
+
+
+ Delete File
+ Usuń plik
+
+
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ Czy na pewno chcesz przenieść <b>%1</b> do kosza?
+
+
+
+ Error Deleting File
+ Błąd podczas usuwania pliku
+
+
+
+ Something went wrong deleting <b>%1</b>?
+ Coś poszło nie tak przy próbie usunięcia <b>%1</b>?
+
+
+
+ Administrator
+ Administrator
+
+
+
+ Error Saving File
+ Błąd podczas zapisywania pliku
+
+
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ Pojawił się błąd podczas próby zapisania <b>%1</b><br><br>Błąd: %2
+
+
+
+ Zoom: %1%
+ Powiększenie: %1%
+
+
+
+ No updates are available at this time.
+ Brak dostępnych aktualizacji.
+
+
+
+ PreferencesDialog
+
+
+ Preferences
+ Preferencje
+
+
+
+ Show menu bar
+ Pokaż pasek menu
+
+
+
+ Show toolbar
+ Pokaż pasek narzędzi
+
+
+
+ Show status bar
+ Pokaż pasek stanu
+
+
+
+ Restore previous session
+ Przywróć poprzednią sesję
+
+
+
+ Unsaved changes
+ Niezapisane zmiany
+
+
+
+ Temporary files
+ Pliki tymczasowe
+
+
+
+ Combine search results
+ Połącz wyniki wyszukiwania
+
+
+
+ Translation:
+ Język interfejsu:
+
+
+
+ Exit on last tab closed
+
+
+
+
+ Default Font
+
+
+
+
+ Font
+
+
+
+
+ Font Size
+
+
+
+
+ pt
+
+
+
+
+ TextLabel
+ TextLabel
+
+
+
+ An application restart is required to apply certain settings.
+ Wymagany jest restart aplikacji aby zastosować te ustawienia.
+
+
+
+ Warning
+ Uwaga
+
+
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ Ta funkcja jest eksperymentalna i nie powinna być używana w ważnych zastosowaniach. Jej użycie może prowadzić do utraty danych. Używaj jej na własną odpowiedzialność.
+
+
+
+ <System Default>
+ <domyślny systemowy>
+
+
+
+ QObject
+
+
+ List All Tabs
+ Lista wszystkich kart
+
+
+
+ Detach Group
+ Odłącz grupę
+
+
+
+ Minimize
+ Minimalizuj
+
+
+
+ Close Tab
+ Zamknij kartę
+
+
+
+ QuickFindWidget
+
+
+ Frame
+ Ramka
+
+
+
+ Match case
+ Dopasuj wielkość liter
+
+
+
+ Aa
+ Aa
+
+
+
+ Match whole word
+ Dopasuj całe słowa
+
+
+
+ |A|
+ |A|
+
+
+
+ Use regular expression
+ Użyj wyrażenia regularnego
+
+
+
+ . *
+ . *
+
+
+
+ Alt+E
+ Alt+E
+
+
+
+ Find...
+ Znajdź...
+
+
+
+ %L1/%L2
+
+
+
+
+ SearchResultsDock
+
+
+ Search Results
+ Wyniki wyszukiwania
+
+
+
+ Collapse All
+ Zwiń wszystko
+
+
+
+ Expand All
+ Rozwiń wszystko
+
+
+
+ Delete Entry
+ Usuń wpis
+
+
+
+ Delete All
+ Usuń wszystko
+
+
+
+ Updater
+
+
+ Would you like to download the update now?
+ Czy chcesz teraz pobrać aktualizację?
+
+
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ Czy chcesz teraz pobrać aktualizację? Ta aktualizacja jest obowiązkowa, wyjście spowoduje zamknięcie aplikacji
+
+
+
+ Version %1 of %2 has been released!
+ Wersja %1 %2 jest dostępna!
+
+
+
+ No updates are available for the moment
+ Brak dostępnych aktualizacji
+
+
+
+ Congratulations! You are running the latest version of %1
+ Gratulacje! Masz najnowszą wersję %1
+
+
+
+ ads::CAutoHideTab
+
+
+ Detach
+ Odłącz
+
+
+
+ Pin To...
+ Przypnij do...
+
+
+
+ Top
+ Góra
+
+
+
+ Left
+ Lewo
+
+
+
+ Right
+ Prawo
+
+
+
+ Bottom
+ Dół
+
+
+
+ Unpin (Dock)
+ Odepnij (dokowanie)
+
+
+
+ Close
+ Zamknij
+
+
+
+ ads::CDockAreaTitleBar
+
+
+ Detach
+ Odłącz
+
+
+
+ Detach Group
+ Odłącz grupę
+
+
+
+
+ Unpin (Dock)
+ Odepnij (dokowanie)
+
+
+
+
+ Pin Group
+ Przypnij grupę
+
+
+
+ Pin Group To...
+ Przypnij grupę do...
+
+
+
+ Top
+ Góra
+
+
+
+ Left
+ Lewo
+
+
+
+ Right
+ Prawo
+
+
+
+ Bottom
+ Dół
+
+
+
+
+ Minimize
+ Minimalizuj
+
+
+
+
+
+ Close
+ Zamknij
+
+
+
+
+ Close Group
+ Zamknij grupę
+
+
+
+ Close Other Groups
+ Zamknij inne grupy
+
+
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+ Przypnij aktywną kartę (naciśnij Ctrl aby przypiąć grupę)
+
+
+
+ Close Active Tab
+ Zamknij aktywną kartę
+
+
+
+ ads::CDockManager
+
+
+ Show View
+ Pokaż widok
+
+
+
+ ads::CDockWidgetTab
+
+
+ Detach
+ Odłącz
+
+
+
+ Pin
+ Przypnij
+
+
+
+ Pin To...
+ Przypnij do...
+
+
+
+ Top
+ Góra
+
+
+
+ Left
+ Lewo
+
+
+
+ Right
+ Prawo
+
+
+
+ Bottom
+ Dół
+
+
+
+ Close
+ Zamknij
+
+
+
+ Close Others
+ Zamknij inne
+
+
+
diff --git a/i18n/NotepadNext_pt_PT.ts b/i18n/NotepadNext_pt_PT.ts
index 6e7368c99..2c82287c3 100644
--- a/i18n/NotepadNext_pt_PT.ts
+++ b/i18n/NotepadNext_pt_PT.ts
@@ -1,2327 +1,2421 @@
-
-
+
+
ColumnEditorDialog
-
- Column Mode
- Modo de coluna
+
+ Column Mode
+ Modo de coluna
-
- Text
- Texto
+
+ Text
+ Texto
-
- Numbers
- Números
+
+ Numbers
+ Números
-
- Start:
- Iniciar:
+
+ Start:
+ Iniciar:
-
- Step:
- Etapa:
+
+ Step:
+ Etapa:
-
-
+
+
DebugLogDock
-
- Debug Log
- Registo de depuração
+
+ Debug Log
+ Registo de depuração
-
-
- EditorInfoStatusBar
+
+
+ Downloader
-
- Length: %L1 Lines: %L2
- Comprimento: %L1 Linhas: %L2
+
+
+ Updater
+ Atualizador
-
- Sel: N/A
- Sel: N/D
+
+
+
+ Downloading updates
+ Transferir atualizações
-
- Sel: %L1 | %L2
- Sel: %L1 | %L2
+
+ Time remaining: 0 minutes
+ Tempo restante: 0 minutos
-
- Ln: %L1 Col: %L2
- Ln: %L1 Col: %L2
+
+ Open
+ Abrir
-
- Macintosh (CR)
- Macintosh (CR)
+
+
+ Stop
+ Parar
-
- Windows (CR LF)
- Windows (CR LF)
+
+
+ Time remaining
+ Tempo restante
-
- Unix (LF)
- Unix (LF)
+
+ unknown
+ desconhecido
-
- ANSI
- ANSI
+
+ Error
+ Erro
-
- UTF-8
- UTF-8
+
+ Cannot find downloaded update!
+ Não é possível encontrar a atualização transferida!
-
- UTF-8 BOM
-
+
+ Close
+ Fechar
-
- UTF-16LE BOM
-
+
+ Download complete!
+ Transferência concluída!
-
- UTF-16BE BOM
-
+
+ The installer will open separately
+ O instalador será aberto separadamente
-
- OVR
- This is a short abbreviation to indicate characters will be replaced when typing
- SUB
+
+ Click "OK" to begin installing the update
+ Clique em “OK” para começar a instalar a atualização
-
- INS
- This is a short abbreviation to indicate characters will be inserted when typing
- INS
+
+ In order to install the update, you may need to quit the application.
+ Para instalar a atualização, poderá ser necessário sair da aplicação.
-
-
- EditorInspectorDock
-
- Editor Inspector
- Inpetor de editor
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+ Para instalar a atualização, poderá ser necessário sair da aplicação. Esta é uma atualização obrigatória, sair agora fechará a aplicação
-
- Position Information
- Informação da posição
+
+ Click the "Open" button to apply the update
+ Clique no botão “Abrir” para aplicar a atualização
-
- Current Position
- Posição atual
+
+ Are you sure you want to cancel the download?
+ Tem a certeza de que pretende cancelar a transferência?
-
- Current Position (x, y)
- Posição atual (x, y)
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ Tem a certeza de que pretende cancelar a transferência? Esta é uma atualização obrigatória, sair agora irá fechar a aplicação
-
- Column
- Coluna
+
+
+ %1 bytes
+ %1 bytes
-
- Current Style
- Estilo atual
+
+
+ %1 KB
+ %1 KB
-
- Current Line
- Linha atual
+
+
+ %1 MB
+ %1 MB
-
- Line Length
- Comprimento da linha
+
+ of
+ de
-
- Line End Position
- Posição final da linha
+
+ Downloading Updates
+ Transferir Atualizações
-
- Line Indentation
- Indentação de linha
+
+ Time Remaining
+ Tempo Restante
-
- Line Indent Position
- Posição de indentação de linha
+
+ Unknown
+ Desconhecido
-
- Selection Information
- Informação de seleção
+
+ about %1 hours
+ cerca de %1 horas
-
- Mode
- Modo
+
+ about one hour
+ cerca de 1 hora
-
- Is Rectangle
- É retângulo
+
+ %1 minutes
+ %1 minutos
-
- Selection Empty
- Seleção vazia
+
+ 1 minute
+ 1 minuto
-
- Main Selection
- Seleção principal
+
+ %1 seconds
+ %1 segundos
-
- # of Selections
- # de seleções
+
+ 1 second
+ 1 segundo
+
+
+ EditorInfoStatusBar
-
- Multiple Selections
- Seleções múltiplas
+
+ Length: %L1 Lines: %L2
+ Comprimento: %L1 Linhas: %L2
-
- Document Information
- Informação sobre o documento
+
+ Sel: N/A
+ Sel: N/D
-
- Length
- Comprimento
+
+ Sel: %L1 | %L2
+ Sel: %L1 | %L2
-
- Line Count
- Contagem de linhas
+
+ Ln: %L1 Col: %L2
+ Ln: %L1 Col: %L2
-
- View Information
- Ver informação
+
+ Macintosh (CR)
+ Macintosh (CR)
-
- Lines on Screen
- Linhas no ecrã
+
+ Windows (CR LF)
+ Windows (CR LF)
-
- First Visible Line
- Primeira linha visível
+
+ Unix (LF)
+ Unix (LF)
-
- X Offset
- Desvio X
+
+ ANSI
+ ANSI
-
- Fold Information
- Informações sobre a dobra
+
+ UTF-8
+ UTF-8
+
+
+ EditorInspectorDock
-
- Visible From Doc Line
- Visível a partir da linha Doc
+
+ Editor Inspector
+ Inpetor de editor
-
- Doc Line From Visible
- Linha Doc a partir de Visível
+
+ Position Information
+ Informação da posição
-
- Fold Level
- Nível de dobra
+
+ Current Position
+ Posição atual
-
- Is Fold Header
- É cabeçalho de dobra
+
+ Current Position (x, y)
+ Posição atual (x, y)
-
- Fold Parent
- Dobrar acima
+
+ Column
+ Coluna
-
- Last Child
- Último abaixo
+
+ Current Style
+ Estilo atual
-
- Contracted Fold Next
- Dobra contratada Seguinte
+
+ Current Line
+ Linha atual
-
- Caret
- Carácter
+
+ Line Length
+ Comprimento da linha
-
- Anchor
- Ancoragem
+
+ Line End Position
+ Posição final da linha
-
- Caret Virtual Space
- Espaço virtual do carácter
+
+ Line Indentation
+ Indentação de linha
-
- Anchor Virtual Space
- Espaço virtual da ancoragem
+
+ Line Indent Position
+
-
-
- FileList
-
- File List
- Lista de ficheiros
+
+ Selection Information
+ Informação de seleção
-
- ...
- ...
+
+ Mode
+ Modo
-
- Sort by File Name
- Ordenar por nome de ficheiro
+
+ Is Rectangle
+ É retângulo
-
-
- FindReplaceDialog
-
-
-
- Find
- Localizar
+
+ Selection Empty
+ Seleção vazia
-
- Search Mode
- Modo de pesquisa
+
+ Main Selection
+ Seleção principal
-
- &Normal
- &Normal
+
+ # of Selections
+ # de seleções
-
- E&xtended (\n, \r, \t, \0, \x...)
- A&largada (\n, \r, \t, \0, \x...)
+
+ Multiple Selections
+ Seleções múltiplas
-
- Re&gular expression
- Expressão re&gular
+
+ Document Information
+ Informação sobre o documento
-
- &. matches newline
- &. corresponde a uma nova linha
+
+ Length
+ Comprimento
-
- Transparenc&y
- Transparênc&ia
+
+ Line Count
+ Contagem de linhas
-
- On losing focus
- Sobre perder o foco
+
+ View Information
+ Ver informação
-
- Always
- Sempre
+
+ Lines on Screen
+ Linhas no ecrã
-
- Coun&t
- Con&tar
+
+ First Visible Line
+ Primeira linha visível
-
- &Replace
- &Substituir
+
+ X Offset
+ Desvio X
-
- Replace &All
- Substituir &tudo
+
+ Fold Information
+ Informações sobre a dobra
-
- Replace All in &Opened Documents
- Substituir tudo em documentos &abertos
+
+ Visible From Doc Line
+ Visível a partir da linha Doc
-
- Find All in All &Opened Documents
- Localizar tudo em todos os documentos &abertos
+
+ Doc Line From Visible
+ Linha Doc a partir de Visível
-
- Find All in Current Document
- Localizar tudo no documento atual
+
+ Fold Level
+ Nível de dobra
-
- Close
- Fechar
+
+ Is Fold Header
+ É cabeçalho de dobra
-
- &Find:
- &Localizar:
+
+ Fold Parent
+ Dobrar acima
-
- Replace:
- Substituir:
+
+ Last Child
+ Último abaixo
-
- Backward direction
- Sentido inverso
+
+ Contracted Fold Next
+ Dobra contratada Seguinte
-
- Match &whole word only
- Corresponder apenas à palavra &inteira
+
+ Caret
+ Carácter
-
- Match &case
- Corresponder &minúsculas/maiúsculas
+
+ Anchor
+ Ancoragem
-
- Wra&p Around
- En&volvente
+
+ Caret Virtual Space
+ Espaço virtual do carácter
-
- Replace
- Substituir
+
+ Anchor Virtual Space
+ Espaço virtual da ancoragem
-
-
-
- Replaced %Ln matches
-
- Substituído %Ln correspondência
- Substituído %Ln correspondências
-
+
+
+ FileList
+
+
+ File List
+ Lista de ficheiros
+
+
+ FindReplaceDialog
-
- The end of the document has been reached. Found 1st occurrence from the top.
- O fim do documento foi atingido. Localizada a 1ª ocorrência a partir do topo.
+
+
+
+ Find
+ Localizar
-
- No matches found.
- Não foram localizadas correspondências.
+
+ Search Mode
+ Modo de pesquisa
-
- 1 occurrence was replaced
- 1 ocorrência foi substituída
+
+ &Normal
+ &Normal
-
- No more occurrences were found
-
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ A&largada (\n, \r, \t, \0, \x...)
-
-
- Found %Ln matches
-
- Localizado %Ln correspondência
- Localizado %Ln correspondências
-
-
-
-
- FolderAsWorkspaceDock
-
- Folder as Workspace
- Pasta como área de trabalho
+
+ Re&gular expression
+ Expressão re&gular
-
-
- LanguageInspectorDock
-
- Language Inspector
- Inspetor de linguagem
+
+ &. matches newline
+ &. corresponde a uma nova linha
-
- Language:
- Linguagem:
+
+ Transparenc&y
+ Transparênc&ia
-
- Lexer:
- Lexer:
+
+ On losing focus
+ Sobre perder o foco
-
- Properties:
- Propriedades:
+
+ Always
+ Sempre
-
- Property
- Propriedade
+
+ Coun&t
+ Con&tar
-
- Type
- Tipo
+
+ &Replace
+ &Substituir
-
-
- Description
- Descrição
+
+ Replace &All
+ Substituir &tudo
-
- Value
- Valor
+
+ Replace All in &Opened Documents
+ Substituir tudo em documentos &abertos
-
- Keywords:
- Palavras-chave:
+
+ Find All in All &Opened Documents
+ Localizar tudo em todos os documentos &abertos
-
- ID
- ID
+
+ Find All in Current Document
+ Localizar tudo no documento atual
-
- Styles:
- Estilos:
+
+ Close
+ Fechar
-
- TextLabel
- Legenda do texto
+
+ &Find:
+ &Localizar:
-
- Position %1 Style %2
- Posição %1 Estilo %2
+
+ Replace:
+ Substituir:
-
-
- LuaConsoleDock
-
- Lua Console
- Consola Lua
+
+ Backward direction
+ Sentido inverso
-
-
- MacroEditorDialog
-
- Macro Editor
- Editor de macros
+
+ Match &whole word only
+ Corresponder apenas à palavra &inteira
-
- Name
- Nome
+
+ Match &case
+ Corresponder &minúsculas/maiúsculas
-
- Shortcut
- Atalho
+
+ Wra&p Around
+ En&volvente
-
- Steps:
- Etapas:
+
+ Replace
+ Substituir
+
+
+
+
+ Replaced %Ln matches
+
+ Substituído %Ln correspondência
+ Substituído %Ln correspondências
+
-
- Insert Macro Step
- Inserir etapa da macro
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ O fim do documento foi atingido. Localizada a 1ª ocorrência a partir do topo.
-
- Delete Selected Macro Step
- Eliminar a etapa da macro selecionada
+
+ No matches found.
+ Não foram localizadas correspondências.
-
- Move Selected Macro Step Up
- Mover a etapa da macro selecionada para cima
+
+ 1 occurrence was replaced
+ 1 ocorrência foi substituída
-
- Move Selected Macro Step Down
- Mover a etapa da macro selecionada para baixo
+
+ No more occurrences were found
+
+
+
+ Found %Ln matches
+
+ Localizado %Ln correspondência
+ Localizado %Ln correspondências
+
+
+
+
+ FolderAsWorkspaceDock
-
- Copy Selected Macro
- Copiar a macro selecionada
+
+ Folder as Workspace
+ Pasta como área de trabalho
+
+
+ HexViewerDock
-
- Delete Selected Macro
- Eliminar a macro selecionada
+
+ Hex Viewer
+ Visualizador Hexadecimal
+
+
+ LanguageInspectorDock
-
- Delete Macro
- Eliminar macro
+
+ Language Inspector
+ Inspetor de linguagem
-
- Are you sure you want to delete <b>%1</b>?
- Tem a certeza de que pretende eliminar <b>%1</b>?
+
+ Language:
+ Linguagem:
-
- (Copy)
- (Copiar)
+
+ Lexer:
+ Lexer:
-
-
- MacroRunDialog
-
- Run a Macro Multiple Times
- Executar uma macro várias vezes
+
+ Properties:
+ Propriedades:
-
- Macro:
- Macro:
+
+ Property
+ Propriedade
-
- Run Until End of File
- Executar até ao fim do ficheiro
+
+ Type
+ Tipo
-
- Execute...
- Executar...
+
+
+ Description
+ Descrição
-
- times
- vezes
+
+ Value
+ Valor
-
- Run
- Executar
+
+ Keywords:
+ Palavras-chave:
-
- Cancel
- Cancelar
+
+ ID
+ ID
-
-
- MacroSaveDialog
-
- Save Macro
- Guardar macro
+
+ Styles:
+ Estilos:
-
- Name:
- Nome:
+
+ TextLabel
+ Legenda do texto
-
- Shortcut:
- Atalho:
+
+ Position %1 Style %2
+ Posição %1 Estilo %2
+
+
+ LuaConsoleDock
-
- OK
- OK
+
+ Lua Console
+ Consola Lua
+
+
+ MacroEditorDialog
-
- Cancel
- Cancelar
+
+ Macro Editor
+ Editor de macros
-
-
- MacroStepTableModel
-
- Name
- Nome
+
+ Name
+ Nome
-
- Text
- Texto
+
+ Shortcut
+ Atalho
+
+
+
+ Steps:
+ Etapas:
+
+
+
+ Insert Macro Step
+ Inserir etapa da macro
-
-
- MainWindow
-
- Notepad Next[*]
- Notepad Next[*]
+
+ Delete Selected Macro Step
+ Eliminar a etapa da macro selecionada
-
- +
- +
+
+ Move Selected Macro Step Up
+ Mover a etapa da macro selecionada para cima
-
- &File
- &Ficheiro
+
+ Move Selected Macro Step Down
+ Mover a etapa da macro selecionada para baixo
-
- Close More
- Fechar mais
+
+ Copy Selected Macro
+ Copiar a macro selecionada
-
- &Recent Files
- Ficheiros &recentes
+
+ Delete Selected Macro
+ Eliminar a macro selecionada
-
-
- Export As
- Exportar como
+
+ Delete Macro
+ Eliminar macro
-
- &Edit
- &Editar
+
+ Are you sure you want to delete <b>%1</b>?
+ Tem a certeza de que pretende eliminar <b>%1</b>?
-
- Copy More
- Copiar mais
+
+ (Copy)
+ (Copiar)
+
+
+ MacroRunDialog
-
- Indent
- Indentação
+
+ Run a Macro Multiple Times
+ Executar uma macro várias vezes
-
- EOL Conversion
- Conversão de fim de linha
+
+ Macro:
+ Macro:
-
- Convert Case
- Converter maiúsculas/minúsculas
+
+ Run Until End of File
+ Executar até ao fim do ficheiro
-
- Line Operations
- Operações de linha
+
+ Execute...
+ Executar...
-
- Comment/Uncomment
- Comentar/Não comentar
+
+ times
+ vezes
-
- Copy As
- Copiar como
+
+ Run
+ Executar
-
- Encoding/Decoding
- Codificação/Decodificação
+
+ Cancel
+ Cancelar
+
+
+ MacroSaveDialog
-
- Search
- Procurar
+
+ Save Macro
+ Guardar macro
-
- Bookmarks
- Marcadores
+
+ Name:
+ Nome:
-
- Mark All Occurrences
- Selecionar todas as ocorrências
+
+ Shortcut:
+ Atalho:
-
- Clear Marks
- Remover as seleções
+
+ OK
+ OK
-
- &View
- &Ver
+
+ Cancel
+ Cancelar
+
+
+ MacroStepTableModel
-
- &Zoom
- &Zoom
+
+ Name
+ Nome
-
- Show Symbol
- Mostrar símbolo
+
+ Text
+ Texto
+
+
+ MainWindow
-
- Fold Level
- Nível de dobra
+
+ Notepad Next[*]
+ Notepad Next[*]
-
- Unfold Level
- Nível de desdobra
+
+ +
+ +
-
- Language
- Linguagem
+
+ &File
+ &Ficheiro
-
- Settings
- Definições
+
+ Close More
+ Fechar mais
-
- Macro
- Macro
+
+ &Recent Files
+ Ficheiros &recentes
-
- Help
- Ajuda
+
+
+ Export As
+ Exportar como
-
- Encoding
- Codificação
+
+ &Edit
+ &Editar
-
- Main Tool Bar
- Barra de ferramentas principal
+
+ Copy More
+ Copiar mais
-
- &New
- &Novo
+
+ Indent
+
-
- Create a new file
- Criar um novo ficheiro
+
+ EOL Conversion
+ Conversão de Fim De Linha
-
- Ctrl+N
- Ctrl+N
+
+ Convert Case
+ Converter maiúsculas/minúsculas
-
- &Open...
- &Abrir...
+
+ Line Operations
+ Operações de linha
-
- Ctrl+O
- Ctrl+O
+
+ Comment/Uncomment
+ Comentar/Não comentar
-
- &Save
- &Guardar
+
+ Copy As
+ Copiar como
-
- Save
- Guardar
+
+ Encoding/Decoding
+ Codificação/Decodificação
-
- Ctrl+S
- Ctrl+S
+
+ Search
+ Procurar
-
- E&xit
- Sa&ir
+
+ Bookmarks
+ Marcadores
-
- &Undo
- An&ular
+
+ &View
+ &Ver
-
- Ctrl+Z
- Ctrl+Z
+
+ &Zoom
+ &Zoom
-
- &Redo
- &Refazer
+
+ Show Symbol
+ Mostrar símbolo
-
- Ctrl+Y
- Ctrl+Y
+
+ Fold Level
+ Nível de dobra
-
- Cu&t
- Cor&tar
+
+ Unfold Level
+ Nível de desdobra
-
- Ctrl+X
- Ctrl+X
+
+ Language
+ Linguagem
-
- &Copy
- &Copiar
+
+ Settings
+ Definições
-
- Ctrl+C
- Ctrl+C
+
+ Macro
+ Macro
-
- &Paste
- &Colar
+
+ Help
+ Ajuda
-
- Ctrl+V
- Ctrl+V
+
+ Encoding
+ Codificação
-
- &Delete
- &Eliminar
+
+ Main Tool Bar
+ Barra de ferramentas principal
-
- Del
- Ctrl+V
+
+ &New
+ &Novo
-
- Copy Full Path
- Copiar localização completa
+
+ Create a new file
+ Criar um novo ficheiro
-
- Copy File Name
- Copiar nome de ficheiro
+
+ Ctrl+N
+ Ctrl+N
-
- Copy File Directory
- Copiar diretório de ficheiros
+
+ &Open...
+ &Abrir...
-
- &Close
- &Fechar
+
+ Ctrl+O
+ Ctrl+O
-
- Close the current file
- Fechar o ficheiro atual
+
+ &Save
+ &Guardar
-
- Ctrl+W
- Ctrl+W
+
+ Save
+ Guardar
-
- Save &As...
- Guardar &como...
+
+ Ctrl+S
+ Ctrl+S
-
- Ctrl+Alt+S
- Ctrl+Alt+S
+
+ E&xit
+ Sa&ir
-
- Save a Copy As...
- Guardar uma cópia como...
+
+ &Undo
+ An&ular
-
- Sav&e All
- Guar&dar tudo
+
+ Ctrl+Z
+ Ctrl+Z
-
- Ctrl+Shift+S
- Ctrl+Shift+S
+
+ &Redo
+ &Refazer
-
- Select A&ll
- Selecionar t&udo
+
+ Ctrl+Y
+ Ctrl+Y
-
- Ctrl+A
- Ctrl+A
+
+ Cu&t
+ Cor&tar
-
- Increase Indent
- Aumentar a indentação
+
+ Ctrl+X
+ Ctrl+X
-
- Decrease Indent
- Diminuir a indentação
+
+ &Copy
+ &Copiar
-
- Rename...
- Renomear...
+
+ Ctrl+C
+ Ctrl+C
-
- Re&load
- Re&carregar
+
+ &Paste
+ &Colar
-
- Windows (CR LF)
- Windows (CR LF)
+
+ Ctrl+V
+ Ctrl+V
-
- Unix (LF)
- Unix (LF)
+
+ &Delete
+ &Eliminar
-
- Macintosh (CR)
- Macintosh (CR)
+
+ Del
+ Ctrl+V
-
- UPPER CASE
- MAIÚSCULAS
+
+ Copy Full Path
+ Copiar localização completa
-
- Convert text to upper case
- Converter texto em maiúsculas
+
+ Copy File Name
+ Copiar nome de ficheiro
-
- lower case
- minúsculas
+
+ Copy File Directory
+ Copiar diretório de ficheiros
-
- Convert text to lower case
- Converter texto em minúsculas
+
+ &Close
+ &Fechar
-
- Duplicate Current Line
- Duplicar linha atual
+
+ Close the current file
+ Fechar o ficheiro atual
-
- Alt+Down
- Alt+Baixo
+
+ Ctrl+W
+ Ctrl+W
-
- Split Lines
- Dividir linhas
+
+ Save &As...
+ Guardar &como...
-
- Join Lines
- Juntar linhas
+
+ Ctrl+Alt+S
+ Ctrl+Alt+S
-
- Ctrl+J
- Ctrl+J
+
+ Save a Copy As...
+ Guardar uma cópia como...
-
- Move Selected Lines Up
- Mover as linhas selecionadas para cima
+
+ Sav&e All
+ Guar&dar tudo
-
- Ctrl+Shift+Up
- Ctrl+Shift+Cima
+
+ Ctrl+Shift+S
+ Ctrl+Shift+S
-
- Move Selected Lines Down
- Mover as linhas selecionadas para baixo
+
+ Select A&ll
+ Selecionar t&udo
-
- Ctrl+Shift+Down
- Ctrl+Shift+Baixo
+
+ Ctrl+A
+ Ctrl+A
-
- Clos&e All
- Fechar &tudo
+
+ Increase Indent
+ Aumentar o recuo
-
- Close All files
- Fechar todos os ficheiros
+
+ Decrease Indent
+ Diminuir o recuo
-
- Ctrl+Shift+W
- Ctrl+Shift+W
+
+ Rename...
+ Renomear...
-
- Close All Except Active Document
- Fechar tudo exceto o documento ativo
+
+ Re&load
+ Re&carregar
-
- Close All to the Left
- Fechar tudo à esquerda
+
+ Windows (CR LF)
+ Windows (CR LF)
-
- Close All to the Right
- Fechar tudo à direita
+
+ Unix (LF)
+ Unix (LF)
-
- Zoom &In
- A&umentar
+
+ Macintosh (CR)
+ Macintosh (CR)
-
- Ctrl++
- Ctrl++
+
+ UPPER CASE
+ MAIÚSCULAS
-
- Zoom &Out
- &Reduzir
+
+ Convert text to upper case
+ Converter texto em maiúsculas
-
- Ctrl+-
- Ctrl+-
+
+ lower case
+ minúsculas
-
- Reset Zoom
- Repor
+
+ Convert text to lower case
+ Converter texto em minúsculas
-
- Ctrl+0
- Ctrl+0
+
+ Duplicate Current Line
+ Duplicar linha atual
-
- About Qt
- Acerca do Qt
+
+ Alt+Down
+ Alt+Baixo
-
- About Notepad Next
- Acerca do Notepad Next
+
+ Split Lines
+ Dividir linhas
-
- Show Whitespace
- Mostrar espaço em branco
+
+ Join Lines
+ Juntar linhas
-
- Show End of Line
- Mostrar fim de linha
+
+ Ctrl+J
+ Ctrl+J
-
- Show All Characters
- Mostrar todos os caracteres
+
+ Move Selected Lines Up
+ Mover as linhas selecionadas para cima
-
- Show Indent Guide
- Mostrar guia de indentação
+
+ Ctrl+Shift+Up
+ Ctrl+Shift+Cima
-
- Show Wrap Symbol
- Mostrar o símbolo de quebra de linha
+
+ Move Selected Lines Down
+ Mover as linhas selecionadas para baixo
-
- Word Wrap
- Quebra de palavras
+
+ Ctrl+Shift+Down
+ Ctrl+Shift+Baixo
-
- Restore Recently Closed File
- Restaurar ficheiro fechado recentemente
+
+ Clos&e All
+ Fechar &tudo
-
- Ctrl+Shift+T
- Ctrl+Shift+T
+
+ Close All files
+ Fechar todos os ficheiros
-
- Open All Recent Files
- Abrir todos os ficheiros recentes
+
+ Ctrl+Shift+W
+ Ctrl+Shift+W
-
- Clear Recent Files List
- Limpar a lista dos ficheiros recentes
+
+ Close All Except Active Document
+ Fechar tudo exceto o documento ativo
-
- &Find...
- &Localizar...
+
+ Close All to the Left
+ Fechar tudo à esquerda
-
- Ctrl+F
- Ctrl+F
+
+ Close All to the Right
+ Fechar tudo à direita
-
- Find in Files...
- Localizar em Ficheiros...
+
+ Zoom &In
+ A&umentar
-
- Find &Next
- Localizar &seguinte
+
+ Ctrl++
+ Ctrl++
-
- F3
- F3
+
+ Zoom &Out
+ &Reduzir
-
- Find &Previous
- Localizar &anterior
+
+ Ctrl+-
+ Ctrl+-
-
- Shift+F3
-
+
+ Reset Zoom
+ Repor
-
- &Replace...
- &Substituir...
+
+ Ctrl+0
+ Ctrl+0
-
- Ctrl+H
- Ctrl+H
+
+ About Qt
+ Acerca do Qt
-
- Full Screen
- Ecrã inteiro
+
+ About Notepad Next
+ Acerca do Notepad Next
-
- F11
- F11
+
+ Show Whitespace
+ Mostrar espaço em branco
-
-
- Start Recording
- Iniciar gravação
+
+ Show End of Line
+ Mostrar fim de linha
-
- Playback
- Reproduzir
+
+ Show All Characters
+ Mostrar todos os caracteres
-
- Ctrl+Shift+P
- Ctrl+Shift+P
+
+ Show Indent Guide
+ Mostrar guia de indentação
-
- Save Current Recorded Macro...
- Guardar a macro gravada atual...
+
+ Show Wrap Symbol
+ Mostrar o símbolo de quebra de linha
-
- Run a Macro Multiple Times...
- Executar uma macro várias vezes...
+
+ Word Wrap
+ Quebra de palavras
-
- Preferences...
- Preferências...
+
+ Restore Recently Closed File
+ Restaurar ficheiro fechado recentemente
-
- Quick Find
- Pesquisa rápida
+
+ Ctrl+Shift+T
+ Ctrl+Shift+T
-
- Ctrl+Alt+I
- Ctrl+Alt+I
+
+ Open All Recent Files
+ Abrir todos os ficheiros recentes
-
- Select Next Instance
- Selecionar a instância seguinte
+
+ Clear Recent Files List
+ Limpar a lista de ficheiros recentes
-
- Ctrl+D
- Ctrl+D
+
+ &Find...
+ &Localizar...
-
- Move to Trash...
- Mover para o Lixo...
+
+ Ctrl+F
+ Ctrl+F
-
- Move to Trash
- Mover para o Lixo
+
+ Find in Files...
+ localizar em Ficheiros...
-
- Check for Updates...
- Procurar por atualizações...
+
+ Find &Next
+ Localizar &seguinte
-
- &Go to Line...
- &Ir para a linha...
+
+ F3
+ F3
-
- Ctrl+G
- Ctrl+G
+
+ Find &Previous
+ Localiza &anterior
-
- Print...
- Imprimir...
+
+ &Replace...
+ &Substituir...
-
- Ctrl+P
- Ctrl+P
+
+ Ctrl+H
+ Ctrl+H
-
- Open Folder as Workspace...
- Abrir pasta como área de trabalho...
+
+ Full Screen
+ Ecrã inteiro
-
- Toggle Single Line Comment
- Alternar comentário de linha única
+
+ F11
+ F11
-
- Ctrl+/
- Ctrl+/
+
+
+ Start Recording
+ Iniciar gravação
-
- Single Line Comment
- Comentário de linha única
+
+ Playback
+ Reproduzir
-
- Ctrl+K
- Ctrl+K
+
+ Ctrl+Shift+P
+ Ctrl+Shift+P
-
- Single Line Uncomment
- Sem comentário de linha única
+
+ Save Current Recorded Macro...
+ Guardar a macro gravada atual...
-
- Ctrl+Shift+K
- Ctrl+Shift+K
+
+ Run a Macro Multiple Times...
+ Executar uma macro várias vezes...
-
- Edit Macros...
- Editar macros...
+
+ Preferences...
+ Preferências...
-
- This is not currently implemented
- Atualmente não está implementado
+
+ Quick Find
+ Pesquisa rápida
-
- Column Mode...
- Modo de coluna...
+
+ Ctrl+Alt+I
+ Ctrl+Alt+I
-
- Export as HTML...
- Exportar como HTML...
+
+ Select Next Instance
+ Selecionar a instância seguinte
-
- Export as RTF...
- Exportar como RTF...
+
+ Ctrl+D
+ Ctrl+D
-
- Copy as HTML
- Copiar como HTML
+
+ Move to Trash...
+ Mover para o Lixo...
-
- Copy as RTF
- Copiar como RTF
+
+ Move to Trash
+ Mover para o Lixo
-
- Base 64 Encode
- Codificação Base 64
+
+ Check for Updates...
+ Procurar por atualizações...
-
- URL Encode
- Codificação URL
+
+ &Go to Line...
+ &Ir para a linha...
-
- Base 64 Decode
- Descodificação Base 64
+
+ Ctrl+G
+ Ctrl+G
-
- URL Decode
- Descodificação URL
+
+ Print...
+ Imprimir...
-
- Copy URL
- Copiar URL
+
+ Ctrl+P
+ Ctrl+P
-
- Remove Empty Lines
- Remover linhas vazias
+
+ Open Folder as Workspace...
+ Abrir pasta como área de trabalho...
-
-
- Show in Explorer
- Mostrar no Explorador
+
+ Toggle Single Line Comment
+ Alternar comentário de linha única
-
- Open %1 Here
- Abrir %1 aqui
+
+ Ctrl+/
+ Ctrl+/
-
- Toggle Bookmark
- Alternar marcador
+
+ Single Line Comment
+ Comentário de linha única
-
- Ctrl+F2
- Ctrl+F2
+
+ Ctrl+K
+ Ctrl+K
-
- Next Bookmark
- Marcador seguinte
+
+ Single Line Uncomment
+ Sem comentário de linha única
-
- F2
- F2
+
+ Ctrl+Shift+K
+ Ctrl+Shift+K
-
- Previous Bookmark
- Marcador anterior
+
+ Edit Macros...
+ Editar macros...
-
- Shift+F2
- Shift+F2
+
+ This is not currently implemented
+ Atualmente não está implementado
-
- Clear Bookmarks
- Limpar marcadores
+
+ Column Mode...
+ Modo de coluna...
-
- Invert Bookmarks
- Inverter marcadores
+
+ Export as HTML...
+ Exportar como HTML...
-
- Next Tab
- Separarador seguinte
+
+ Export as RTF...
+ Exportar como RTF...
-
- Ctrl+Tab
- Ctrl+Tab
+
+ Copy as HTML
+ Copiar como HTML
-
- Previous Tab
- Separador anterior
+
+ Copy as RTF
+ Copiar como RTF
-
- Ctrl+Shift+Tab
- Ctrl+Shift+Tab
+
+ Base 64 Encode
+ Codificação Base 64
-
- Fold Level 1
- Nível de dobra 1
+
+ URL Encode
+ Codificação URL
-
- Alt+1
- Alt+1
+
+ Base 64 Decode
+ Descodificação Base 64
-
- Fold Level 2
- Nível de dobra 2
+
+ URL Decode
+ Descodificação URL
-
- Alt+2
- Alt+2
+
+ Copy URL
+ Copiar URL
-
- Fold Level 3
- Nível de dobra 3
+
+ Remove Empty Lines
+ Remover linhas vazias
-
- Alt+3
- Alt+3
+
+
+ Show in Explorer
+ Mostrar no Explorador
-
- Fold Level 4
- Nível de dobra 4
+
+ Open Command Prompt Here
+ Abrir a janela de comandos aqui
-
- Alt+4
- Alt+4
+
+ Toggle Bookmark
+ Alternar marcador
-
- Unfold Level 1
- Nível de desdobra 1
+
+ Ctrl+F2
+ Ctrl+F2
-
- Alt+Shift+1
- Alt+Shift+1
+
+ Next Bookmark
+ Marcador seguinte
-
- Unfold Level 2
- Nível de desdobra 2
+
+ F2
+ F2
-
- Alt+Shift+2
- Alt+Shift+2
+
+ Previous Bookmark
+ Marcador anterior
-
- Unfold Level 3
- Nível de desdobra 3
+
+ Shift+F2
+ Shift+F2
-
- Alt+Shift+3
- Alt+Shift+3
+
+ Clear Bookmarks
+ Limpar marcadores
-
- Unfold Level 4
- Nível de desdobra 4
+
+ Invert Bookmarks
+ Inverter marcadores
-
- Alt+Shift+4
- Alt+Shift+4
+
+ Next Tab
+ Separarador seguinte
-
- Fold All
- Dobrar tudo
+
+ Ctrl+Tab
+ Ctrl+Tab
-
- Alt+0
- Alt+0
+
+ Previous Tab
+ Separador anterior
-
- Unfold All
- Desdobrar tudo
+
+ Ctrl+Shift+Tab
+ Ctrl+Shift+Tab
-
- Alt+Shift+0
- Alt+Shift+0
+
+ Fold Level 1
+ Nível de dobra 1
-
- Fold Level 5
- Nível de dobra 5
+
+ Alt+1
+ Alt+1
-
- Alt+5
- Alt+5
+
+ Fold Level 2
+ Nível de dobra 2
-
- Fold Level 6
- Nível de dobra 6
+
+ Alt+2
+ Alt+2
-
- Alt+6
- Alt+6
+
+ Fold Level 3
+ Nível de dobra 3
-
- Fold Level 7
- Nível de dobra 7
+
+ Alt+3
+ Alt+3
-
- Alt+7
- Alt+7
+
+ Fold Level 4
+ Nível de dobra 4
-
- Fold Level 8
- Nível de dobra 8
+
+ Alt+4
+ Alt+4
+ Alt+4
-
- Alt+8
- Alt+8
+
+ Unfold Level 1
+ Nível de desdobra 1
-
- Fold Level 9
- Nível de dobra 9
+
+ Alt+Shift+1
+ Alt+Shift+1
-
- Alt+9
- Alt+9
+
+ Unfold Level 2
+ Nível de desdobra 2
-
- Unfold Level 5
- Nível de desdobra 5
+
+ Alt+Shift+2
+ Alt+Shift+2
-
- Alt+Shift+5
- Alt+Shift+5
+
+ Unfold Level 3
+ Nível de desdobra 3
-
- Unfold Level 6
- Nível de desdobra 6
+
+ Alt+Shift+3
+ Alt+Shift+3
-
- Alt+Shift+6
- Alt+Shift+6
+
+ Unfold Level 4
+ Nível de desdobra 4
-
- Unfold Level 7
- Nível de desdobra 7
+
+ Alt+Shift+4
+ Alt+Shift+4
-
- Alt+Shift+7
- Alt+Shift+7
+
+ Fold All
+ Dobrar tudo
-
- Unfold Level 8
- Nível de desdobra 8
+
+ Alt+0
+ Alt+0
+ Alt+0
-
- Alt+Shift+8
- Alt+Shift+8
+
+ Unfold All
+ Desdobrar tudo
-
- Unfold Level 9
- Nível de desdobra 9
+
+ Alt+Shift+0
+ Alt+Shift+0
-
- Alt+Shift+9
- Alt+Shift+9
+
+ Fold Level 5
+ Nível de dobra 5
-
-
- Toggle Overtype
- Alternar entre tipos
+
+ Alt+5
+ Alt+5
-
- Ins
- Ins
+
+ Fold Level 6
+ Nível de dobra 6
-
- Debug Info...
- Informações de depuração...
+
+ Alt+6
+ Alt+6
-
- Cut Bookmarked Lines
- Cortar linhas com marcadores
+
+ Fold Level 7
+ Nível de dobra 7
-
- Copy Bookmarked Lines
- Copiar linhas com marcadores
+
+ Alt+7
+ Alt+7
-
- Delete Bookmarked Lines
- Eliminar linhas com marcadores
+
+ Fold Level 8
+ Nível de dobra 8
-
- Mark Style 1
- Estilo da seleção 1
+
+ Alt+8
+ Alt+8
-
- Mark Style 2
- Estilo da seleção 2
+
+ Fold Level 9
+ Nível de dobra 9
-
- Clear Style 1
- Remover o estilo 1
+
+ Alt+9
+ Alt+9
-
- Clear Style 2
- Remover o estilo 2
+
+ Unfold Level 5
+ Nível de desdobra 5
-
- Mark Style 3
- Estilo da seleção 3
+
+ Alt+Shift+5
+ Alt+Shift+5
-
- Clear Style 3
- Remover o estilo 3
+
+ Unfold Level 6
+ Nível de desdobra 6
-
-
- Clear All Styles
- Remover todos os estilos
+
+ Alt+Shift+6
+ Alt+Shift+6
-
- Remove Duplicate Lines
-
+
+ Unfold Level 7
+ Nível de desdobra 7
-
- Remove Consecutive Duplicate Lines
-
+
+ Alt+Shift+7
+ Alt+Shift+7
-
- Sort Lines Ascending
-
+
+ Unfold Level 8
+ Nível de desdobra 8
-
- Sort Lines Descending
-
+
+ Alt+Shift+8
+ Alt+Shift+8
-
- Sort Lines Ascending (Case-Insensitive)
-
+
+ Unfold Level 9
+ Nível de desdobra 9
-
- Sort Lines Descending (Case-Insensitive)
-
+
+ Alt+Shift+9
+ Alt+Shift+9
-
- Sort Lines by Length Ascending
-
+
+ Go to line
+ Ir para a linha
-
- Sort Lines by Length Descending
-
+
+ Line Number (1 - %1)
+ Número da linha (1 - %1)
-
- Reverse Line Order
-
+
+ Stop Recording
+ Parar gravação
-
- Go to line
- Ir para a linha
+
+ New %1
+ Novo %1
-
- Line Number (1 - %1)
- Número da linha (1 - %1)
+
+ Create File
+ Criar ficheiro
-
- Stop Recording
- Parar gravação
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> não existe. Pretende criá-lo?
-
- Debug Info
- Informações de depuração
+
+
+ Save file <b>%1</b>?
+ Guardar ficheiro <b>%1</b>?
-
- New %1
- Novo %1
+
+
+ Save File
+ Guardar ficheiro
-
- Create File
- Criar ficheiro
+
+ Open Folder as Workspace
+ Abrir pasta como área de trabalho
-
- <b>%1</b> does not exist. Do you want to create it?
- <b>%1</b> não existe. Pretende criá-lo?
+
+ Reload File
+ Recarregar ficheiro
-
-
- Save file <b>%1</b>?
- Guardar ficheiro <b>%1</b>?
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ Tem certeza de que pretende recarregar o <b>%1</b>? Todas as alterações não guardadas serão perdidas.
-
-
- Save File
- Guardar ficheiro
+
+ Save a Copy As
+ Guardar uma cópia como
-
- Open Folder as Workspace
- Abrir pasta como área de trabalho
+
+
+ Rename
+ Renomear
-
-
- Reload File
- Recarregar ficheiro
+
+ Name:
+ Nome:
-
- Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
- Tem certeza de que pretende recarregar o <b>%1</b>? Todas as alterações não guardadas serão perdidas.
+
+ Delete File
+ Eliminar ficheiro
-
- Save a Copy As
- Guardar uma cópia como
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ Tem a certeza de que pretende mover <b>%1</b> para o lixo?
-
-
- Rename
- Renomear
+
+ Error Deleting File
+ Erro ao eliminar ficheiro
-
- Name:
- Nome:
+
+ Something went wrong deleting <b>%1</b>?
+ Algo correu mal ao eliminar <b>%1</b>?
-
- Delete File
- Eliminar ficheiro
+
+ Administrator
+ Administrador
-
- Are you sure you want to move <b>%1</b> to the trash?
- Tem a certeza de que pretende mover <b>%1</b> para o lixo?
+
+ Error Saving File
+ Erro ao guardar ficheiro
-
- Error Deleting File
- Erro ao eliminar ficheiro
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ Ocorreu um erro ao guardar <b>%1</b><br><br>Erro: %2
-
- Something went wrong deleting <b>%1</b>?
- Algo correu mal ao eliminar <b>%1</b>?
+
+ Zoom: %1%
+ Zoom: %1%
-
- Administrator
- Administrador
+
+ No updates are available at this time.
+ De momento, não há atualizações disponíveis.
+
+
+ PreferencesDialog
-
- <b>%1</b> has been modified by another program. Do you want to reload it?
- <b>%1</b> foi modificado por outro programa. Deseja recarregá-lo?
+
+ Preferences
+ Preferências
-
- Read error
-
+
+ Show menu bar
+ Mostrar barra de menus
-
- Write error
-
+
+ Show toolbar
+ Mostrar barra de ferramentas
-
- Fatal error
-
+
+ Show status bar
+ Mostrar barra de estado
-
- Resource error
-
+
+ Restore previous session
+ Restaurar a sessão anterior
-
- Open error
-
+
+ Unsaved changes
+ Alterações não guardadas
-
- Abort error
-
+
+ Temporary files
+ Ficheiros temporários
-
- Timeout error
-
+
+ Combine search results
+ Combinar resultados de pesquisa
-
- Unspecified error
-
+
+ Translation:
+ Tradução:
-
- Remove error
-
+
+ Exit on last tab closed
+ Sair no último separador fechado
-
- Rename error
-
+
+ Default Font
+ Tipo de letra predefinida
-
- Position error
-
+
+ Font
+ Tipo de letra
-
- Resize error
-
+
+ Font Size
+ Tamanho do tipo de letra
-
- Permissions error
-
+
+ pt
+ pt
-
- Copy error
-
+
+ TextLabel
+ Legenda
-
- Unknown error (%1)
-
+
+ An application restart is required to apply certain settings.
+ É necessário reiniciar a aplicação para aplicar determinadas definições.
-
- Error Saving File
- Erro ao guardar ficheiro
+
+ Warning
+ Aviso
-
- An error occurred when saving <b>%1</b><br><br>Error: %2
- Ocorreu um erro ao guardar <b>%1</b><br><br>Erro: %2
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ Esta funcionalidade é experimental e não deve ser considerada segura para trabalhos de importância crítica. Pode levar a uma possível perda de dados. Utilize-a por sua conta e risco.
-
- Zoom: %1%
- Zoom: %1%
+
+ <System Default>
+ <System Default>
+
+
+ QObject
-
- No updates are available at this time.
- De momento, não há atualizações disponíveis.
+
+ List All Tabs
+ Listar todos os separadores
-
-
- PreferencesDialog
-
- Preferences
- Preferências
+
+ Detach Group
+ Retirar grupo
-
- Show menu bar
- Mostrar barra de menus
+
+ Minimize
+ Minimizar
-
- Show toolbar
- Mostrar barra de ferramentas
+
+ Close Tab
+ Fechar separador
+
+
+ QuickFindWidget
-
- Show status bar
- Mostrar barra de estado
+
+ Frame
+ Moldura
-
- Restore previous session
- Restaurar a sessão anterior
+
+ Match case
+ Corresponder minúsculas/maiúsculas
-
- Unsaved changes
- Alterações não guardadas
+
+ Aa
+ Aa
-
- Temporary files
- Ficheiros temporários
+
+ Match whole word
+ Corresponder palavra inteira
-
- Recenter find/replace dialog when opened
- Recolocar a janela localizar/substituir quando aberta
+
+ |A|
+ |A|
-
- Combine search results
- Combinar resultados de pesquisa
+
+ Use regular expression
+ Usar expressão regular
-
- Translation:
- Tradução:
+
+ . *
+ . *
-
- Exit on last tab closed
- Sair no último separador fechado
+
+ Alt+E
+ Alt+E
-
- Default Font
- Tipo de letra predefinida
+
+ Find...
+ Localizar...
-
- Font
- Tipo de letra
+
+ %L1/%L2
+ %L1/%L2
+
+
+ SearchResultsDock
-
- Font Size
- Tamanho do tipo de letra
+
+ Search Results
+ Resultados da pesquisa
-
- pt
- pt
+
+ Collapse All
+ Recolher tudo
-
- Default Line Endings
- Finais de linha predefinidos
+
+ Expand All
+ Expandir tudo
-
- Highlight URLs
- Destacar URLs
+
+ Delete Entry
+ Eliminar entrada
-
- Show Line Numbers
- Mostrar números de linha
+
+ Delete All
+ Eliminar tudo
+
+
+ Updater
-
-
- Default Directory
-
+
+ Would you like to download the update now?
+ Quer descarregar a atualização agora?
-
- Follow Current Document
-
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ Gostaria de descarregar a atualização agora? Esta é uma atualização obrigatória, sair agora fechará a aplicação
-
- Last Used Directory
-
+
+ Version %1 of %2 has been released!
+ A versão %1 de %2 foi lançada!
-
- ...
- ...
+
+ No updates are available for the moment
+ De momento, não há atualizações disponíveis
-
- TextLabel
- Legenda
+
+ Congratulations! You are running the latest version of %1
+ Parabéns! Está a executar a versão mais recente do %1
+
+
+ ads::CAutoHideTab
-
- An application restart is required to apply certain settings.
- É necessário reiniciar a aplicação para aplicar determinadas definições.
+
+ Detach
+ Retirar
-
- Warning
- Aviso
+
+ Pin To...
+ Fixar na...
-
- This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
- Esta funcionalidade é experimental e não deve ser considerada segura para trabalhos de importância crítica. Pode levar a uma possível perda de dados. Utilize-a por sua conta e risco.
+
+ Top
+ Superior
-
- System Default
- Predefinição do sistema
+
+ Left
+ Esquerda
-
- Windows (CR LF)
- Windows (CR LF)
+
+ Right
+ Direita
-
- Linux (LF)
- Linux (LF)
+
+ Bottom
+ Inferior
-
- Macintosh (CR)
- Macintosh (CR)
+
+ Unpin (Dock)
+ Desafixar (Doca)
-
- <System Default>
- <System Default>
+
+ Close
+ Fechar
-
-
- QuickFindWidget
+
+
+ ads::CDockAreaTitleBar
-
- Frame
- Moldura
+
+ Detach
+ Retirar
-
- Find...
- Localizar...
+
+ Detach Group
+ Retirar grupo
-
- Match case
- Corresponder minúsculas/maiúsculas
+
+
+ Unpin (Dock)
+ Desafixar (Doca)
-
- Aa
- Aa
+
+
+ Pin Group
+ Fixar grupo
-
- Match whole word
- Corresponder palavra inteira
+
+ Pin Group To...
+ Fixar grupo na...
-
- |A|
- |A|
+
+ Top
+ Superior
-
- Use regular expression
- Usar expressão regular
+
+ Left
+ Esquerda
-
- . *
- . *
+
+ Right
+ Direita
-
- Alt+E
- Alt+E
+
+ Bottom
+ Inferior
-
- %L1/%L2
- %L1/%L2
+
+
+ Minimize
+ Minimizar
+
+
+
+
+
+ Close
+ Fechar
+
+
+
+
+ Close Group
+ Fechar grupo
+
+
+
+ Close Other Groups
+ Fechar outros grupos
+
+
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+ Fixar separadores ativos (Premir Ctrl para fixar grupo)
+
+
+
+ Close Active Tab
+ Fechar separador ativo
+
+
+
+ ads::CDockManager
+
+
+ Show View
+ Mostrar visualização
+
+
+
+ ads::CDockWidgetTab
+
+
+ Detach
+ Retirar
+
+
+
+ Pin
+ Fixar
+
+
+
+ Pin To...
+ Fixar na...
-
-
- SearchResultsDock
-
- Search Results
- Resultados da pesquisa
+
+ Top
+ Superior
-
- Copy Results to Clipboard
- Copiar resultados para a área de transferência
+
+ Left
+ Esquerda
-
- Collapse All
- Recolher tudo
+
+ Right
+ Direita
-
- Expand All
- Expandir tudo
+
+ Bottom
+ Inferior
-
- Delete Entry
- Eliminar entrada
+
+ Close
+ Fechar
-
- Delete All
- Eliminar tudo
+
+ Close Others
+ Fechar outros
-
+
diff --git a/i18n/NotepadNext_ru_RU.ts b/i18n/NotepadNext_ru_RU.ts
new file mode 100644
index 000000000..b20e03284
--- /dev/null
+++ b/i18n/NotepadNext_ru_RU.ts
@@ -0,0 +1,2421 @@
+
+
+
+
+ ColumnEditorDialog
+
+
+ Column Mode
+ Режим столбцов
+
+
+
+ Text
+ Текст
+
+
+
+ Numbers
+ Числа
+
+
+
+ Start:
+ Начало:
+
+
+
+ Step:
+ Шаг:
+
+
+
+ DebugLogDock
+
+
+ Debug Log
+ Журнал отладки
+
+
+
+ Downloader
+
+
+
+ Updater
+
+
+
+
+
+
+ Downloading updates
+
+
+
+
+ Time remaining: 0 minutes
+
+
+
+
+ Open
+
+
+
+
+
+ Stop
+
+
+
+
+
+ Time remaining
+
+
+
+
+ unknown
+
+
+
+
+ Error
+
+
+
+
+ Cannot find downloaded update!
+
+
+
+
+ Close
+ Закрыть
+
+
+
+ Download complete!
+
+
+
+
+ The installer will open separately
+
+
+
+
+ Click "OK" to begin installing the update
+
+
+
+
+ In order to install the update, you may need to quit the application.
+
+
+
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+
+
+
+
+ Click the "Open" button to apply the update
+
+
+
+
+ Are you sure you want to cancel the download?
+
+
+
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+
+
+
+
+
+ %1 bytes
+
+
+
+
+
+ %1 KB
+
+
+
+
+
+ %1 MB
+
+
+
+
+ of
+
+
+
+
+ Downloading Updates
+
+
+
+
+ Time Remaining
+
+
+
+
+ Unknown
+
+
+
+
+ about %1 hours
+
+
+
+
+ about one hour
+
+
+
+
+ %1 minutes
+
+
+
+
+ 1 minute
+
+
+
+
+ %1 seconds
+
+
+
+
+ 1 second
+
+
+
+
+ EditorInfoStatusBar
+
+
+ Length: %L1 Lines: %L2
+ Длина: %L1 Строк: %L2
+
+
+
+ Sel: N/A
+ Выб: Н/Д
+
+
+
+ Sel: %L1 | %L2
+ Выб: %L1 | %L2
+
+
+
+ Ln: %L1 Col: %L2
+ Стр: %L1 Стл: %L2
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ ANSI
+ ANSI
+
+
+
+ UTF-8
+ UTF-8
+
+
+
+ EditorInspectorDock
+
+
+ Editor Inspector
+ Инспектор редактора
+
+
+
+ Position Information
+ Информация о положении
+
+
+
+ Current Position
+ Текущее положение
+
+
+
+ Current Position (x, y)
+ Текущее положение (x, y)
+
+
+
+ Column
+ Столбец
+
+
+
+ Current Style
+ Текущий стиль
+
+
+
+ Current Line
+ Текущая строка
+
+
+
+ Line Length
+ Длина строки
+
+
+
+ Line End Position
+ Положение конца строки
+
+
+
+ Line Indentation
+ Отступ строки
+
+
+
+ Line Indent Position
+ Положение отступа строки
+
+
+
+ Selection Information
+ Информация о выделении
+
+
+
+ Mode
+ Режим
+
+
+
+ Is Rectangle
+ Прямоугольник
+
+
+
+ Selection Empty
+ Выделение пусто
+
+
+
+ Main Selection
+ Основное выделение
+
+
+
+ # of Selections
+ # выделений
+
+
+
+ Multiple Selections
+ Множественные выделения
+
+
+
+ Document Information
+ Информация о документе
+
+
+
+ Length
+ Длина
+
+
+
+ Line Count
+ Количество строк
+
+
+
+ View Information
+ Сведения об области просмотра
+
+
+
+ Lines on Screen
+ Строк на экране
+
+
+
+ First Visible Line
+ Первая видимая строка
+
+
+
+ X Offset
+ Смещение по X
+
+
+
+ Fold Information
+ Информация о сворачивании
+
+
+
+ Visible From Doc Line
+ Отображаемая от строки документа
+
+
+
+ Doc Line From Visible
+ Строка документа от отображаемой
+
+
+
+ Fold Level
+ Уровень вложенности
+
+
+
+ Is Fold Header
+ Заголовок вложения
+
+
+
+ Fold Parent
+ Родитель вложения
+
+
+
+ Last Child
+ Последний дочерний
+
+
+
+ Contracted Fold Next
+ Следующее свернутое вложение
+
+
+
+ Caret
+ Каретка
+
+
+
+ Anchor
+ Якорь
+
+
+
+ Caret Virtual Space
+ Виртуальное пространство каретки
+
+
+
+ Anchor Virtual Space
+ Виртуальное пространство якоря
+
+
+
+ FileList
+
+
+ File List
+ Список файлов
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ Поиск
+
+
+
+ Search Mode
+ Режим поиска
+
+
+
+ &Normal
+ &Нормальный
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ Р&асширенный (\n, \r, \t, \0, \x...)
+
+
+
+ Re&gular expression
+ &Регулярное выражение
+
+
+
+ &. matches newline
+ &. - новая строка
+
+
+
+ Transparenc&y
+ Про&зрачность
+
+
+
+ On losing focus
+ При потере фокуса
+
+
+
+ Always
+ Всегда
+
+
+
+ Coun&t
+ &Подсчитать
+
+
+
+ &Replace
+ &Заменить
+
+
+
+ Replace &All
+ Заменить &все
+
+
+
+ Replace All in &Opened Documents
+ Заменить все во всех о&ткрытых документах
+
+
+
+ Find All in All &Opened Documents
+ Найти все во всех откр&ытых документах
+
+
+
+ Find All in Current Document
+ Найти все в текущем документе
+
+
+
+ Close
+ Закрыть
+
+
+
+ &Find:
+ &Найти:
+
+
+
+ Replace:
+ Заменить:
+
+
+
+ Backward direction
+ Обратное направление поиска
+
+
+
+ Match &whole word only
+ Только целые &слова
+
+
+
+ Match &case
+ Учитывать &регистр
+
+
+
+ Wra&p Around
+ За&циклить поиск
+
+
+
+ Replace
+ Замена
+
+
+
+
+ Replaced %Ln matches
+
+ Заменено %Ln соответствие
+ Заменено %Ln соответствия
+ Заменено %Ln соответствий
+
+
+
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ Достигнут конец документа. Обнаружено первое соответствие сверху.
+
+
+
+ No matches found.
+ Не найдено соответствий.
+
+
+
+ 1 occurrence was replaced
+ 1 совпадение заменено
+
+
+
+ No more occurrences were found
+ Больше совпадений не обнаружено
+
+
+
+ Found %Ln matches
+
+ Найдено %Ln соответствие
+ Найдено %Ln соответствия
+ Найдено %Ln соответствий
+
+
+
+
+ FolderAsWorkspaceDock
+
+
+ Folder as Workspace
+ Папка как Проект
+
+
+
+ HexViewerDock
+
+
+ Hex Viewer
+ Просмотр Hex
+
+
+
+ LanguageInspectorDock
+
+
+ Language Inspector
+ Инспектор языка
+
+
+
+ Language:
+ Язык:
+
+
+
+ Lexer:
+ Лексер:
+
+
+
+ Properties:
+ Свойства:
+
+
+
+ Property
+ Свойство
+
+
+
+ Type
+ Тип
+
+
+
+
+ Description
+ Описание
+
+
+
+ Value
+ Значение
+
+
+
+ Keywords:
+ Ключевые слова:
+
+
+
+ ID
+
+
+
+
+ Styles:
+ Стили:
+
+
+
+ TextLabel
+
+
+
+
+ Position %1 Style %2
+ Положение %1 Стиль %2
+
+
+
+ LuaConsoleDock
+
+
+ Lua Console
+ Консоль Lua
+
+
+
+ MacroEditorDialog
+
+
+ Macro Editor
+ Редактор макросов
+
+
+
+ Name
+ Имя
+
+
+
+ Shortcut
+ Комбинация клавиш
+
+
+
+ Steps:
+ Шаги:
+
+
+
+ Insert Macro Step
+ Вставить шаг макроса
+
+
+
+ Delete Selected Macro Step
+ Удалить выбранный шаг макроса
+
+
+
+ Move Selected Macro Step Up
+ Переместить выбранный шаг макроса вверх
+
+
+
+ Move Selected Macro Step Down
+ Переместить выбранный шаг макроса вниз
+
+
+
+ Copy Selected Macro
+ Копировать выбранный макрос
+
+
+
+ Delete Selected Macro
+ Удалить выбранный макрос
+
+
+
+ Delete Macro
+ Удалить макрос
+
+
+
+ Are you sure you want to delete <b>%1</b>?
+ Вы действительно хотите удалить <b>%1</b>?
+
+
+
+ (Copy)
+ (копия)
+
+
+
+ MacroRunDialog
+
+
+ Run a Macro Multiple Times
+ Многократный запуск
+
+
+
+ Macro:
+ Макрос:
+
+
+
+ Run Until End of File
+ Выполнять до конца файла
+
+
+
+ Execute...
+ Выполнить...
+
+
+
+ times
+ раз(а)
+
+
+
+ Run
+ Запускать
+
+
+
+ Cancel
+ Отмена
+
+
+
+ MacroSaveDialog
+
+
+ Save Macro
+ Сохранение макроса
+
+
+
+ Name:
+ Имя:
+
+
+
+ Shortcut:
+ Комбинация клавиш:
+
+
+
+ OK
+ ОК
+
+
+
+ Cancel
+ Отмена
+
+
+
+ MacroStepTableModel
+
+
+ Name
+ Имя
+
+
+
+ Text
+ Текст
+
+
+
+ MainWindow
+
+
+ Notepad Next[*]
+ Notepad Next[*]
+
+
+
+ +
+ +
+
+
+
+ &File
+ &Файл
+
+
+
+ Close More
+ Закрытие вкладок
+
+
+
+ &Recent Files
+ &Последние файлы
+
+
+
+
+ Export As
+ Экспортировать как
+
+
+
+ &Edit
+ &Правка
+
+
+
+ Copy More
+ Копировать в буфер
+
+
+
+ Indent
+ Отступ
+
+
+
+ EOL Conversion
+ Конвертация конца строк
+
+
+
+ Convert Case
+ Конвертация регистра
+
+
+
+ Line Operations
+ Операции со строками
+
+
+
+ Comment/Uncomment
+ Комментирование
+
+
+
+ Copy As
+ Копировать как
+
+
+
+ Encoding/Decoding
+ Кодирование/декодирование
+
+
+
+ Search
+ Поиск
+
+
+
+ Bookmarks
+ Закладки
+
+
+
+ &View
+ &Вид
+
+
+
+ &Zoom
+ &Масштаб
+
+
+
+ Show Symbol
+ Показать символ
+
+
+
+ Fold Level
+ Уровень вложенности
+
+
+
+ Unfold Level
+
+
+
+
+ Language
+ Язык
+
+
+
+ Settings
+ Опции
+
+
+
+ Macro
+ Макросы
+
+
+
+ Help
+ Справка
+
+
+
+ Encoding
+ Кодировка
+
+
+
+ Main Tool Bar
+ Основная панель инструментов
+
+
+
+ &New
+ &Новый
+
+
+
+ Create a new file
+ Создать новый файл
+
+
+
+ Ctrl+N
+
+
+
+
+ &Open...
+ &Открыть...
+
+
+
+ Ctrl+O
+
+
+
+
+ &Save
+ &Сохранить
+
+
+
+ Save
+ Сохранить
+
+
+
+ Ctrl+S
+ Ctrl+S
+
+
+
+ E&xit
+ &Выход
+
+
+
+ &Undo
+ &Отмена
+
+
+
+ Ctrl+Z
+ Ctrl+Z
+
+
+
+ &Redo
+ &Повтор
+
+
+
+ Ctrl+Y
+
+
+
+
+ Cu&t
+ В&ырезать
+
+
+
+ Ctrl+X
+
+
+
+
+ &Copy
+ &Копировать
+
+
+
+ Ctrl+C
+
+
+
+
+ &Paste
+ В&ставить
+
+
+
+ Ctrl+V
+
+
+
+
+ &Delete
+ &Удалить
+
+
+
+ Del
+ Del
+
+
+
+ Copy Full Path
+ Копировать полный путь
+
+
+
+ Copy File Name
+ Копировать имя файла
+
+
+
+ Copy File Directory
+ Копировать путь к файлу
+
+
+
+ &Close
+ &Закрыть
+
+
+
+ Close the current file
+ Закрыть текущий файл
+
+
+
+ Ctrl+W
+ Ctrl+W
+
+
+
+ Save &As...
+ Сох&ранить как...
+
+
+
+ Ctrl+Alt+S
+ Ctrl+Alt+S
+
+
+
+ Save a Copy As...
+ Сохранить копию как...
+
+
+
+ Sav&e All
+ Сохра&нить все
+
+
+
+ Ctrl+Shift+S
+ Ctrl+Shift+S
+
+
+
+ Select A&ll
+ Выделить &все
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ Increase Indent
+ Увеличить отступ
+
+
+
+ Decrease Indent
+ Уменьшить отступ
+
+
+
+ Rename...
+ Переименовать...
+
+
+
+ Re&load
+ &Перезагрузить
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ UPPER CASE
+ ВЕРХНИЙ РЕГИСТР
+
+
+
+ Convert text to upper case
+ Конвертировать текст в верхний регистр
+
+
+
+ lower case
+ нижний регистр
+
+
+
+ Convert text to lower case
+ Конвертировать текст в нижний регистр
+
+
+
+ Duplicate Current Line
+ Дублировать текущую строку
+
+
+
+ Alt+Down
+
+
+
+
+ Split Lines
+ Разбить строки
+
+
+
+ Join Lines
+ Объединить строки
+
+
+
+ Ctrl+J
+ Ctrl+J
+
+
+
+ Move Selected Lines Up
+ Переместить выбранные строки вверх
+
+
+
+ Ctrl+Shift+Up
+ Ctrl+Shift+Up
+
+
+
+ Move Selected Lines Down
+ Переместить выбранные строки вниз
+
+
+
+ Ctrl+Shift+Down
+ Ctrl+Shift+Down
+
+
+
+ Clos&e All
+ Зак&рыть все
+
+
+
+ Close All files
+ Закрыть все файлы
+
+
+
+ Ctrl+Shift+W
+ Ctrl+Shift+W
+
+
+
+ Close All Except Active Document
+ Закрыть все кроме текущей
+
+
+
+ Close All to the Left
+ Закрыть все вкладки слева
+
+
+
+ Close All to the Right
+ Закрыть все вкладки справа
+
+
+
+ Zoom &In
+ У&величить масштаб
+
+
+
+ Ctrl++
+ Ctrl++
+
+
+
+ Zoom &Out
+ &Уменьшить масштаб
+
+
+
+ Ctrl+-
+ Ctrl+-
+
+
+
+ Reset Zoom
+ Сбросить масштаб
+
+
+
+ Ctrl+0
+ Ctrl+0
+
+
+
+ About Qt
+ О Qt
+
+
+
+ About Notepad Next
+ О Notepad Next
+
+
+
+ Show Whitespace
+ Показывать пустое пространство
+
+
+
+ Show End of Line
+ Показывать символ конца строки
+
+
+
+ Show All Characters
+ Показывать все символы
+
+
+
+ Show Indent Guide
+ Показывать направляющие отступов
+
+
+
+ Show Wrap Symbol
+ Отображать знак Перенос строк
+
+
+
+ Word Wrap
+ Перенос строк
+
+
+
+ Restore Recently Closed File
+ Открыть последний закрытый файл
+
+
+
+ Ctrl+Shift+T
+
+
+
+
+ Open All Recent Files
+ Открыть все недавние файлы
+
+
+
+ Clear Recent Files List
+ Очистить список недавних файлов
+
+
+
+ &Find...
+ &Найти...
+
+
+
+ Ctrl+F
+ Ctrl+F
+
+
+
+ Find in Files...
+ Найти в файлах...
+
+
+
+ Find &Next
+ Искать &далее
+
+
+
+ F3
+ F3
+
+
+
+ Find &Previous
+ Искать &ранее
+
+
+
+ &Replace...
+ &Заменить...
+
+
+
+ Ctrl+H
+ Ctrl+H
+
+
+
+ Full Screen
+ Полный экран
+
+
+
+ F11
+ F11
+
+
+
+
+ Start Recording
+ Начать запись
+
+
+
+ Playback
+ Воспроизвести
+
+
+
+ Ctrl+Shift+P
+ Ctrl+Shift+
+
+
+
+ Save Current Recorded Macro...
+ Сохранить записанный макрос...
+
+
+
+ Run a Macro Multiple Times...
+ Многократный запуск...
+
+
+
+ Preferences...
+ Настройки...
+
+
+
+ Quick Find
+ Быстрый поиск
+
+
+
+ Ctrl+Alt+I
+ Ctrl+Alt+I
+
+
+
+ Select Next Instance
+ Выделить следующий экземпляр
+
+
+
+ Ctrl+D
+ Ctrl+D
+
+
+
+ Move to Trash...
+ Убрать в корзину...
+
+
+
+ Move to Trash
+ Убрать в корзину
+
+
+
+ Check for Updates...
+ Проверить обновления...
+
+
+
+ &Go to Line...
+ &Перейти к строке...
+
+
+
+ Ctrl+G
+ Ctrl+G
+
+
+
+ Print...
+ Печать...
+
+
+
+ Ctrl+P
+ Ctrl+P
+
+
+
+ Open Folder as Workspace...
+ Открыть папку как Проект...
+
+
+
+ Toggle Single Line Comment
+ Комментирование строки (включить/выключить)
+
+
+
+ Ctrl+/
+ Ctrl+/
+
+
+
+ Single Line Comment
+ Комментировать строку
+
+
+
+ Ctrl+K
+ Ctrl+K
+
+
+
+ Single Line Uncomment
+ Раскомментировать строку
+
+
+
+ Ctrl+Shift+K
+ Ctrl+Shift+K
+
+
+
+ Edit Macros...
+ Редактирование макросов...
+
+
+
+ This is not currently implemented
+ Это еще не реализовано
+
+
+
+ Column Mode...
+ Режим столбцов...
+
+
+
+ Export as HTML...
+ Экспортировать как HTML...
+
+
+
+ Export as RTF...
+ Экспортировать как RTF...
+
+
+
+ Copy as HTML
+ Копировать как HTML
+
+
+
+ Copy as RTF
+ Копировать как RTF
+
+
+
+ Base 64 Encode
+ Кодирование Base 64
+
+
+
+ URL Encode
+ Кодирование URL
+
+
+
+ Base 64 Decode
+ Декодирование Base 64
+
+
+
+ URL Decode
+ Декодирование URL
+
+
+
+ Copy URL
+ Копировать URL
+
+
+
+ Remove Empty Lines
+ Удалить пустые строки
+
+
+
+
+ Show in Explorer
+ Открыть в Проводнике
+
+
+
+ Open Command Prompt Here
+ Открыть Командную строку здесь
+
+
+
+ Toggle Bookmark
+ Закладка (поставить/снять)
+
+
+
+ Ctrl+F2
+ Ctrl+F2
+
+
+
+ Next Bookmark
+ Следующая закладка
+
+
+
+ F2
+ F2
+
+
+
+ Previous Bookmark
+ Предыдущая закладка
+
+
+
+ Shift+F2
+ Shift+F2
+
+
+
+ Clear Bookmarks
+ Очистить закладки
+
+
+
+ Invert Bookmarks
+ Инвертировать закладки
+
+
+
+ Next Tab
+
+
+
+
+ Ctrl+Tab
+
+
+
+
+ Previous Tab
+
+
+
+
+ Ctrl+Shift+Tab
+
+
+
+
+ Fold Level 1
+
+
+
+
+ Alt+1
+
+
+
+
+ Fold Level 2
+
+
+
+
+ Alt+2
+
+
+
+
+ Fold Level 3
+
+
+
+
+ Alt+3
+
+
+
+
+ Fold Level 4
+
+
+
+
+ Alt+4
+
+
+
+
+ Unfold Level 1
+
+
+
+
+ Alt+Shift+1
+
+
+
+
+ Unfold Level 2
+
+
+
+
+ Alt+Shift+2
+
+
+
+
+ Unfold Level 3
+
+
+
+
+ Alt+Shift+3
+
+
+
+
+ Unfold Level 4
+
+
+
+
+ Alt+Shift+4
+
+
+
+
+ Fold All
+
+
+
+
+ Alt+0
+
+
+
+
+ Unfold All
+
+
+
+
+ Alt+Shift+0
+
+
+
+
+ Fold Level 5
+
+
+
+
+ Alt+5
+
+
+
+
+ Fold Level 6
+
+
+
+
+ Alt+6
+
+
+
+
+ Fold Level 7
+
+
+
+
+ Alt+7
+
+
+
+
+ Fold Level 8
+
+
+
+
+ Alt+8
+
+
+
+
+ Fold Level 9
+
+
+
+
+ Alt+9
+
+
+
+
+ Unfold Level 5
+
+
+
+
+ Alt+Shift+5
+
+
+
+
+ Unfold Level 6
+
+
+
+
+ Alt+Shift+6
+
+
+
+
+ Unfold Level 7
+
+
+
+
+ Alt+Shift+7
+
+
+
+
+ Unfold Level 8
+
+
+
+
+ Alt+Shift+8
+
+
+
+
+ Unfold Level 9
+
+
+
+
+ Alt+Shift+9
+
+
+
+
+ Go to line
+ Перейти к строке
+
+
+
+ Line Number (1 - %1)
+ Номер строки (1 - %1)
+
+
+
+ Stop Recording
+ Остановить запись
+
+
+
+ New %1
+ Новый %1
+
+
+
+ Create File
+ Создать файл
+
+
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> не существует. Хотите создать его?
+
+
+
+
+ Save file <b>%1</b>?
+ Сохранить файл <b>%1</b>?
+
+
+
+
+ Save File
+ Сохранить файл
+
+
+
+ Open Folder as Workspace
+ Открыть папку как Проект
+
+
+
+ Reload File
+ Перезагрузить файл
+
+
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ Уверены, что хотите перезагрузить <b>%1</b>? Все несохраненные изменения будут потеряны.
+
+
+
+ Save a Copy As
+ Сохранить копию как
+
+
+
+
+ Rename
+ Переименовать
+
+
+
+ Name:
+ Имя:
+
+
+
+ Delete File
+ Удалить файл
+
+
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ Вы действительно хотите переместить <b>%1</b> в корзину?
+
+
+
+ Error Deleting File
+ Ошибка при удалении файла
+
+
+
+ Something went wrong deleting <b>%1</b>?
+ Что-то пошло не так при удалении <b>%1</b>?
+
+
+
+ Administrator
+ Администратор
+
+
+
+ Error Saving File
+ Ошибка при сохранении файла
+
+
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ Произошла ошибка при сохранении <b>%1</b><br><br>Ошибка: %2
+
+
+
+ Zoom: %1%
+ Масштаб: %1%
+
+
+
+ No updates are available at this time.
+ В настоящее время обновлений нет.
+
+
+
+ PreferencesDialog
+
+
+ Preferences
+ Настройки
+
+
+
+ Show menu bar
+ Показать строку меню
+
+
+
+ Show toolbar
+ Показать панель инструментов
+
+
+
+ Show status bar
+ Показать строку состояния
+
+
+
+ Restore previous session
+ Восстанавливать предыдущую сессию
+
+
+
+ Unsaved changes
+ Несохраненные изменения
+
+
+
+ Temporary files
+ Временные файлы
+
+
+
+ Combine search results
+ Комбинировать результаты поиска
+
+
+
+ Translation:
+ Перевод:
+
+
+
+ Exit on last tab closed
+
+
+
+
+ Default Font
+
+
+
+
+ Font
+
+
+
+
+ Font Size
+
+
+
+
+ pt
+
+
+
+
+ TextLabel
+ TextLabel
+
+
+
+ An application restart is required to apply certain settings.
+ Для применения определенных настроек требуется перезапуск приложения.
+
+
+
+ Warning
+ Предупреждение
+
+
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ Эта функция является экспериментальной, и ее не следует считать безопасной для критически важной работы. Это может привести к возможной потере данных. Используйте на свой риск.
+
+
+
+ <System Default>
+ <Использовать системный>
+
+
+
+ QObject
+
+
+ List All Tabs
+
+
+
+
+ Detach Group
+
+
+
+
+ Minimize
+
+
+
+
+ Close Tab
+
+
+
+
+ QuickFindWidget
+
+
+ Frame
+ Фрейм
+
+
+
+ Match case
+ Учитывать регистр
+
+
+
+ Aa
+ Aa
+
+
+
+ Match whole word
+ Искать целые слова
+
+
+
+ |A|
+ |A|
+
+
+
+ Use regular expression
+ Используйте регулярное выражение
+
+
+
+ . *
+ . *
+
+
+
+ Alt+E
+ Alt+E
+
+
+
+ Find...
+ Поиск...
+
+
+
+ %L1/%L2
+
+
+
+
+ SearchResultsDock
+
+
+ Search Results
+ Результаты поиска
+
+
+
+ Collapse All
+ Свернуть все
+
+
+
+ Expand All
+ Развернуть все
+
+
+
+ Delete Entry
+ Удалить запись
+
+
+
+ Delete All
+ Удалить все
+
+
+
+ Updater
+
+
+ Would you like to download the update now?
+
+
+
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+
+
+
+
+ Version %1 of %2 has been released!
+
+
+
+
+ No updates are available for the moment
+
+
+
+
+ Congratulations! You are running the latest version of %1
+
+
+
+
+ ads::CAutoHideTab
+
+
+ Detach
+
+
+
+
+ Pin To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+ Unpin (Dock)
+
+
+
+
+ Close
+ Закрыть
+
+
+
+ ads::CDockAreaTitleBar
+
+
+ Detach
+
+
+
+
+ Detach Group
+
+
+
+
+
+ Unpin (Dock)
+
+
+
+
+
+ Pin Group
+
+
+
+
+ Pin Group To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+
+ Minimize
+
+
+
+
+
+
+ Close
+ Закрыть
+
+
+
+
+ Close Group
+
+
+
+
+ Close Other Groups
+
+
+
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+
+
+
+
+ Close Active Tab
+
+
+
+
+ ads::CDockManager
+
+
+ Show View
+
+
+
+
+ ads::CDockWidgetTab
+
+
+ Detach
+
+
+
+
+ Pin
+
+
+
+
+ Pin To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+ Close
+ Закрыть
+
+
+
+ Close Others
+
+
+
+
diff --git a/i18n/NotepadNext_sv_SE.ts b/i18n/NotepadNext_sv_SE.ts
new file mode 100644
index 000000000..24feba873
--- /dev/null
+++ b/i18n/NotepadNext_sv_SE.ts
@@ -0,0 +1,2511 @@
+
+
+
+
+ ColumnEditorDialog
+
+
+ Column Mode
+ Kolumnläge
+
+
+
+ Text
+ Text
+
+
+
+ Numbers
+ Siffror
+
+
+
+ Start:
+ Start:
+
+
+
+ Step:
+ Steg:
+
+
+
+ DebugLogDock
+
+
+ Debug Log
+ Felsökningslogg
+
+
+
+ Downloader
+
+
+
+ Updater
+ Uppdaterare
+
+
+
+
+
+ Downloading updates
+ Laddar ner uppdateringar
+
+
+
+ Time remaining: 0 minutes
+ Återstående tid: 0 minuter
+
+
+
+ Open
+ Öppna
+
+
+
+
+ Stop
+ Stopp
+
+
+
+
+ Time remaining
+ Återstående tid
+
+
+
+ unknown
+ okänd
+
+
+
+ Error
+ Fel
+
+
+
+ Cannot find downloaded update!
+ Kan inte hitta nerladdad uppdatering!
+
+
+
+ Close
+ Stäng
+
+
+
+ Download complete!
+ Nerladdning slutförd!
+
+
+
+ The installer will open separately
+ Installeraren öppnas separat
+
+
+
+ Click "OK" to begin installing the update
+ Tryck "OK" för att installera uppdateringen
+
+
+
+ In order to install the update, you may need to quit the application.
+ Du kanske måste avsluta programmet för att installera uppdateringen.
+
+
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+ Du kanske måste avsluta programmet för att installera uppdateringen. Detta är en obligatorisk uppdatering, avslutar du nu. stängs programmet
+
+
+
+ Click the "Open" button to apply the update
+ Tryck på "Öppna" för att tillämpa uppdateringen
+
+
+
+ Are you sure you want to cancel the download?
+ Vill du verkligen avbryta nerladdningen?
+
+
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ Vill du verkligen avbryta nerladdningen? Detta är en obligatorisk uppdatering, avslutar du nu. stängs programmet
+
+
+
+
+ %1 bytes
+ %1 byte
+
+
+
+
+ %1 KB
+ %1 KB
+
+
+
+
+ %1 MB
+ %1 MB
+
+
+
+ of
+ av
+
+
+
+ Downloading Updates
+ Laddar ner uppdateringar
+
+
+
+ Time Remaining
+ Återstående tid
+
+
+
+ Unknown
+ Okänd
+
+
+
+ about %1 hours
+ ca: %1 timmar
+
+
+
+ about one hour
+ ca: 1 timma
+
+
+
+ %1 minutes
+ %1 minuter
+
+
+
+ 1 minute
+ 1 minut
+
+
+
+ %1 seconds
+ %1 sekunder
+
+
+
+ 1 second
+ 1 sekund
+
+
+
+ EditorInfoStatusBar
+
+ Length: %1 Lines: %2
+ Längd: %1 Rader: %2
+
+
+
+ Sel: N/A
+ Markerat: Ej tillämpligt
+
+
+ Sel: %1 | %2
+ Markerat: %1 | %2
+
+
+ Ln: %1 Col: %2
+ Rad: %1 Col: %2
+
+
+
+ Length: %L1 Lines: %L2
+ Längd: %L1 Rader: %L2
+
+
+
+ Sel: %L1 | %L2
+ Mark: %L1 | %L2
+
+
+
+ Ln: %L1 Col: %L2
+ Rad: %L1 Kol: %L2
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ ANSI
+ ANSI
+
+
+
+ UTF-8
+ UTF-8
+
+
+
+ EditorInspectorDock
+
+
+ Editor Inspector
+ Redigeringsinspektör
+
+
+
+ Current Position
+ Aktuell position
+
+
+
+ Current Position (x, y)
+ Aktuell position (x, y)
+
+
+
+ Column
+ Kolumn
+
+
+
+ Current Style
+ Aktuell stil
+
+
+
+ Current Line
+ Aktuell rad
+
+
+
+ Line Length
+ Radlängd
+
+
+
+ Line End Position
+ Radslutsposition
+
+
+
+ Line Indentation
+ Radindrag
+
+
+
+ Line Indent Position
+ Radindragsposition
+
+
+
+ Selection Information
+ Markeringsinformation
+
+
+
+ Is Rectangle
+ Är rektangel
+
+
+
+ Selection Empty
+ Markering tom
+
+
+
+ Main Selection
+ Huvudsaklig markering
+
+
+
+ # of Selections
+ # av markerat
+
+
+
+ Multiple Selections
+ Flera markeringar
+
+
+
+ Document Information
+ Dokumentinformation
+
+
+
+ Position Information
+ Positionsinformation
+
+
+
+ Mode
+ Läge
+
+
+
+ Length
+ Längd
+
+
+
+ Line Count
+ Radantal
+
+
+
+ View Information
+ Visa information
+
+
+
+ Lines on Screen
+ Rader på skärmen
+
+
+
+ First Visible Line
+ Första synliga rad
+
+
+
+ X Offset
+ X-förskjutning
+
+
+
+ Fold Information
+ Radbrytningsinformation
+
+
+
+ Visible From Doc Line
+ Synlig från dokumentrad
+
+
+
+ Doc Line From Visible
+ Dokumentrad från synlig
+
+
+
+ Fold Level
+ Radbrytningsnivå
+
+
+
+ Is Fold Header
+ Är radbrytningsrubrik
+
+
+
+ Fold Parent
+ Radbryt överordnad
+
+
+
+ Last Child
+ Senast underordnad
+
+
+
+ Contracted Fold Next
+ Kontrakterad radbryt nästa
+
+
+
+ Caret
+ Textmarkör
+
+
+
+ Anchor
+ Ankare
+
+
+
+ Caret Virtual Space
+ Virtuellt avstånd för textmarkör
+
+
+
+ Anchor Virtual Space
+ Virtuellt avstånd för ankare
+
+
+
+ FileList
+
+
+ File List
+ Fillista
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ Sök
+
+
+
+ Search Mode
+ Sökläge
+
+
+
+ &Normal
+ &Normal
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ &Utökat (\n, \r, \t, \0, \x...)
+
+
+
+ Re&gular expression
+ &Regular expression
+
+
+
+ &. matches newline
+ &. matchar ny rad
+
+
+
+ Transparenc&y
+ &Transparens
+
+
+
+ On losing focus
+ Vid förlorat fokus
+
+
+
+ Always
+ Alltid
+
+
+
+ Coun&t
+ &Räkna
+
+
+
+ &Replace
+ &Ersätt
+
+
+
+ Replace &All
+ Ersätt &alla
+
+
+
+ Replace All in &Opened Documents
+ Ersätt alla i &öppna dokument
+
+
+
+ Find All in All &Opened Documents
+ Sök alla i &öppna dokument
+
+
+
+ Find All in Current Document
+ Sök alla i aktuellt dokument
+
+
+
+ Close
+ Stäng
+
+
+
+ &Find:
+ &Sök:
+
+
+
+ Replace:
+ Ersätt:
+
+
+ &Find what:
+ &Sök vad:
+
+
+ Replace with:
+ Ersätt med:
+
+
+
+ Backward direction
+ Bakåtriktning
+
+
+
+ Match &whole word only
+ Matcha endast &hela ord
+
+
+
+ Match &case
+ Matcha &skiftläge
+
+
+
+ Wra&p Around
+ &Radbryt
+
+
+
+ Replace
+ Ersätt
+
+
+ Replaced %L1 matches
+ Ersatte %L1 träffar
+
+
+
+
+ Replaced %Ln matches
+
+ Ersatte %Ln träff
+ Ersatte %Ln träffar
+
+
+
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ Slutet på dokumentet har nåtts. Hittade 1:a förekomsten från toppen.
+
+
+
+ No matches found.
+ Inga träffar.
+
+
+
+ 1 occurrence was replaced
+ 1 förekomst ersattes
+
+
+
+ No more occurrences were found
+ Inga fler förekomster hittades
+
+
+
+ Found %Ln matches
+
+ Hittade %Ln träff
+ Hittade %Ln träffar
+
+
+
+ Found %L1 matches
+ Hittade %L1 träffar
+
+
+ Replaced %1 matches
+ %1 ersattes
+
+
+ Found %1 matches
+ %1 träff(ar)
+
+
+
+ FolderAsWorkspaceDock
+
+
+ Folder as Workspace
+ Mapp som arbetsyta
+
+
+
+ HexViewerDock
+
+
+ Hex Viewer
+ Hexläsare
+
+
+
+ LanguageInspectorDock
+
+
+ Language Inspector
+ Språkinspektör
+
+
+
+ Language:
+ Språk:
+
+
+
+ Lexer:
+ Lexer:
+
+
+
+ Properties:
+ Egenskaper:
+
+
+
+ Property
+ Egenskap
+
+
+
+ Type
+ Typ
+
+
+
+
+ Description
+ Beskrivning
+
+
+
+ Value
+ Värde
+
+
+
+ Keywords:
+ Nyckelord:
+
+
+
+ ID
+ ID
+
+
+
+ Styles:
+ Stilar:
+
+
+
+ TextLabel
+ TextEtikett
+
+
+ Postion %1 Style %2
+ Position %1 Stil %2
+
+
+
+ Position %1 Style %2
+ Position %1 Stil %2
+
+
+
+ LuaConsoleDock
+
+
+ Lua Console
+ Lua-konsol
+
+
+
+ MacroEditorDialog
+
+
+ Macro Editor
+ Makroredigerare
+
+
+
+ Name
+ Namn
+
+
+
+ Shortcut
+ Genväg
+
+
+
+ Steps:
+ Steg:
+
+
+
+ Insert Macro Step
+ Infoga makrosteg
+
+
+
+ Delete Selected Macro Step
+ Ta bort markerat makrosteg
+
+
+
+ Move Selected Macro Step Up
+ Flytta upp markerat makrosteg
+
+
+
+ Move Selected Macro Step Down
+ Flytta ner markerat makrosteg
+
+
+
+ Copy Selected Macro
+ Kopiera markerat makrosteg
+
+
+
+ Delete Selected Macro
+ Ta bort markerat makrosteg
+
+
+
+ Delete Macro
+ Ta bort makro
+
+
+
+ Are you sure you want to delete <b>%1</b>?
+ Vill du verkligen ta bort <b>%1</b>?
+
+
+
+ (Copy)
+ (Kopia)
+
+
+
+ MacroRunDialog
+
+
+ Run a Macro Multiple Times
+ Kör ett makro flera gånger
+
+
+
+ Macro:
+ Makro:
+
+
+
+ Run Until End of File
+ Kör till slutet på filen
+
+
+
+ Execute...
+ Exekvera...
+
+
+
+ times
+ gånger
+
+
+
+ Run
+ Kör
+
+
+
+ Cancel
+ Avbryt
+
+
+
+ MacroSaveDialog
+
+ Dialog
+ Dialog
+
+
+
+ Save Macro
+ Spara makro
+
+
+
+ Name:
+ Namn:
+
+
+
+ Shortcut:
+ Genväg:
+
+
+
+ OK
+ OK
+
+
+
+ Cancel
+ Avbryt
+
+
+
+ MacroStepTableModel
+
+
+ Name
+ Namn
+
+
+
+ Text
+ Text
+
+
+
+ MainWindow
+
+
+ Notepad Next[*]
+ Notepad Next[*]
+
+
+
+ +
+ +
+
+
+
+ &File
+ &Arkiv
+
+
+
+ Close More
+ Stäng mer
+
+
+
+ &Recent Files
+ &Tidigare filer
+
+
+
+ &Edit
+ &Redigera
+
+
+
+ Copy More
+ Kopiera mer
+
+
+
+ Indent
+ Indrag
+
+
+
+ EOL Conversion
+ EOL-konvertering
+
+
+
+ Convert Case
+ Konvertera skiftläge
+
+
+
+ Line Operations
+ Radoperationer
+
+
+
+ Comment/Uncomment
+ Kommentera/Avkommentera
+
+
+
+ Search
+ Sök
+
+
+
+ &View
+ &Visa
+
+
+
+ &Zoom
+ &Zoom
+
+
+
+ Show Symbol
+ Visa symbol
+
+
+
+ Language
+ Språk
+
+
+
+ Settings
+ Inställningar
+
+
+
+ Macro
+ Makro
+
+
+
+ Help
+ Hjälp
+
+
+
+ Encoding
+ Kodning
+
+
+ Run
+ Kör
+
+
+
+ Main Tool Bar
+ Verktygsfält
+
+
+
+ &New
+ &Nytt
+
+
+
+ Create a new file
+ Skapa en ny fil
+
+
+
+ Ctrl+N
+ Ctrl+N
+
+
+
+ &Open...
+ &Öppna...
+
+
+
+ Ctrl+O
+ Ctrl+O
+
+
+
+ &Save
+ &Spara
+
+
+
+ Save
+ Spara
+
+
+
+ Ctrl+S
+ Ctrl+S
+
+
+
+ E&xit
+ A&vsluta
+
+
+ Alt+F4
+ Alt+F4
+
+
+
+ &Undo
+ &Ångra
+
+
+
+ Ctrl+Z
+ Ctrl+Z
+
+
+
+ &Redo
+ &Upprepa
+
+
+
+ Ctrl+Y
+ Ctrl+Y
+
+
+
+ Cu&t
+ Kli&pp ut
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Copy
+ &Kopiera
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Paste
+ Klistra &in
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ &Delete
+ &Ta bort
+
+
+
+ Del
+ Del
+
+
+
+ Copy Full Path
+ Kopiera fullständig sökväg
+
+
+
+ Copy File Name
+ Kopiera filnamn
+
+
+
+ Copy File Directory
+ Kopiera filens mappnamn
+
+
+
+ &Close
+ St&äng
+
+
+
+ Close the current file
+ Stäng aktuell fil
+
+
+
+ Ctrl+W
+ Ctrl+W
+
+
+
+ Save &As...
+ Spara s&om...
+
+
+
+ Ctrl+Alt+S
+ Ctrl+Alt+S
+
+
+
+ Save a Copy As...
+ Spara en kopia som...
+
+
+
+ Sav&e All
+ Spa&ra alla
+
+
+
+ Ctrl+Shift+S
+ Ctrl+Shift+S
+
+
+
+ Select A&ll
+ &Markera alla
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ Increase Indent
+ Öka indrag
+
+
+
+ Decrease Indent
+ Minska indrag
+
+
+
+ Rename...
+ Byt namn...
+
+
+
+ Re&load
+ &Läs om från disk
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ UPPER CASE
+ VERSALER
+
+
+
+ Convert text to upper case
+ Konvertera text till VERSALER
+
+
+
+ lower case
+ gemener
+
+
+
+ Convert text to lower case
+ Konvertera text till gemener
+
+
+
+ Duplicate Current Line
+ Duplicera aktuell rad
+
+
+
+ Alt+Down
+ Alt+Nerpil
+
+
+
+ Split Lines
+ Dela rader
+
+
+
+ Join Lines
+ Sammanfoga rader
+
+
+
+ Ctrl+J
+ Ctrl+J
+
+
+
+ Move Selected Lines Up
+ Flytta markerade rader uppåt
+
+
+
+ Ctrl+Shift+Up
+ Ctrl+Shift+Up
+
+
+
+ Move Selected Lines Down
+ Flytta markerade rader neråt
+
+
+
+ Ctrl+Shift+Down
+ Ctrl+Shift+Down
+
+
+
+ Clos&e All
+ S&täng alla
+
+
+
+ Close All files
+ Stäng alla filer
+
+
+
+ Ctrl+Shift+W
+ Ctrl+Shift+W
+
+
+
+ Close All Except Active Document
+ Stäng alla utom aktivt dokument
+
+
+
+ Close All to the Left
+ Stäng alla till vänster
+
+
+
+ Close All to the Right
+ Stäng alla till höger
+
+
+
+ Zoom &In
+ Zooma &in
+
+
+
+ Ctrl++
+ Ctrl++
+
+
+
+ Zoom &Out
+ Zooma &ut
+
+
+
+ Ctrl+-
+ Ctrl+-
+
+
+
+ Reset Zoom
+ Återställ zoom
+
+
+
+ Ctrl+0
+ Ctrl+0
+
+
+
+ Toggle Single Line Comment
+ Växla utkommentering
+
+
+
+ Ctrl+/
+ Ctrl+/
+
+
+
+ Single Line Comment
+ Kommentera ut enkelrad
+
+
+
+ Ctrl+K
+ Ctrl+K
+
+
+
+ Single Line Uncomment
+ Ta bort utkommentering
+
+
+
+ Ctrl+Shift+K
+ Ctrl+Shift+K
+
+
+
+ Edit Macros...
+ Redigera makron...
+
+
+
+ This is not currently implemented
+ Detta är ännu inte implementerat
+
+
+
+ Column Mode...
+ Kolumnläge...
+
+
+
+ Next Tab
+ Nästa flik
+
+
+
+ Ctrl+Tab
+ Ctrl+Tab
+
+
+
+ Previous Tab
+ Föregående flik
+
+
+
+ Ctrl+Shift+Tab
+ Ctrl+Shift+Tab
+
+
+
+ Fold Level 1
+ Komprimera nivå 1
+
+
+
+ Alt+1
+ Alt+1
+
+
+
+ Fold Level 2
+ Komprimera nivå 2
+
+
+
+ Alt+2
+ Alt+2
+
+
+
+ Fold Level 3
+ Komprimera nivå 3
+
+
+
+ Alt+3
+ Alt+3
+
+
+
+ Fold Level 4
+ Komprimera nivå 4
+
+
+
+ Alt+4
+ Alt+4
+
+
+
+ Unfold Level 1
+ Expandera nivå 1
+
+
+
+ Alt+Shift+1
+ Alt+Shift+1
+
+
+
+ Unfold Level 2
+ Expandera nivå 2
+
+
+
+ Alt+Shift+2
+ Alt+Shift+2
+
+
+
+ Unfold Level 3
+ Expandera nivå 3
+
+
+
+ Alt+Shift+3
+ Alt+Shift+3
+
+
+
+ Unfold Level 4
+ Expandera nivå 4
+
+
+
+ Alt+Shift+4
+ Alt+Shift+4
+
+
+
+ Fold All
+ Komprimera alla
+
+
+
+ Alt+0
+ Alt+0
+
+
+
+ Unfold All
+ Expandera alla
+
+
+
+ Alt+Shift+0
+ Alt+Shift+0
+
+
+
+ Fold Level 5
+ Komprimera nivå 5
+
+
+
+ Alt+5
+ Alt+5
+
+
+
+ Fold Level 6
+ Komprimera nivå 6
+
+
+
+ Alt+6
+ Alt+6
+
+
+
+ Fold Level 7
+ Komprimera nivå 7
+
+
+
+ Alt+7
+ Alt+7
+
+
+
+ Fold Level 8
+ Komprimera nivå 8
+
+
+
+ Alt+8
+ Alt+8
+
+
+
+ Fold Level 9
+ Komprimera nivå 9
+
+
+
+ Alt+9
+ Alt+9
+
+
+
+ Unfold Level 5
+ Expandera nivå 5
+
+
+
+ Alt+Shift+5
+ Alt+Shift+5
+
+
+
+ Unfold Level 6
+ Expandera nivå 6
+
+
+
+ Alt+Shift+6
+ Alt+Shift+6
+
+
+
+ Unfold Level 7
+ Expandera nivå 7
+
+
+
+ Alt+Shift+7
+ Alt+Shift+7
+
+
+
+ Unfold Level 8
+ Expandera nivå 8
+
+
+
+ Alt+Shift+8
+ Alt+Shift+8
+
+
+
+ Unfold Level 9
+ Expandera nivå 9
+
+
+
+ Alt+Shift+9
+ Alt+Shift+9
+
+
+ Alt+C
+ Alt+C
+
+
+
+ Export as HTML...
+ Exportera som HTML...
+
+
+
+ Export as RTF...
+ Exportera som RTF...
+
+
+
+ Copy as HTML
+ Kopiera som HTML
+
+
+
+ Copy as RTF
+ Kopiera som RTF
+
+
+
+ Base 64 Encode
+ Base 64-koda
+
+
+
+ URL Encode
+ URL-koda
+
+
+
+ Base 64 Decode
+ Base 64-avkoda
+
+
+
+ URL Decode
+ URL-avkoda
+
+
+
+ Copy URL
+ Kopiera URL
+
+
+
+ Remove Empty Lines
+ Ta bort tomma rader
+
+
+
+
+ Show in Explorer
+ Visa i filhanteraren
+
+
+
+ Open Command Prompt Here
+ Öppna kommandotolken här
+
+
+
+ Toggle Bookmark
+ Bokmärke på/av
+
+
+
+ Ctrl+F2
+ Ctrl+F2
+
+
+
+ Next Bookmark
+ Nästa bokmärke
+
+
+
+ F2
+ F2
+
+
+
+ Previous Bookmark
+ Föregående bokmärke
+
+
+
+ Shift+F2
+ Shift+F2
+
+
+
+ Clear Bookmarks
+ Ta bort bokmärken
+
+
+
+ Invert Bookmarks
+ Invertera bokmärken
+
+
+
+ About Qt
+ Om Qt
+
+
+
+
+ Export As
+ Exportera som
+
+
+
+ Copy As
+ Kopiera som
+
+
+
+ Encoding/Decoding
+ Kodning/Avkodning
+
+
+
+ Bookmarks
+ Bokmärken
+
+
+
+ Fold Level
+ Komprimeringsnivå
+
+
+
+ Unfold Level
+ Expansionsnivå
+
+
+
+ About Notepad Next
+ Om Notepad Next
+
+
+
+ Show Whitespace
+ Visa blanksteg
+
+
+
+ Show End of Line
+ Visa radslut
+
+
+
+ Show All Characters
+ Visa alla tecken
+
+
+
+ Show Indent Guide
+ Visa indragsguide
+
+
+
+ Show Wrap Symbol
+ Visa radbrytningssymbol
+
+
+
+ Word Wrap
+ Ordbrytning
+
+
+
+ Restore Recently Closed File
+ Återställ tidigare stängda filer
+
+
+
+ Ctrl+Shift+T
+ Ctrl+Shift+T
+
+
+
+ Open All Recent Files
+ Öppna alla tidigare filer
+
+
+
+ Clear Recent Files List
+ Rensa listan
+
+
+
+ &Find...
+ &Sök...
+
+
+
+ Ctrl+F
+ Ctrl+F
+
+
+
+ Find in Files...
+ Sök i filer...
+
+
+
+ Find &Next
+ Sök &nästa
+
+
+
+ F3
+ F3
+
+
+
+ Find &Previous
+ Sök &föregående
+
+
+
+ &Replace...
+ &Ersätt...
+
+
+
+ Ctrl+H
+ Ctrl+H
+
+
+
+ Full Screen
+ Helskärm
+
+
+
+ F11
+ F11
+
+
+
+
+ Start Recording
+ Starta inspelning
+
+
+
+ Playback
+ Uppspelning
+
+
+
+ Ctrl+Shift+P
+ Ctrl+Shift+P
+
+
+
+ Save Current Recorded Macro...
+ Spara inspelat makro...
+
+
+
+ Run a Macro Multiple Times...
+ Kör ett makro flera gånger...
+
+
+ Windows...
+ Fönster...
+
+
+
+ Preferences...
+ Preferenser...
+
+
+
+ Quick Find
+ Snabbsök
+
+
+
+ Ctrl+Alt+I
+ Ctrl+Alt+I
+
+
+
+ Select Next Instance
+ Välj nästa instans
+
+
+
+ Ctrl+D
+ Ctrl+D
+
+
+
+ Move to Trash...
+ Flytta till papperskorgen...
+
+
+
+ Move to Trash
+ Flytta till papperskorgen
+
+
+
+ Check for Updates...
+ Sök efter uppdateringar...
+
+
+
+ &Go to Line...
+ &Gå till rad...
+
+
+
+ Ctrl+G
+ Ctrl+G
+
+
+
+ Print...
+ Skriv ut...
+
+
+
+ Ctrl+P
+ Ctrl+P
+
+
+
+ Open Folder as Workspace...
+ Öppen mapp som arbetsyta...
+
+
+
+ Go to line
+ Gå till rad
+
+
+
+ Line Number (1 - %1)
+ Radnummer (1 - %1)
+
+
+
+ Stop Recording
+ Stoppa inspelning
+
+
+
+ New %1
+ Ny %1
+
+
+
+ Create File
+ Skapa fil
+
+
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> finns inte. Vill du skapa den?
+
+
+
+
+ Save file <b>%1</b>?
+ Vill du spara <b>%1</b>?
+
+
+
+
+ Save File
+ Spara fil
+
+
+
+ Open Folder as Workspace
+ Öppen mapp som arbetsyta
+
+
+
+ Reload File
+ Läs om fil
+
+
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ Vill du verkligen läsa om <b>%1</b> från disk? Alla osparade ändringar kommer att förloras.
+
+
+
+ Administrator
+ Administratör
+
+
+
+ Error Saving File
+ Kunde inte spara fil
+
+
+
+ Save a Copy As
+ Spara en kopia som
+
+
+
+
+ Rename
+ Byt namn
+
+
+
+ Name:
+ Namn:
+
+
+
+ Delete File
+ Ta bort fil
+
+
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ Vill du verkligen flytta <b>%1</b> till papperskorgen?
+
+
+
+ Error Deleting File
+ Kunde inte ta bort fil
+
+
+
+ Something went wrong deleting <b>%1</b>?
+ Gick något fel vid borttagning av <b>%1</b>?
+
+
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ Ett fel uppstod när <b>%1</b> skulle sparas.<br><br>Fel: %2
+
+
+
+ Zoom: %1%
+ Zoom: %1%
+
+
+
+ No updates are available at this time.
+ Inga uppdateringar tillgängliga den här gången.
+
+
+ No updates are availale at this time.
+ Inga uppdateringar tillgängliga den här gången.
+
+
+
+ PreferencesDialog
+
+
+ Preferences
+ Preferenser
+
+
+
+ Show menu bar
+ Visa menyfält
+
+
+
+ Show toolbar
+ Visa verktygsfält
+
+
+
+ Show status bar
+ Visa statusfält
+
+
+
+ Restore previous session
+ Återställ föregående session
+
+
+
+ Temporary files
+ Temporära filer
+
+
+
+ Translation:
+ Översättning:
+
+
+
+ Exit on last tab closed
+ Avsluta när sista fliken stängs
+
+
+
+ Default Font
+ Standardteckensnitt
+
+
+
+ Font
+ Teckensnitt
+
+
+
+ Font Size
+ Teckenstorlek
+
+
+
+ pt
+ pt
+
+
+
+ TextLabel
+ TextEtikett
+
+
+
+ An application restart is required to apply certain settings.
+ En programomstart krävs för att tillämpa vissa inställningar.
+
+
+ Menu Bar
+ Menyfält
+
+
+ Tool Bar
+ Verktygsfält
+
+
+ Status Bar
+ Statusfält
+
+
+ Restore Previous Session
+ Återställ föregående session
+
+
+
+ Unsaved changes
+ Osparade ändringar
+
+
+ Temp Files
+ Temp-filer
+
+
+
+ Combine search results
+ Kombinera sökresultat
+
+
+
+ Warning
+ Varning
+
+
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ Denna funktion är experimentell och den bör inte betraktas som säker för kritiskt viktigt arbete. Det kan leda till eventuell dataförlust. Används på egen risk.
+
+
+
+ <System Default>
+ <Systemstandard>
+
+
+
+ QObject
+
+
+ List All Tabs
+ Lista alla flikar
+
+
+
+ Detach Group
+ Koppla från grupp
+
+
+
+ Minimize
+ Minimera
+
+
+ Close Active Tab
+ Stäng aktiv flik
+
+
+ Close Group
+ Stäng grupp
+
+
+
+ Close Tab
+ Stäng flik
+
+
+
+ QuickFindWidget
+
+
+ Frame
+ Ram
+
+
+
+ Match case
+ Matcha skiftläge
+
+
+
+ Aa
+ Aa
+
+
+
+ Match whole word
+ Matcha hela ord
+
+
+
+ |A|
+ |A|
+
+
+
+ Use regular expression
+ Använd regular expression
+
+
+
+ . *
+ . *
+
+
+
+ Alt+E
+ Alt+E
+
+
+
+ Find...
+ Sök...
+
+
+
+ %L1/%L2
+ %L1/%L2
+
+
+
+ SearchResultsDock
+
+
+ Search Results
+ Sökresultat
+
+
+
+ Collapse All
+ Minimera alla
+
+
+
+ Expand All
+ Expandera alla
+
+
+
+ Delete Entry
+ Ta bort post
+
+
+
+ Delete All
+ Ta bort alla
+
+
+
+ Updater
+
+
+ Would you like to download the update now?
+ Vill du ladda ner uppdateringen nu?
+
+
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ Vill du ladda ner uppdateringen nu? Detta är en obligatorisk uppdatering, avslutar du nu. stängs programmet
+
+
+
+ Version %1 of %2 has been released!
+ Version %1 av %2 har publicerats!
+
+
+
+ No updates are available for the moment
+ Inga uppdateringar tillgängliga för tillfället
+
+
+
+ Congratulations! You are running the latest version of %1
+ Grattis! Du kör den senaste versionen av %1
+
+
+
+ ads::CAutoHideTab
+
+
+ Detach
+ Koppla ifrån
+
+
+
+ Pin To...
+ Fäst vid...
+
+
+
+ Top
+ Överkant
+
+
+
+ Left
+ Vänsterkant
+
+
+
+ Right
+ Högerkant
+
+
+
+ Bottom
+ Underkant
+
+
+
+ Unpin (Dock)
+ Lösgör (Docka)
+
+
+
+ Close
+ Stäng
+
+
+
+ ads::CDockAreaTitleBar
+
+
+ Detach Group
+ Koppla från grupp
+
+
+
+ Detach
+ Koppla från
+
+
+
+
+ Unpin (Dock)
+ Lösgör (Docka)
+
+
+
+
+ Pin Group
+ Fäst grupp
+
+
+
+ Pin Group To...
+ Fäst grupp vid...
+
+
+
+ Top
+ Överkant
+
+
+
+ Left
+ Vänsterkant
+
+
+
+ Right
+ Högerkant
+
+
+
+ Bottom
+ Underkant
+
+
+
+
+ Minimize
+ Minimera
+
+
+
+
+
+ Close
+ Stäng
+
+
+
+
+ Close Group
+ Stäng grupp
+
+
+
+ Close Other Groups
+ Stäng andra grupper
+
+
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+ Fäst aktiv flik (Tryck Ctrl för att fäst grupp)
+
+
+
+ Close Active Tab
+ Stäng aktiv flik
+
+
+
+ ads::CDockManager
+
+
+ Show View
+ Visningsvy
+
+
+
+ ads::CDockWidgetTab
+
+
+ Detach
+ Koppla från
+
+
+
+ Pin
+ Fäst
+
+
+
+ Pin To...
+ Fäst vid...
+
+
+
+ Top
+ Överkant
+
+
+
+ Left
+ Vänsterkant
+
+
+
+ Right
+ Högerkant
+
+
+
+ Bottom
+ Underkant
+
+
+
+ Close
+ Stäng
+
+
+
+ Close Others
+ Stäng andra
+
+
+
diff --git a/i18n/NotepadNext_tr_TR.ts b/i18n/NotepadNext_tr_TR.ts
new file mode 100644
index 000000000..b7f99dbbe
--- /dev/null
+++ b/i18n/NotepadNext_tr_TR.ts
@@ -0,0 +1,2454 @@
+
+
+
+
+ ColumnEditorDialog
+
+
+ Column Mode
+ Sütun Modu
+
+
+
+ Text
+ Metin
+
+
+
+ Numbers
+ Sayılar
+
+
+
+ Start:
+ Başlangıç:
+
+
+
+ Step:
+ Basamak:
+
+
+
+ DebugLogDock
+
+
+ Debug Log
+ Hata Ayıklama Günlüğü
+
+
+
+ Downloader
+
+
+
+ Updater
+ Güncelleyici
+
+
+
+
+
+ Downloading updates
+ Güncellemeler indiriliyor
+
+
+
+ Time remaining: 0 minutes
+ Kalan süre: 0 dakika
+
+
+
+ Open
+ Aç
+
+
+
+
+ Stop
+ Durdur
+
+
+
+
+ Time remaining
+ Kalan Zaman
+
+
+
+ unknown
+ bilinmiyor
+
+
+
+ Error
+ Hata
+
+
+
+ Cannot find downloaded update!
+ İndirilen güncelleme bulunamıyor!
+
+
+
+ Close
+ Kapat
+
+
+
+ Download complete!
+ İndirme tamamlandı!
+
+
+
+ The installer will open separately
+ Yükleyici ayrı olarak açılacak
+
+
+
+ Click "OK" to begin installing the update
+ Güncellemeyi yüklemeye başlamak için "Tamam "a tıklayın
+
+
+
+ In order to install the update, you may need to quit the application.
+ Güncellemeyi yüklemek için uygulamadan çıkmanız gerekebilir.
+
+
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+ Güncellemeyi yüklemek için uygulamadan çıkmanız gerekebilir. Bu zorunlu bir güncellemedir, şimdi çıkmak uygulamayı kapatacaktır
+
+
+
+ Click the "Open" button to apply the update
+ Güncellemeyi uygulamak için "Aç" düğmesine tıklayın
+
+
+
+ Are you sure you want to cancel the download?
+ İndirmeyi iptal etmek istediğinizden emin misiniz?
+
+
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ İndirmeyi iptal etmek istediğinizden emin misiniz? Bu zorunlu bir güncellemedir, şimdi çıkmak uygulamayı kapatacaktır
+
+
+
+
+ %1 bytes
+ %1 btye
+
+
+
+
+ %1 KB
+ %1 KB
+
+
+
+
+ %1 MB
+ %1 MB
+
+
+
+ of
+ This thing is impossible to translate to Turkish without changing the whole scheme. It supposed to be "totalSize + tr("of")+ receivedSize" So I'm justing living it blank
+
+
+
+
+ Downloading Updates
+ Güncellemeler indiriliyor
+
+
+
+ Time Remaining
+ Kalan Zaman
+
+
+
+ Unknown
+ Bilinmiyor
+
+
+
+ about %1 hours
+ yaklaşık %1 saat
+
+
+
+ about one hour
+ yaklaşık bir saat
+
+
+
+ %1 minutes
+ %1 dakika
+
+
+
+ 1 minute
+ 1 dakika
+
+
+
+ %1 seconds
+ %1 saniye
+
+
+
+ 1 second
+ 1 saniye
+
+
+
+ EditorInfoStatusBar
+
+
+ Length: %L1 Lines: %L2
+ Uzunluk: %L1 Satır: %L2
+
+
+
+ Sel: N/A
+ Seçiml: N/A
+
+
+
+ Sel: %L1 | %L2
+ Seçim: %L1 | %L2
+
+
+
+ Ln: %L1 Col: %L2
+ Satır: %L1 Sutun: %L2
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ ANSI
+ ANSI
+
+
+
+ UTF-8
+ UTF-8
+
+
+
+ EditorInspectorDock
+
+
+ Editor Inspector
+ Düzenleyici Denetleyicisi
+
+
+
+ Position Information
+ Konum Bilgisi
+
+
+
+ Current Position
+ Mevcut Konum
+
+
+
+ Current Position (x, y)
+ Mevcut Konum (x, y)
+
+
+
+ Column
+ Sütun
+
+
+
+ Current Style
+ Mevcut Stil
+
+
+
+ Current Line
+ Mevcut Satır
+
+
+
+ Line Length
+ Satır Uzunluğu
+
+
+
+ Line End Position
+ Satır Sonu Konumu
+
+
+
+ Line Indentation
+ Satır Girintisi
+
+
+
+ Line Indent Position
+ Satır Girinti Konumu
+
+
+
+ Selection Information
+ Seçim Bilgisi
+
+
+
+ Mode
+ Mod
+
+
+
+ Is Rectangle
+ Dikdörtgen Seçim
+
+
+
+ Selection Empty
+ Seçim Boş
+
+
+
+ Main Selection
+ Ana Seçim
+
+
+
+ # of Selections
+ Seçim Sayısı
+
+
+
+ Multiple Selections
+ Birden Fazla Seçim
+
+
+
+ Document Information
+ Belge Bilgisi
+
+
+
+ Length
+ Uzunluk
+
+
+
+ Line Count
+ Satır Sayısı
+
+
+
+ View Information
+ Bilgileri Göster
+
+
+
+ Lines on Screen
+ Ekrandaki Satırlar
+
+
+
+ First Visible Line
+ İlk Görünen Satır
+
+
+
+ X Offset
+ X Offset
+
+
+
+ Fold Information
+ Katlama Bilgisi
+
+
+
+ Visible From Doc Line
+ Belge Satırından Görünen
+
+
+
+ Doc Line From Visible
+ Görünenden Belge Satırı
+
+
+
+ Fold Level
+ Katlama Seviyesi
+
+
+
+ Is Fold Header
+ Is Fold Header
+
+
+
+ Fold Parent
+ Fold Parent
+
+
+
+ Last Child
+ Last Child
+
+
+
+ Contracted Fold Next
+ Contracted Fold Next
+
+
+
+ Caret
+ İmleç
+
+
+
+ Anchor
+ Bağlantı Noktası (Anchor)
+
+
+
+ Caret Virtual Space
+ İmleç Sanal Boşluğu
+
+
+
+ Anchor Virtual Space
+ Bağlantı Noktası (Anchor) Sanal Boşluğu
+
+
+
+ FileList
+
+
+ File List
+ Dosya Listesi
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ Bul
+
+
+
+ Search Mode
+ Arama Modu
+
+
+
+ &Normal
+ &Normal
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ G&eliştirilmiş (\n, \r, \t, \0, \x..)
+
+
+
+ Re&gular expression
+ RE&GEX
+
+
+
+ &. matches newline
+ &. satırsonu satırıyla eşleşir
+
+
+
+ Transparenc&y
+ Şeffaflı&k
+
+
+
+ On losing focus
+ Fokus kaybolduğunda
+
+
+
+ Always
+ Her Zaman
+
+
+
+ Coun&t
+ Sa&y
+
+
+
+ &Replace
+ &Değiştir
+
+
+
+ Replace &All
+ &Tümünü Değiştir
+
+
+
+ Replace All in &Opened Documents
+ &Açık Olan Tüm Dosyalardakileri Değiştir
+
+
+
+ Find All in All &Opened Documents
+ &Açık Olan Tüm Dosyalardakileri Bul
+
+
+
+ Find All in Current Document
+ Aktif Dosyadaki Hepsini Bul
+
+
+
+ Close
+ Kapat
+
+
+
+ &Find:
+ &Değiştir:
+
+
+
+ Replace:
+ Değiştir:
+
+
+
+ Backward direction
+ Geriye doğru yön
+
+
+
+ Match &whole word only
+ Sadece &tüm kelimeyi eşleştir
+
+
+
+ Match &case
+ Eşleşme &durumu
+
+
+
+ Wra&p Around
+ E&trafını Sat
+
+
+
+ Replace
+ Değiştir
+
+
+
+
+ Replaced %Ln matches
+
+ %Ln eşleşme değiştirildi
+
+
+
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ Belgenin sonuna ulaşıldı. Üstten 1. eşleşme bulundu.
+
+
+
+ No matches found.
+ Eşleşme Bulunamadı.
+
+
+
+ 1 occurrence was replaced
+ 1 eşleşen değiştirildi
+
+
+
+ No more occurrences were found
+ Başka eşleşen bulunamadı
+
+
+
+ Found %Ln matches
+
+ %Ln eşleşme bulundu
+
+
+
+
+ FolderAsWorkspaceDock
+
+
+ Folder as Workspace
+ Çalışma Alanı olarak Klasör
+
+
+
+ HexViewerDock
+
+
+ Hex Viewer
+ Hex Görüntüleyicisi
+
+
+
+ LanguageInspectorDock
+
+
+ Language Inspector
+ Dil Kontrolcüsü
+
+
+
+ Language:
+ Dil:
+
+
+
+ Lexer:
+ Lexer:
+
+
+
+ Properties:
+ Özellikler:
+
+
+
+ Property
+
+
+
+
+ Type
+
+
+
+
+
+ Description
+
+
+
+
+ Value
+
+
+
+
+ Keywords:
+ Anahtar Kelimeler:
+
+
+
+ ID
+
+
+
+
+ Styles:
+ Stiller:
+
+
+
+ TextLabel
+ Metin
+
+
+
+ Position %1 Style %2
+ Pozisyon %1 Stil %2
+
+
+
+ LuaConsoleDock
+
+
+ Lua Console
+ Lua Konsolu
+
+
+
+ MacroEditorDialog
+
+
+ Macro Editor
+ Makro Düzenleyicisi
+
+
+
+ Name
+ İsim
+
+
+
+ Shortcut
+ Kısayol
+
+
+
+ Steps:
+ Adımlar:
+
+
+
+ Insert Macro Step
+ Makro Adımları Ekle
+
+
+
+ Delete Selected Macro Step
+ Seçilen Makro Adımınıı Sil
+
+
+
+ Move Selected Macro Step Up
+ Seçilen Makro Adımını Yukarı Al
+
+
+
+ Move Selected Macro Step Down
+ Seçilen Makro Adımını Aşağı Al
+
+
+
+ Copy Selected Macro
+ Seçilen Makroyu Kopyala
+
+
+
+ Delete Selected Macro
+ Seçilen Makroyu Sil
+
+
+
+ Delete Macro
+ Makroyu Sil
+
+
+
+ Are you sure you want to delete <b>%1</b>?
+ <b>%1</b>'i silmek istediğinize emin misiniz?
+
+
+
+ (Copy)
+ (Kopyala)
+
+
+
+ MacroRunDialog
+
+
+ Run a Macro Multiple Times
+ Makroyu bir çok kez çalıştır
+
+
+
+ Macro:
+ Makro:
+
+
+
+ Run Until End of File
+ Dosya sonuna kadar çalıştır
+
+
+
+ Execute...
+ Çalıştır...
+
+
+
+ times
+ kez
+
+
+
+ Run
+ Başlat
+
+
+
+ Cancel
+ İptal
+
+
+
+ MacroSaveDialog
+
+
+ Save Macro
+ Makroyu Kaydet
+
+
+
+ Name:
+ İsim:
+
+
+
+ Shortcut:
+ Kısayol:
+
+
+
+ OK
+ TAMAM
+
+
+
+ Cancel
+ İptal
+
+
+
+ MacroStepTableModel
+
+
+ Name
+ İsim
+
+
+
+ Text
+ Metin
+
+
+
+ MainWindow
+
+
+ Notepad Next[*]
+ Notepad Next[*]
+
+
+
+ +
+ +
+
+
+
+ &File
+ &Dosya
+
+
+
+ Close More
+ Daha Fazlasını Kapat
+
+
+
+ &Recent Files
+ &Son Dosyalar
+
+
+
+
+ Export As
+ ... olarak Dışa Aktar
+
+
+
+ &Edit
+ &Düzenle
+
+
+
+ Copy More
+ Daha Fazlasını Kopyala
+
+
+
+ Indent
+ Girinti
+
+
+
+ EOL Conversion
+ Satır Sonu Dönüşümü
+
+
+
+ Convert Case
+ Büyük/Küçük Harf Dönüştür
+
+
+
+ Line Operations
+ Satır İşlemleri
+
+
+
+ Comment/Uncomment
+ Yorum Ekle/Kaldır
+
+
+
+ Copy As
+ ... olarak Kopyala
+
+
+
+ Encoding/Decoding
+ Kodlama/Çözme
+
+
+
+ Search
+ Ara
+
+
+
+ Bookmarks
+ Yer İmleri
+
+
+
+ &View
+ &Görüntü
+
+
+
+ &Zoom
+ &Yakınlaştırma
+
+
+
+ Show Symbol
+ Sembolu Göster
+
+
+
+ Fold Level
+ Katlama Seviyesi
+
+
+
+ Unfold Level
+
+
+
+
+ Language
+ Dil
+
+
+
+ Settings
+ Ayarlar
+
+
+
+ Macro
+ Makro
+
+
+
+ Help
+ Yardım
+
+
+
+ Encoding
+ Kodlama
+
+
+
+ Main Tool Bar
+ Ana Araç Çubuğu
+
+
+
+ &New
+ &Yeni
+
+
+
+ Create a new file
+ Yeni bir dosya oluştur
+
+
+
+ Ctrl+N
+ Ctrl+N
+
+
+
+ &Open...
+ &Aç...
+
+
+
+ Ctrl+O
+ Ctrl+O
+
+
+
+ &Save
+ &Kaydet
+
+
+
+ Save
+ Kaydet
+
+
+
+ Ctrl+S
+ Ctrl+S
+
+
+
+ E&xit
+ Ç&ıkış
+
+
+ Alt+F4
+ Alt+F4
+
+
+
+ &Undo
+ &Geri Al
+
+
+
+ Ctrl+Z
+ Ctrl+Z
+
+
+
+ &Redo
+ &Yinele
+
+
+
+ Ctrl+Y
+ Ctrl+Y
+
+
+
+ Cu&t
+ Ke&s
+
+
+
+ Ctrl+X
+ Ctrl+X
+
+
+
+ &Copy
+ &Kopyala
+
+
+
+ Ctrl+C
+ Ctrl+C
+
+
+
+ &Paste
+ &Yapıştır
+
+
+
+ Ctrl+V
+ Ctrl+V
+
+
+
+ &Delete
+ &Sil
+
+
+
+ Del
+ Sil
+
+
+
+ Copy Full Path
+ Tam Yolu Kopyala
+
+
+
+ Copy File Name
+ Dosya Adını Kopyala
+
+
+
+ Copy File Directory
+ Dosya Dizinini Kopyala
+
+
+
+ &Close
+ &Kapat
+
+
+
+ Close the current file
+ Mevcut dosyayı kapat
+
+
+
+ Ctrl+W
+ Ctrl+W
+
+
+
+ Save &As...
+ &Farklı olarak kaydet...
+
+
+
+ Ctrl+Alt+S
+ Ctrl+Alt+S
+
+
+
+ Save a Copy As...
+ Bir Kopyayı Farklı Kaydet...
+
+
+
+ Sav&e All
+ Hep&sini Kaydet
+
+
+
+ Ctrl+Shift+S
+ Ctrl+Shift+S
+
+
+
+ Select A&ll
+ H&epsini Seç
+
+
+
+ Ctrl+A
+ Ctrl+A
+
+
+
+ Increase Indent
+ Girintiyi Artır
+
+
+
+ Decrease Indent
+ Girintiyi Azalt
+
+
+
+ Rename...
+ Yeniden Adlandır...
+
+
+
+ Re&load
+ Ye&niden Yükle
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ UPPER CASE
+ BÜYÜK HARF
+
+
+
+ Convert text to upper case
+ Metni büyük harfe dönüştür
+
+
+
+ lower case
+ küçük harf
+
+
+
+ Convert text to lower case
+ Metni küçük harfe dönüştür
+
+
+
+ Duplicate Current Line
+ Mevcut Satırı Çoğalt
+
+
+
+ Alt+Down
+ Alt+Down
+
+
+
+ Split Lines
+ Satırları Böl
+
+
+
+ Join Lines
+ Satırları Birleştir
+
+
+
+ Ctrl+J
+ Ctrl+J
+
+
+
+ Move Selected Lines Up
+ Seçili Satırları Yukarı Taşı
+
+
+
+ Ctrl+Shift+Up
+ Ctrl+Shift+Up
+
+
+
+ Move Selected Lines Down
+ Seçili Satırları Aşağı Taşı
+
+
+
+ Ctrl+Shift+Down
+ Ctrl+Shift+Down
+
+
+
+ Clos&e All
+ Heps&ini Kapat
+
+
+
+ Close All files
+ Tüm dosyaları kapat
+
+
+
+ Ctrl+Shift+W
+ Ctrl+Shift+W
+
+
+
+ Close All Except Active Document
+ Aktif Belge Hariç Tümünü Kapat
+
+
+
+ Close All to the Left
+ Soldakileri Hepsini Kapat
+
+
+
+ Close All to the Right
+ Sağdakileri Hepsini Kapat
+
+
+
+ Zoom &In
+ &Yakınlaştır
+
+
+
+ Ctrl++
+ Ctrl++
+
+
+
+ Zoom &Out
+ &Uzaklaştıor
+
+
+
+ Ctrl+-
+ Ctrl+-
+
+
+
+ Reset Zoom
+ Yakınlaştırmayı Sıfırla
+
+
+
+ Ctrl+0
+ Ctrl+0
+
+
+
+ About Qt
+ Qt Hakkında
+
+
+
+ About Notepad Next
+ Notepad Next Hakkında
+
+
+
+ Show Whitespace
+ Boşlukları Göster
+
+
+
+ Show End of Line
+ Satır sonunu Göster
+
+
+
+ Show All Characters
+ Tüm Karakterleri Göster
+
+
+
+ Show Indent Guide
+ Girinti Kılavuzunu Göster
+
+
+
+ Show Wrap Symbol
+ Satır Kaydırma Sembolünü Göster
+
+
+
+ Word Wrap
+
+
+
+
+ Restore Recently Closed File
+ Son Kapatılan Dosyayı Geri Yükle
+
+
+
+ Ctrl+Shift+T
+ Ctrl+Shift+T
+
+
+
+ Open All Recent Files
+ Tüm Son Dosyaları Aç
+
+
+
+ Clear Recent Files List
+ Son Dosyalar Listesini Temizle
+
+
+
+ &Find...
+ &Bul...
+
+
+
+ Ctrl+F
+ Ctrl+F
+
+
+
+ Find in Files...
+ Dosyalarda Ara...
+
+
+
+ Find &Next
+ &Sıradakini Bul
+
+
+
+ F3
+ F3
+
+
+
+ Find &Previous
+ &Öncekini Bul
+
+
+
+ &Replace...
+ &Değiştir...
+
+
+
+ Ctrl+H
+ Ctrl+H
+
+
+
+ Full Screen
+ Tam Ekran
+
+
+
+ F11
+ F11
+
+
+
+
+ Start Recording
+ Kaydetmeye Başla
+
+
+
+ Playback
+ Oynatma
+
+
+
+ Ctrl+Shift+P
+ Ctrl+Shift+P
+
+
+
+ Save Current Recorded Macro...
+ Mevcut Kaydedilen Makroyu Kaydet...
+
+
+
+ Run a Macro Multiple Times...
+ Bir Makroyu Birden Fazla Kez Çalıştır...
+
+
+
+ Preferences...
+ Tercihler...
+
+
+
+ Quick Find
+ Hızlıca Bul
+
+
+
+ Ctrl+Alt+I
+ Ctrl+Alt+I
+
+
+
+ Select Next Instance
+ Sonraki Örneği Seç
+
+
+
+ Ctrl+D
+ Ctrl+D
+
+
+
+ Move to Trash...
+ Çöp Kutusuna Taşı...
+
+
+
+ Move to Trash
+ Çöp Kutusuna Taşı
+
+
+
+ Check for Updates...
+ Güncellemeleri Kontrol Et...
+
+
+
+ &Go to Line...
+ &Satıra Git...
+
+
+
+ Ctrl+G
+ Ctrl+G
+
+
+
+ Print...
+ Yazdır...
+
+
+
+ Ctrl+P
+ Ctrl+P
+
+
+
+ Open Folder as Workspace...
+ Klasörü Çalışma Alanı Olarak Aç...
+
+
+
+ Toggle Single Line Comment
+ Tek Satırlı Yorumu Aç/Kapa
+
+
+
+ Ctrl+/
+ Ctrl+/
+
+
+
+ Single Line Comment
+ Tek Satır Yorumu
+
+
+
+ Ctrl+K
+ Ctrl+K
+
+
+
+ Single Line Uncomment
+ Tek Satır Yorumunu Kaldır
+
+
+
+ Ctrl+Shift+K
+ Ctrl+Shift+K
+
+
+
+ Edit Macros...
+ Makroları Düzenle...
+
+
+
+ This is not currently implemented
+ Bu şu anda uygulanmamaktadır
+
+
+
+ Column Mode...
+ Sütun Modu...
+
+
+
+ Next Tab
+
+
+
+
+ Ctrl+Tab
+
+
+
+
+ Previous Tab
+
+
+
+
+ Ctrl+Shift+Tab
+
+
+
+
+ Fold Level 1
+
+
+
+
+ Alt+1
+
+
+
+
+ Fold Level 2
+
+
+
+
+ Alt+2
+
+
+
+
+ Fold Level 3
+
+
+
+
+ Alt+3
+
+
+
+
+ Fold Level 4
+
+
+
+
+ Alt+4
+
+
+
+
+ Unfold Level 1
+
+
+
+
+ Alt+Shift+1
+
+
+
+
+ Unfold Level 2
+
+
+
+
+ Alt+Shift+2
+
+
+
+
+ Unfold Level 3
+
+
+
+
+ Alt+Shift+3
+
+
+
+
+ Unfold Level 4
+
+
+
+
+ Alt+Shift+4
+
+
+
+
+ Fold All
+
+
+
+
+ Alt+0
+
+
+
+
+ Unfold All
+
+
+
+
+ Alt+Shift+0
+
+
+
+
+ Fold Level 5
+
+
+
+
+ Alt+5
+
+
+
+
+ Fold Level 6
+
+
+
+
+ Alt+6
+
+
+
+
+ Fold Level 7
+
+
+
+
+ Alt+7
+
+
+
+
+ Fold Level 8
+
+
+
+
+ Alt+8
+
+
+
+
+ Fold Level 9
+
+
+
+
+ Alt+9
+
+
+
+
+ Unfold Level 5
+
+
+
+
+ Alt+Shift+5
+
+
+
+
+ Unfold Level 6
+
+
+
+
+ Alt+Shift+6
+
+
+
+
+ Unfold Level 7
+
+
+
+
+ Alt+Shift+7
+
+
+
+
+ Unfold Level 8
+
+
+
+
+ Alt+Shift+8
+
+
+
+
+ Unfold Level 9
+
+
+
+
+ Alt+Shift+9
+
+
+
+ Alt+C
+ Alt+C
+
+
+
+ Export as HTML...
+ HTML Olarak Dışa Aktar...
+
+
+
+ Export as RTF...
+ RTF Olarak Dışa Aktar...
+
+
+
+ Copy as HTML
+ HTML olarak kopyala
+
+
+
+ Copy as RTF
+ RTF olarak kopyala
+
+
+
+ Base 64 Encode
+ Base 64 Kodla
+
+
+
+ URL Encode
+ URL Kodla
+
+
+
+ Base 64 Decode
+ Base 64 Çözümle
+
+
+
+ URL Decode
+ URL Çözümle
+
+
+
+ Copy URL
+
+
+
+
+ Remove Empty Lines
+ Boş Satırları Sil
+
+
+
+
+ Show in Explorer
+ Dosya Gezgininde Göster
+
+
+
+ Open Command Prompt Here
+ Komut İstemi'ni Burada Aç
+
+
+
+ Toggle Bookmark
+ Yer İmlerini Aç/Kapat
+
+
+
+ Ctrl+F2
+ Ctrl+F2
+
+
+
+ Next Bookmark
+ Sonraki Yer İmi
+
+
+
+ F2
+ F2
+
+
+
+ Previous Bookmark
+ Önceki Yer İmi
+
+
+
+ Shift+F2
+ Shift+F2
+
+
+
+ Clear Bookmarks
+ Yer İmlerini Temizle
+
+
+
+ Invert Bookmarks
+ Yer İmlerini Tersine Çevir
+
+
+
+ Go to line
+ Satıra Git
+
+
+
+ Line Number (1 - %1)
+ Satır Numarası (1 - %1)
+
+
+
+ Stop Recording
+ Kaydetmeyi Durdur
+
+
+
+ New %1
+ Yeni %1
+
+
+
+ Create File
+ Dosya Oluştur
+
+
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> mevcut değil. Oluşturmak istiyor musunuz?
+
+
+
+
+ Save file <b>%1</b>?
+ Dosyayı kaydetmek istiyor musunuz: <b>%1</b>?
+
+
+
+
+ Save File
+ Dosyayı Kaydet
+
+
+
+ Open Folder as Workspace
+ Klasörü Çalışma Alanı Olarak Aç
+
+
+
+ Reload File
+ Dosyayı Yeniden Yükle
+
+
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ <b>%1</b>'i yeniden yüklemek istediğinizden emin misiniz? Kaydedilmemiş değişiklikler kaybolacak.
+
+
+
+ Save a Copy As
+ Bir Kopyayı Farklı Kaydet
+
+
+
+
+ Rename
+ Yeniden Adlandır
+
+
+
+ Name:
+ İsim:
+
+
+
+ Delete File
+ Dosyayı Sil
+
+
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ <b>%1</b>'i çöp kutusuna taşımak istediğinizden emin misiniz?
+
+
+
+ Error Deleting File
+ Dosya Silme Hatası
+
+
+
+ Something went wrong deleting <b>%1</b>?
+ <b>%1</b> silinirken bir hata oluştu?
+
+
+
+ Administrator
+
+
+
+
+ Error Saving File
+ Dosyayı Kaydetme Hatası
+
+
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ Bir hata oluştu. <b>%1</b> kaydedilirken hata oluştu. <br><br>Hata: %2
+
+
+
+ Zoom: %1%
+
+
+
+
+ No updates are available at this time.
+ Şu anda kullanılabilir güncellemeler bulunmuyor.
+
+
+
+ PreferencesDialog
+
+
+ Preferences
+ Tercihler
+
+
+
+ Show menu bar
+
+
+
+
+ Show toolbar
+
+
+
+
+ Show status bar
+
+
+
+
+ Restore previous session
+
+
+
+
+ Temporary files
+
+
+
+
+ Translation:
+
+
+
+
+ Exit on last tab closed
+
+
+
+
+ Default Font
+
+
+
+
+ Font
+
+
+
+
+ Font Size
+
+
+
+
+ pt
+
+
+
+
+ TextLabel
+ Metin
+
+
+
+ An application restart is required to apply certain settings.
+
+
+
+ Menu Bar
+ Menü Çubuğu
+
+
+ Tool Bar
+ Araç Çubuğu
+
+
+ Status Bar
+ Durum Çubuğu
+
+
+ Restore Previous Session
+ Önceki Oturumu Geri Yükle
+
+
+
+ Unsaved changes
+ Kaydedilmemiş değişiklikler
+
+
+ Temp Files
+ Geçici Dosyalar
+
+
+
+ Combine search results
+ Arama sonuçlarını birleştir
+
+
+
+ Warning
+ Uyarı
+
+
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ Bu özellik deneyseldir ve kritik öneme sahip işler için güvenli olduğu düşünülmemelidir. Olası veri kaybına yol açabilir. Kendi sorumluluğunuzda kullanın.
+
+
+
+ <System Default>
+
+
+
+
+ QObject
+
+
+ List All Tabs
+ Tüm Sekmeleri Listele
+
+
+
+ Detach Group
+ Grubu Ayır
+
+
+
+ Minimize
+
+
+
+ Close Active Tab
+ Aktif Sekmeyi Kapat
+
+
+ Close Group
+ Grubu Kapat
+
+
+
+ Close Tab
+ Sekmeyi Kapat
+
+
+
+ QuickFindWidget
+
+
+ Frame
+ Çerçeve
+
+
+
+ Match case
+ Eşleşme durumu
+
+
+
+ Aa
+ Aa
+
+
+
+ Match whole word
+ Tüm kelimeyi eşleştir
+
+
+
+ |A|
+ |A|
+
+
+
+ Use regular expression
+ Regex
+
+
+
+ . *
+ . *
+
+
+
+ Alt+E
+ Alt+E
+
+
+
+ Find...
+ Bul...
+
+
+
+ %L1/%L2
+
+
+
+
+ SearchResultsDock
+
+
+ Search Results
+ Arama Sonuçları
+
+
+
+ Collapse All
+ Tümünü Daralt
+
+
+
+ Expand All
+ Tümünü Genişlet
+
+
+
+ Delete Entry
+ Girdiyi Sil
+
+
+
+ Delete All
+ Hepsini Sil
+
+
+
+ Updater
+
+
+ Would you like to download the update now?
+ Güncellemeyi şimdi indirmek ister misiniz?
+
+
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ Güncellemeyi şimdi indirmek ister misiniz? Bu zorunlu bir güncellemedir, şimdi çıkmak uygulamayı kapatacaktır
+
+
+
+ Version %1 of %2 has been released!
+ %2'nin %1 sürümü yayınlandı!
+
+
+
+ No updates are available for the moment
+ Şu an için herhangi bir güncelleme mevcut değil
+
+
+
+ Congratulations! You are running the latest version of %1
+ Tebrikler! %1'in en son sürümünü çalıştırıyorsunuz
+
+
+
+ ads::CAutoHideTab
+
+
+ Detach
+ Ayır
+
+
+
+ Pin To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+ Unpin (Dock)
+
+
+
+
+ Close
+ Kapat
+
+
+
+ ads::CDockAreaTitleBar
+
+
+ Detach Group
+ Grubu Ayır
+
+
+
+ Detach
+ Ayır
+
+
+
+
+ Unpin (Dock)
+
+
+
+
+
+ Pin Group
+
+
+
+
+ Pin Group To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+
+ Minimize
+
+
+
+
+
+
+ Close
+ Kapat
+
+
+
+
+ Close Group
+ Grubu Kapat
+
+
+
+ Close Other Groups
+ Diğer Grupları Kapat
+
+
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+
+
+
+
+ Close Active Tab
+ Aktif Sekmeyi Kapat
+
+
+
+ ads::CDockManager
+
+
+ Show View
+ Göster
+
+
+
+ ads::CDockWidgetTab
+
+
+ Detach
+ Ayır
+
+
+
+ Pin
+
+
+
+
+ Pin To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+ Close
+ Kapat
+
+
+
+ Close Others
+ Diğerlerini Kapat
+
+
+
diff --git a/i18n/NotepadNext_uk_UA.ts b/i18n/NotepadNext_uk_UA.ts
new file mode 100644
index 000000000..0de3498c3
--- /dev/null
+++ b/i18n/NotepadNext_uk_UA.ts
@@ -0,0 +1,2457 @@
+
+
+
+
+ ColumnEditorDialog
+
+
+ Column Mode
+ Створення стовпця
+
+
+
+ Text
+ Текст
+
+
+
+ Numbers
+ Числа
+
+
+
+ Start:
+ Початок:
+
+
+
+ Step:
+ Крок:
+
+
+
+ DebugLogDock
+
+
+ Debug Log
+
+
+
+
+ Downloader
+
+
+
+ Updater
+ Менеджер оновлень
+
+
+
+
+
+ Downloading updates
+ Завантаження оновлень
+
+
+
+ Time remaining: 0 minutes
+ Часу залишилось: 0 хвилин
+
+
+
+ Open
+ Відкрити
+
+
+
+
+ Stop
+ Зупинити
+
+
+
+
+ Time remaining
+ Часу залишилось
+
+
+
+ unknown
+ невідомо
+
+
+
+ Error
+ Помилка
+
+
+
+ Cannot find downloaded update!
+ Завантажене оновлення не знайдено!
+
+
+
+ Close
+ Закрити
+
+
+
+ Download complete!
+ Завантаження завершено!
+
+
+
+ The installer will open separately
+
+
+
+
+ Click "OK" to begin installing the update
+ Натисніть "ОК" для встановлення оновлення
+
+
+
+ In order to install the update, you may need to quit the application.
+ Щоб інсталювати оновлення, вам може знадобитися вийти з програми.
+
+
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+
+
+
+
+ Click the "Open" button to apply the update
+ Натисніть кнопку "Відкрити" для застосування оновлень
+
+
+
+ Are you sure you want to cancel the download?
+ Ви дійсно хочете скасувати завантаження ?
+
+
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ Ви дійсно хочете скасувати завантаження ? Це важливе оновлення, тому роботу програми буде завершено.
+
+
+
+
+ %1 bytes
+ %1 байт
+
+
+
+
+ %1 KB
+ %1 КБ
+
+
+
+
+ %1 MB
+ %1 МБ
+
+
+
+ of
+ з
+
+
+
+ Downloading Updates
+ Завантаження оновлень
+
+
+
+ Time Remaining
+ Часу залишилось
+
+
+
+ Unknown
+ Невідомо
+
+
+
+ about %1 hours
+ близько %1 годин
+
+
+
+ about one hour
+ близько години
+
+
+
+ %1 minutes
+ %1 хвилин
+
+
+
+ 1 minute
+ 1 хвилина
+
+
+
+ %1 seconds
+ %1 секунд
+
+
+
+ 1 second
+ 1 секунда
+
+
+
+ EditorInfoStatusBar
+
+
+ Length: %L1 Lines: %L2
+ Розмір: %L1 Рядків: %L2
+
+
+
+ Sel: N/A
+ Обрано: N/A
+
+
+
+ Sel: %L1 | %L2
+ Обрано: %L1 | %L2
+
+
+
+ Ln: %L1 Col: %L2
+ Рядок: %L1 Стовпець: %L2
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ ANSI
+ ANSI
+
+
+
+ UTF-8
+ UTF-8
+
+
+
+ EditorInspectorDock
+
+
+ Editor Inspector
+ Аналізатор редактору
+
+
+
+ Position Information
+ Інформація про позицію
+
+
+
+ Current Position
+ Поточна позиція
+
+
+
+ Current Position (x, y)
+ Поточна позиція (x, y)
+
+
+
+ Column
+ Стовпець
+
+
+
+ Current Style
+ Поточний стиль
+
+
+
+ Current Line
+ Поточний рядок
+
+
+
+ Line Length
+ Розмір рядка
+
+
+
+ Line End Position
+ Позиція кінця рядка
+
+
+
+ Line Indentation
+ Відступ рядка
+
+
+
+ Line Indent Position
+ Позиція відступу рядка
+
+
+
+ Selection Information
+ Інформація про виділення
+
+
+
+ Mode
+ Режим
+
+
+
+ Is Rectangle
+ Прямокутне виділення ?
+
+
+
+ Selection Empty
+ Виділення пусте ?
+
+
+
+ Main Selection
+
+
+
+
+ # of Selections
+
+
+
+
+ Multiple Selections
+
+
+
+
+ Document Information
+ Інформація про документ
+
+
+
+ Length
+ Довжина
+
+
+
+ Line Count
+ Кількісь рядків
+
+
+
+ View Information
+ Інформація про видиму область
+
+
+
+ Lines on Screen
+ Макс. кількість рядків на екрані
+
+
+
+ First Visible Line
+ Перший видимий рядок
+
+
+
+ X Offset
+ Зміщення по осі Х
+
+
+
+ Fold Information
+ Інформація про блок
+
+
+
+ Visible From Doc Line
+
+
+
+
+ Doc Line From Visible
+
+
+
+
+ Fold Level
+ Рівень блоку
+
+
+
+ Is Fold Header
+ Початок блоку ?
+
+
+
+ Fold Parent
+ Початок блоку
+
+
+
+ Last Child
+ Кінець блоку
+
+
+
+ Contracted Fold Next
+
+
+
+
+ Caret
+ Каретка
+
+
+
+ Anchor
+ Якір
+
+
+
+ Caret Virtual Space
+
+
+
+
+ Anchor Virtual Space
+
+
+
+
+ FileList
+
+
+ File List
+ Список файлів
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ &Шукати
+
+
+
+ Search Mode
+ Режим пошуку
+
+
+
+ &Normal
+ З&а замовчуванням
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ Р&озширений(\n, \r, \t, \0, \x...)
+
+
+
+ Re&gular expression
+ Р&егулярні вирази
+
+
+
+ &. matches newline
+
+
+
+
+ Transparenc&y
+ &Прозорість вікна
+
+
+
+ On losing focus
+ При втраті фокусу
+
+
+
+ Always
+ Завжди
+
+
+
+ Coun&t
+ &Кількість
+
+
+
+ &Replace
+ &Замінити
+
+
+
+ Replace &All
+ Замінити &всі
+
+
+
+ Replace All in &Opened Documents
+ За&мінити всі у відкритих документах
+
+
+
+ Find All in All &Opened Documents
+ З&найти всі у всих відкритих документах
+
+
+
+ Find All in Current Document
+ Знайти всі у поточному документі
+
+
+
+ Close
+ Закрити
+
+
+
+ &Find:
+ Шукати:
+
+
+
+ Replace:
+ Замінити:
+
+
+
+ Backward direction
+ Зворотній напрям
+
+
+
+ Match &whole word only
+ Ш&укати ціле слово
+
+
+
+ Match &case
+ Враховувати рег&істр
+
+
+
+ Wra&p Around
+ &Циклічний пошук
+
+
+
+ Replace
+ Замінити
+
+
+ Replaced %L1 matches
+ Замінено %L1 відповідність
+
+
+
+
+ Replaced %Ln matches
+
+
+
+
+
+
+
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ Досягнуто кінець документу. Знайдено 1 збіг.
+
+
+
+ No matches found.
+ Нічого не знайдено.
+
+
+
+ 1 occurrence was replaced
+ Був замінений 1 збіг
+
+
+
+ No more occurrences were found
+ Більше збігів не знайдено
+
+
+
+ Found %Ln matches
+
+ Знайдено %Ln співпадінь
+
+
+
+
+
+ Found %L1 matches
+ Знайдено %L1 збігів
+
+
+
+ FolderAsWorkspaceDock
+
+
+ Folder as Workspace
+ Каталог як робочий простір
+
+
+
+ HexViewerDock
+
+
+ Hex Viewer
+ HEX-переглядач
+
+
+
+ LanguageInspectorDock
+
+
+ Language Inspector
+ Аналізатор синтаксису
+
+
+
+ Language:
+ Синтаксис:
+
+
+
+ Lexer:
+
+
+
+
+ Properties:
+ Властивості:
+
+
+
+ Property
+ Властивість
+
+
+
+ Type
+ Тип
+
+
+
+
+ Description
+ Опис
+
+
+
+ Value
+ Значення
+
+
+
+ Keywords:
+ Ключові слова:
+
+
+
+ ID
+ ID
+
+
+
+ Styles:
+ Стилі:
+
+
+
+ TextLabel
+
+
+
+
+ Position %1 Style %2
+ Позиція: %1 Стиль: %2
+
+
+
+ LuaConsoleDock
+
+
+ Lua Console
+ Консоль Lua
+
+
+
+ MacroEditorDialog
+
+
+ Macro Editor
+ Редактор макросів
+
+
+
+ Name
+ Назва
+
+
+
+ Shortcut
+ Скорочення
+
+
+
+ Steps:
+ Операції:
+
+
+
+ Insert Macro Step
+ Вставити операцію
+
+
+
+ Delete Selected Macro Step
+ Видалити операцію
+
+
+
+ Move Selected Macro Step Up
+ Перемістити операцію вгору
+
+
+
+ Move Selected Macro Step Down
+ Перемістити операцію вниз
+
+
+
+ Copy Selected Macro
+ Копіювати макрос
+
+
+
+ Delete Selected Macro
+ Видалити макрос
+
+
+
+ Delete Macro
+ Видалити макрос
+
+
+
+ Are you sure you want to delete <b>%1</b>?
+ Ви дійсно хочете видалити <b>%1</b>?
+
+
+
+ (Copy)
+ (копіювати)
+
+
+
+ MacroRunDialog
+
+
+ Run a Macro Multiple Times
+ Виконати макрос багато разів
+
+
+
+ Macro:
+ Макрос:
+
+
+
+ Run Until End of File
+ Виконувати до кінця файлу
+
+
+
+ Execute...
+ Виконати...
+
+
+
+ times
+ разів
+
+
+
+ Run
+ Виконати
+
+
+
+ Cancel
+ Скасувати
+
+
+
+ MacroSaveDialog
+
+
+ Save Macro
+ Збереження макросу
+
+
+
+ Name:
+ Назва:
+
+
+
+ Shortcut:
+ Скорочення:
+
+
+
+ OK
+ OK
+
+
+
+ Cancel
+ Скасувати
+
+
+
+ MacroStepTableModel
+
+
+ Name
+ Назва
+
+
+
+ Text
+ Текст
+
+
+
+ MainWindow
+
+
+ Notepad Next[*]
+ Notepad Next[*]
+
+
+
+ +
+
+
+
+
+ &File
+ &Файл
+
+
+
+ Close More
+ Закрити
+
+
+
+ &Recent Files
+ &Останні файли
+
+
+
+
+ Export As
+ Експортувати як
+
+
+
+ &Edit
+ &Редагування
+
+
+
+ Copy More
+ Копіювати
+
+
+
+ Indent
+ Відступ
+
+
+
+ EOL Conversion
+ Перетворення символу кінця рядку (EOL)
+
+
+
+ Convert Case
+ Змінити регістр
+
+
+
+ Line Operations
+ Операції з рядками
+
+
+
+ Comment/Uncomment
+ Закоментувати/розкоментувати
+
+
+
+ Copy As
+ Копіювати як
+
+
+
+ Encoding/Decoding
+ Зашифрувати/Розшифрувати
+
+
+
+ Search
+ &Пошук
+
+
+
+ Bookmarks
+ Закладки
+
+
+
+ &View
+ &Вид
+
+
+
+ &Zoom
+ &Масштаб
+
+
+
+ Show Symbol
+ Показувати символи
+
+
+
+ Fold Level
+ Згорнути рівень
+
+
+
+ Unfold Level
+ Розгорнути рівень
+
+
+
+ Language
+ &Синтаксис
+
+
+
+ Settings
+ П&араметри
+
+
+
+ Macro
+ &Макрос
+
+
+
+ Help
+ &Довідка
+
+
+
+ Encoding
+ Набір символів
+
+
+
+ Main Tool Bar
+ Головна панель інструментів
+
+
+
+ &New
+ &Новий
+
+
+
+ Create a new file
+ Створити новий файл
+
+
+
+ Ctrl+N
+
+
+
+
+ &Open...
+ &Відкрити...
+
+
+
+ Ctrl+O
+
+
+
+
+ &Save
+ &Зберегти
+
+
+
+ Save
+ Зберегти
+
+
+
+ Ctrl+S
+
+
+
+
+ E&xit
+ Ви&йти
+
+
+
+ &Undo
+ &Відмінити операцію
+
+
+
+ Ctrl+Z
+
+
+
+
+ &Redo
+ &Повторити операцію
+
+
+
+ Ctrl+Y
+
+
+
+
+ Cu&t
+ В&ирізати
+
+
+
+ Ctrl+X
+
+
+
+
+ &Copy
+ &Копіювати
+
+
+
+ Ctrl+C
+
+
+
+
+ &Paste
+ В&ставити
+
+
+
+ Ctrl+V
+
+
+
+
+ &Delete
+ Ви&далити
+
+
+
+ Del
+
+
+
+
+ Copy Full Path
+ Копіювати повний шлях
+
+
+
+ Copy File Name
+ Копіювати назву файлу
+
+
+
+ Copy File Directory
+ Копіювати назву каталогу
+
+
+
+ &Close
+ За&крити
+
+
+
+ Close the current file
+ Закрити поточний файл
+
+
+
+ Ctrl+W
+
+
+
+
+ Save &As...
+ З&берегти як...
+
+
+
+ Ctrl+Alt+S
+
+
+
+
+ Save a Copy As...
+ Зберегти копію як...
+
+
+
+ Sav&e All
+ Зб&ерегти все
+
+
+
+ Ctrl+Shift+S
+
+
+
+
+ Select A&ll
+ &Обрати всі
+
+
+
+ Ctrl+A
+
+
+
+
+ Increase Indent
+ Збільшити відступ
+
+
+
+ Decrease Indent
+ Зменшити відступ
+
+
+
+ Rename...
+ Перейменувати...
+
+
+
+ Re&load
+ &Перезавантажити
+
+
+
+ Windows (CR LF)
+ Windows (CR LF)
+
+
+
+ Unix (LF)
+ Unix (LF)
+
+
+
+ Macintosh (CR)
+ Macintosh (CR)
+
+
+
+ UPPER CASE
+ ВЕРХНІЙ РЕГІСТР
+
+
+
+ Convert text to upper case
+ Перетворити в ВЕРХНІЙ РЕГІСТР
+
+
+
+ lower case
+ нижній регістр
+
+
+
+ Convert text to lower case
+ Перетворити в нижній регістр
+
+
+
+ Duplicate Current Line
+ Дублювати поточний рядок
+
+
+
+ Alt+Down
+
+
+
+
+ Split Lines
+ Розділити рядки
+
+
+
+ Join Lines
+ Об'єднати рядки
+
+
+
+ Ctrl+J
+
+
+
+
+ Move Selected Lines Up
+ Перемістити поточний рядок вверх
+
+
+
+ Ctrl+Shift+Up
+
+
+
+
+ Move Selected Lines Down
+ Перемістити поточний рядок вниз
+
+
+
+ Ctrl+Shift+Down
+
+
+
+
+ Clos&e All
+ Зак&рити все
+
+
+
+ Close All files
+ Закрити всі файли
+
+
+
+ Ctrl+Shift+W
+
+
+
+
+ Close All Except Active Document
+ Закрити всі документи окрім поточного
+
+
+
+ Close All to the Left
+ Закрити всі ліворуч
+
+
+
+ Close All to the Right
+ Закрити всі праворуч
+
+
+
+ Zoom &In
+ Ма&сштаб +
+
+
+
+ Ctrl++
+
+
+
+
+ Zoom &Out
+ &Масштаб -
+
+
+
+ Ctrl+-
+
+
+
+
+ Reset Zoom
+ Масштаб за змовчуванням
+
+
+
+ Ctrl+0
+
+
+
+
+ About Qt
+ Про Qt
+
+
+
+ About Notepad Next
+ Про Notepad Next
+
+
+
+ Show Whitespace
+ Показувати пробіл
+
+
+
+ Show End of Line
+ Показувати кінець рядку
+
+
+
+ Show All Characters
+ Показувати всі символи
+
+
+
+ Show Indent Guide
+ Показувати лінії відступу
+
+
+
+ Show Wrap Symbol
+ Показувати символ переносу
+
+
+
+ Word Wrap
+ Перенесення слів
+
+
+
+ Restore Recently Closed File
+ Відновити щойно закритий файл
+
+
+
+ Ctrl+Shift+T
+
+
+
+
+ Open All Recent Files
+ Відкрити ві нещодавні файли
+
+
+
+ Clear Recent Files List
+ Очистити список нещодавніх файлів
+
+
+
+ &Find...
+ &Знайти...
+
+
+
+ Ctrl+F
+
+
+
+
+ Find in Files...
+ Знайти в файлах...
+
+
+
+ Find &Next
+ Знайти &наступний
+
+
+
+ F3
+
+
+
+
+ Find &Previous
+ Знайти &попередній
+
+
+
+ &Replace...
+ З&амінити...
+
+
+
+ Ctrl+H
+
+
+
+
+ Full Screen
+ Повноекранний режим
+
+
+
+ F11
+
+
+
+
+
+ Start Recording
+ Почати запис
+
+
+
+ Playback
+ Виконати
+
+
+
+ Ctrl+Shift+P
+
+
+
+
+ Save Current Recorded Macro...
+ Зберегти щойно записаний макрос...
+
+
+
+ Run a Macro Multiple Times...
+ Виконати макрос багато разів...
+
+
+
+ Preferences...
+ Налаштування...
+
+
+
+ Quick Find
+ Швидкий пошук
+
+
+
+ Ctrl+Alt+I
+
+
+
+
+ Select Next Instance
+ Виділити схожі вирази
+
+
+
+ Ctrl+D
+
+
+
+
+ Move to Trash...
+ Перемістити до смітника...
+
+
+
+ Move to Trash
+ Перемістити до смітника
+
+
+
+ Check for Updates...
+ Перевірити оновлення...
+
+
+
+ &Go to Line...
+ П&ерейти до рядку...
+
+
+
+ Ctrl+G
+
+
+
+
+ Print...
+ Друк...
+
+
+
+ Ctrl+P
+
+
+
+
+ Open Folder as Workspace...
+ Відкрити каталог як робочий простір...
+
+
+
+ Toggle Single Line Comment
+ Однорядковий коментар
+
+
+
+ Ctrl+/
+
+
+
+
+ Single Line Comment
+ Закоментувати один рядок
+
+
+
+ Ctrl+K
+
+
+
+
+ Single Line Uncomment
+ Розкоментувати один рядок
+
+
+
+ Ctrl+Shift+K
+
+
+
+
+ Edit Macros...
+ Редагувати макрос...
+
+
+
+ This is not currently implemented
+ Ця можливість ще не реалізована
+
+
+
+ Column Mode...
+ Створити стовпець...
+
+
+
+ Export as HTML...
+ Експортувати як HTML...
+
+
+
+ Export as RTF...
+ Експортувати як RTF...
+
+
+
+ Copy as HTML
+ Копіювати як HTML
+
+
+
+ Copy as RTF
+ Копіювати як RTF
+
+
+
+ Base 64 Encode
+ Зашифрувати Base 64
+
+
+
+ URL Encode
+ Зашифрувати URL
+
+
+
+ Base 64 Decode
+ Розшифрувати Base 64
+
+
+
+ URL Decode
+ Розшифрувати URL
+
+
+
+ Copy URL
+ Копіювати URL
+
+
+
+ Remove Empty Lines
+ Видалити пусті рядки
+
+
+
+
+ Show in Explorer
+ Показати в файловому менеджері
+
+
+
+ Open Command Prompt Here
+ Відкрити командний рядок тут
+
+
+
+ Toggle Bookmark
+ Додати/видалити закладку
+
+
+
+ Ctrl+F2
+
+
+
+
+ Next Bookmark
+ Наступна закладка
+
+
+
+ F2
+
+
+
+
+ Previous Bookmark
+ Попередня закладка
+
+
+
+ Shift+F2
+
+
+
+
+ Clear Bookmarks
+ Очистити закладки
+
+
+
+ Invert Bookmarks
+ Інвертувати закладки
+
+
+
+ Next Tab
+ Наступна вкладка
+
+
+
+ Ctrl+Tab
+
+
+
+
+ Previous Tab
+ Попередня вкладка
+
+
+
+ Ctrl+Shift+Tab
+
+
+
+
+ Fold Level 1
+ Згорнути рівень 1
+
+
+
+ Alt+1
+
+
+
+
+ Fold Level 2
+ Згорнути рівень 2
+
+
+
+ Alt+2
+
+
+
+
+ Fold Level 3
+ Згорнути рівень 3
+
+
+
+ Alt+3
+
+
+
+
+ Fold Level 4
+ Згорнути рівень 4
+
+
+
+ Alt+4
+
+
+
+
+ Unfold Level 1
+ Розгорнути рівень 1
+
+
+
+ Alt+Shift+1
+
+
+
+
+ Unfold Level 2
+ Розгорнути рівень 2
+
+
+
+ Alt+Shift+2
+
+
+
+
+ Unfold Level 3
+ Розгорнути рівень 3
+
+
+
+ Alt+Shift+3
+
+
+
+
+ Unfold Level 4
+ Розгорнути рівень 4
+
+
+
+ Alt+Shift+4
+
+
+
+
+ Fold All
+ Згорнути всі
+
+
+
+ Alt+0
+
+
+
+
+ Unfold All
+ Розгорнути всі
+
+
+
+ Alt+Shift+0
+
+
+
+
+ Fold Level 5
+ Згорнути рівень 5
+
+
+
+ Alt+5
+
+
+
+
+ Fold Level 6
+ Згорнути рівень 6
+
+
+
+ Alt+6
+
+
+
+
+ Fold Level 7
+ Згорнути рівень 7
+
+
+
+ Alt+7
+
+
+
+
+ Fold Level 8
+ Згорнути рівень 8
+
+
+
+ Alt+8
+
+
+
+
+ Fold Level 9
+ Згорнути рівень 9
+
+
+
+ Alt+9
+
+
+
+
+ Unfold Level 5
+ Розгорнути рівень 5
+
+
+
+ Alt+Shift+5
+
+
+
+
+ Unfold Level 6
+ Розгорнути рівень 6
+
+
+
+ Alt+Shift+6
+
+
+
+
+ Unfold Level 7
+ Розгорнути рівень 7
+
+
+
+ Alt+Shift+7
+
+
+
+
+ Unfold Level 8
+ Розгорнути рівень 8
+
+
+
+ Alt+Shift+8
+
+
+
+
+ Unfold Level 9
+ Розгорнути рівень 9
+
+
+
+ Alt+Shift+9
+
+
+
+
+ Go to line
+ Перейти до рядку
+
+
+
+ Line Number (1 - %1)
+ Номер рядку (1 - %1)
+
+
+
+ Stop Recording
+ Зупинити запис
+
+
+
+ New %1
+ Новий %1
+
+
+
+ Create File
+ Створити файл
+
+
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> не існує. Бажаєте створити його ?
+
+
+
+
+ Save file <b>%1</b>?
+ Зберегти файл <b>%1</b>?
+
+
+
+
+ Save File
+ Зберегти файл
+
+
+
+ Open Folder as Workspace
+ Відкрити каталог як робочий простір
+
+
+
+ Reload File
+ Перезавантажити файл
+
+
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ Ви дійсно хочете перезавантажити файл<b>%1</b>? Всі не збережені зміни будут втрачені.
+
+
+
+ Save a Copy As
+ Зберегти копію як
+
+
+
+
+ Rename
+ Перейменувати
+
+
+
+ Name:
+ Назва:
+
+
+
+ Delete File
+ Видалити файл
+
+
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ Ви дійсно хочете перемістити файл <b>%1</b> до смітника ?
+
+
+
+ Error Deleting File
+ Помилка видалення файлу
+
+
+
+ Something went wrong deleting <b>%1</b>?
+ Під час видалення щось пішло не так <b>%1</b>?
+
+
+
+ Administrator
+ Адміністратор
+
+
+
+ Error Saving File
+ Помилка збереження файлу
+
+
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ Під час збереження виникла помилка<b>%1</b><br><br>Помилка: %2
+
+
+
+ Zoom: %1%
+ Масштаб: %1%
+
+
+
+ No updates are available at this time.
+ На даний момент не має ніяких оновлень.
+
+
+
+ PreferencesDialog
+
+
+ Preferences
+ Налаштування
+
+
+
+ Show menu bar
+ Показувати панель меню
+
+
+
+ Show toolbar
+ Показувати панель інструментів
+
+
+
+ Show status bar
+ Показувати рядок стану
+
+
+
+ Restore previous session
+ Відновлювати попередній сеанс
+
+
+
+ Temporary files
+ Тимчасові файли
+
+
+
+ Translation:
+ Локалізація:
+
+
+
+ Exit on last tab closed
+ Закривати програму при закритті останньої вкладки
+
+
+
+ Default Font
+ Шрифт за замовчуванням
+
+
+
+ Font
+ Шрифт
+
+
+
+ Font Size
+ Розмір
+
+
+
+ pt
+
+
+
+
+ TextLabel
+ Текстове поле
+
+
+
+ An application restart is required to apply certain settings.
+ Для застосування деяких змін потрібно перезапустити програму.
+
+
+ Menu Bar
+ Панель меню
+
+
+ Tool Bar
+ Панель інструментів
+
+
+ Status Bar
+ Панель стану
+
+
+ Restore Previous Session
+ Відновлювати попередню сесію
+
+
+
+ Unsaved changes
+ Не збережені зміни
+
+
+ Temp Files
+ Тимчасові файли
+
+
+
+ Combine search results
+ Об'єднувати результати пошуку
+
+
+
+ Warning
+ Попередження
+
+
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ Ця функція є експериментальною, тому її не можна вважати безпечною. Її використання може призвести до втрати даних. Використовуйте цю опцію на власний розсуд.
+
+
+
+ <System Default>
+ <Мова системи>
+
+
+
+ QObject
+
+
+ List All Tabs
+ Список всіх вкладок
+
+
+
+ Detach Group
+ Відокремити групу
+
+
+
+ Minimize
+ Мінімізувати
+
+
+ Close Active Tab
+ Закрити поточну вкладку
+
+
+ Close Group
+ Закрити групу
+
+
+
+ Close Tab
+ Закрити вкладку
+
+
+
+ QuickFindWidget
+
+
+ Frame
+
+
+
+
+ Match case
+ Чутливість до регістру
+
+
+
+ Aa
+ Aa
+
+
+
+ Match whole word
+ Шукати ціле слово
+
+
+
+ |A|
+ |A|
+
+
+
+ Use regular expression
+ Використовувати регулярний вираз
+
+
+
+ . *
+ . *
+
+
+
+ Alt+E
+ Alt+E
+
+
+
+ Find...
+ Шукати...
+
+
+
+ %L1/%L2
+ %L1/%L2
+
+
+
+ SearchResultsDock
+
+
+ Search Results
+ Результати пошуку
+
+
+
+ Collapse All
+ Згорнути все
+
+
+
+ Expand All
+ Розгорнути все
+
+
+
+ Delete Entry
+ Видалити запис
+
+
+
+ Delete All
+ Видалити все
+
+
+
+ Updater
+
+
+ Would you like to download the update now?
+ Ви бажаєте завантажити оновлення зараз ?
+
+
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ Ви бажаєте завантажити оновлення зараз ? Це важливе оновлення, тому роботу програми буде завершено.
+
+
+
+ Version %1 of %2 has been released!
+ Версія %1 з %2 була опублікована!
+
+
+
+ No updates are available for the moment
+ На даний момент жодні оновлення не доступні
+
+
+
+ Congratulations! You are running the latest version of %1
+ Вітаємо! Ви використовуєте останню версію %1
+
+
+
+ ads::CAutoHideTab
+
+
+ Detach
+ Відокремити
+
+
+
+ Pin To...
+ Прикріпити до...
+
+
+
+ Top
+ Верх
+
+
+
+ Left
+ Ліворуч
+
+
+
+ Right
+ Праворуч
+
+
+
+ Bottom
+ Низ
+
+
+
+ Unpin (Dock)
+
+
+
+
+ Close
+ Закрити
+
+
+
+ ads::CDockAreaTitleBar
+
+
+ Detach Group
+ Відокремити групу
+
+
+
+ Detach
+ Відокремити
+
+
+
+
+ Unpin (Dock)
+
+
+
+
+
+ Pin Group
+ Прикріпити групу
+
+
+
+ Pin Group To...
+
+
+
+
+ Top
+ Верх
+
+
+
+ Left
+ Ліворуч
+
+
+
+ Right
+ Праворуч
+
+
+
+ Bottom
+ Низ
+
+
+
+
+ Minimize
+ Мінімізувати
+
+
+
+
+
+ Close
+ Закрити
+
+
+
+
+ Close Group
+ Закрити групу
+
+
+
+ Close Other Groups
+ Закрити інші групи
+
+
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+
+
+
+
+ Close Active Tab
+ Закрити поточну вкладку
+
+
+
+ ads::CDockManager
+
+
+ Show View
+
+
+
+
+ ads::CDockWidgetTab
+
+
+ Detach
+ Відокремити
+
+
+
+ Pin
+
+
+
+
+ Pin To...
+
+
+
+
+ Top
+
+
+
+
+ Left
+
+
+
+
+ Right
+
+
+
+
+ Bottom
+
+
+
+
+ Close
+ Закрити
+
+
+
+ Close Others
+
+
+
+
diff --git a/i18n/NotepadNext_zh_CN.ts b/i18n/NotepadNext_zh_CN.ts
index 0efc3c69a..96dac0d7e 100644
--- a/i18n/NotepadNext_zh_CN.ts
+++ b/i18n/NotepadNext_zh_CN.ts
@@ -1,2325 +1,2485 @@
-
-
+
+
ColumnEditorDialog
-
- Column Mode
- 列编辑模式
+
+ Column Mode
+ 列编辑模式
-
- Text
- 文本
+
+ Text
+ 文本
-
- Numbers
- 数字
+
+ Numbers
+ 数字
-
- Start:
- 开始:
+
+ Start:
+ 开始:
-
- Step:
- 步长:
+
+ Step:
+ 步长:
-
-
+
+
DebugLogDock
-
- Debug Log
- 调试日志
+
+ Debug Log
+ 调试日志
-
-
- EditorInfoStatusBar
+
+
+ Downloader
-
- Length: %L1 Lines: %L2
- 长度:%L1 行数:%L2
+
+
+ Updater
+ 更新器
-
- Sel: N/A
- 选择:N/A
+
+
+
+ Downloading updates
+ 正在下载更新
-
- Sel: %L1 | %L2
- 选择:%L1 | %L2
+
+ Time remaining: 0 minutes
+ 剩余时间:0 分钟
-
- Ln: %L1 Col: %L2
- 行:%L1 列:%L2
+
+ Open
+ 开始
-
- Macintosh (CR)
-
+
+
+ Stop
+ 停止
-
- Windows (CR LF)
-
+
+
+ Time remaining
+ 剩余时间
-
- Unix (LF)
-
+
+ unknown
+ 未知
-
- ANSI
-
+
+ Error
+ 错误
-
- UTF-8
-
+
+ Cannot find downloaded update!
+ 无法找到可下载更新!
-
- UTF-8 BOM
-
+
+ Close
+ 关闭
-
- UTF-16LE BOM
-
+
+ Download complete!
+ 下载完成!
-
- UTF-16BE BOM
-
+
+ The installer will open separately
+ 安装程序会在单独的窗口打开
-
- OVR
- This is a short abbreviation to indicate characters will be replaced when typing
-
+
+ Click "OK" to begin installing the update
+ 点击“OK”按钮开始安装更新
-
- INS
- This is a short abbreviation to indicate characters will be inserted when typing
-
+
+ In order to install the update, you may need to quit the application.
+ 为了安装更新,你可能需要退出已打开的程序。
-
-
- EditorInspectorDock
-
- Editor Inspector
- 编辑查看器
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+ 为了安装更新,你可能需要退出已打开的程序。这是一个强制更新,现在退出将关闭应用程序
-
- Position Information
- 位置信息
+
+ Click the "Open" button to apply the update
+ 点击“Open”按钮开始应用更新
-
- Current Position
- 当前位置
+
+ Are you sure you want to cancel the download?
+ 你确定要取消下载吗?
-
- Current Position (x, y)
- 当前位置 (x, y)
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ 你确定要取消下载吗?这是一个强制更新,现在退出将关闭应用程序
-
- Column
- 列
+
+
+ %1 bytes
+ %1 字节
-
- Current Style
- 当前样式
+
+
+ %1 KB
+
-
- Current Line
- 当前行
+
+
+ %1 MB
+
-
- Line Length
- 行长
+
+ of
+ /
-
- Line End Position
- 行尾位置
+
+ Downloading Updates
+ 下载更新中
-
- Line Indentation
- 行缩进
+
+ Time Remaining
+ 剩余时间
-
- Line Indent Position
- 行缩进位置
+
+ Unknown
+ 未知
-
- Selection Information
- 选择信息
+
+ about %1 hours
+ 约 %1 小时
-
- Mode
- 模式
+
+ about one hour
+ 约 1 小时
-
- Is Rectangle
- 矩形选择
+
+ %1 minutes
+ %1 分钟
-
- Selection Empty
- 已选择空
+
+ 1 minute
+ 1 分钟
-
- Main Selection
- 主光标编号
+
+ %1 seconds
+ %1 秒
-
- # of Selections
- 光标数
+
+ 1 second
+ 1 秒
+
+
+ EditorInfoStatusBar
-
- Multiple Selections
- 光标列表
+
+ Sel: N/A
+ 选择:N/A
-
- Document Information
- 文档信息
+
+ Length: %L1 Lines: %L2
+ 长度:%L1 行数:%L2
-
- Length
- 长度
+
+ Sel: %L1 | %L2
+ 选择:%L1 | %L2
-
- Line Count
- 行数
+
+ Ln: %L1 Col: %L2
+ 行:%L1 列:%L2
-
- View Information
- 视图信息
+
+ Macintosh (CR)
+
-
- Lines on Screen
- 屏幕上行数
+
+ Windows (CR LF)
+
-
- First Visible Line
- 第一可视行
+
+ Unix (LF)
+
-
- X Offset
- X 偏移
+
+ ANSI
+
-
- Fold Information
- 折叠信息
+
+ UTF-8
+
+
+
+ EditorInspectorDock
-
- Visible From Doc Line
- 从文档行可见
+
+ Editor Inspector
+ 编辑查看器
-
- Doc Line From Visible
- 可见文档行
+
+ Current Position
+ 当前位置
-
- Fold Level
- 折叠层级
+
+ Current Position (x, y)
+ 当前位置 (x, y)
-
- Is Fold Header
- 是折叠组标题行
+
+ Column
+ 列
-
- Fold Parent
- 折叠组父级
+
+ Current Style
+ 当前样式
-
- Last Child
- 最后子节点
+
+ Current Line
+ 当前行
-
- Contracted Fold Next
- 下一个已折叠项
+
+ Line Length
+ 行长
-
- Caret
- 光标位置
+
+ Line End Position
+ 行尾位置
-
- Anchor
- 锚点位置
+
+ Line Indentation
+ 行缩进
-
- Caret Virtual Space
- 插入虚拟空格
+
+ Line Indent Position
+ 行缩进位置
-
- Anchor Virtual Space
- 定位虚拟空格
+
+ Selection Information
+ 选择信息
-
-
- FileList
-
- File List
- 文件列表
+
+ Is Rectangle
+ 仅多光标模式下为 True
+ 矩形选择
-
- ...
-
+
+ Selection Empty
+ 已选择空
-
- Sort by File Name
-
+
+ Main Selection
+ 永远是最后一个光标;编号从 #0 开始;光标列表见下方(Multiple Selections)
+ 主光标编号
-
-
- FindReplaceDialog
-
-
-
- Find
- 查找
+
+ # of Selections
+ 光标数
-
- Search Mode
- 搜索模式
+
+ Multiple Selections
+ 光标列表
-
- &Normal
- 正常模式(&N)
+
+ Document Information
+ 文档信息
-
- E&xtended (\n, \r, \t, \0, \x...)
- 扩展模式(&E) (\n, \r, \t, \0, \x...)
+
+ Position Information
+ 位置信息
-
- Re&gular expression
- 正则表达式 (&g)
+
+ Mode
+ 模式
-
- &. matches newline
- &. 匹配换行
+
+ Length
+ 长度
-
- Transparenc&y
- 透明度(&y)
+
+ Line Count
+ 行数
-
- On losing focus
- 失去焦点时
+
+ View Information
+ 指主编辑器视图
+ 视图信息
-
- Always
- 总是
+
+ Lines on Screen
+ 屏幕上行数
-
- Coun&t
- 计数(&t)
+
+ First Visible Line
+ 第一可视行
-
- &Replace
- 替换(&R)
+
+ X Offset
+ TODO:具体含义尚不清楚
+ X 偏移
-
- Replace &All
- 全部替换(&A)
+
+ Fold Information
+ 折叠信息
-
- Replace All in &Opened Documents
- 替换所有打开文件(&O)
+
+ Visible From Doc Line
+ TODO:具体含义尚不清楚
+ 从文档行可见
-
- Find All in All &Opened Documents
- 查找所有打开文件(&O)
+
+ Doc Line From Visible
+ TODO:具体含义尚不清楚
+ 可见文档行
-
- Find All in Current Document
- 查找当前文档
+
+ Fold Level
+ 折叠层级
-
- Close
- 关闭
+
+ Is Fold Header
+ 是折叠组标题行
-
- &Find:
- &查找:
+
+ Fold Parent
+ (行号)
+ 折叠组父级
-
- Replace:
- 替换:
+
+ Last Child
+ (行号)
+ 最后子节点
-
- Backward direction
- 反向搜索
+
+ Contracted Fold Next
+ (行号)
+ 下一个已折叠项
-
- Match &whole word only
- 全词匹配(&w)
+
+ Caret
+ 选择终止的位置
+ 光标位置
-
- Match &case
- 匹配大小写(&c)
+
+ Anchor
+ 选择开始的位置
+ 锚点位置
-
- Wra&p Around
- 循环搜索(&p)
+
+ Caret Virtual Space
+ TODO:具体含义尚不清楚
+ 插入虚拟空格
-
- Replace
- 替换
+
+ Anchor Virtual Space
+ TODO:具体含义尚不清楚
+ 定位虚拟空格
-
-
-
- Replaced %Ln matches
-
- 已替换 %Ln 个匹配项
-
+
+
+ FileList
+
+
+ File List
+ 文件列表
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ 查找
+
+
+
+ Search Mode
+ 搜索模式
+
+
+
+ &Normal
+ 正常模式(&N)
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ 扩展模式(&E) (\n, \r, \t, \0, \x...)
+
+
+
+ Re&gular expression
+ 正则表达式 (&g)
+
+
+
+ &. matches newline
+ &. 匹配换行
+
+
+
+ Transparenc&y
+ 透明度(&y)
+
+
+
+ On losing focus
+ 失去焦点时
+
+
+
+ Always
+ 总是
+
+
+
+ Coun&t
+ 计数(&t)
+
+
+
+ &Replace
+ 替换(&R)
+
+
+
+ Replace &All
+ 全部替换(&A)
+
+
+
+ Replace All in &Opened Documents
+ 替换所有打开文件(&O)
+
+
+
+ Find All in All &Opened Documents
+ 查找所有打开文件(&O)
-
- The end of the document has been reached. Found 1st occurrence from the top.
- 已经到达文档的末尾。从顶部找到第一个匹配项。
+
+ Find All in Current Document
+ 查找当前文档
-
- No matches found.
- 没有找到匹配项。
+
+ Close
+ 关闭
-
- 1 occurrence was replaced
- 已替换 1 个匹配项
+
+ &Find:
+ &查找:
-
- No more occurrences were found
- 没有找到更多匹配项
+
+ Replace:
+ 替换:
+
+
+
+ Backward direction
+ 反向搜索
+
+
+
+ Match &whole word only
+ 全词匹配(&w)
+
+
+
+ Match &case
+ 匹配大小写(&c)
+
+
+
+ Wra&p Around
+ 开启此选项,搜索达到文件末尾后,会自动从头继续搜索。
+ 循环搜索(&p)
+
+
+
+ Replace
+ 替换
+
+
+ Replaced %L1 matches
+ 已替换 %L1 个匹配项
-
- Found %Ln matches
-
- 找到 %Ln 个匹配项
-
-
-
-
- FolderAsWorkspaceDock
+
+
+ Replaced %Ln matches
+
+ 已替换 %Ln 个匹配项
+
+
-
- Folder as Workspace
- 文件夹工作区
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ 已经到达文档的末尾。从顶部找到第一个匹配项。
-
-
- LanguageInspectorDock
-
- Language Inspector
- 语言查看器
+
+ No matches found.
+ 没有找到匹配项。
-
- Language:
- 语言:
+
+ 1 occurrence was replaced
+ 已替换 1 个匹配项
-
- Lexer:
- 词法分析器:
+
+ No more occurrences were found
+ 没有找到更多匹配项
+
+
+
+ Found %Ln matches
+
+ 找到 %Ln 个匹配项
+
-
- Properties:
- 属性:
+ Found %L1 matches
+ 查找了 %L1 个匹配项
+
+
+ FolderAsWorkspaceDock
-
- Property
- 属性
+
+ Folder as Workspace
+ 窗口标题
+ 文件夹工作区
+
+
+ HexViewerDock
-
- Type
- 类型
+
+ Hex Viewer
+ Hex 查看器
+
+
+ LanguageInspectorDock
-
-
- Description
- 描述
+
+ Language Inspector
+ 语言查看器
-
- Value
- 值
+
+ Language:
+ 语言:
-
- Keywords:
- 关键词:
+
+ Lexer:
+ 词法分析器:
-
- ID
-
+
+ Properties:
+ 属性:
-
- Styles:
- 样式:
+
+ Property
+ 属性
-
- TextLabel
- 文本标签
+
+ Type
+ 类型
-
- Position %1 Style %2
- 位置 %1 样式 %2
+
+
+ Description
+ 描述
-
-
- LuaConsoleDock
-
- Lua Console
- Lua 终端
+
+ Value
+ 值
-
-
- MacroEditorDialog
-
- Macro Editor
- 宏编辑器
+
+ Keywords:
+ 关键词:
-
- Name
- 名称
+
+ ID
+
-
- Shortcut
- 快捷方式
+
+ Styles:
+ 样式:
-
- Steps:
- 步骤:
+
+ TextLabel
+ 文本标签
-
- Insert Macro Step
- 插入宏步
+
+ Position %1 Style %2
+ 位置 %1 样式 %2
+
+
+ LuaConsoleDock
-
- Delete Selected Macro Step
- 删除已选宏步
+
+ Lua Console
+ Lua 终端
+
+
+ MacroEditorDialog
-
- Move Selected Macro Step Up
- 向上移动已选宏步
+
+ Macro Editor
+ 宏编辑器
-
- Move Selected Macro Step Down
- 向下移动已选宏步
+
+ Name
+ 名称
-
- Copy Selected Macro
- 复制已选宏步
+
+ Shortcut
+ 快捷方式
-
- Delete Selected Macro
- 清空已选宏
+
+ Steps:
+ 步骤:
-
- Delete Macro
- 删除宏
+
+ Insert Macro Step
+ 插入宏步
-
- Are you sure you want to delete <b>%1</b>?
- 你确定想要删掉<b>%1</b>吗?
+
+ Delete Selected Macro Step
+ 删除已选宏步
-
- (Copy)
- (复制)
+
+ Move Selected Macro Step Up
+ 向上移动已选宏步
-
-
- MacroRunDialog
-
- Run a Macro Multiple Times
- 多次运行宏
+
+ Move Selected Macro Step Down
+ 向下移动已选宏步
-
- Macro:
- 宏:
+
+ Copy Selected Macro
+ 复制已选宏步
-
- Run Until End of File
- 运行至文件末尾
+
+ Delete Selected Macro
+ 清空已选宏
-
- Execute...
- 执行...
+
+ Delete Macro
+ 删除宏
-
- times
- 次
+
+ Are you sure you want to delete <b>%1</b>?
+ 你确定想要删掉<b>%1</b>吗?
-
- Run
- 运行
+
+ (Copy)
+ (复制)
+
+
+ MacroRunDialog
-
- Cancel
- 取消
+
+ Run a Macro Multiple Times
+ 多次运行宏
-
-
- MacroSaveDialog
-
- Save Macro
- 保存宏
+
+ Macro:
+ 宏:
-
- Name:
- 宏名:
+
+ Run Until End of File
+ 运行至文件末尾
-
- Shortcut:
- 快捷键:
+
+ Execute...
+ 执行...
-
- OK
- 确定
+
+ times
+ 次
-
- Cancel
- 取消
+
+ Run
+ 运行
-
-
- MacroStepTableModel
-
- Name
- 名称
+
+ Cancel
+ 取消
+
+
+ MacroSaveDialog
-
- Text
- 文本
+
+ Save Macro
+ 保存宏
-
-
- MainWindow
-
- Notepad Next[*]
-
+
+ Name:
+ 宏名:
-
- +
-
+
+ Shortcut:
+ 快捷键:
-
- &File
- 文件(&F)
+
+ OK
+ 确定
-
- Close More
- 更多关闭方式
+
+ Cancel
+ 取消
+
+
+ MacroStepTableModel
-
- &Recent Files
- 最近打开的文件(&R)
+
+ Name
+ 名称
-
-
- Export As
- 导出为
+
+ Text
+ 文本
+
+
+ MainWindow
-
- &Edit
- 编辑(&E)
+
+ Notepad Next[*]
+ 【不译】
+
-
- Copy More
- 更多复制方式
+
+ +
+ 【不译】按F11进入全屏模式,右上角按钮。用于退出全屏
+
-
- Indent
- 缩进
+
+ &File
+ 文件(&F)
-
- EOL Conversion
- 行尾序列(EOL)转换
+
+ Close More
+ 更多关闭方式
-
- Convert Case
- 大小写转换
+
+ &Recent Files
+ 最近打开的文件(&R)
-
- Line Operations
- 行操作
+
+ &Edit
+ 编辑(&E)
-
- Comment/Uncomment
- 注释/取消注释
+
+ Copy More
+ 更多复制方式
-
- Copy As
- 复制为
+
+ Indent
+ 缩进
-
- Encoding/Decoding
- 编码/解码
+
+ EOL Conversion
+ 行尾序列(EOL)转换
-
- Search
- 搜索
+
+ Convert Case
+ 大小写转换
-
- Bookmarks
- 书签
+
+ Line Operations
+ 行操作
-
- Mark All Occurrences
-
+
+ Comment/Uncomment
+ 注释/取消注释
-
- Clear Marks
-
+
+ Search
+ 搜索
-
- &View
- 视图(&V)
+
+ Bookmarks
+ 书签
-
- &Zoom
- 缩放(&Z)
+
+ &View
+ 视图(&V)
-
- Show Symbol
- 显示符号标记
+
+ &Zoom
+ 缩放(&Z)
-
- Fold Level
- 折叠层级
+
+ Show Symbol
+ 显示符号标记
-
- Unfold Level
-
+
+ Fold Level
+ 折叠层级
-
- Language
- 语言
+
+ Unfold Level
+
-
- Settings
- 选项
+
+ Language
+ 语言
-
- Macro
- 宏
+
+ Settings
+ 选项
-
- Help
- 帮助
+
+ Macro
+ 宏
-
- Encoding
- 编码
+
+ Help
+ 帮助
-
- Main Tool Bar
- 主工具栏
+
+ Encoding
+ 编码
-
- &New
- 新建(&N)
+
+ Main Tool Bar
+ 主工具栏
-
- Create a new file
- 新建文件
+
+ &New
+ 新建(&N)
-
- Ctrl+N
-
+
+ Create a new file
+ 新建文件
-
- &Open...
- 打开(&O)...
+
+ Ctrl+N
+
-
- Ctrl+O
-
+
+ &Open...
+ 打开(&O)...
-
- &Save
- 保存(&S)
+
+ Ctrl+O
+
-
- Save
- 保存
+
+ &Save
+ 保存(&S)
-
- Ctrl+S
-
+
+ Save
+ 保存
-
- E&xit
- 退出(&E)
+
+ Ctrl+S
+
-
- &Undo
- 撤销(&U)
+
+ E&xit
+ 退出(&E)
-
- Ctrl+Z
-
+
+ &Undo
+ 撤销(&U)
-
- &Redo
- 重做(&R)
+
+ Ctrl+Z
+
-
- Ctrl+Y
-
+
+ &Redo
+ 重做(&R)
-
- Cu&t
- 剪切(&t)
+
+ Ctrl+Y
+
-
- Ctrl+X
-
+
+ Cu&t
+ 剪切(&t)
-
- &Copy
- 复制(&C)
+
+ Ctrl+X
+
-
- Ctrl+C
-
+
+ &Copy
+ 复制(&C)
-
- &Paste
- 粘贴(&P)
+
+ Ctrl+C
+
-
- Ctrl+V
-
+
+ &Paste
+ 粘贴(&P)
-
- &Delete
- 删除(&D)
+
+ Ctrl+V
+
-
- Del
-
+
+ &Delete
+ 删除(&D)
-
- Copy Full Path
- 复制完整路径
+
+ Del
+ Delete 对应的快捷键
+
-
- Copy File Name
- 复制文件名
+
+ Copy Full Path
+ 复制完整路径
-
- Copy File Directory
- 复制文件夹路径
+
+ Copy File Name
+ 复制文件名
-
- &Close
- 关闭(&C)
+
+ Copy File Directory
+ 复制文件夹路径
-
- Close the current file
- 关闭当前文件
+
+ &Close
+ 关闭(&C)
-
- Ctrl+W
-
+
+ Close the current file
+ 关闭当前文件
-
- Save &As...
- 另存为(&A)...
+
+ Ctrl+W
+
-
- Ctrl+Alt+S
-
+
+ Save &As...
+ 另存为(&A)...
-
- Save a Copy As...
- 副本另存为...
+
+ Ctrl+Alt+S
+
-
- Sav&e All
- 保存所有(&e)
+
+ Save a Copy As...
+ 副本另存为...
-
- Ctrl+Shift+S
-
+
+ Sav&e All
+ 保存所有(&e)
-
- Select A&ll
- 选择所有(&A)
+
+ Ctrl+Shift+S
+
-
- Ctrl+A
-
+
+ Select A&ll
+ 选择所有(&A)
-
- Increase Indent
- 增加缩进
+
+ Ctrl+A
+
-
- Decrease Indent
- 减少缩进
+
+ Increase Indent
+ 增加缩进
-
- Rename...
- 重命名...
+
+ Decrease Indent
+ 减少缩进
-
- Re&load
- 重新加载(&l)
+
+ Rename...
+ 重命名...
-
- Windows (CR LF)
- Windows (CR LF)
+
+ Re&load
+ 重新加载(&l)
-
- Unix (LF)
- Unix (LF)
+
+ Windows (CR LF)
+ Windows (CR LF)
-
- Macintosh (CR)
- Macintosh (CR)
+
+ Unix (LF)
+ Unix (LF)
-
- UPPER CASE
- 转换为大写
+
+ Macintosh (CR)
+ Macintosh (CR)
-
- Convert text to upper case
- 转换文本到大写
+
+ UPPER CASE
+ 仅转换选中的词。
+ 转换为大写
-
- lower case
- 转换为小写
+
+ Convert text to upper case
+ 转换文本到大写
-
- Convert text to lower case
- 转换文本到小写
+
+ lower case
+ 仅转换选中的词。
+ 转换为小写
-
- Duplicate Current Line
- 复制并插入当前行
+
+ Convert text to lower case
+ 转换文本到小写
-
- Alt+Down
-
+
+ Duplicate Current Line
+ 会在下一行插入
+ 复制并插入当前行
-
- Split Lines
- 拆分当前行
+
+ Alt+Down
+
-
- Join Lines
- 合并多行
+
+ Split Lines
+ 效果与打开“自动折行”一致,不过使用了硬换行
+ 拆分当前行
-
- Ctrl+J
-
+
+ Join Lines
+ 需要选中多行,否则没有效果。
+ 合并多行
-
- Move Selected Lines Up
- 向下移动选中的行
+
+ Ctrl+J
+
-
- Ctrl+Shift+Up
-
+
+ Move Selected Lines Up
+ 向下移动选中的行
-
- Move Selected Lines Down
- 向上移动选中的行
+
+ Ctrl+Shift+Up
+
-
- Ctrl+Shift+Down
-
+
+ Move Selected Lines Down
+ 向上移动选中的行
-
- Clos&e All
- 关闭所有(&e)
+
+ Ctrl+Shift+Down
+
-
- Close All files
- 关闭所有文件
+
+ Clos&e All
+ 关闭所有(&e)
-
- Ctrl+Shift+W
-
+
+ Close All files
+ 关闭所有文件
-
- Close All Except Active Document
- 关闭其他
+
+ Ctrl+Shift+W
+
-
- Close All to the Left
- 关闭至左侧
+
+ Close All Except Active Document
+ 关闭其他
-
- Close All to the Right
- 关闭至右侧
+
+ Close All to the Left
+ 关闭至左侧
-
- Zoom &In
- 放大(&I)
+
+ Close All to the Right
+ 关闭至右侧
-
- Ctrl++
-
+
+ Zoom &In
+ 放大(&I)
-
- Zoom &Out
- 缩小(&O)
+
+ Ctrl++
+
-
- Ctrl+-
-
+
+ Zoom &Out
+ 缩小(&O)
-
- Reset Zoom
- 重置缩放
+
+ Ctrl+-
+
-
- Ctrl+0
-
+
+ Reset Zoom
+ 重置缩放
-
- About Qt
- 关于 Qt
+
+ Ctrl+0
+
-
- About Notepad Next
- 关于 Notepad Next
+
+ Toggle Single Line Comment
+ 切换单行注释
-
- Show Whitespace
- 显示空格
+
+ Ctrl+/
+
-
- Show End of Line
- 显示行尾
+
+ Single Line Comment
+ 单行注释
-
- Show All Characters
- 显示所有字符
+
+ Ctrl+K
+
-
- Show Indent Guide
- 显示缩进指引
+
+ Single Line Uncomment
+ 取消单行注释
-
- Show Wrap Symbol
- 显示换行标记
+
+ Ctrl+Shift+K
+
-
- Word Wrap
- 自动换行
+
+ Edit Macros...
+ 编辑宏...
-
- Restore Recently Closed File
- 恢复最近关闭的文件
+
+ This is not currently implemented
+ 此功能尚未实现
-
- Ctrl+Shift+T
-
+
+ Column Mode...
+ 列编辑模式...
-
- Open All Recent Files
- 打开所有最近关闭的文件
+
+ Export as HTML...
+ 导出为 HTML...
-
- Clear Recent Files List
- 清除最近打开的文件
+
+ Export as RTF...
+ 导出为 RTF...
-
- &Find...
- 查找(&F)...
+
+ Copy as HTML
+ 复制为 HTML
-
- Ctrl+F
-
+
+ Copy as RTF
+ 复制为 RTF
-
- Find in Files...
- 在文件中查找...
+
+ Base 64 Encode
+ Base 64 编码
-
- Find &Next
- 查找下一个(&N)
+
+ URL Encode
+ URL 编码
-
- F3
-
+
+ Base 64 Decode
+ Base 64 解码
-
- Find &Previous
- 查找上一个(&P)
+
+ URL Decode
+ URL 解码
-
- Shift+F3
-
+
+ Copy URL
+ 复制 URL
-
- &Replace...
- 替换(&R)...
+
+ Remove Empty Lines
+ 删除空行
-
- Ctrl+H
-
+
+
+ Show in Explorer
+ 在资源管理器中查看
-
- Full Screen
- 全屏
+
+ Open Command Prompt Here
+ 在此打开命令提示符
-
- F11
-
+
+ Toggle Bookmark
+ 切换书签
-
-
- Start Recording
- 开始录制
+
+ Ctrl+F2
+
-
- Playback
- 重放宏
+
+ Next Bookmark
+ 下一个书签
-
- Ctrl+Shift+P
-
+
+ F2
+
-
- Save Current Recorded Macro...
- 保存当前已录制的宏...
+
+ Previous Bookmark
+ 上一个书签
-
- Run a Macro Multiple Times...
- 多次运行宏...
+
+ Shift+F2
+
-
- Preferences...
- 偏好设置....
+
+ Clear Bookmarks
+ 清除书签
-
- Quick Find
- 快速查找
+
+ Invert Bookmarks
+ 书签顺序上下颠倒
+ 反转书签
-
- Ctrl+Alt+I
-
+
+ Next Tab
+
-
- Select Next Instance
- 选择下一个实例
+
+ Ctrl+Tab
+
-
- Ctrl+D
-
+
+ Previous Tab
+
-
- Move to Trash...
- 移动至回收站...
+
+ Ctrl+Shift+Tab
+
-
- Move to Trash
- 移动至回收站
+
+ Fold Level 1
+
-
- Check for Updates...
- 检查更新...
+
+ Alt+1
+
-
- &Go to Line...
- 转跳到行(&G)...
+
+ Fold Level 2
+
-
- Ctrl+G
-
+
+ Alt+2
+
-
- Print...
- 打印...
+
+ Fold Level 3
+
-
- Ctrl+P
-
+
+ Alt+3
+
-
- Open Folder as Workspace...
- 打开文件夹为工作区...
+
+ Fold Level 4
+
-
- Toggle Single Line Comment
- 切换单行注释
+
+ Alt+4
+
-
- Ctrl+/
-
+
+ Unfold Level 1
+
-
- Single Line Comment
- 单行注释
+
+ Alt+Shift+1
+
-
- Ctrl+K
-
+
+ Unfold Level 2
+
-
- Single Line Uncomment
- 取消单行注释
+
+ Alt+Shift+2
+
-
- Ctrl+Shift+K
-
+
+ Unfold Level 3
+
-
- Edit Macros...
- 编辑宏...
+
+ Alt+Shift+3
+
-
- This is not currently implemented
- 此功能尚未实现
+
+ Unfold Level 4
+
-
- Column Mode...
- 列编辑模式...
+
+ Alt+Shift+4
+
-
- Export as HTML...
- 导出为 HTML...
+
+ Fold All
+
-
- Export as RTF...
- 导出为 RTF...
+
+ Alt+0
+
-
- Copy as HTML
- 复制为 HTML
+
+ Unfold All
+
-
- Copy as RTF
- 复制为 RTF
+
+ Alt+Shift+0
+
-
- Base 64 Encode
- Base 64 编码
+
+ Fold Level 5
+
-
- URL Encode
- URL 编码
+
+ Alt+5
+
-
- Base 64 Decode
- Base 64 解码
+
+ Fold Level 6
+
-
- URL Decode
- URL 解码
+
+ Alt+6
+
-
- Copy URL
- 复制 URL
+
+ Fold Level 7
+
-
- Remove Empty Lines
- 删除空行
+
+ Alt+7
+
-
-
- Show in Explorer
- 在资源管理器中查看
+
+ Fold Level 8
+
-
- Open %1 Here
-
+
+ Alt+8
+
-
- Toggle Bookmark
- 切换书签
+
+ Fold Level 9
+
-
- Ctrl+F2
-
+
+ Alt+9
+
-
- Next Bookmark
- 下一个书签
+
+ Unfold Level 5
+
-
- F2
-
+
+ Alt+Shift+5
+
-
- Previous Bookmark
- 上一个书签
+
+ Unfold Level 6
+
-
- Shift+F2
-
+
+ Alt+Shift+6
+
-
- Clear Bookmarks
- 清除书签
+
+ Unfold Level 7
+
-
- Invert Bookmarks
- 反转书签
+
+ Alt+Shift+7
+
-
- Next Tab
-
+
+ Unfold Level 8
+
-
- Ctrl+Tab
-
+
+ Alt+Shift+8
+
-
- Previous Tab
-
+
+ Unfold Level 9
+
-
- Ctrl+Shift+Tab
-
+
+ Alt+Shift+9
+
-
- Fold Level 1
-
+
+ About Qt
+ 关于 Qt
-
- Alt+1
-
+
+
+ Export As
+ 导出为
-
- Fold Level 2
-
+
+ Copy As
+ 复制为
-
- Alt+2
-
+
+ Encoding/Decoding
+ 编码/解码
-
- Fold Level 3
-
+
+ About Notepad Next
+ 关于 Notepad Next
-
- Alt+3
-
+
+ Show Whitespace
+ 显示空格
-
- Fold Level 4
-
+
+ Show End of Line
+ 显示行尾
-
- Alt+4
-
+
+ Show All Characters
+ 显示所有字符
-
- Unfold Level 1
-
+
+ Show Indent Guide
+ 显示缩进指引
-
- Alt+Shift+1
-
+
+ Show Wrap Symbol
+ 显示换行标记
-
- Unfold Level 2
-
+
+ Word Wrap
+ 自动换行
-
- Alt+Shift+2
-
+
+ Restore Recently Closed File
+ 只恢复(重新打开)一个文件
+ 恢复最近关闭的文件
-
- Unfold Level 3
-
+
+ Ctrl+Shift+T
+
-
- Alt+Shift+3
-
+
+ Open All Recent Files
+ 历史记录里有的文件都会打开
+ 打开所有最近关闭的文件
-
- Unfold Level 4
-
+
+ Clear Recent Files List
+ 清除最近打开的文件
-
- Alt+Shift+4
-
+
+ &Find...
+ 查找(&F)...
-
- Fold All
-
+
+ Ctrl+F
+
-
- Alt+0
-
+
+ Find in Files...
+ 在文件中查找...
-
- Unfold All
-
+
+ Find &Next
+ 查找下一个(&N)
-
- Alt+Shift+0
-
+
+ F3
+
-
- Fold Level 5
-
+
+ Find &Previous
+ 查找上一个(&P)
-
- Alt+5
-
+
+ &Replace...
+ 替换(&R)...
-
- Fold Level 6
-
+
+ Ctrl+H
+
-
- Alt+6
-
+
+ Full Screen
+ 全屏
-
- Fold Level 7
-
+
+ F11
+
-
- Alt+7
-
+
+
+ Start Recording
+ 开始录制
-
- Fold Level 8
-
+
+ Playback
+ "Macro > Playback"
+ 重放宏
-
- Alt+8
-
+
+ Ctrl+Shift+P
+
-
- Fold Level 9
-
+
+ Save Current Recorded Macro...
+ 保存当前已录制的宏...
-
- Alt+9
-
+
+ Run a Macro Multiple Times...
+ 多次运行宏...
-
- Unfold Level 5
-
+
+ Preferences...
+ 偏好设置....
-
- Alt+Shift+5
-
+
+ Quick Find
+ 快速查找
-
- Unfold Level 6
-
+
+ Ctrl+Alt+I
+
-
- Alt+Shift+6
-
+
+ Select Next Instance
+ 选择下一个实例
-
- Unfold Level 7
-
+
+ Ctrl+D
+
-
- Alt+Shift+7
-
+
+ Move to Trash...
+ 移动至回收站...
-
- Unfold Level 8
-
+
+ Move to Trash
+ 移动至回收站
-
- Alt+Shift+8
-
+
+ Check for Updates...
+ 检查更新...
-
- Unfold Level 9
-
+
+ &Go to Line...
+ 转跳到行(&G)...
-
- Alt+Shift+9
-
+
+ Ctrl+G
+
-
-
- Toggle Overtype
-
+
+ Print...
+ 打印...
-
- Ins
-
+
+ Ctrl+P
+
-
- Debug Info...
-
+
+ Open Folder as Workspace...
+ 打开文件夹为工作区...
-
- Cut Bookmarked Lines
-
+
+ Go to line
+ 转跳到行
-
- Copy Bookmarked Lines
-
+
+ Line Number (1 - %1)
+ 行号(1 - %1)
-
- Delete Bookmarked Lines
-
+
+ Stop Recording
+ 停止录制
-
- Mark Style 1
-
+
+ New %1
+ 用作新建空白文件的标题
+ 新文件 %1
-
- Mark Style 2
-
+
+ Create File
+ 新建文件
-
- Clear Style 1
-
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> 尚不存在,你想要新建一个吗?
-
- Clear Style 2
-
+
+
+ Save file <b>%1</b>?
+ 保存文件 <b>%1</b>?
-
- Mark Style 3
-
+
+
+ Save File
+ 保存文件
-
- Clear Style 3
-
+
+ Open Folder as Workspace
+ 打开文件夹作为工作区
-
-
- Clear All Styles
-
+
+ Reload File
+ 重新加载文件
-
- Remove Duplicate Lines
-
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ 你确定要重新加载 <b>%1</b>?任何未保存的修改都会丢失。
-
- Remove Consecutive Duplicate Lines
-
+
+ Administrator
+
-
- Sort Lines Ascending
-
+
+ Error Saving File
+ 保存文件时出错
-
- Sort Lines Descending
-
+
+ Save a Copy As
+ 副本另存为
-
- Sort Lines Ascending (Case-Insensitive)
-
+
+
+ Rename
+ 重命名
-
- Sort Lines Descending (Case-Insensitive)
-
+
+ Name:
+ 宏名:
-
- Sort Lines by Length Ascending
-
+
+ Delete File
+ 删除文件
-
- Sort Lines by Length Descending
-
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ 你确定要将 <b>%1</b> 移至回收站?
-
- Reverse Line Order
-
+
+ Error Deleting File
+ 删除文件时出错
-
- Go to line
- 转跳到行
+
+ Something went wrong deleting <b>%1</b>?
+ 删除 <b>%1</b> 时出错了?
-
- Line Number (1 - %1)
- 行号(1 - %1)
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ 保存 <b>%1</b> 时发生了错误<br><br>错误:%2
-
- Stop Recording
- 停止录制
+
+ Zoom: %1%
+
-
- Debug Info
-
+
+ No updates are available at this time.
+ 本次无可用更新。
+
+
+ PreferencesDialog
-
- New %1
- 新文件 %1
+
+ Preferences
+ 偏好设置
-
- Create File
- 新建文件
+
+ Show menu bar
+
-
- <b>%1</b> does not exist. Do you want to create it?
- <b>%1</b> 尚不存在,你想要新建一个吗?
+
+ Show toolbar
+
-
-
- Save file <b>%1</b>?
- 保存文件 <b>%1</b>?
+
+ Show status bar
+
-
-
- Save File
- 保存文件
+
+ Restore previous session
+
-
- Open Folder as Workspace
- 打开文件夹作为工作区
+
+ Temporary files
+
-
-
- Reload File
- 重新加载文件
+
+ Translation:
+
-
- Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
- 你确定要重新加载 <b>%1</b>?任何未保存的修改都会丢失。
+
+ Exit on last tab closed
+
-
- Save a Copy As
- 副本另存为
+
+ Default Font
+
-
-
- Rename
- 重命名
+
+ Font
+
-
- Name:
- 宏名:
+
+ Font Size
+
-
- Delete File
- 删除文件
+
+ pt
+
-
- Are you sure you want to move <b>%1</b> to the trash?
- 你确定要将 <b>%1</b> 移至回收站?
+
+ TextLabel
+ 文本标签
-
- Error Deleting File
- 删除文件时出错
+
+ An application restart is required to apply certain settings.
+
-
- Something went wrong deleting <b>%1</b>?
- 删除 <b>%1</b> 时出错了?
+ Menu Bar
+ 菜单栏
-
- Administrator
-
+ Tool Bar
+ 工具栏
-
- <b>%1</b> has been modified by another program. Do you want to reload it?
-
+ Status Bar
+ 状态栏
-
- Read error
-
+ Restore Previous Session
+ 还原之前的会话
-
- Write error
-
+
+ Unsaved changes
+ 未保存的更改
-
- Fatal error
-
+ Temp Files
+ 临时文件们
-
- Resource error
-
+
+ Combine search results
+ 结合搜索结果
-
- Open error
-
+
+ Warning
+ 警告
-
- Abort error
-
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ 本功能是实验性的。对于关键性的重要工作开启本功能并不安全,可能导致数据丢失,使用时风险自负。
-
- Timeout error
-
+
+ <System Default>
+
+
+
+ QObject
-
- Unspecified error
-
+
+ List All Tabs
+ 列出所有标签页
-
- Remove error
-
+
+ Detach Group
+ 脱离分组
-
- Rename error
-
+
+ Minimize
+
-
- Position error
-
+ Close Active Tab
+ 关闭活动的标签页
-
- Resize error
-
+ Close Group
+ 关闭分组
-
- Permissions error
-
+
+ Close Tab
+ 关闭标签页
+
+
+ QuickFindWidget
-
- Copy error
-
+
+ Frame
+ 嵌入式搜索窗口,标题不会显示。
+
-
- Unknown error (%1)
-
+
+ Match case
+ 区分大小写
-
- Error Saving File
- 保存文件时出错
+
+ Aa
+ “区分大小写”按钮
+
-
- An error occurred when saving <b>%1</b><br><br>Error: %2
- 保存 <b>%1</b> 时发生了错误<br><br>错误:%2
+
+ Match whole word
+ 全词匹配
-
- Zoom: %1%
-
+
+ |A|
+ “全词匹配”按钮
+
-
- No updates are available at this time.
- 本次无可用更新。
+
+ Use regular expression
+ 使用正则表达式
-
-
- PreferencesDialog
-
- Preferences
- 偏好设置
+
+ . *
+ “正则表达式”按钮
+
-
- Show menu bar
-
+
+ Alt+E
+
-
- Show toolbar
-
+
+ Find...
+ 查找...
-
- Show status bar
-
+
+ %L1/%L2
+
+
+
+ SearchResultsDock
-
- Restore previous session
-
+
+ Search Results
+ 搜索结果
-
- Unsaved changes
- 未保存的更改
+
+ Collapse All
+ 全部折叠
-
- Temporary files
-
+
+ Expand All
+ 全部展开
-
- Recenter find/replace dialog when opened
-
+
+ Delete Entry
+ 删除条目
-
- Combine search results
- 结合搜索结果
+
+ Delete All
+ 删除所有
+
+
+ Updater
-
- Translation:
-
+
+ Would you like to download the update now?
+ 你想要现在下载更新吗?
-
- Exit on last tab closed
-
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ 你想要现在下载更新吗?这是一个强制性的更新,现在退出将关闭应用程序
-
- Default Font
-
+
+ Version %1 of %2 has been released!
+ %1 版本的 %2 已经发布了!
-
- Font
-
+
+ No updates are available for the moment
+ 暂时没有可用的更新
-
- Font Size
-
+
+ Congratulations! You are running the latest version of %1
+ 恭喜!你已经在使用最新版本的 %1
+
+
+ ads::CAutoHideTab
-
- pt
-
+
+ Detach
+ 脱离
-
- Default Line Endings
-
+
+ Pin To...
+
-
- Highlight URLs
-
+
+ Top
+
-
- Show Line Numbers
-
+
+ Left
+
-
-
- Default Directory
-
+
+ Right
+
-
- Follow Current Document
-
+
+ Bottom
+
-
- Last Used Directory
-
+
+ Unpin (Dock)
+
-
- ...
-
+
+ Close
+ 关闭
+
+
+ ads::CDockAreaTitleBar
-
- TextLabel
- 文本标签
+
+ Detach Group
+ 脱离分组
-
- An application restart is required to apply certain settings.
-
+
+ Detach
+ 脱离
-
- Warning
- 警告
+
+
+ Unpin (Dock)
+
-
- This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
- 本功能是实验性的。对于关键性的重要工作开启本功能并不安全,可能导致数据丢失,使用时风险自负。
+
+
+ Pin Group
+
-
- System Default
-
+
+ Pin Group To...
+
-
- Windows (CR LF)
- Windows (CR LF)
+
+ Top
+
-
- Linux (LF)
-
+
+ Left
+
-
- Macintosh (CR)
- Macintosh (CR)
+
+ Right
+
-
- <System Default>
-
+
+ Bottom
+
-
-
- QuickFindWidget
-
- Frame
-
+
+
+ Minimize
+
-
- Find...
- 查找...
+
+
+
+ Close
+ 关闭
-
- Match case
- 区分大小写
+
+
+ Close Group
+ 关闭分组
-
- Aa
-
+
+ Close Other Groups
+ 关闭其他分组
-
- Match whole word
- 全词匹配
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+
-
- |A|
-
+
+ Close Active Tab
+ 关闭活动的标签页
+
+
+ ads::CDockManager
-
- Use regular expression
- 使用正则表达式
+
+ Show View
+ 显示视图
+
+
+ ads::CDockWidgetTab
-
- . *
-
+
+ Detach
+ 脱离
-
- Alt+E
-
+
+ Pin
+
-
- %L1/%L2
-
+
+ Pin To...
+
-
-
- SearchResultsDock
-
- Search Results
- 搜索结果
+
+ Top
+
-
- Copy Results to Clipboard
-
+
+ Left
+
-
- Collapse All
- 全部折叠
+
+ Right
+
-
- Expand All
- 全部展开
+
+ Bottom
+
-
- Delete Entry
- 删除条目
+
+ Close
+ 关闭
-
- Delete All
- 删除所有
+
+ Close Others
+ 关闭其他
-
+
diff --git a/i18n/NotepadNext_zh_TW.ts b/i18n/NotepadNext_zh_TW.ts
index df244d331..2dbb35a66 100644
--- a/i18n/NotepadNext_zh_TW.ts
+++ b/i18n/NotepadNext_zh_TW.ts
@@ -1,2325 +1,2449 @@
-
-
+
+
ColumnEditorDialog
-
- Column Mode
- 欄編輯模式
+
+ Column Mode
+ 欄編輯模式
-
- Text
- 文字
+
+ Text
+ 文字
-
- Numbers
- 數字
+
+ Numbers
+ 數字
-
- Start:
- 開始:
+
+ Start:
+ 開始:
-
- Step:
- 步驟:
+
+ Step:
+ 步驟:
-
-
+
+
DebugLogDock
-
- Debug Log
- 除錯日誌
+
+ Debug Log
+ 除錯日誌
-
-
- EditorInfoStatusBar
+
+
+ Downloader
-
- Length: %L1 Lines: %L2
- 長度:%L1 行數:%L2
+
+
+ Updater
+ 更新程式
-
- Sel: N/A
- 選擇:N/A
+
+
+
+ Downloading updates
+ 正在下載更新
-
- Sel: %L1 | %L2
- 選擇:%L1 | %L2
+
+ Time remaining: 0 minutes
+ 剩餘時間:0 分鐘
-
- Ln: %L1 Col: %L2
- 行:%L1 列:%L2
+
+ Open
+ 開啟
-
- Macintosh (CR)
- Macintosh (CR)
+
+
+ Stop
+ 停止
-
- Windows (CR LF)
- Windows (CR LF)
+
+
+ Time remaining
+ 剩餘時間
-
- Unix (LF)
- Unix (LF)
+
+ unknown
+ 未知
-
- ANSI
- ANSI
+
+ Error
+ 錯誤
-
- UTF-8
- UTF-8
+
+ Cannot find downloaded update!
+ 找不到已下載的更新!
-
- UTF-8 BOM
- UTF-8 BOM
+
+ Close
+ 關閉
-
- UTF-16LE BOM
- UTF-16LE BOM
+
+ Download complete!
+ 下載完成!
-
- UTF-16BE BOM
- UTF-16BE BOM
+
+ The installer will open separately
+ 安裝程式將單獨開啟
-
- OVR
- This is a short abbreviation to indicate characters will be replaced when typing
- OVR
+
+ Click "OK" to begin installing the update
+ 點選「確定」開始安裝更新
-
- INS
- This is a short abbreviation to indicate characters will be inserted when typing
- INS
+
+ In order to install the update, you may need to quit the application.
+ 為了安裝更新,您可能需要退出應用程式。
-
-
- EditorInspectorDock
-
- Editor Inspector
- 編輯器檢視器
+
+ In order to install the update, you may need to quit the application. This is a mandatory update, exiting now will close the application
+ 為了安裝更新,您可能需要退出應用程式。這是一個強制更新,現在退出將關閉應用程式
-
- Position Information
- 位置資訊
+
+ Click the "Open" button to apply the update
+ 點選「開啟」按鈕以應用更新
-
- Current Position
- 目前位置
+
+ Are you sure you want to cancel the download?
+ 您確定要取消下載嗎?
-
- Current Position (x, y)
- 目前位置 (x, y)
+
+ Are you sure you want to cancel the download? This is a mandatory update, exiting now will close the application
+ 您確定要取消下載嗎?這是一個強制更新,現在退出將關閉應用程式
-
- Column
- 列
+
+
+ %1 bytes
+ %1 位元組
-
- Current Style
- 目前樣式
+
+
+ %1 KB
+ %1 KB
-
- Current Line
- 目前這行
+
+
+ %1 MB
+ %1 MB
-
- Line Length
- 行長
+
+ of
+ /
-
- Line End Position
- 行尾位置
+
+ Downloading Updates
+ 正在下載更新
-
- Line Indentation
- 行縮排
+
+ Time Remaining
+ 剩餘時間
-
- Line Indent Position
- 行縮排位置
+
+ Unknown
+ 未知
-
- Selection Information
- 選取資訊
+
+ about %1 hours
+ 大約 %1 小時
-
- Mode
- 模式
+
+ about one hour
+ 大約一小時
-
- Is Rectangle
- 是否為矩形
+
+ %1 minutes
+ %1 分鐘
-
- Selection Empty
- 選取是否為空
+
+ 1 minute
+ 1 分鐘
-
- Main Selection
- 主要選取
+
+ %1 seconds
+ %1 秒
-
- # of Selections
- 選取數量
+
+ 1 second
+ 1 秒
+
+
+ EditorInfoStatusBar
-
- Multiple Selections
- 多重選取
+
+ Sel: N/A
+ 選擇:N/A
-
- Document Information
- 文件資訊
+
+ Length: %L1 Lines: %L2
+ 長度:%L1 行數:%L2
-
- Length
- 長度
+
+ Sel: %L1 | %L2
+ 選擇:%L1 | %L2
-
- Line Count
- 行數
+
+ Ln: %L1 Col: %L2
+ 行:%L1 列:%L2
-
- View Information
- 檢視資訊
+
+ Macintosh (CR)
+ Macintosh (CR)
-
- Lines on Screen
- 螢幕上的行數
+
+ Windows (CR LF)
+ Windows (CR LF)
-
- First Visible Line
- 第一可見行
+
+ Unix (LF)
+ Unix (LF)
-
- X Offset
- X 偏移
+
+ ANSI
+ ANSI
-
- Fold Information
- 折疊資訊
+
+ UTF-8
+ UTF-8
+
+
+ EditorInspectorDock
-
- Visible From Doc Line
- 從文件行可見
+
+ Editor Inspector
+ 編輯器檢視器
-
- Doc Line From Visible
- 可見文件行
+
+ Current Position
+ 目前位置
-
- Fold Level
- 折疊層級
+
+ Current Position (x, y)
+ 目前位置 (x, y)
-
- Is Fold Header
- 是否為折疊標頭
+
+ Column
+ 列
-
- Fold Parent
- 折疊父項
+
+ Current Style
+ 目前樣式
-
- Last Child
- 最後子項
+
+ Current Line
+ 目前這行
-
- Contracted Fold Next
- 下一個已折疊項
+
+ Line Length
+ 行長
-
- Caret
- 游標位置
+
+ Line End Position
+ 行尾位置
-
- Anchor
- 錨點位置
+
+ Line Indentation
+ 行縮排
-
- Caret Virtual Space
- 插入虛擬空格
+
+ Line Indent Position
+ 行縮排位置
-
- Anchor Virtual Space
- 定位虛擬空格
+
+ Selection Information
+ 選取資訊
-
-
- FileList
-
- File List
- 檔案列表
+
+ Is Rectangle
+ 是否為矩形
-
- ...
- ...
+
+ Selection Empty
+ 選取是否為空
-
- Sort by File Name
- Sort by File Name
+
+ Main Selection
+ 主要選取
-
-
- FindReplaceDialog
-
-
-
- Find
- 查詢
+
+ # of Selections
+ 選取數量
-
- Search Mode
- 搜尋模式
+
+ Multiple Selections
+ 多重選取
-
- &Normal
- 正常模式(&N)
+
+ Document Information
+ 文件資訊
-
- E&xtended (\n, \r, \t, \0, \x...)
- 擴充套件模式(&E) (\n, \r, \t, \0, \x...)
+
+ Position Information
+ 位置資訊
-
- Re&gular expression
- 正則表達式 (&g)
+
+ Mode
+ 模式
-
- &. matches newline
- &. 符合換行符號
+
+ Length
+ 長度
-
- Transparenc&y
- 透明度(&y)
+
+ Line Count
+ 行數
-
- On losing focus
- 失去焦點時
+
+ View Information
+ 檢視資訊
-
- Always
- 總是
+
+ Lines on Screen
+ 螢幕上的行數
-
- Coun&t
- 計數(&t)
+
+ First Visible Line
+ 第一可見行
-
- &Replace
- 取代(&R)
+
+ X Offset
+ X 偏移
-
- Replace &All
- 全部取代(&A)
+
+ Fold Information
+ 折疊資訊
-
- Replace All in &Opened Documents
- 取代所有開啟檔案(&O)
+
+ Visible From Doc Line
+ 從文件行可見
-
- Find All in All &Opened Documents
- 查詢所有開啟檔案(&O)
+
+ Doc Line From Visible
+ 可見文件行
-
- Find All in Current Document
- 查詢目前文件
+
+ Fold Level
+ 折疊層級
-
- Close
- 關閉
+
+ Is Fold Header
+ 是否為折疊標頭
-
- &Find:
- &查詢:
+
+ Fold Parent
+ 折疊父項
-
- Replace:
- 取代:
+
+ Last Child
+ 最後子項
-
- Backward direction
- 反向搜尋
+
+ Contracted Fold Next
+ 下一個已折疊項
-
- Match &whole word only
- 全詞符合(&w)
+
+ Caret
+ 游標位置
-
- Match &case
- 大小寫相符(&c)
+
+ Anchor
+ 錨點位置
-
- Wra&p Around
- 迴圈搜尋(&p)
+
+ Caret Virtual Space
+ 插入虛擬空格
-
- Replace
- 取代
+
+ Anchor Virtual Space
+ 定位虛擬空格
-
-
-
- Replaced %Ln matches
-
- 已取代 %Ln 個符合項目
-
+
+
+ FileList
+
+
+ File List
+ 檔案列表
+
+
+
+ FindReplaceDialog
+
+
+
+
+ Find
+ 查詢
+
+
+
+ Search Mode
+ 搜尋模式
+
+
+
+ &Normal
+ 正常模式(&N)
+
+
+
+ E&xtended (\n, \r, \t, \0, \x...)
+ 擴充套件模式(&E) (\n, \r, \t, \0, \x...)
+
+
+
+ Re&gular expression
+ 正則表達式 (&g)
+
+
+
+ &. matches newline
+ &. 符合換行符號
+
+
+
+ Transparenc&y
+ 透明度(&y)
+
+
+
+ On losing focus
+ 失去焦點時
+
+
+
+ Always
+ 總是
+
+
+
+ Coun&t
+ 計數(&t)
+
+
+
+ &Replace
+ 取代(&R)
+
+
+
+ Replace &All
+ 全部取代(&A)
+
+
+
+ Replace All in &Opened Documents
+ 取代所有開啟檔案(&O)
-
- The end of the document has been reached. Found 1st occurrence from the top.
- 已經到達文件的末尾。從頂端找到第一個符合項目。
+
+ Find All in All &Opened Documents
+ 查詢所有開啟檔案(&O)
-
- No matches found.
- 沒有找到符合項目。
+
+ Find All in Current Document
+ 查詢目前文件
-
- 1 occurrence was replaced
- 已取代 1 個符合項目
+
+ Close
+ 關閉
-
- No more occurrences were found
- 沒有找到更多符合項目
+
+ &Find:
+ &查詢:
+
+
+
+ Replace:
+ 取代:
+
+
+
+ Backward direction
+ 反向搜尋
+
+
+
+ Match &whole word only
+ 全詞符合(&w)
+
+
+
+ Match &case
+ 大小寫相符(&c)
+
+
+
+ Wra&p Around
+ 迴圈搜尋(&p)
+
+
+
+ Replace
+ 取代
-
- Found %Ln matches
-
- 找到 %Ln 個符合項目
-
-
-
-
- FolderAsWorkspaceDock
+
+
+ Replaced %Ln matches
+
+ 已取代 %Ln 個符合項目
+
+
-
- Folder as Workspace
- 資料夾作為工作區
+
+ The end of the document has been reached. Found 1st occurrence from the top.
+ 已經到達文件的末尾。從頂部找到第一個符合項目。
-
-
- LanguageInspectorDock
-
- Language Inspector
- 語言檢視器
+
+ No matches found.
+ 沒有找到符合項目。
-
- Language:
- 語言:
+
+ 1 occurrence was replaced
+ 已取代 1 個符合項目
-
- Lexer:
- 詞法分析器:
+
+ No more occurrences were found
+ 沒有找到更多符合項目
+
+
+ Found %Ln matches
+
+ 找到 %Ln 個符合項目
+
+
+
+
+ FolderAsWorkspaceDock
-
- Properties:
- 屬性:
+
+ Folder as Workspace
+ 資料夾作為工作區
+
+
+ HexViewerDock
-
- Property
- 屬性
+
+ Hex Viewer
+ Hex 檢視器
+
+
+ LanguageInspectorDock
-
- Type
- 類型
+
+ Language Inspector
+ 語言檢視器
-
-
- Description
- 描述
+
+ Language:
+ 語言:
-
- Value
- 值
+
+ Lexer:
+ 詞法分析器:
-
- Keywords:
- 關鍵詞:
+
+ Properties:
+ 屬性:
-
- ID
- ID
+
+ Property
+ 屬性
-
- Styles:
- 樣式:
+
+ Type
+ 類型
-
- TextLabel
- 文字標籤
+
+
+ Description
+ 描述
-
- Position %1 Style %2
- 位置 %1 樣式 %2
+
+ Value
+ 值
-
-
- LuaConsoleDock
-
- Lua Console
- Lua 控制台
+
+ Keywords:
+ 關鍵詞:
-
-
- MacroEditorDialog
-
- Macro Editor
- 巨集編輯器
+
+ ID
+ ID
-
- Name
- 名稱
+
+ Styles:
+ 樣式:
-
- Shortcut
- 快捷鍵
+
+ TextLabel
+ 文字標籤
-
- Steps:
- 步驟:
+
+ Position %1 Style %2
+ 位置 %1 樣式 %2
+
+
+ LuaConsoleDock
-
- Insert Macro Step
- 插入巨集步驟
+
+ Lua Console
+ Lua 控制台
+
+
+ MacroEditorDialog
-
- Delete Selected Macro Step
- 刪除選取的巨集步驟
+
+ Macro Editor
+ 巨集編輯器
-
- Move Selected Macro Step Up
- 向上移動選取的巨集步驟
+
+ Name
+ 名稱
-
- Move Selected Macro Step Down
- 向下移動選取的巨集步驟
+
+ Shortcut
+ 快捷鍵
-
- Copy Selected Macro
- 複製選取的巨集
+
+ Steps:
+ 步驟:
-
- Delete Selected Macro
- 刪除選取的巨集
+
+ Insert Macro Step
+ 插入巨集步驟
-
- Delete Macro
- 刪除巨集
+
+ Delete Selected Macro Step
+ 刪除選取的巨集步驟
-
- Are you sure you want to delete <b>%1</b>?
- 您確定要刪除 <b>%1</b> 嗎?
+
+ Move Selected Macro Step Up
+ 向上移動選取的巨集步驟
-
- (Copy)
- (複製)
+
+ Move Selected Macro Step Down
+ 向下移動選取的巨集步驟
-
-
- MacroRunDialog
-
- Run a Macro Multiple Times
- 多次執行巨集
+
+ Copy Selected Macro
+ 複製選取的巨集
-
- Macro:
- 巨集:
+
+ Delete Selected Macro
+ 刪除選取的巨集
-
- Run Until End of File
- 執行至檔案結尾
+
+ Delete Macro
+ 刪除巨集
-
- Execute...
- 執行...
+
+ Are you sure you want to delete <b>%1</b>?
+ 您確定要刪除 <b>%1</b> 嗎?
-
- times
- 次
+
+ (Copy)
+ (複製)
+
+
+ MacroRunDialog
-
- Run
- 執行
+
+ Run a Macro Multiple Times
+ 多次執行巨集
-
- Cancel
- 取消
+
+ Macro:
+ 巨集:
-
-
- MacroSaveDialog
-
- Save Macro
- 儲存巨集
+
+ Run Until End of File
+ 執行至檔案結尾
-
- Name:
- 名稱:
+
+ Execute...
+ 執行...
-
- Shortcut:
- 快捷鍵:
+
+ times
+ 次
-
- OK
- 確定
+
+ Run
+ 執行
-
- Cancel
- 取消
+
+ Cancel
+ 取消
-
-
- MacroStepTableModel
+
+
+ MacroSaveDialog
-
- Name
- 名稱
+
+ Save Macro
+ 儲存巨集
-
- Text
- 文字
+
+ Name:
+ 名稱:
-
-
- MainWindow
-
- Notepad Next[*]
- Notepad Next[*]
+
+ Shortcut:
+ 快捷鍵:
-
- +
- +
+
+ OK
+ 確定
-
- &File
- 檔案(&F)
+
+ Cancel
+ 取消
+
+
+ MacroStepTableModel
-
- Close More
- 關閉更多
+
+ Name
+ 名稱
-
- &Recent Files
- 最近開啟的檔案(&R)
+
+ Text
+ 文字
+
+
+ MainWindow
-
-
- Export As
- 匯出為
+
+ Notepad Next[*]
+ Notepad Next[*]
-
- &Edit
- 編輯(&E)
+
+ +
+ +
-
- Copy More
- 更多複製方式
+
+ &File
+ 檔案(&F)
-
- Indent
- 縮排
+
+ Close More
+ 關閉更多
-
- EOL Conversion
- 行尾序列(EOL)轉換
+
+ &Recent Files
+ 最近開啟的檔案(&R)
-
- Convert Case
- 大小寫轉換
+
+ &Edit
+ 編輯(&E)
-
- Line Operations
- 行操作
+
+ Copy More
+ 更多複製方式
-
- Comment/Uncomment
- 註解/取消註解
+
+ Indent
+ 縮排
-
- Copy As
- 複製為
+
+ EOL Conversion
+ 行尾序列(EOL)轉換
-
- Encoding/Decoding
- 編碼/解碼
+
+ Convert Case
+ 大小寫轉換
-
- Search
- 搜尋
+
+ Line Operations
+ 行操作
-
- Bookmarks
- 書籤
+
+ Comment/Uncomment
+ 註解/取消註解
-
- Mark All Occurrences
- Mark All Occurrences
+
+ Search
+ 搜尋
-
- Clear Marks
- Clear Marks
+
+ Bookmarks
+ 書籤
-
- &View
- 檢視(&V)
+
+ &View
+ 檢視(&V)
-
- &Zoom
- 縮放(&Z)
+
+ &Zoom
+ 縮放(&Z)
-
- Show Symbol
- 顯示符號標記
+
+ Show Symbol
+ 顯示符號標記
-
- Fold Level
- 折疊層級
+
+ Fold Level
+ 折疊層級
-
- Unfold Level
- 展開層級
+
+ Unfold Level
+
-
- Language
- 語言
+
+ Language
+ 語言
-
- Settings
- 設定
+
+ Settings
+ 設定
-
- Macro
- 巨集
+
+ Macro
+ 巨集
-
- Help
- 幫助
+
+ Help
+ 幫助
-
- Encoding
- 編碼
+
+ Encoding
+ 編碼
-
- Main Tool Bar
- 主工具列
+
+ Main Tool Bar
+ 主工具列
-
- &New
- 新建(&N)
+
+ &New
+ 新建(&N)
-
- Create a new file
- 建立新檔案
+
+ Create a new file
+ 建立新檔案
-
- Ctrl+N
- Ctrl+N
+
+ Ctrl+N
+ Ctrl+N
-
- &Open...
- 開啟(&O)...
+
+ &Open...
+ 開啟(&O)...
-
- Ctrl+O
- Ctrl+O
+
+ Ctrl+O
+ Ctrl+O
-
- &Save
- 儲存(&S)
+
+ &Save
+ 儲存(&S)
-
- Save
- 儲存
+
+ Save
+ 儲存
-
- Ctrl+S
- Ctrl+S
+
+ Ctrl+S
+ Ctrl+S
-
- E&xit
- 離開(&E)
+
+ E&xit
+ 離開(&E)
-
- &Undo
- 復原(&U)
+
+ &Undo
+ 復原(&U)
-
- Ctrl+Z
- Ctrl+Z
+
+ Ctrl+Z
+ Ctrl+Z
-
- &Redo
- 重做(&R)
+
+ &Redo
+ 重做(&R)
-
- Ctrl+Y
- Ctrl+Y
+
+ Ctrl+Y
+ Ctrl+Y
-
- Cu&t
- 剪下(&t)
+
+ Cu&t
+ 剪下(&t)
-
- Ctrl+X
- Ctrl+X
+
+ Ctrl+X
+ Ctrl+X
-
- &Copy
- 複製(&C)
+
+ &Copy
+ 複製(&C)
-
- Ctrl+C
- Ctrl+C
+
+ Ctrl+C
+ Ctrl+C
-
- &Paste
- 貼上(&P)
+
+ &Paste
+ 貼上(&P)
-
- Ctrl+V
- Ctrl+V
+
+ Ctrl+V
+ Ctrl+V
-
- &Delete
- 刪除(&D)
+
+ &Delete
+ 刪除(&D)
-
- Del
- Del
+
+ Del
+ Del
-
- Copy Full Path
- 複製完整路徑
+
+ Copy Full Path
+ 複製完整路徑
-
- Copy File Name
- 複製檔名
+
+ Copy File Name
+ 複製檔名
-
- Copy File Directory
- 複製資料夾路徑
+
+ Copy File Directory
+ 複製資料夾路徑
-
- &Close
- 關閉(&C)
+
+ &Close
+ 關閉(&C)
-
- Close the current file
- 關閉目前檔案
+
+ Close the current file
+ 關閉目前檔案
-
- Ctrl+W
- Ctrl+W
+
+ Ctrl+W
+ Ctrl+W
-
- Save &As...
- 另存新檔(&A)...
+
+ Save &As...
+ 另存新檔(&A)...
-
- Ctrl+Alt+S
- Ctrl+Alt+S
+
+ Ctrl+Alt+S
+ Ctrl+Alt+S
-
- Save a Copy As...
- 另存副本為...
+
+ Save a Copy As...
+ 另存副本為...
-
- Sav&e All
- 全部儲存(&e)
+
+ Sav&e All
+ 全部儲存(&e)
-
- Ctrl+Shift+S
- Ctrl+Shift+S
+
+ Ctrl+Shift+S
+ Ctrl+Shift+S
-
- Select A&ll
- 全選(&A)
+
+ Select A&ll
+ 全選(&A)
-
- Ctrl+A
- Ctrl+A
+
+ Ctrl+A
+ Ctrl+A
-
- Increase Indent
- 增加縮排
+
+ Increase Indent
+ 增加縮排
-
- Decrease Indent
- 減少縮排
+
+ Decrease Indent
+ 減少縮排
-
- Rename...
- 重新命名...
+
+ Rename...
+ 重新命名...
-
- Re&load
- 重新載入(&l)
+
+ Re&load
+ 重新載入(&l)
-
- Windows (CR LF)
- Windows (CR LF)
+
+ Windows (CR LF)
+ Windows (CR LF)
-
- Unix (LF)
- Unix (LF)
+
+ Unix (LF)
+ Unix (LF)
-
- Macintosh (CR)
- Macintosh (CR)
+
+ Macintosh (CR)
+ Macintosh (CR)
-
- UPPER CASE
- 轉換為大寫
+
+ UPPER CASE
+ 轉換為大寫
-
- Convert text to upper case
- 轉換文字為大寫
+
+ Convert text to upper case
+ 轉換文字為大寫
-
- lower case
- 轉換為小寫
+
+ lower case
+ 轉換為小寫
-
- Convert text to lower case
- 轉換文字為小寫
+
+ Convert text to lower case
+ 轉換文字為小寫
-
- Duplicate Current Line
- 複製並插入目前這行
+
+ Duplicate Current Line
+ 複製並插入目前這行
-
- Alt+Down
- Alt+Down
+
+ Alt+Down
+ Alt+Down
-
- Split Lines
- 分行處理
+
+ Split Lines
+ 分行處理
-
- Join Lines
- 合併多行
+
+ Join Lines
+ 合併多行
-
- Ctrl+J
- Ctrl+J
+
+ Ctrl+J
+ Ctrl+J
-
- Move Selected Lines Up
- 向下移動選中的行
+
+ Move Selected Lines Up
+ 向下移動選中的行
-
- Ctrl+Shift+Up
- Ctrl+Shift+Up
+
+ Ctrl+Shift+Up
+ Ctrl+Shift+Up
-
- Move Selected Lines Down
- 向上移動選中的行
+
+ Move Selected Lines Down
+ 向上移動選中的行
-
- Ctrl+Shift+Down
- Ctrl+Shift+Down
+
+ Ctrl+Shift+Down
+ Ctrl+Shift+Down
-
- Clos&e All
- 關閉所有(&e)
+
+ Clos&e All
+ 關閉所有(&e)
-
- Close All files
- 關閉所有檔案
+
+ Close All files
+ 關閉所有檔案
-
- Ctrl+Shift+W
- Ctrl+Shift+W
+
+ Ctrl+Shift+W
+ Ctrl+Shift+W
-
- Close All Except Active Document
- 關閉其他
+
+ Close All Except Active Document
+ 關閉其他
-
- Close All to the Left
- 關閉至左側
+
+ Close All to the Left
+ 關閉至左側
-
- Close All to the Right
- 關閉至右側
+
+ Close All to the Right
+ 關閉至右側
-
- Zoom &In
- 放大(&I)
+
+ Zoom &In
+ 放大(&I)
-
- Ctrl++
- Ctrl++
+
+ Ctrl++
+ Ctrl++
-
- Zoom &Out
- 縮小(&O)
+
+ Zoom &Out
+ 縮小(&O)
-
- Ctrl+-
- Ctrl+-
+
+ Ctrl+-
+ Ctrl+-
-
- Reset Zoom
- 重置縮放
+
+ Reset Zoom
+ 重置縮放
-
- Ctrl+0
- Ctrl+0
+
+ Ctrl+0
+ Ctrl+0
-
- About Qt
- 關於 Qt
+
+ Toggle Single Line Comment
+ 切換單行註解
-
- About Notepad Next
- 關於 Notepad Next
+
+ Ctrl+/
+ Ctrl+/
-
- Show Whitespace
- 顯示空格
+
+ Single Line Comment
+ 單行註解
-
- Show End of Line
- 顯示行尾
+
+ Ctrl+K
+ Ctrl+K
-
- Show All Characters
- 顯示所有字元
+
+ Single Line Uncomment
+ 取消單行註解
-
- Show Indent Guide
- 顯示縮排指引
+
+ Ctrl+Shift+K
+ Ctrl+Shift+K
-
- Show Wrap Symbol
- 顯示換行符號
+
+ Edit Macros...
+ 編輯巨集...
-
- Word Wrap
- 自動換行
+
+ This is not currently implemented
+ 此功能尚未實現
-
- Restore Recently Closed File
- 恢復最近關閉的檔案
+
+ Column Mode...
+ 列編輯模式...
-
- Ctrl+Shift+T
- Ctrl+Shift+T
+
+ Next Tab
+
-
- Open All Recent Files
- 開啟所有最近的檔案
+
+ Ctrl+Tab
+
-
- Clear Recent Files List
- 清除最近開啟的檔案清單
+
+ Previous Tab
+
-
- &Find...
- 尋找(&F)...
+
+ Ctrl+Shift+Tab
+
-
- Ctrl+F
- Ctrl+F
+
+ Fold Level 1
+
-
- Find in Files...
- 在檔案中尋找...
+
+ Alt+1
+
-
- Find &Next
- 尋找下一個(&N)
+
+ Fold Level 2
+
-
- F3
- F3
+
+ Alt+2
+
-
- Find &Previous
- 尋找上一個(&P)
+
+ Fold Level 3
+
-
- Shift+F3
-
+
+ Alt+3
+
-
- &Replace...
- 取代(&R)...
+
+ Fold Level 4
+
-
- Ctrl+H
- Ctrl+H
+
+ Alt+4
+
-
- Full Screen
- 全螢幕
+
+ Unfold Level 1
+
-
- F11
- F11
+
+ Alt+Shift+1
+
-
-
- Start Recording
- 開始錄製
+
+ Unfold Level 2
+
-
- Playback
- 播放
+
+ Alt+Shift+2
+
-
- Ctrl+Shift+P
- Ctrl+Shift+P
+
+ Unfold Level 3
+
-
- Save Current Recorded Macro...
- 儲存目前錄製的巨集...
+
+ Alt+Shift+3
+
-
- Run a Macro Multiple Times...
- 多次執行巨集...
+
+ Unfold Level 4
+
-
- Preferences...
- 偏好設定...
+
+ Alt+Shift+4
+
-
- Quick Find
- 快速尋找
+
+ Fold All
+
-
- Ctrl+Alt+I
- Ctrl+Alt+I
+
+ Alt+0
+
-
- Select Next Instance
- 選擇下一個實例
+
+ Unfold All
+
-
- Ctrl+D
- Ctrl+D
+
+ Alt+Shift+0
+
-
- Move to Trash...
- 移至垃圾桶...
+
+ Fold Level 5
+
-
- Move to Trash
- 移至垃圾桶
+
+ Alt+5
+
-
- Check for Updates...
- 檢查更新...
+
+ Fold Level 6
+
-
- &Go to Line...
- 跳轉到行(&G)...
+
+ Alt+6
+
-
- Ctrl+G
- Ctrl+G
+
+ Fold Level 7
+
-
- Print...
- 列印...
+
+ Alt+7
+
-
- Ctrl+P
- Ctrl+P
+
+ Fold Level 8
+
-
- Open Folder as Workspace...
- 以工作區方式開啟資料夾...
+
+ Alt+8
+
-
- Toggle Single Line Comment
- 切換單行註解
+
+ Fold Level 9
+
-
- Ctrl+/
- Ctrl+/
+
+ Alt+9
+
-
- Single Line Comment
- 單行註解
+
+ Unfold Level 5
+
-
- Ctrl+K
- Ctrl+K
+
+ Alt+Shift+5
+
-
- Single Line Uncomment
- 取消單行註解
+
+ Unfold Level 6
+
-
- Ctrl+Shift+K
- Ctrl+Shift+K
+
+ Alt+Shift+6
+
-
- Edit Macros...
- 編輯巨集...
+
+ Unfold Level 7
+
-
- This is not currently implemented
- 此功能尚未實現
+
+ Alt+Shift+7
+
-
- Column Mode...
- 列編輯模式...
+
+ Unfold Level 8
+
-
- Export as HTML...
- 匯出為 HTML...
+
+ Alt+Shift+8
+
-
- Export as RTF...
- 匯出為 RTF...
+
+ Unfold Level 9
+
-
- Copy as HTML
- 複製為 HTML
+
+ Alt+Shift+9
+
-
- Copy as RTF
- 複製為 RTF
+ Alt+C
+ Alt+C
-
- Base 64 Encode
- Base 64 編碼
+
+ Export as HTML...
+ 匯出為 HTML...
-
- URL Encode
- URL 編碼
+
+ Export as RTF...
+ 匯出為 RTF...
-
- Base 64 Decode
- Base 64 解碼
+
+ Copy as HTML
+ 複製為 HTML
-
- URL Decode
- URL 解碼
+
+ Copy as RTF
+ 複製為 RTF
-
- Copy URL
- 複製 URL
+
+ Base 64 Encode
+ Base 64 編碼
-
- Remove Empty Lines
- 移除空行
+
+ URL Encode
+ URL 編碼
-
-
- Show in Explorer
- 在檔案總管中顯示
+
+ Base 64 Decode
+ Base 64 解碼
-
- Open %1 Here
- Open %1 Here
+
+ URL Decode
+ URL 解碼
-
- Toggle Bookmark
- 切換書籤
+
+ Copy URL
+ 複製 URL
-
- Ctrl+F2
- Ctrl+F2
+
+ Remove Empty Lines
+ 移除空行
-
- Next Bookmark
- 下一個書籤
+
+
+ Show in Explorer
+ 在檔案總管中顯示
-
- F2
- F2
+
+ Open Command Prompt Here
+ 在此開啟命令提示字元
-
- Previous Bookmark
- 上一個書籤
+
+ Toggle Bookmark
+ 切換書籤
-
- Shift+F2
- Shift+F2
+
+ Ctrl+F2
+ Ctrl+F2
-
- Clear Bookmarks
- 清除書籤
+
+ Next Bookmark
+ 下一個書籤
-
- Invert Bookmarks
- 反轉書籤
+
+ F2
+ F2
-
- Next Tab
- 下一個分頁
+
+ Previous Bookmark
+ 上一個書籤
-
- Ctrl+Tab
- Ctrl+Tab
+
+ Shift+F2
+ Shift+F2
-
- Previous Tab
- 上一個分頁
+
+ Clear Bookmarks
+ 清除書籤
-
- Ctrl+Shift+Tab
- Ctrl+Shift+Tab
+
+ Invert Bookmarks
+ 反轉書籤
-
- Fold Level 1
- 摺疊層級 1
+
+ About Qt
+ 關於 Qt
-
- Alt+1
- Alt+1
+
+
+ Export As
+ 匯出為
-
- Fold Level 2
- 摺疊層級 2
+
+ Copy As
+ 複製為
-
- Alt+2
- Alt+2
+
+ Encoding/Decoding
+ 編碼/解碼
-
- Fold Level 3
- 摺疊層級 3
+
+ About Notepad Next
+ 關於 Notepad Next
-
- Alt+3
- Alt+3
+
+ Show Whitespace
+ 顯示空格
-
- Fold Level 4
- 摺疊層級 4
+
+ Show End of Line
+ 顯示行尾
-
- Alt+4
- Alt+4
+
+ Show All Characters
+ 顯示所有字元
-
- Unfold Level 1
- 展開層級 1
+
+ Show Indent Guide
+ 顯示縮排指引
-
- Alt+Shift+1
- Alt+Shift+1
+
+ Show Wrap Symbol
+ 顯示換行符號
-
- Unfold Level 2
- 展開層級 2
+
+ Word Wrap
+ 自動換行
-
- Alt+Shift+2
- Alt+Shift+2
+
+ Restore Recently Closed File
+ 恢復最近關閉的檔案
-
- Unfold Level 3
- 展開層級 3
+
+ Ctrl+Shift+T
+ Ctrl+Shift+T
-
- Alt+Shift+3
- Alt+Shift+3
+
+ Open All Recent Files
+ 開啟所有最近的檔案
-
- Unfold Level 4
- 展開層級 4
+
+ Clear Recent Files List
+ 清除最近開啟的檔案清單
-
- Alt+Shift+4
- Alt+Shift+4
+
+ &Find...
+ 尋找(&F)...
-
- Fold All
- 全部摺疊
+
+ Ctrl+F
+ Ctrl+F
-
- Alt+0
- Alt+0
+
+ Find in Files...
+ 在檔案中尋找...
-
- Unfold All
- 全部展開
+
+ Find &Next
+ 尋找下一個(&N)
-
- Alt+Shift+0
- Alt+Shift+0
+
+ F3
+ F3
-
- Fold Level 5
- 摺疊層級 5
+
+ Find &Previous
+ 尋找上一個(&P)
-
- Alt+5
- Alt+5
+
+ &Replace...
+ 取代(&R)...
-
- Fold Level 6
- 摺疊層級 6
+
+ Ctrl+H
+ Ctrl+H
-
- Alt+6
- Alt+6
+
+ Full Screen
+ 全螢幕
-
- Fold Level 7
- 摺疊層級 7
+
+ F11
+ F11
-
- Alt+7
- Alt+7
+
+
+ Start Recording
+ 開始錄製
-
- Fold Level 8
- 摺疊層級 8
+
+ Playback
+ 播放
-
- Alt+8
- Alt+8
+
+ Ctrl+Shift+P
+ Ctrl+Shift+P
-
- Fold Level 9
- 摺疊層級 9
+
+ Save Current Recorded Macro...
+ 儲存目前錄製的巨集...
-
- Alt+9
- Alt+9
+
+ Run a Macro Multiple Times...
+ 多次執行巨集...
-
- Unfold Level 5
- 展開層級 5
+
+ Preferences...
+ 偏好設定...
-
- Alt+Shift+5
- Alt+Shift+5
+
+ Quick Find
+ 快速尋找
-
- Unfold Level 6
- 展開層級 6
+
+ Ctrl+Alt+I
+ Ctrl+Alt+I
-
- Alt+Shift+6
- Alt+Shift+6
+
+ Select Next Instance
+ 選擇下一個實例
-
- Unfold Level 7
- 展開層級 7
+
+ Ctrl+D
+ Ctrl+D
-
- Alt+Shift+7
- Alt+Shift+7
+
+ Move to Trash...
+ 移至垃圾桶...
-
- Unfold Level 8
- 展開層級 8
+
+ Move to Trash
+ 移至垃圾桶
-
- Alt+Shift+8
- Alt+Shift+8
+
+ Check for Updates...
+ 檢查更新...
-
- Unfold Level 9
- 展開層級 9
+
+ &Go to Line...
+ 跳轉到行(&G)...
-
- Alt+Shift+9
- Alt+Shift+9
+
+ Ctrl+G
+ Ctrl+G
-
-
- Toggle Overtype
- Toggle Overtype
+
+ Print...
+ 列印...
-
- Ins
- Ins
+
+ Ctrl+P
+ Ctrl+P
-
- Debug Info...
- Debug Info...
+
+ Open Folder as Workspace...
+ 以工作區方式開啟資料夾...
-
- Cut Bookmarked Lines
- Cut Bookmarked Lines
+
+ Go to line
+ 跳轉到行
-
- Copy Bookmarked Lines
- Copy Bookmarked Lines
+
+ Line Number (1 - %1)
+ 行號(1 - %1)
-
- Delete Bookmarked Lines
- Delete Bookmarked Lines
+
+ Stop Recording
+ 停止錄製
-
- Mark Style 1
- Mark Style 1
+
+ New %1
+ 新檔案 %1
-
- Mark Style 2
- Mark Style 2
+
+ Create File
+ 建立檔案
-
- Clear Style 1
- Clear Style 1
+
+ <b>%1</b> does not exist. Do you want to create it?
+ <b>%1</b> 尚不存在,你想要建立一個嗎?
-
- Clear Style 2
- Clear Style 2
+
+
+ Save file <b>%1</b>?
+ 儲存檔案 <b>%1</b>?
-
- Mark Style 3
- Mark Style 3
+
+
+ Save File
+ 儲存檔案
-
- Clear Style 3
- Clear Style 3
+
+ Open Folder as Workspace
+ 以工作區方式開啟資料夾
-
-
- Clear All Styles
- Clear All Styles
+
+ Reload File
+ 重新載入檔案
-
- Remove Duplicate Lines
- Remove Duplicate Lines
+
+ Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
+ 你確定要重新載入 <b>%1</b>?任何未儲存的修改都會遺失。
-
- Remove Consecutive Duplicate Lines
- Remove Consecutive Duplicate Lines
+
+ Administrator
+
-
- Sort Lines Ascending
-
+
+ Error Saving File
+ 儲存檔案時出錯
-
- Sort Lines Descending
-
+
+ Save a Copy As
+ 副本另存為
-
- Sort Lines Ascending (Case-Insensitive)
-
+
+
+ Rename
+ 重新命名
-
- Sort Lines Descending (Case-Insensitive)
-
+
+ Name:
+ 巨集名稱:
-
- Sort Lines by Length Ascending
-
+
+ Delete File
+ 刪除檔案
-
- Sort Lines by Length Descending
-
+
+ Are you sure you want to move <b>%1</b> to the trash?
+ 你確定要將 <b>%1</b> 移至垃圾桶?
-
- Reverse Line Order
-
+
+ Error Deleting File
+ 刪除檔案時出錯
-
- Go to line
- 跳轉到行
+
+ Something went wrong deleting <b>%1</b>?
+ 刪除 <b>%1</b> 時出錯了?
-
- Line Number (1 - %1)
- 行號(1 - %1)
+
+ An error occurred when saving <b>%1</b><br><br>Error: %2
+ 儲存 <b>%1</b> 時發生了錯誤<br><br>錯誤:%2
-
- Stop Recording
- 停止錄製
+
+ Zoom: %1%
+
-
- Debug Info
- Debug Info
+
+ No updates are available at this time.
+ 目前沒有可用的更新。
+
+
+ PreferencesDialog
-
- New %1
- 新檔案 %1
+
+ Preferences
+ 偏好設定
-
- Create File
- 建立檔案
+
+ Show menu bar
+
-
- <b>%1</b> does not exist. Do you want to create it?
- <b>%1</b> 目前不存在,你想要建立一個嗎?
+
+ Show toolbar
+
-
-
- Save file <b>%1</b>?
- 儲存檔案 <b>%1</b>?
+
+ Show status bar
+
-
-
- Save File
- 儲存檔案
+
+ Restore previous session
+
-
- Open Folder as Workspace
- 以工作區方式開啟資料夾
+
+ Temporary files
+
-
-
- Reload File
- 重新載入檔案
+
+ Translation:
+
-
- Are you sure you want to reload <b>%1</b>? Any unsaved changes will be lost.
- 你確定要重新載入 <b>%1</b>?任何未儲存的修改都會遺失。
+
+ Exit on last tab closed
+
-
- Save a Copy As
- 副本另存為
+
+ Default Font
+
-
-
- Rename
- 重新命名
+
+ Font
+
-
- Name:
- 巨集名稱:
+
+ Font Size
+
-
- Delete File
- 刪除檔案
+
+ pt
+
-
- Are you sure you want to move <b>%1</b> to the trash?
- 你確定要將 <b>%1</b> 移至垃圾桶?
+
+ TextLabel
+ 文字標籤
-
- Error Deleting File
- 刪除檔案時出錯
+
+ An application restart is required to apply certain settings.
+
-
- Something went wrong deleting <b>%1</b>?
- 刪除 <b>%1</b> 時出錯了?
+ Menu Bar
+ 選單列
-
- Administrator
- Administrator
+ Tool Bar
+ 工具列
-
- <b>%1</b> has been modified by another program. Do you want to reload it?
- <b>%1</b> has been modified by another program. Do you want to reload it?
+ Status Bar
+ 狀態列
-
- Read error
- Read error
+ Restore Previous Session
+ 恢復先前的工作階段
-
- Write error
- Write error
+
+ Unsaved changes
+ 未儲存的變更
-
- Fatal error
- Fatal error
+ Temp Files
+ 暫存檔案
-
- Resource error
- Resource error
+
+ Combine search results
+ 合併搜尋結果
-
- Open error
- Open error
+
+ Warning
+ 警告
-
- Abort error
- Abort error
+
+ This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
+ 此功能為實驗性質,對於重要的工作可能並不安全,可能導致資料遺失,請自行承擔風險。
-
- Timeout error
- Timeout error
+
+ <System Default>
+
+
+
+ QObject
-
- Unspecified error
- Unspecified error
+
+ List All Tabs
+ 列出所有分頁
-
- Remove error
- Remove error
+
+ Detach Group
+ 分離群組
-
- Rename error
- Rename error
+
+ Minimize
+
-
- Position error
- Position error
+ Close Active Tab
+ 關閉活躍分頁
-
- Resize error
- Resize error
+ Close Group
+ 關閉群組
-
- Permissions error
- Permissions error
+
+ Close Tab
+ 關閉分頁
+
+
+ QuickFindWidget
-
- Copy error
- Copy error
+
+ Frame
+
-
- Unknown error (%1)
- Unknown error (%1)
+
+ Match case
+ 區分大小寫
-
- Error Saving File
- 儲存檔案時出錯
+
+ Aa
+ Aa
-
- An error occurred when saving <b>%1</b><br><br>Error: %2
- 儲存 <b>%1</b> 時發生了錯誤<br><br>錯誤:%2
+
+ Match whole word
+ 全字符合
-
- Zoom: %1%
- Zoom: %1%
+
+ |A|
+ |A|
-
- No updates are available at this time.
- 目前沒有可用的更新。
+
+ Use regular expression
+ 使用正規表達式
-
-
- PreferencesDialog
-
- Preferences
- 偏好設定
+
+ . *
+ . *
-
- Show menu bar
- 顯示選單列
+
+ Alt+E
+ Alt+E
-
- Show toolbar
- 顯示工具列
+
+ Find...
+ 尋找...
-
- Show status bar
- 顯示狀態列
+
+ %L1/%L2
+
+
+
+ SearchResultsDock
-
- Restore previous session
- 還原上一次的工作階段
+
+ Search Results
+ 搜尋結果
-
- Unsaved changes
- 未儲存的變更
+
+ Collapse All
+ 全部摺疊
-
- Temporary files
- 暫存檔案
+
+ Expand All
+ 全部展開
-
- Recenter find/replace dialog when opened
- Recenter find/replace dialog when opened
+
+ Delete Entry
+ 刪除項目
-
- Combine search results
- 合併搜尋結果
+
+ Delete All
+ 全部刪除
+
+
+ Updater
-
- Translation:
- 翻譯:
+
+ Would you like to download the update now?
+ 您現在想要下載更新嗎?
-
- Exit on last tab closed
- 關閉最後一個分頁時結束程式
+
+ Would you like to download the update now? This is a mandatory update, exiting now will close the application
+ 您現在想要下載更新嗎?這是一個必須的更新,現在退出將會關閉應用程式
-
- Default Font
- 預設字體
+
+ Version %1 of %2 has been released!
+ %2 的版本 %1 已經發布!
-
- Font
- 字體
+
+ No updates are available for the moment
+ 目前沒有可用的更新
-
- Font Size
- 字體大小
+
+ Congratulations! You are running the latest version of %1
+ 恭喜!您正在執行最新版本的 %1
+
+
+ ads::CAutoHideTab
-
- pt
- 點
+
+ Detach
+ 分離
-
- Default Line Endings
- Default Line Endings
+
+ Pin To...
+
-
- Highlight URLs
- Highlight URLs
+
+ Top
+
-
- Show Line Numbers
- Show Line Numbers
+
+ Left
+
-
-
- Default Directory
- Default Directory
+
+ Right
+
-
- Follow Current Document
- Follow Current Document
+
+ Bottom
+
-
- Last Used Directory
- Last Used Directory
+
+ Unpin (Dock)
+
-
- ...
- ...
+
+ Close
+ 關閉
+
+
+ ads::CDockAreaTitleBar
-
- TextLabel
- 文字標籤
+
+ Detach Group
+ 分離群組
-
- An application restart is required to apply certain settings.
- 某些設定需要重新啟動應用程式才能生效。
+
+ Detach
+ 分離
-
- Warning
- 警告
+
+
+ Unpin (Dock)
+
-
- This feature is experimental and it should not be considered safe for critically important work. It may lead to possible data loss. Use at your own risk.
- 此功能為實驗性質,對於重要的工作可能並不安全,可能導致資料遺失,請自行承擔風險。
+
+
+ Pin Group
+
-
- System Default
- System Default
+
+ Pin Group To...
+
-
- Windows (CR LF)
- Windows (CR LF)
+
+ Top
+
-
- Linux (LF)
- Linux (LF)
+
+ Left
+
-
- Macintosh (CR)
- Macintosh (CR)
+
+ Right
+
-
- <System Default>
- <系統預設>
+
+ Bottom
+
-
-
- QuickFindWidget
-
- Frame
- Frame
+
+
+ Minimize
+
-
- Find...
- 尋找...
+
+
+
+ Close
+ 關閉
-
- Match case
- 區分大小寫
+
+
+ Close Group
+ 關閉群組
-
- Aa
- Aa
+
+ Close Other Groups
+ 關閉其他群組
-
- Match whole word
- 全字符合
+
+ Pin Active Tab (Press Ctrl to Pin Group)
+
-
- |A|
- |A|
+
+ Close Active Tab
+ 關閉活躍分頁
+
+
+ ads::CDockManager
-
- Use regular expression
- 使用正規表達式
+
+ Show View
+ 顯示畫面
+
+
+ ads::CDockWidgetTab
-
- . *
- . *
+
+ Detach
+ 分離
-
- Alt+E
- Alt+E
+
+ Pin
+
-
- %L1/%L2
- %L1/%L2
+
+ Pin To...
+
-
-
- SearchResultsDock
-
- Search Results
- 搜尋結果
+
+ Top
+
-
- Copy Results to Clipboard
- Copy Results to Clipboard
+
+ Left
+
-
- Collapse All
- 全部摺疊
+
+ Right
+
-
- Expand All
- 全部展開
+
+ Bottom
+
-
- Delete Entry
- 刪除項目
+
+ Close
+ 關閉
-
- Delete All
- 全部刪除
+
+ Close Others
+ 關閉其他
-
+
diff --git a/icon/NotepadNext.icns b/icon/NotepadNext.icns
index 6fbd4d56d..988166566 100644
Binary files a/icon/NotepadNext.icns and b/icon/NotepadNext.icns differ
diff --git a/icon/NotepadNext.ico b/icon/NotepadNext.ico
index 00c07b4f4..9f5cb62a2 100644
Binary files a/icon/NotepadNext.ico and b/icon/NotepadNext.ico differ
diff --git a/icon/svg_to_ico.bat b/icon/svg_to_ico.bat
index 54a3c747b..49b2707ae 100644
--- a/icon/svg_to_ico.bat
+++ b/icon/svg_to_ico.bat
@@ -1,14 +1,20 @@
-@echo off
-set ICON_SIZES=16 32 48 64 128 256
+"C:\Program Files\Inkscape\bin\inkscape.exe" -w 16 -h 16 --export-type="png" --export-filename="nn16.png" NotepadNext.svg
+"C:\Program Files\Inkscape\bin\inkscape.exe" -w 32 -h 32 --export-type="png" --export-filename="nn32.png" NotepadNext.svg
+"C:\Program Files\Inkscape\bin\inkscape.exe" -w 48 -h 48 --export-type="png" --export-filename="nn48.png" NotepadNext.svg
+"C:\Program Files\Inkscape\bin\inkscape.exe" -w 64 -h 64 --export-type="png" --export-filename="nn64.png" NotepadNext.svg
+"C:\Program Files\Inkscape\bin\inkscape.exe" -w 128 -h 128 --export-type="png" --export-filename="nn128.png" NotepadNext.svg
+"C:\Program Files\Inkscape\bin\inkscape.exe" -w 128 -h 128 --export-type="png" --export-filename="nn512.png" NotepadNext.svg
+".\ImageMagick\magick" convert -background transparent nn16.png nn32.png nn48.png nn64.png nn128.png nn512.png NotepadNext.ico
-for %%s in (%ICON_SIZES%) do (
- echo Exporting %%sx%%s PNG...
- "C:\Program Files\Inkscape\bin\inkscape.exe" NotepadNext.svg -w %%s -h %%s --export-type=png --export-filename=nn%%s.png
-)
+del nn16.png
+del nn32.png
+del nn48.png
+del nn64.png
+del nn128.png
+del nn512.png
-".\ImageMagick\magick" convert -background transparent nn16.png nn32.png nn48.png nn64.png nn128.png nn256.png NotepadNext.ico
+"C:\Program Files\Inkscape\bin\inkscape.exe" --export-type="png" --export-dpi=96 --export-background-opacity=0 NotepadNext.svg
-for %%s in (%ICON_SIZES%) do del nn%%s.png
+".\png2icons.exe" NotepadNext.png NotepadNext -icns
-"C:\Program Files\Inkscape\bin\inkscape.exe" NotepadNext.svg --export-type=png --export-dpi=96 --export-background-opacity=0
copy NotepadNext.png ..\src\NotepadNext\icons\NotepadNext.png
diff --git a/installer/installer.nsi b/installer/installer.nsi
index 6f9a286d2..7689cc9b1 100644
--- a/installer/installer.nsi
+++ b/installer/installer.nsi
@@ -303,7 +303,7 @@ Section "Uninstall"
DeleteRegKey SHCTX "Software\Classes\*\shell\NotepadNext"
# Remove application registration
- DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\App Paths\NotepadNext.exe"
+ DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\App Paths\NotepadNext.exe" "" "$INSTDIR\NotepadNext.exe"
# Remove registered verbs
DeleteRegKey SHCTX "Software\Classes\Applications\NotepadNext.exe"
diff --git a/src/Config.pri b/src/Config.pri
new file mode 100644
index 000000000..091a8c14f
--- /dev/null
+++ b/src/Config.pri
@@ -0,0 +1,40 @@
+# This file is part of Notepad Next.
+# Copyright 2019 Justin Dailey
+#
+# Notepad Next 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.
+#
+# Notepad Next 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. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Notepad Next. If not, see .
+
+
+include(Version.pri)
+
+# Add custom defines
+DEFINES += APP_VERSION='"\\\"$$APP_VERSION\\\""'
+DEFINES += APP_COPYRIGHT='"\\\"$$APP_COPYRIGHT\\\""'
+
+!isEmpty(DISTRIBUTION) {
+ DEFINES += APP_DISTRIBUTION='"\\\" ($$DISTRIBUTION)\\\""'
+}
+else {
+ DEFINES += APP_DISTRIBUTION='"\\\"\\\""'
+}
+
+CONFIG += c++1z
+CONFIG -= debug_and_release debug_and_release_target
+
+# Controls if we want to define our own regex engine using QRegularExpression
+DEFINES += SCI_OWNREGEX
+
+DEFINES += ADS_STATIC
+
+msvc:QMAKE_CXXFLAGS += /guard:cf
+msvc:QMAKE_LFLAGS += /guard:cf
diff --git a/src/LuaBridge/List.h b/src/LuaBridge/List.h
new file mode 100644
index 000000000..66e0d8fb6
--- /dev/null
+++ b/src/LuaBridge/List.h
@@ -0,0 +1,55 @@
+// https://github.com/vinniefalco/LuaBridge
+//
+// Copyright 2018, Dmitry Tarakanov
+// SPDX-License-Identifier: MIT
+
+#pragma once
+
+#include
+
+#include
+
+namespace luabridge {
+
+template
+struct Stack >
+{
+ static void push (lua_State* L, std::list const& list)
+ {
+ lua_createtable (L, static_cast (list.size ()), 0);
+ typename std::list ::const_iterator item = list.begin ();
+ for (std::size_t i = 1; i <= list.size (); ++i)
+ {
+ lua_pushinteger (L, static_cast (i));
+ Stack ::push (L, *item);
+ lua_settable (L, -3);
+ ++item;
+ }
+ }
+
+ static std::list get (lua_State* L, int index)
+ {
+ if (!lua_istable (L, index))
+ {
+ luaL_error (L, "#%d argument must be a table", index);
+ }
+
+ std::list list;
+
+ int const absindex = lua_absindex (L, index);
+ lua_pushnil (L);
+ while (lua_next (L, absindex) != 0)
+ {
+ list.push_back (Stack ::get (L, -1));
+ lua_pop (L, 1);
+ }
+ return list;
+ }
+
+ static bool isInstance (lua_State* L, int index)
+ {
+ return lua_istable (L, index);
+ }
+};
+
+} // namespace luabridge
diff --git a/src/LuaBridge/LuaBridge.h b/src/LuaBridge/LuaBridge.h
new file mode 100644
index 000000000..866acc39c
--- /dev/null
+++ b/src/LuaBridge/LuaBridge.h
@@ -0,0 +1,59 @@
+//------------------------------------------------------------------------------
+/*
+ https://github.com/vinniefalco/LuaBridge
+
+ Copyright 2019, Dmitry Tarakanov
+ Copyright 2012, Vinnie Falco
+ Copyright 2007, Nathan Reed
+
+ License: The MIT License (http://www.opensource.org/licenses/mit-license.php)
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
+*/
+//==============================================================================
+
+#pragma once
+
+// All #include dependencies are listed here
+// instead of in the individual header files.
+//
+
+#define LUABRIDGE_MAJOR_VERSION 2
+#define LUABRIDGE_MINOR_VERSION 3
+#define LUABRIDGE_VERSION 203
+
+#ifndef LUA_VERSION_NUM
+#error "Lua headers must be included prior to LuaBridge ones"
+#endif
+
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
diff --git a/src/LuaBridge/Map.h b/src/LuaBridge/Map.h
new file mode 100644
index 000000000..a36d269a6
--- /dev/null
+++ b/src/LuaBridge/Map.h
@@ -0,0 +1,56 @@
+// https://github.com/vinniefalco/LuaBridge
+//
+// Copyright 2018, Dmitry Tarakanov
+// SPDX-License-Identifier: MIT
+
+#pragma once
+
+#include
+#include
+
+#include