Compare commits

..

No commits in common. "master" and "v8.6.4" have entirely different histories.

1548 changed files with 42625 additions and 88398 deletions

View File

@ -1,79 +0,0 @@
name: Bug
description: File a bug/issue
title: "[BUG] <title>"
#labels: ["bug"]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: |
Please search to see if an issue already exists for the bug you encountered.
If the issue is for a plugin (except for mimeTools, NppConverter, and NppExport),
report it to the plugin author rather than here.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Description of the Issue
description: Provide a concise description to the issue itself.
validations:
required: true
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1.
2.
3.
...
value: |
1.
2.
3.
validations:
required: true
- type: textarea
attributes:
label: Current Behavior
description: What you're experiencing.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: What did you expect to happen.
validations:
required: true
- type: textarea
attributes:
label: Debug Information
description: |
In your Notepad++, click on the "?" menu (found to the right of "Window" in the menu bar).
In the menu that drops down, choose "Debug Info...".
A dialog will open detailing specifics about your Notepad++ version, plugins, etc.
CLICK ON THE BUTTON "Copy debug info into clipboard".
Do a PASTE HERE
render: shell
validations:
required: true
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
If feasible, try launching Notepad++ without any plugins.
Some updates to Notepad++ modify communication rules used by plugins,
and if plugin developers do not keep their plugins in sync with these changes, issues may arise.
Running without plugins can help diagnose specific problems.
Notepad++ relies on the Lexilla and Scintilla libraries.
For more details, visit https://github.com/ScintillaOrg/lexilla and https://sourceforge.net/p/scintilla.
Consider using the reference program SciTE to verify whether the issue is a genuine bug in Notepad++.
Download Scite from here https://www.scintilla.org/SciTEDownload.html.
Tip: You can attach images or relevant text files by clicking this area to highlight it and then dragging files in.
validations:
required: false

View File

@ -1,52 +0,0 @@
name: Feature request
description: Suggest an idea for Notepad++
title: "[Feature request] <title>"
#labels: ["feature"]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the feature you request.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Description of the Issue
description: A clear and concise description of what the problem is.
validations:
required: true
- type: textarea
attributes:
label: Describe the solution you'd like.
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: Debug Information
description: |
In your Notepad++, click on the "?" menu (found to the right of "Window" in the menu bar).
In the menu that drops down, choose "Debug Info...".
A dialog will open detailing specifics about your Notepad++ version, plugins, etc.
CLICK ON THE BUTTON "Copy debug info into clipboard".
Do a PASTE HERE
render: shell
validations:
required: true
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the feature you want!
Notepad++ relies on the Lexilla and Scintilla libraries.
For more details, visit https://github.com/ScintillaOrg/lexilla and https://sourceforge.net/p/scintilla.
If you have specific language feature requests, consider using the reference program SciTE to verify whether the desired feature is supported.
You can download SciTE from here https://www.scintilla.org/SciTEDownload.html.
If you have any questions about Notepad++ usage, explore the community forum https://community.notepad-plus-plus.org/category/7/faq.
Tip: You can attach images by clicking this area to highlight it and then dragging files in.
validations:
required: false

View File

@ -1 +0,0 @@
blank_issues_enabled: true

View File

@ -1,154 +1,16 @@
name: CI_build
on: [push, pull_request]
env:
PYTHON_ALLOW_CACHE: true
PYTHON_DIR_CACHE: D:\.cache\python
jobs:
before_build:
runs-on: windows-latest
outputs:
result: ${{ steps.filter.outputs.result }}
matrix: ${{ steps.filter.outputs.matrix }}
title: ${{ steps.filter.outputs.title }}
python: ${{ steps.filter.outputs.python }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }}
- name: Commit filtering
id: filter
run: |
$allowMaster = $true
$folders_onejob = "PowerEditor/(Test|(installer/(filesForTesting|functionList)))/"
$folders_nowork = "\.github/ISSUE_TEMPLATE"
$files_nowork = "md|txt|log|ini"
$files_needwork = "CMakeLists\.txt"
$matrix_all = 'matrix={"build_configuration": ["Release", "Debug"], "build_platform": ["x64", "Win32", "ARM64"]}'
$matrix_onejob = 'matrix={"build_configuration": ["Debug"], "build_platform": ["Win32"]}'
Write-Output $matrix_all >> $env:GITHUB_OUTPUT
$isPush = "${{github.event_name }}" -eq "push" ? $true : $false
$isMaster = $isPush -and $${{ github.ref_name == github.event.repository.master_branch }}
$commit_message = $isPush ? (git show -s --format=%B) : (git log -1 --no-merges --pretty=%B)
$commit_title = ($commit_message -split "[\r\n]+")[0]
Write-Output "title=$commit_title" >> $env:GITHUB_OUTPUT
$files_modified = @(git diff --name-only HEAD~1)
$files_needwork_all = @($files_modified | Where-Object {$_ -notmatch "\.(xml|$files_nowork)$|$folders_nowork|$folders_onejob" -or $_ -match "($files_needwork)$"})
if ($allowMaster -or !$isMaster) {
if ($commit_title -match "\[force all\]") {
Write-Output "Run standard jobs"
}
elseif ($commit_title -match "\[force one\]") {
Write-Output "Run only one Win32/Debug job"
Write-Output "result=ONEJOB" >> $env:GITHUB_OUTPUT
Write-Output $matrix_onejob >> $env:GITHUB_OUTPUT
}
elseif (($files_modified.length -gt 0 -and $files_needwork_all.length -eq 0) -or $commit_title -match "\[force (xml|none)\]") {
if (@($files_modified | Where-Object {$_ -notmatch "\.($files_nowork)$|$folders_nowork"}).length -eq 0 -or $commit_title -match "\[force none\]") {
Write-Output "Changed files on this commit don't require any additional tasks.`n"
Write-Output "result=OK" >> $env:GITHUB_OUTPUT
Write-Output "PYTHON_ALLOW_CACHE=false" >> $env:GITHUB_ENV
Exit
}
else {
Write-Output "Run only XML validation step"
if (@($files_modified | Where-Object {$_ -match $folders_onejob}).length -eq 0) {
Write-Output "result=XML" >> $env:GITHUB_OUTPUT
}
else {
Write-Output "Run only one Win32/Debug job"
Write-Output "result=ONEJOB" >> $env:GITHUB_OUTPUT
Write-Output $matrix_onejob >> $env:GITHUB_OUTPUT
}
}
}
else {
Write-Output "Run standard jobs"
}
}
else {
Write-Output "Run standard jobs"
}
if ($commit_title -match "\[force nopythoncache\]") {
$env:PYTHON_ALLOW_CACHE = "false"
Write-Output "PYTHON_ALLOW_CACHE=false" >> $env:GITHUB_ENV
}
if ($Env:PYTHON_ALLOW_CACHE -eq "true") {
$python = ((python -V) -split " ")[1]
$requests = (Invoke-RestMethod https://pypi.org/pypi/requests/json).info.version
$rfc3987 = (Invoke-RestMethod https://pypi.org/pypi/rfc3987/json).info.version
$pywin32 = (Invoke-RestMethod https://pypi.org/pypi/pywin32/json).info.version
$lxml = (Invoke-RestMethod https://pypi.org/pypi/lxml/json).info.version
$key = "${{ runner.os }}-python_$python-requests_$requests-rfc3987_$rfc3987-pywin32_$pywin32-lxml_$lxml"
Write-Output "python=$key" >> $env:GITHUB_OUTPUT
}
- name: (cache) Lookup Python modules
if: env.PYTHON_ALLOW_CACHE == 'true'
uses: actions/cache/restore@v4
id: cache-lookup
with:
path: ${{ env.PYTHON_DIR_CACHE }}
key: ${{ steps.filter.outputs.python }}
lookup-only: true
- name: (cache) Restore Python modules
if: env.PYTHON_ALLOW_CACHE == 'true' && steps.filter.outputs.result == 'XML' && steps.cache-lookup.outputs.cache-hit == 'true'
uses: actions/cache/restore@v4
with:
path: ${{ env.PYTHON_DIR_CACHE }}
key: ${{ steps.filter.outputs.python }}
- name: (cache) Install Python modules
if: env.PYTHON_ALLOW_CACHE == 'true' && steps.cache-lookup.outputs.cache-hit != 'true'
run: |
python -m pip install --target ${{ env.PYTHON_DIR_CACHE }} requests rfc3987 pywin32 lxml
- name: (cache) Save Python modules
if: env.PYTHON_ALLOW_CACHE == 'true' && steps.cache-lookup.outputs.cache-hit != 'true' && github.event_name == 'push'
uses: actions/cache/save@v4
with:
path: ${{ env.PYTHON_DIR_CACHE }}
key: ${{ steps.filter.outputs.python }}
- name: XML validation
if: steps.filter.outputs.result == 'XML'
run: |
if ($Env:PYTHON_ALLOW_CACHE -eq "true" -and (Test-Path -Path ${{ env.PYTHON_DIR_CACHE }})) {
$Env:PYTHONPATH = "${{ env.PYTHON_DIR_CACHE }}"
}
else {
python -m pip install requests rfc3987 pywin32 lxml
}
python PowerEditor\Test\xmlValidator\validator_xml.py
if ($LastExitCode -eq 0) {
Write-Output "`nAll XML files are valid.`n"
}
else {
Write-Output "`nSome XML files are invalid.`n"
$host.SetShouldExit($LastExitCode)
}
build_windows:
runs-on: windows-latest
needs: before_build
if: needs.before_build.outputs.result == '' || needs.before_build.outputs.result == 'ONEJOB'
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.before_build.outputs.matrix) }}
matrix:
build_configuration: [Release, Debug]
build_platform: [x64, Win32, ARM64]
steps:
- name: Checkout repo
@ -203,23 +65,11 @@ jobs:
name: Notepad++.MSVC.${{ matrix.build_platform}}.${{ matrix.build_configuration}}
path: PowerEditor\visual.net\${{ matrix.build_configuration}}\Notepad++.exe
- name: (cache) Restore Python modules for Win32 / Debug
if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Debug' && env.PYTHON_ALLOW_CACHE == 'true' && contains(needs.before_build.outputs.title, '[force nopythoncache]') != true
uses: actions/cache/restore@v4
with:
path: ${{ env.PYTHON_DIR_CACHE }}
key: ${{ needs.before_build.outputs.python }}
- name: Run xml validation test for Win32 / Debug only
if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Debug'
working-directory: .\
run: |
if ($Env:PYTHON_ALLOW_CACHE -eq "true" -and $${{ !contains(needs.before_build.outputs.title, '[force nopythoncache]') }} -and (Test-Path -Path ${{ env.PYTHON_DIR_CACHE }})) {
$Env:PYTHONPATH = "${{ env.PYTHON_DIR_CACHE }}"
}
else {
python -m pip install requests rfc3987 pywin32 lxml
}
python -m pip install requests rfc3987 pywin32 lxml
python PowerEditor\Test\xmlValidator\validator_xml.py
@ -248,8 +98,6 @@ jobs:
# build_windows_clang:
# runs-on: windows-latest
#needs: before_build
#if: needs.before_build.outputs.result == ''
# strategy:
# matrix:
# build_configuration: [Release]
@ -277,8 +125,6 @@ jobs:
build_windows_cmake:
runs-on: windows-latest
needs: before_build
if: needs.before_build.outputs.result == ''
strategy:
matrix:
include:
@ -331,8 +177,6 @@ jobs:
build_windows_msys2:
runs-on: windows-latest
needs: before_build
if: needs.before_build.outputs.result == ''
strategy:
fail-fast: false
matrix:
@ -362,15 +206,16 @@ jobs:
if ( $${{ matrix.build_platform == 'x86_64'}} ) {$Env:MSYSTEM = 'MINGW64'}
if ( $${{ matrix.build_platform == 'x86_64'}} ) {$Env:Path = 'C:\msys64\mingw64\bin' + [IO.Path]::PathSeparator + $Env:Path}
if ( $${{ matrix.build_configuration == 'Debug'}} ) {$Env:DEBUG = '1'}
Write-Output "Tools version:"
Write-Output (((gcc --version) | select-object -first 1) + " " + (gcc -dumpmachine))
Write-Output (make --version) | select-object -first 1
Write-Output (sh --version) | select-object -first 1
Write-Output ""
bash -lc "pacman --noconfirm -Syuu"
bash -lc "pacman --noconfirm -Syuu"
if ( $${{ matrix.build_platform == 'i686'}} ) {bash -lc "pacman --noconfirm -S mingw-w64-i686-gcc mingw-w64-i686-make"}
if ( $${{ matrix.build_platform == 'x86_64'}} ) {bash -lc "pacman --noconfirm -S mingw-w64-x86_64-gcc mingw-w64-x86_64-make"}
Write-Output "Tools version:"
Write-Output (((gcc --version) | select-object -first 1) + " " + (gcc -dumpmachine))
Write-Output (mingw32-make --version) | select-object -first 1
Write-Output (sh --version) | select-object -first 1
mingw32-make -f PowerEditor\gcc\makefile
make -f PowerEditor\gcc\makefile
- name: Archive artifacts for ${{ matrix.build_platform}} / Release
if: matrix.build_configuration == 'Release'

View File

@ -1,69 +0,0 @@
name: Plugin Files Release Notifier
on:
push:
branches: 'master'
workflow_dispatch:
jobs:
release-notifier:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changes
run: |
$any_changed = $false
$watch_files = @(
"scintilla/include/Scintilla.h",
"scintilla/include/Sci_Position.h",
"PowerEditor/src/MISC/PluginsManager/Notepad_plus_msgs.h",
"PowerEditor/src/MISC/PluginsManager/PluginInterface.h",
"PowerEditor/src/menuCmdID.h",
"PowerEditor/src/WinControls/DockingWnd/Docking.h",
"PowerEditor/src/WinControls/DockingWnd/dockingResource.h"
)
if("${{ github.event_name }}" -eq "workflow_dispatch") {
#Write-Output "non-push: use HEAD~1..HEAD, which isn't as specific, but better than nothing"
$changed_files = @( git diff --name-only HEAD~1..HEAD )
} else {
#Write-Output "for-push: use before/after"
$changed_files = @( git diff --name-only ${{ github.event.before }} ${{ github.event.after }} )
}
foreach ($this_file in $changed_files) {
#Write-Output "the following is different: $this_file"
if( $this_file -in $watch_files ) {
Write-Output "+ Saw changes in: $this_file"
$any_changed = $true
}
}
if($any_changed) {
$map = @(
@( "${{ secrets.PAT_NOTIFY_NPPPLUGINS }}", "npp-plugins/plugintemplate", "CI_update_remote.yml" ),
@( "${{ secrets.PAT_NOTIFY_NPPPLUGINS }}", "npp-plugins/plugindemo", "CI_update_remote.yml" )
)
foreach ($target in $map) {
$pat = $target[0]
$ref = $target[1]
$yml = $target[2]
# Write-Output "DEBUG: len(pat)='$($pat.Length)' ref='$ref' len(ref)=$($ref.Length) yml='$yml' len(yml)=$($yml.Length): 'https://api.github.com/repos/$ref/actions/workflows/$yml/dispatches'"
Write-Output "Notifying '$ref' workflow '$yml' using curl 'https://api.github.com/repos/$ref/actions/workflows/$yml/dispatches'."
curl -s -L `
-X POST `
-H "Accept: application/vnd.github+json" `
-H "Authorization: Bearer $pat" `
-H "X-GitHub-Api-Version: 2022-11-28" `
https://api.github.com/repos/$ref/actions/workflows/$yml/dispatches `
-d "{`"ref`": `"${{ github.ref_name }}`", `"inputs`": {}}"
# NOTE: if there is a problem with the curl call, there will be a message in the workflow output,
# but the workflow will not fail, so that the Notepad++ build will not fail; we do our best to notify,
# but we don't want a problem with another repo holding up a N++ fix.
}
} else {
Write-Output "No watched-files changed, so not sending notification to plugin templates this time."
}

1
.gitignore vendored
View File

@ -101,7 +101,6 @@ PowerEditor/visual.net/ARM64
PowerEditor/src/tools/NppShell/build_ARM64
PowerEditor/src/tools/NppShell/build_Win32
PowerEditor/src/tools/NppShell/build_x64
PowerEditor/src/NppLibsVersion.h
# scintilla - generated files
scintilla/bin/SciLexer.*

View File

@ -27,7 +27,7 @@ As mentioned above, you'll need `libScintilla.lib` and `libLexilla.lib` for the
#### Build `libScintilla.lib` with boost and `libLexilla.lib` via nmake
This is not necessary any more and just here for completeness as this option is still available.
Boost is taken from [boost 1.85.0](https://www.boost.org/users/history/version_1_85_0.html) and stripped down to the project needs available at [boost](https://github.com/notepad-plus-plus/notepad-plus-plus/tree/master/boostregex/boost) in this repo.
Boost is taken from [boost 1.80.0](https://www.boost.org/users/history/version_1_80_0.html) and stripped down to the project needs available at [boost](https://github.com/notepad-plus-plus/notepad-plus-plus/tree/master/boostregex/boost) in this repo.
1. Open the Developer Command Prompt for Visual Studio
2. Go into the [`scintilla\win32\`](https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/scintilla/win32/)
@ -52,7 +52,7 @@ uses features from Boost's `Boost.Regex` library.
If you have [MinGW-w64](https://www.mingw-w64.org/) installed, you can compile Notepad++ with GCC. Otherwise MinGW-w64 can be downloaded [here](https://sourceforge.net/projects/mingw-w64/files/). You can also download some collection of tools which supports MinGW-w64, like [MSYS2](https://www.msys2.org/) or [WinLibs](https://winlibs.com/).
Building Notepad++ is regularly tested on a Windows system by using [MSYS2](https://www.msys2.org/) project. Current versions of tools used to building (such as GCC, Clang, Make or Bash) can be checked by looking at some logs from the finished building (for example in the [current-build page](https://github.com/notepad-plus-plus/notepad-plus-plus/actions/workflows/CI_build.yml). Other versions may also work but are untested.
Building Notepad++ is regularly tested on a Windows system by using [MSYS2](https://www.msys2.org/) project. Current versions of tools used to building (such as GCC, Make or Bash) can be checked by looking at some logs from the finished building (for example in the [current-build page](https://ci.appveyor.com/project/donho/notepad-plus-plus)). Other versions may also work but are untested.
**Note:** Before building make sure that the system `PATH` environment variable contains `$MinGW-root$\bin` directory. Otherwise you have to set this directory yourself in Windows settings. You can also use a command like `set PATH=$MinGW-root$\bin;%PATH%` each time `cmd` is launched. But beware that if `PATH` contains several versions of MinGW-w64 GCC, only the first one will be usable.
@ -70,5 +70,3 @@ Building Notepad++ is regularly tested on a Windows system by using [MSYS2](http
- To see commands being executed add `VERBOSE=1` to the same command.
- When a project is built outside of the `PowerEditor/gcc` directory, for example when using `-f` option, then the entire project path must not contain any spaces. Additionally, the path to `makefile` of this project should be listed as first.
- When a project is built through MinGW-w64 with multilib support, a specific target can be forced by passing `TARGET_CPU` variable with `x86_64` or `i686` as value.
- To use Clang instead of GCC for compilation provide `CXX` variable with `clang++` as value.
- To use [Clang analyzer](https://clang-analyzer.llvm.org/) together with Clang provide `CLANGANALYZE=1` to the `mingw32-make` invocation.

View File

@ -16,11 +16,8 @@ Bug reports are appreciated. Following a few guidelines listed below will help s
## Pull Requests
*The first rule of Notepad++ is: you do not ask for permission to contribute.*<br/>
*The second rule of Notepad++ is: you DO NOT ask for permission to contribute.*
Just do your contribution if you have something to offer, and your pull requests are welcome.<br/>
However, they may not be accepted for various reasons. If you want to make some GUI enhancement like renaming some graphic items or fixing typos, please create the issue instead of the pull requests. All Pull Requests, except for translations and user documentation, need to be attached to a issue on GitHub. For Pull Requests regarding enhancements and questions, the issue must first be approved by one of project's administrators before being merged into the project. An approved issue will have the label `Accepted`. For issues that have not been accepted, you may request to be assigned to that issue.
Your pull requests are welcome; however, they may not be accepted for various reasons. If you want to make some GUI enhancement like renaming some graphic items or fixing typos, please create the issue instead of the pull requests. All Pull Requests, except for translations and user documentation, need to be attached to a issue on GitHub. For Pull Requests regarding enhancements and questions, the issue must first be approved by one of project's administrators before being merged into the project. An approved issue will have the label `Accepted`. For issues that have not been accepted, you may request to be assigned to that issue.
Opening an issue beforehand allows the administrators and the community to discuss bugs and enhancements before work begins, preventing wasted effort.
@ -30,15 +27,14 @@ Opening an issue beforehand allows the administrators and the community to discu
2. Create a new branch for each PR. **Make sure your branch name wasn't used before** - you can add date (for example `patch3_20200528`) to ensure its uniqueness.
3. Single feature or bug-fix per PR.
4. Create a PR with a single commit to make the review process easier.
5. For the PR of translation, don't guess or use the next version number. Use the current version number instead.
6. Make your modification compact - don't reformat source code in your request. It makes code review more difficult.
7. PR of reformatting (changing of ws/TAB, line endings or coding style) of source code won't be accepted. Use issue trackers for your request instead.
8. Typo fixing and code refactoring won't be accepted - please create issues with title started with `TYPO` to request the changing.
9. The PR for the enhancement of Function List parser should also include unit test. Please refer [here](https://npp-user-manual.org/docs/function-list/#contribute-your-new-or-enhanced-parser-rule-to-the-notepad-codebase) for more information.
10. Address the review change requests by pushing new commits to the same PR. Avoid amending a commit and then force pushing it. All the PR commits are squashed before merging to the main branch.
11. When creating new PR, try to base it on latest master.
12. Normally you don't need to merge `upstream/master` (using git or via github sync), if your PR is based on older `upstream/master`. If you need to base it on latest `master` (e.g. to check and fix merge conflict), use commands `git fetch upstream` to get latest `master` and then `git rebase upstream/master` to rebase it onto this latest `upstream/master`.
13. Finally, please test your pull requests, at least once.
5. Make your modification compact - don't reformat source code in your request. It makes code review more difficult.
6. PR of reformatting (changing of ws/TAB, line endings or coding style) of source code won't be accepted. Use issue trackers for your request instead.
7. Typo fixing and code refactoring won't be accepted - please create issues with title started with `TYPO` to request the changing.
8. The PR for the enhancement of Function List parser should also include unit test. Please refer [here](https://npp-user-manual.org/docs/function-list/#contribute-your-new-or-enhanced-parser-rule-to-the-notepad-codebase) for more information.
9. Address the review change requests by pushing new commits to the same PR. Avoid amending a commit and then force pushing it. All the PR commits are squashed before merging to the main branch.
10. When creating new PR, try to base it on latest master.
11. Don't merge `upstream/master` (using git or via github sync), if your PR is based on older `upstream/master`. If you need to base it on latest `master` (e.g. to check and fix merge conflict), use commands `git fetch upstream` to get latest `master` and then `git rebase upstream/master` to rebase it onto this latest `upstream/master`.
12. Finally, please test your pull requests, at least once.
In short: The easier the code review is, the better the chance your pull request will get accepted.

View File

@ -20,7 +20,7 @@
<!--- In your Notepad++, click on the "?" menu (found to the right of "Window" in the menu bar) -->
<!--- In the menu that drops down, choose "Debug Info..." -->
<!--- A message box will open detailing specifics about your Notepad++ version, plugins, etc. -->
<!--- CLICK ON THE BUTTON with the text "Copy debug info into clipboard" -->
<!--- CLICK ON THE BLUE LINK with the text "Copy debug info into clipboard" -->
<!--- Do a PASTE HERE -->
<!--- Feel free to include any other info, such as screenshots, etc -->

View File

@ -1 +1 @@
{"leaves":["BiSeqOut","Get_Idle","Get_State","Update","Int32_To_Byte_Array","Int8_To_U8","Int32toInt8TwosComplement (value : Vt.Int32)","AproxU8 (n : Vt.U8; x : Vt.U8)","Read_I32 (Register : Vt.Address_Range)"],"root":"unitTest"}
{"leaves":["BiSeqOut"],"root":"unitTest"}

View File

@ -34,44 +34,10 @@ begin
end BiSeqOut;
-- Result of Execution
-- (The only output is a binary file named NAMEFILE.TXT)
function Get_Idle
return Boolean;
function Get_State
return Vt.State;
procedure Update;
function Int32_To_Byte_Array is
new Unchecked_Conversion (Source => Vt.Int32, Target => Vt.Byte_Array);
function Int8_To_U8 is new Unchecked_Conversion
(Source => Vt.Int8, Target => Vt.U8);
function Int32toInt8TwosComplement (value : Vt.Int32) return Vt.Int8 is
begin
-- body
end Int32toInt8TwosComplement;
function AproxU8 (n : Vt.U8; x : Vt.U8) return Boolean is
eq : Boolean := False;
begin
-- code
return eq;
end AproxU8;
function Read_I32 (Register : Vt.Address_Range) return Vt.Int_32 is
Data : Vt.Int_32;
begin
-- code
return Data;
end Read_ I32;

View File

@ -1240,6 +1240,21 @@ bool NppParameters::load()
isAllLaoded = false;
}
//---------------------------------//
// toolbarIcons.xml : for per user //
//---------------------------------//
generic_string toolbarIconsPath(_userPath);
PathAppend(toolbarIconsPath, TEXT("toolbarIcons.xml"));
_pXmlToolIconsDoc = new TiXmlDocument(toolbarIconsPath);
loadOkay = _pXmlToolIconsDoc->LoadFile();
if (!loadOkay)
{
delete _pXmlToolIconsDoc;
_pXmlToolIconsDoc = nullptr;
isAllLaoded = false;
}
//------------------------------//
// shortcuts.xml : for per user //
//------------------------------//

View File

@ -366,26 +366,4 @@ var LoginToken = new Schema({
}
exports.defineModels = defineModels;
class Car {
constructor(name, year) {
this.name = name;
this.year = year;
}
age(x) {
return x - this.year;
}
}
const date = new Date();
let year = date.getFullYear();
const myCar = new Car("Ford", 2014);
document.getElementById("demo").innerHTML=
"My car is " + myCar.age(year) + " years old.";

View File

@ -1 +1 @@
{"leaves":["extractKeywords","convertBasicMarkup","function","function","function","function","defineModels","slugGenerator","slugGenerator","validatePresenceOf","function","function","function","function","function","function"],"nodes":[{"leaves":["constructor","age"],"name":"Car"}],"root":"unitTest"}
{"leaves":["extractKeywords","convertBasicMarkup","function","function","function","function","defineModels","slugGenerator","slugGenerator","validatePresenceOf","function","function","function","function","function","function"],"root":"unitTest"}

View File

@ -1,46 +0,0 @@
\documentclass[12pt]{article}
\usepackage{lingmacros}
\usepackage{tree-dvips}
\begin{document}
\section*{Notes for My Paper}
Don't forget to include examples of topicalization.
They look like this:
{\small
\enumsentence{Topicalization from sentential subject:\\
\shortex{7}{a John$_i$ [a & kltukl & [el &
{\bf l-}oltoir & er & ngii$_i$ & a Mary]]}
{ & {\bf R-}clear & {\sc comp} &
{\bf IR}.{\sc 3s}-love & P & him & }
{John, (it's) clear that Mary loves (him).}}
}
\subsection*{How to handle topicalization}
I'll just assume a tree structure like (\ex{1}).
{\small
\enumsentence{Structure of A$'$ Projections:\\ [2ex]
\begin{tabular}[t]{cccc}
& \node{i}{CP}\\ [2ex]
\node{ii}{Spec} & &\node{iii}{C$'$}\\ [2ex]
&\node{iv}{C} & & \node{v}{SAgrP}
\end{tabular}
\nodeconnect{i}{ii}
\nodeconnect{i}{iii}
\nodeconnect{iii}{iv}
\nodeconnect{iii}{v}
}
}
\subsection*{Mood}
Mood changes when there is a topic, as well as when
there is WH-movement. \emph{Irrealis} is the mood when
there is a non-subject topic or WH-phrase in Comp.
\emph{Realis} is the mood when there is a subject topic
or WH-phrase.
\end{document}

View File

@ -1 +0,0 @@
{"leaves":["\\begin{document}","\\section*{Notes for My Paper}","\\subsection*{How to handle topicalization}","\\begin{tabular}[t]{cccc}","\\subsection*{Mood}"],"root":"unitTest"}

View File

@ -1,11 +0,0 @@
def func1(a,b):
pass
def func2(a,b):
pass
def func3(a,b):
pass
def func4(a,b):
pass

View File

@ -1 +0,0 @@
{"leaves":["func1(a,b)","func2(a,b)","func3(a,b)","func4(a,b)"],"root":"unitTest"}

View File

@ -1 +0,0 @@
{"leaves":["func1(a,b)","func2(a,b)","func3(a,b)","func4(a,b)"],"root":"unitTest"}

View File

@ -1,304 +0,0 @@
#!/usr/bin/env perl
# pltags - create a tags file for Perl code, for use by vi(m)
#
# Distributed with Vim <http://www.vim.org/>, latest version always available
# at <http://www.mscha.com/mscha.html?pltags#tools>
#
# Version 2.3, 28 February 2002
#
# Written by Michael Schaap <pltags@mscha.com>. Suggestions for improvement
# are very welcome!
#
# This script will not work with Perl 4 or below!
#
# Revision history:
# 1.0 1997? Original version, quickly hacked together
# 2.0 1999? Completely rewritten, better structured and documented,
# support for variables, packages, Exuberant Ctags extensions
# 2.1 Jun 2000 Fixed critical bug (typo in comment) ;-)
# Support multiple level packages (e.g. Archive::Zip::Member)
# 2.2 Jul 2001 'Glob' wildcards - especially useful under Windows
# (thanks to Serge Sivkov and Jason King)
# Bug fix: reset package name for each file
# 2.21 Jul 2001 Oops... bug in variable detection (/local../ -> /^local.../)
# 2.3 Feb 2002 Support variables declared with "our"
# (thanks to Lutz Mende)
# Complain about undeclared variables
use strict;
# Used modules
use Getopt::Long;
# Options with their defaults
my $do_subs = 1; # --subs, --nosubs include subs in tags file?
my $do_vars = 1; # --vars, --novars include variables in tags file?
my $do_pkgs = 1; # --pkgs, --nopkgs include packages in tags file?
my $do_exts = 1; # --extensions, --noextensions
# include Exuberant Ctags extensions
# Global variables
my $VERSION = "2.21"; # pltags version
my $status = 0; # GetOptions return value
my $file = ""; # File being processed
my @tags = (); # List of produced tags
my $is_pkg = 0; # Are we tagging a package?
my $has_subs = 0; # Has this file any subs yet?
my $package_name = ""; # Name of current package
my $var_continues = 0; # Variable declaration continues on last line
my $line = ""; # Current line in file
my $stmt = ""; # Current Perl statement
my @vars = (); # List of variables in declaration
my $var = ""; # Variable in declaration
my $tagline = ""; # Tag file line
# Create a tag file line and push it on the list of found tags
sub MakeTag($$$$$)
{
my ($tag, # Tag name
$type, # Type of tag
$is_static, # Is this a static tag?
$file, # File in which tag appears
$line) = @_; # Line in which tag appears
my $tagline = ""; # Created tag line
# Only process tag if not empty
if ($tag)
{
# Get rid of \n, and escape / and \ in line
chomp $line;
$line =~ s/\\/\\\\/g;
$line =~ s/\//\\\//g;
# Create a tag line
$tagline = "$tag\t$file\t/^$line\$/";
# If we're told to do so, add extensions
if ($do_exts)
{
$tagline .= ";\"\t$type"
. ($is_static ? "\tfile:" : "")
. ($package_name ? "\tclass:$package_name" : "");
}
# Push it on the stack
push (@tags, $tagline);
}
}
# Parse package name from statement
sub PackageName($)
{
my ($stmt) = @_; # Statement
# Look for the argument to "package". Return it if found, else return ""
if ($stmt =~ /^package\s+([\w:]+)/)
{
my $pkgname = $1;
# Remove any parent package name(s)
$pkgname =~ s/.*://;
return $pkgname;
}
else
{
return "";
}
}
# Parse sub name from statement
sub SubName($)
{
my ($stmt) = @_; # Statement
# Look for the argument to "sub". Return it if found, else return ""
if ($stmt =~ /^sub\s+([\w:]+)/)
{
my $subname = $1;
# Remove any parent package name(s)
$subname =~ s/.*://;
return $subname;
}
else
{
return "";
}
}
# Parse all variable names from statement
sub VarNames($)
{
my ($stmt) = @_;
# Remove my or local from statement, if present
$stmt =~ s/^(my|our|local)\s+//;
# Remove any assignment piece
$stmt =~ s/\s*=.*//;
# Now find all variable names, i.e. "words" preceded by $, @ or %
@vars = ($stmt =~ /[\$\@\%]([\w:]+)\b/g);
# Remove any parent package name(s)
map(s/.*://, @vars);
return (@vars);
}
sub functionNoParentheses {
return 1
}
############### Start ###############
print "\npltags $VERSION by Michael Schaap <mscha\@mscha.com>\n\n";
# Get options
$status = GetOptions("subs!" => \$do_subs,
"vars!" => \$do_vars,
"pkgs!" => \$do_pkgs,
"extensions!" => \$do_exts);
# Usage if error in options or no arguments given
unless ($status && @ARGV)
{
print "\n" unless ($status);
print " Usage: $0 [options] filename ...\n\n";
print " Where options can be:\n";
print " --subs (--nosubs) (don't) include sub declarations in tag file\n";
print " --vars (--novars) (don't) include variable declarations in tag file\n";
print " --pkgs (--nopkgs) (don't) include package declarations in tag file\n";
print " --extensions (--noextensions)\n";
print " (don't) include Exuberant Ctags / Vim style\n";
print " extensions in tag file\n\n";
print " Default options: ";
print ($do_subs ? "--subs " : "--nosubs ");
print ($do_vars ? "--vars " : "--novars ");
print ($do_pkgs ? "--pkgs " : "--nopkgs ");
print ($do_exts ? "--extensions\n\n" : "--noextensions\n\n");
print " Example: $0 *.pl *.pm ../shared/*.pm\n\n";
exit;
}
# Loop through files on command line - 'glob' any wildcards, since Windows
# doesn't do this for us
foreach $file (map { glob } @ARGV)
{
# Skip if this is not a file we can open. Also skip tags files and backup
# files
next unless ((-f $file) && (-r $file) && ($file !~ /tags$/)
&& ($file !~ /~$/));
print "Tagging file $file...\n";
$is_pkg = 0;
$package_name = "";
$has_subs = 0;
$var_continues = 0;
open (IN, $file) or die "Can't open file '$file': $!";
# Loop through file
foreach $line (<IN>)
{
# Statement is line with comments and whitespace trimmed
($stmt = $line) =~ s/#.*//;
$stmt =~ s/^\s*//;
$stmt =~ s/\s*$//;
# Nothing left? Never mind.
next unless ($stmt);
# This is a variable declaration if one was started on the previous
# line, or if this line starts with my or local
if ($var_continues or ($stmt =~/^my\b/)
or ($stmt =~/^our\b/) or ($stmt =~/^local\b/))
{
# The declaration continues if the line does not end with ;
$var_continues = ($stmt !~ /;$/);
# Loop through all variable names in the declaration
foreach $var (VarNames($stmt))
{
# Make a tag for this variable unless we're told not to. We
# assume that a variable is always static, unless it appears
# in a package before any sub. (Not necessarily true, but
# it's ok for most purposes and Vim works fine even if it is
# incorrect)
if ($do_vars)
{
MakeTag($var, "v", (!$is_pkg or $has_subs), $file, $line);
}
}
}
# This is a package declaration if the line starts with package
elsif ($stmt =~/^package\b/)
{
# Get name of the package
$package_name = PackageName($stmt);
if ($package_name)
{
# Remember that we're doing a package
$is_pkg = 1;
# Make a tag for this package unless we're told not to. A
# package is never static.
if ($do_pkgs)
{
MakeTag($package_name, "p", 0, $file, $line);
}
}
}
# This is a sub declaration if the line starts with sub
elsif ($stmt =~/^sub\b/)
{
# Remember that this file has subs
$has_subs = 1;
# Make a tag for this sub unless we're told not to. We assume
# that a sub is static, unless it appears in a package. (Not
# necessarily true, but it's ok for most purposes and Vim works
# fine even if it is incorrect)
if ($do_subs)
{
MakeTag(SubName($stmt), "s", (!$is_pkg), $file, $line);
}
}
}
close (IN);
}
# Do we have any tags? If so, write them to the tags file
if (@tags)
{
# Add some tag file extensions if we're told to
if ($do_exts)
{
push (@tags, "!_TAG_FILE_FORMAT\t2\t/extended format/");
push (@tags, "!_TAG_FILE_SORTED\t1\t/0=unsorted, 1=sorted/");
push (@tags, "!_TAG_PROGRAM_AUTHOR\tMichael Schaap\t/mscha\@mscha.com/");
push (@tags, "!_TAG_PROGRAM_NAME\tpltags\t//");
push (@tags, "!_TAG_PROGRAM_VERSION\t$VERSION\t/supports multiple tags and extended format/");
}
print "\nWriting tags file.\n";
open (OUT, ">tags") or die "Can't open tags file: $!";
foreach $tagline (sort @tags)
{
print OUT "$tagline\n";
}
close (OUT);
}
else
{
print "\nNo tags found.\n";
}

View File

@ -1 +0,0 @@
{"leaves":["MakeTag","PackageName","SubName","VarNames","functionNoParentheses"],"root":"unitTest"}

View File

@ -1,25 +0,0 @@
%macro printz/parmbuff;
%put Syspbuff contains: &syspbuff;
%let num=1;
%let dsname=%scan(&syspbuff,&num);
%do %while(&dsname ne);
proc print data=&dsname;
run;
%let num=%eval(&num+1);
%let dsname=%scan(&syspbuff,&num);
%end;
%mend printz;
%printz(purple,red,blue,teal)
proc cas;
function SharedBday(days, number);
p = exp( lgamma(days+1) - lgamma(days-number+1) - number*log(days));
return (1-p);
end func;
do n over {3 10 22 23 50 75};
p = SharedBday(365,n);
print "Chance at least 2 out of " put(n,best3.) "
share the same birthday = " put(p,best6.2);
end;
run;

View File

@ -1 +0,0 @@
{"leaves":["%macro printz","function SharedBday"],"root":"unitTest"}

View File

@ -1,46 +0,0 @@
\documentclass[12pt]{article}
\usepackage{lingmacros}
\usepackage{tree-dvips}
\begin{document}
\section*{Notes for My Paper}
Don't forget to include examples of topicalization.
They look like this:
{\small
\enumsentence{Topicalization from sentential subject:\\
\shortex{7}{a John$_i$ [a & kltukl & [el &
{\bf l-}oltoir & er & ngii$_i$ & a Mary]]}
{ & {\bf R-}clear & {\sc comp} &
{\bf IR}.{\sc 3s}-love & P & him & }
{John, (it's) clear that Mary loves (him).}}
}
\subsection*{How to handle topicalization}
I'll just assume a tree structure like (\ex{1}).
{\small
\enumsentence{Structure of A$'$ Projections:\\ [2ex]
\begin{tabular}[t]{cccc}
& \node{i}{CP}\\ [2ex]
\node{ii}{Spec} & &\node{iii}{C$'$}\\ [2ex]
&\node{iv}{C} & & \node{v}{SAgrP}
\end{tabular}
\nodeconnect{i}{ii}
\nodeconnect{i}{iii}
\nodeconnect{iii}{iv}
\nodeconnect{iii}{v}
}
}
\subsection*{Mood}
Mood changes when there is a topic, as well as when
there is WH-movement. \emph{Irrealis} is the mood when
there is a non-subject topic or WH-phrase in Comp.
\emph{Realis} is the mood when there is a subject topic
or WH-phrase.
\end{document}

View File

@ -1 +0,0 @@
{"leaves":["\\begin{document}","\\section*{Notes for My Paper}","\\subsection*{How to handle topicalization}","\\begin{tabular}[t]{cccc}","\\subsection*{Mood}"],"root":"unitTest"}

View File

@ -1,58 +0,0 @@
# This is a TOML document.
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates
[database]
server = "192.168.1.1"
ports = [ 8000, 8001, 8002 ]
connection_max = 5000
enabled = true
[servers]
toto = "titi"
# Indentation (spaces) is allowed but not required
[servers.alpha]
ip = "10.0.0.1"
dc = "eqdc10"
# Indentation (tabs) is allowed but not required
[servers.beta]
ip = "10.0.0.2"
dc = "eqdc10"
# No indentation is correct too
[servers.gamma]
ip = "10.0.0.3"
dc = "eqdc10"
[servers_underscore]
ip = "10.0.0.4"
dc = "eqdc10"
[servers."double-quot"]
ip = "10.0.0.4"
dc = "eqdc10"
[servers.'single-quot']
ip = "10.0.0.4"
dc = "eqdc10"
[clients]
data = [ ["gamma", "delta"], [1, 2] ]
[clients-2nd-group]
data2 = "Another data"
# Line breaks are OK when inside arrays
hosts = [
"alpha",
"omega"
]

View File

@ -1 +0,0 @@
{"leaves":["owner","database","servers","servers.alpha","servers.beta","servers.gamma","servers_underscore","servers.\"double-quot\"","servers.'single-quot'","clients","clients-2nd-group"],"root":"unitTest"}

View File

@ -1,15 +0,0 @@
Module Program
Public num1 As Integer
Public num2 As Integer
Public answer As Integer
Sub Main(args As String())
Console.Write("Type a number and press Enter")
num1 = Console.ReadLine()
Console.Write("Type another number to add to it and press Enter")
num2 = Console.ReadLine()
answer = num1 + num2
Console.WriteLine("The answer is " & answer)
Console.Write("Press any key to continue...")
Console.ReadKey(True)
End Sub
End Module

View File

@ -1 +0,0 @@
{"leaves":["Main"],"root":"unitTest"}

View File

@ -149,11 +149,6 @@ m 0111111111111111111111111111111111111111111100000000000000000000000000 m
u https://www.youtube.com/watch?v=VmcftreqQ6E&list=PnQIRE5O5JpiLL&index=xxx u
m 1111111111111111111111111111111111111111111111111111111111111111111111111 m
u https://example.com/#/app/0?context u
m 11111111111111111111111111111111111 m
u https://example.com#/example/app/0?context u
m 111111111111111111111111111111111111111111 m
Space detection:

View File

@ -45,8 +45,6 @@ OK u "https://duckduckgo.com/?q=windows+delete+"GameBarPresenceWriter.exe" u
OK u "https://duckduckgo/com/?q=windows+delete+GameBarPresenceWriter.exe" u
OK u "https://duckduckgo.com/?q=windows+delete+""GameBarPresenceWriter.exe" u
OK u https://www.youtube.com/watch?v=VmcftreqQ6E&list=PnQIRE5O5JpiLL&index=xxx u
OK u https://example.com/#/app/0?context u
OK u https://example.com#/example/app/0?context u
OK u "http://github.com/notepad-plus-plus/notepad-plus-plus" u
OK u "https://github.com /notepad-plus-plus/notepad-plus-plus" u
OK u "https://github.com/notepad plus plus/notepad-plus-plus" u

View File

@ -1,55 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="AutoComplete">
<xs:complexType>
<xs:sequence>
<xs:element name="Environment" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="ignoreCase"/>
<xs:attribute type="xs:string" name="startFunc"/>
<xs:attribute type="xs:string" name="stopFunc"/>
<xs:attribute type="xs:string" name="paramSeparator"/>
<xs:attribute type="xs:string" name="terminal"/>
<xs:attribute type="xs:string" name="additionalWordChar"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="KeyWord" minOccurs="1" maxOccurs="unbounded">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element name="Overload" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Param" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="name" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="retVal" use="optional"/>
<xs:attribute type="xs:string" name="descr" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="name" use="required"/>
<xs:attribute type="xs:string" name="func" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="language" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,52 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="GUIConfigs">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="GUIConfig">
<xs:complexType mixed="true">
<xs:sequence minOccurs="0">
<xs:element maxOccurs="unbounded" name="ActiveTabs">
<xs:complexType>
<xs:attribute name="cont" type="xs:integer" use="required"/>
<xs:attribute name="activeTab" type="xs:integer" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:anyAttribute processContents="skip"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="FindHistory">
<xs:complexType>
<xs:anyAttribute processContents="skip"/>
</xs:complexType>
</xs:element>
<xs:element name="History">
<xs:complexType>
<xs:attribute name="nbMaxFile" type="xs:integer" use="required"/>
<xs:attribute name="inSubMenu" type="xs:string" use="required"/>
<xs:attribute name="customLength" type="xs:integer" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="ProjectPanels">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="ProjectPanel">
<xs:complexType>
<xs:attribute name="id" type="xs:integer" use="required"/>
<xs:attribute name="workSpaceFile" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="ScintillaContextMenu">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Item">
<xs:complexType>
<xs:attribute name="MenuEntryName" type="xs:string" use="optional"/>
<xs:attribute name="MenuItemName" type="xs:string" use="optional"/>
<xs:attribute name="id" type="xs:unsignedShort" use="optional"/>
<xs:attribute name="FolderName" type="xs:string" use="optional"/>
<xs:attribute name="TranslateID" type="xs:string" use="optional"/>
<xs:attribute name="PluginEntryName" type="xs:string" use="optional"/>
<xs:attribute name="PluginCommandItemName" type="xs:string" use="optional"/>
<xs:attribute name="ItemNameAs" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,109 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="functionList">
<xs:complexType>
<xs:sequence>
<xs:element name="parser">
<xs:complexType>
<xs:sequence>
<xs:element name="classRange" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="className">
<xs:complexType>
<xs:sequence>
<xs:element name="nameExpr" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="expr" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="function" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="functionName">
<xs:complexType>
<xs:sequence>
<xs:element name="funcNameExpr" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="expr" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="mainExpr"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="mainExpr" use="required"/>
<xs:attribute type="xs:string" name="openSymbole" use="optional"/>
<xs:attribute type="xs:string" name="closeSymbole" use="optional"/>
<xs:attribute type="xs:string" name="displayMode" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="function" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="functionName" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="nameExpr" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="expr" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="className" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="nameExpr" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="expr" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="mainExpr"/>
<xs:attribute type="xs:string" name="displayMode" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="displayName"/>
<xs:attribute type="xs:string" name="id"/>
<xs:attribute type="xs:string" name="commentExpr"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="Languages">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Language">
<xs:complexType>
<xs:sequence minOccurs="0">
<xs:element maxOccurs="unbounded" name="Keywords">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="instre1"/>
<xs:enumeration value="instre2"/>
<xs:enumeration value="type1"/>
<xs:enumeration value="type2"/>
<xs:enumeration value="type3"/>
<xs:enumeration value="type4"/>
<xs:enumeration value="type5"/>
<xs:enumeration value="type6"/>
<xs:enumeration value="type7"/>
<xs:enumeration value="substyle1"/>
<xs:enumeration value="substyle2"/>
<xs:enumeration value="substyle3"/>
<xs:enumeration value="substyle4"/>
<xs:enumeration value="substyle5"/>
<xs:enumeration value="substyle6"/>
<xs:enumeration value="substyle7"/>
<xs:enumeration value="substyle8"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="ext" type="xs:string" use="required"/>
<xs:attribute name="commentLine" type="xs:string" use="optional"/>
<xs:attribute name="commentStart" type="xs:string" use="optional"/>
<xs:attribute name="commentEnd" type="xs:string" use="optional"/>
<xs:attribute name="tabSettings" type="xs:integer" use="optional"/>
<xs:attribute name="backspaceUnindent" type="xs:string" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="Native-Langue">
<xs:complexType>
<xs:all>
<xs:element name="Menu">
<xs:complexType>
<xs:all>
<xs:element name="Main" minOccurs="0" maxOccurs="1"/>
<xs:element name="Splitter" minOccurs="0" maxOccurs="1"/>
<xs:element name="TabBar" minOccurs="0" maxOccurs="1"/>
<xs:element name="TrayIcon" minOccurs="0" maxOccurs="1"/>
</xs:all>
</xs:complexType>
</xs:element>
<xs:element name="Dialog" minOccurs="0" maxOccurs="1"/>
<xs:element name="MessageBox" minOccurs="0" maxOccurs="1"/>
<xs:element name="ClipboardHistory" minOccurs="0" maxOccurs="1"/>
<xs:element name="DocList" minOccurs="0" maxOccurs="1"/>
<xs:element name="WindowsDlg" minOccurs="0" maxOccurs="1"/>
<xs:element name="AsciiInsertion" minOccurs="0" maxOccurs="1"/>
<xs:element name="DocumentMap" minOccurs="0" maxOccurs="1"/>
<xs:element name="FunctionList" minOccurs="0" maxOccurs="1"/>
<xs:element name="FolderAsWorkspace" minOccurs="0" maxOccurs="1"/>
<xs:element name="FileBrowser" minOccurs="0" maxOccurs="1"/>
<xs:element name="ProjectManager" minOccurs="0" maxOccurs="1"/>
<xs:element name="MiscStrings" minOccurs="0" maxOccurs="1"/>
</xs:all>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="filename" type="xs:string" use="required"/>
<xs:attribute name="version" type="xs:string" use="optional"/>
<xs:attribute name="RTL" use="optional">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="yes"/>
<xs:enumeration value="no"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,57 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="InternalCommands"/>
<xs:element name="Macros">
<xs:complexType>
<xs:sequence>
<xs:element name="Macro">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Action">
<xs:complexType>
<xs:attribute name="type" type="xs:integer" use="required"/>
<xs:attribute name="message" type="xs:integer" use="required"/>
<xs:attribute name="wParam" type="xs:unsignedShort" use="required"/>
<xs:attribute name="lParam" type="xs:integer" use="required"/>
<xs:attribute name="sParam" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="Ctrl" type="xs:string" use="required"/>
<xs:attribute name="Alt" type="xs:string" use="required"/>
<xs:attribute name="Shift" type="xs:string" use="required"/>
<xs:attribute name="Key" type="xs:integer" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UserDefinedCommands">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Command">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="Ctrl" type="xs:string" use="required"/>
<xs:attribute name="Alt" type="xs:string" use="required"/>
<xs:attribute name="Shift" type="xs:string" use="required"/>
<xs:attribute name="Key" type="xs:integer" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="PluginCommands"/>
<xs:element name="ScintillaKeys"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="TabContextMenu">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Item">
<xs:complexType>
<xs:attribute name="MenuEntryName" type="xs:string" use="optional"/>
<xs:attribute name="MenuItemName" type="xs:string" use="optional"/>
<xs:attribute name="FolderName" type="xs:string" use="optional"/>
<xs:attribute name="id" type="xs:integer" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,102 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="emptyInt">
<!-- custom type: allows integer or empty string -->
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:length value="0"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
</xs:union>
</xs:simpleType>
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="LexerStyles" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="LexerType" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="WordsStyle" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="name" use="required"/>
<xs:attribute type="xs:integer" name="styleID" use="required"/>
<xs:attribute type="xs:hexBinary" name="fgColor" use="optional"/>
<xs:attribute type="xs:hexBinary" name="bgColor" use="optional"/>
<xs:attribute type="xs:integer" name="colorStyle" use="optional"/>
<xs:attribute type="xs:string" name="fontName" use="optional"/>
<xs:attribute type="emptyInt" name="fontSize" use="optional"/>
<xs:attribute type="emptyInt" name="fontStyle" use="optional"/>
<xs:attribute name="keywordClass" use="optional">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="instre1"/>
<xs:enumeration value="instre2"/>
<xs:enumeration value="type1"/>
<xs:enumeration value="type2"/>
<xs:enumeration value="type3"/>
<xs:enumeration value="type4"/>
<xs:enumeration value="type5"/>
<xs:enumeration value="type6"/>
<xs:enumeration value="type7"/>
<xs:enumeration value="substyle1"/>
<xs:enumeration value="substyle2"/>
<xs:enumeration value="substyle3"/>
<xs:enumeration value="substyle4"/>
<xs:enumeration value="substyle5"/>
<xs:enumeration value="substyle6"/>
<xs:enumeration value="substyle7"/>
<xs:enumeration value="substyle8"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="name" use="required"/>
<xs:attribute type="xs:string" name="desc" use="required"/>
<xs:attribute type="xs:string" name="ext" use="required"/>
</xs:complexType>
<xs:unique name="unique-WordsStyle-styleID">
<xs:selector xpath="WordsStyle"/>
<xs:field xpath="@styleID"/>
</xs:unique>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="GlobalStyles" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="WidgetStyle" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute type="xs:string" name="name" use="required"/>
<xs:attribute type="xs:integer" name="styleID" use="required"/>
<xs:attribute type="xs:hexBinary" name="fgColor" use="optional"/>
<xs:attribute type="xs:hexBinary" name="bgColor" use="optional"/>
<xs:attribute type="xs:integer" name="colorStyle" use="optional"/>
<xs:attribute type="xs:string" name="fontName" use="optional"/>
<xs:attribute type="emptyInt" name="fontSize" use="optional"/>
<xs:attribute type="emptyInt" name="fontStyle" use="optional"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:unique name="unique-widgetstyle-name">
<xs:selector xpath="WidgetStyle"/>
<xs:field xpath="@name"/>
</xs:unique>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="NotepadPlus">
<xs:complexType>
<xs:sequence>
<xs:element name="ToolbarButtons">
<xs:complexType>
<xs:sequence>
<xs:element name="Standard">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Button">
<xs:complexType>
<xs:attribute name="hide" type="xs:string" use="required"/>
<xs:attribute name="index" type="xs:integer" use="required"/>
<xs:attribute name="id" type="xs:unsignedShort" use="required"/>
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="hideAll" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
<xs:element name="Plugin">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Button">
<xs:complexType>
<xs:attribute name="hide" type="xs:string" use="required"/>
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="hideAll" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ToolBarIcons">
<xs:complexType>
<xs:attribute name="icoFolderName" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@ -30,7 +30,15 @@ def post_error(message):
pprint(message)
def parse_xml_file(filename_xml, filename_xsd = None):
def parse_xml_file(filename_xml):
# open and read schema file
#with open(filename_xsd, 'r') as schema_file:
#schema_to_check = schema_file.read()
# open and read xml file
#with open(filename_xml, 'r') as xml_file:
# xml_to_check = xml_file.read()
# parse xml
try:
@ -41,128 +49,58 @@ def parse_xml_file(filename_xml, filename_xsd = None):
except IOError:
#print('Invalid File')
post_error(f'{filename_xml}: IOError Invalid File')
return
# check for XML syntax errors
except etree.XMLSyntaxError as err:
#print('XML Syntax Error, see error_syntax.log')
post_error(f'{filename_xml}: {str(err.error_log)}: XMLSyntaxError Invalid File')
return
# check for general XML errors
except etree.LxmlError as err:
#print('XML Error, see error_syntax.log')
post_error(f'{filename_xml}: {str(err.error_log)}: LxmlError Invalid File')
return
# unknown error
except:
#print('Unknown error.')
post_error(f'{filename_xml}: Unknown error. Maybe check that no xml version is in the first line.')
return
# now validate against correct schema
if doc and filename_xsd is not None:
try:
xmlschema_doc = etree.parse(filename_xsd)
# error reading XSD
except IOError:
post_error(f'{filename_xml} | {filename_xsd}: IOError Invalid File')
return
# error parsing XSD
except etree.XMLSyntaxError as err:
post_error(f'{filename_xml} | {filename_xsd}: {str(err.error_log)}: XMLSyntaxError Invalid File')
return
# other error
except Exception as err:
post_error(f'{filename_xml} | {filename_xsd}: Unknown error {str(err.error_log)} reading Schema .xsd file.')
return
# Next, extract the schema object from the schema_doc
try:
xmlschema = etree.XMLSchema(xmlschema_doc)
#print(f'{filename_xml} | {filename_xsd}: SCHEMA OBJECT OK')
# error with Schema
except etree.XMLSchemaError as err:
post_error(f'{filename_xml} | {filename_xsd}: {str(err.error_log)}: XMLSchemaError')
return
# other error
except Exception as err:
post_error(f'{filename_xml} | {filename_xsd}: Unknown error {str(err.error_log)} obtaining schema object')
return
# finally, validate the XML against the schema
if not xmlschema.validate(doc):
post_error(f'{filename_xml} | {filename_xsd}: Validation error {str(xmlschema.error_log)}')
return
else:
#print(f'{filename_xml} vs schema: VALIDATION OK')
pass
def parse_xml_files_from_APIs_dir():
for file in os.listdir("PowerEditor/installer/APIs"):
if file.endswith(".xml"):
#print(os.path.join("PowerEditor/installer/APIs", file))
parse_xml_file(os.path.join("PowerEditor/installer/APIs", file), os.path.join("PowerEditor", "Test", "xmlValidator", "autoCompletion.xsd"))
parse_xml_file(os.path.join("PowerEditor/installer/APIs", file))
def parse_xml_files_from_functionList_dir():
for file in os.listdir("PowerEditor/installer/functionList"):
if file.endswith(".xml"):
#print(os.path.join("PowerEditor/installer/functionList", file))
xsd_filename = None
if not file.endswith("overrideMap.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "functionList.xsd")
parse_xml_file(os.path.join("PowerEditor/installer/functionList", file), xsd_filename)
parse_xml_file(os.path.join("PowerEditor/installer/functionList", file))
def parse_xml_files_from_nativeLang_dir():
for file in os.listdir("PowerEditor/installer/nativeLang"):
if file.endswith(".xml"):
#print(os.path.join("PowerEditor/installer/nativeLang", file))
parse_xml_file(os.path.join("PowerEditor/installer/nativeLang", file), os.path.join("PowerEditor", "Test", "xmlValidator", "nativeLang.xsd"))
parse_xml_file(os.path.join("PowerEditor/installer/nativeLang", file))
def parse_xml_files_from_themes_dir():
for file in os.listdir("PowerEditor/installer/themes"):
if file.endswith(".xml"):
#print(os.path.join("PowerEditor/installer/themes", file))
parse_xml_file(os.path.join("PowerEditor/installer/themes", file), os.path.join("PowerEditor", "Test", "xmlValidator", "theme.xsd"))
parse_xml_file(os.path.join("PowerEditor/installer/themes", file))
def parse_xml_files_from_src_dir():
for file in os.listdir("PowerEditor/src"):
if file.endswith(".xml"):
#print(os.path.join("PowerEditor/src", file))
xsd_filename = None
if file.endswith("stylers.model.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "theme.xsd")
elif file.endswith("langs.model.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "langs.xsd")
elif file.endswith("toolbarButtonsConf_example.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "toolbarButtons.xsd")
elif file.endswith("tabContextMenu_example.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "tabContext.xsd")
elif file.endswith("contextMenu.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "contextMenu.xsd")
elif file.endswith("shortcuts.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "shortcuts.xsd")
elif file.endswith("config.4zipPackage.xml"):
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "config.xsd")
parse_xml_file(os.path.join("PowerEditor/src", file), xsd_filename)
parse_xml_file(os.path.join("PowerEditor/src", file))
print('Start syntax check and validation for XML files.')
print('Start syntax check for xml files.')
parse_xml_files_from_APIs_dir()
parse_xml_files_from_functionList_dir()
parse_xml_files_from_nativeLang_dir()

View File

@ -1,25 +1,23 @@
Notepad++ v8.8.5 regression-fix:
Notepad++ v8.6.4 regression-fix:
1. Fix "Edit with Notepad++" context menu not being installed correctly regression.
1. Fix regression that the view cannot be activated by mouse clicking.
Notepad++ v8.8.4 vulnerability-fixes, bug-fixes & new enhancement:
1. Fix -notabbar & asNotepad.xml stop hiding tabbar regression (from v8.7.9).
2. Fix "Edit with Notepad++" not removed by uninstaller regression (from v8.8.3).
3. Fix possible heap memory leak.
4. Increase search input length from 2046 to 16383.
5. Add warning tip for the max length on search input (Find/Replace).
6. Fix JavaScript listed twice in Language & Indent settings of Preferences issue.
7. Fix external lexers showing several time in Indent settings issue.
8. Add button to insert variables in the run dialog.
9. Enhance "Go to settings": guide users to the related setting explicitly.
10. Add a clear button for filter field in Shortcut Mapper.
11. Make NFO font overridable by adding font name in Lexer "nfo" of stylers.xml.
Notepad++ v8.6.3 bug-fixes & new enhancements:
1. Restore multi-editing option & add "Column To Multi-editing" option on GUI.
2. Make "copy/cut line while no selection" optional.
3. Fix all open files lost after restarting as Admin to save a file.
4. Fix "Replace All" crash & performance issue.
5. Fix calltip crash due to the division by zero.
6. Enhance Function List for Python to support "async def" & colons in argument list.
7. Fix Copy/Cut/Paste issue in Vertical Edge text field in preferences dialog.
8. Fix macro recording twice for some commands.
9. Fix "Open File" command not working with TAB preceded.
10. Add auto-completion keywords for PHP, JavaScript and CSS.
Get more info on
https://notepad-plus-plus.org/downloads/v8.8.5/
https://notepad-plus-plus.org/downloads/v8.6.3/
Included plugins:
@ -31,4 +29,4 @@ Included plugins:
Updater (Installer only):
* WinGUp (for Notepad++) v5.3.3
* WinGUp (for Notepad++) v5.2.8

View File

@ -26,7 +26,7 @@ BIN_DIRECTORY := ../bin
INSTALLER_DIRECTORY := ../installer
TARGET_BINARY := notepad++.exe
SRC_DATA := contextMenu.xml langs.model.xml shortcuts.xml stylers.model.xml tabContextMenu_example.xml toolbarButtonsConf_example.xml
SRC_DATA := contextMenu.xml langs.model.xml shortcuts.xml stylers.model.xml tabContextMenu_example.xml toolbarIcons.xml
BIN_DATA := change.log doLocalConf.xml nppLogNulContentCorruptionIssue.xml readme.txt userDefineLangs/
INSTALLER_DATA := autoCompletion/ functionList/ localization/ themes/
@ -36,17 +36,12 @@ SCINTILLA_TARGET := libscintilla.a
LEXILLA_DIRECTORY := ../../lexilla
LEXILLA_TARGET := liblexilla.a
ifeq ($(CXX),clang++)
CXX := $(CROSS_COMPILE)clang++
else
CXX := $(CROSS_COMPILE)g++
endif
CXX := $(CROSS_COMPILE)g++
CXXFLAGS := -include $(GCC_DIRECTORY)/gcc-fixes.h -std=c++20
RC := $(CROSS_COMPILE)windres
RCFLAGS := --codepage=65001
RCFLAGS :=
CPP_PATH := $(SCINTILLA_DIRECTORY)/include $(LEXILLA_DIRECTORY)/include
CPP_DEFINE := UNICODE _UNICODE OEMRESOURCE NOMINMAX _WIN32_WINNT=_WIN32_WINNT_WIN7 NTDDI_VERSION=NTDDI_WIN7 TIXML_USE_STL TIXMLA_USE_STL
CPP_DEFINE := UNICODE _UNICODE OEMRESOURCE NOMINMAX _WIN32_WINNT=_WIN32_WINNT_VISTA TIXML_USE_STL TIXMLA_USE_STL
LD := $(CXX)
LDFLAGS := -municode -mwindows
LD_PATH :=
@ -58,7 +53,7 @@ SUBMAKEFLAGS := -O --no-print-directory
ifeq "$(filter-out 0,$(DEBUG))" ""
BUILD_TYPE := release
BUILD_SUFFIX :=
CXXFLAGS += -O3 -Wconversion
CXXFLAGS += -O3 -Wno-alloc-size-larger-than -Wconversion
CPP_DEFINE += NDEBUG
LDFLAGS += -s
else
@ -68,27 +63,6 @@ CXXFLAGS += -Og -g -Wpedantic -Wall -Wextra -Wno-cast-function-type -Wno-overloa
CPP_DEFINE += DEBUG
endif
ifeq ($(CXX),clang++)
CXXFLAGS += -Wimplicit-fallthrough \
-Wformat=2 \
-Wno-c++98-compat \
-Wno-c++98-compat-pedantic \
-Wno-reserved-id-macro \
-Wno-pragma-pack \
-Wno-unknown-pragmas \
-Wno-unused-command-line-argument \
-Wno-overloaded-virtual \
-Wno-sign-conversion \
-Wno-c99-extensions \
-Wno-deprecated-declarations
else ifeq ($(BUILD_TYPE),release)
CXXFLAGS += -Wno-alloc-size-larger-than
endif
ifneq "$(filter-out 0,$(CLANGANALYZE))" ""
CXXFLAGS += --analyze -Xanalyzer -analyzer-output=text
endif
#
# preparations
#
@ -184,7 +158,6 @@ CPDIR := cp -r
RMDIR := rm -rf
CP := cp
RM := rm -f
PREBUILD_EVENT_CMD := cmd //C "cd PowerEditor/src && NppLibsVersionH-generator.bat"
normalize-path = $1
else ifneq "$(wildcard $(dir $(SHELL))ls.exe)" ""
# a Windows system with a proper shell
@ -196,7 +169,6 @@ CPDIR := $(SHELL_DIRECTORY)cp.exe -r
RMDIR := $(SHELL_DIRECTORY)rm.exe -rf
CP := $(SHELL_DIRECTORY)cp.exe
RM := $(SHELL_DIRECTORY)rm.exe -f
PREBUILD_EVENT_CMD := cmd //C "cd PowerEditor/src && NppLibsVersionH-generator.bat"
normalize-path = $1
else
# a standard Windows system
@ -205,7 +177,6 @@ CPDIR := xcopy /q /e /i /y
RMDIR := rmdir /q /s
CP := copy /y
RM := del /q
PREBUILD_EVENT_CMD := cd ..\src && NppLibsVersionH-generator.bat
normalize-path = $(subst /,\,$1)
endif
@ -233,13 +204,9 @@ RC_TARGETS := $(patsubst %.rc,$(BUILD_DIRECTORY)/%.res,$(sort $(filter %.rc,$(GC
SUBMAKEFLAGS += $(if $(NUMBER_OF_PROCESSORS),-j$(NUMBER_OF_PROCESSORS),)
all: pre-build-event $(SCINTILLA_TARGET) $(LEXILLA_TARGET)
all: $(SCINTILLA_TARGET) $(LEXILLA_TARGET)
$(AT)$(MAKE) -f $(firstword $(MAKEFILE_LIST)) $(SUBMAKEFLAGS) binary
pre-build-event:
@echo Executing pre-build events...
$(AT)$(PREBUILD_EVENT_CMD)
$(BUILD_DIRECTORY):
@echo + creating BUILD_DIRECTORY $@
$(AT)$(MKDIR) $(call normalize-path,$(sort $@ $(patsubst %/,%,$(dir $(CXX_TARGETS) $(RC_TARGETS)))))

View File

@ -24,7 +24,6 @@
<KeyWord name="appendChild" />
<KeyWord name="apply" />
<KeyWord name="arguments" />
<KeyWord name="ArgumentError" />
<KeyWord name="arguments.callee" />
<KeyWord name="arguments.caller" />
<KeyWord name="Array" />
@ -70,7 +69,6 @@
<KeyWord name="charCodeAt" />
<KeyWord name="childNodes" />
<KeyWord name="chr" />
<KeyWord name="Class" />
<KeyWord name="clear" />
<KeyWord name="clearInterval" />
<KeyWord name="cloneNode" />
@ -100,10 +98,7 @@
<KeyWord name="Date" />
<KeyWord name="Date.UTC" />
<KeyWord name="decode" />
<KeyWord name="decodeURI" />
<KeyWord name="decodeURIComponent" />
<KeyWord name="default" />
<KeyWord name="DefinitionError" />
<KeyWord name="delete" />
<KeyWord name="DELETEKEY" />
<KeyWord name="do" />
@ -117,18 +112,14 @@
<KeyWord name="else" />
<KeyWord name="embedFonts" />
<KeyWord name="enabled" />
<KeyWord name="encodeURI" />
<KeyWord name="encodeURIComponent" />
<KeyWord name="END" />
<KeyWord name="endFill" />
<KeyWord name="ENTER" />
<KeyWord name="enterFrame" />
<KeyWord name="eq" />
<KeyWord name="Error" />
<KeyWord name="escape" />
<KeyWord name="ESCAPE" />
<KeyWord name="eval" />
<KeyWord name="EvalError" />
<KeyWord name="evaluate" />
<KeyWord name="exp" />
<KeyWord name="false" />
@ -142,7 +133,6 @@
<KeyWord name="fscommand" />
<KeyWord name="FStyleFormat" />
<KeyWord name="function" />
<KeyWord name="Function" />
<KeyWord name="ge" />
<KeyWord name="get" />
<KeyWord name="getAscii" />
@ -233,10 +223,9 @@
<KeyWord name="isPropertyEnumerable" />
<KeyWord name="isPrototypeOf" />
<KeyWord name="isToggled" />
<KeyWord name="isXMLName" />
<KeyWord name="italic" />
<KeyWord name="john@3wgraphics.net" />
<KeyWord name="join" />
<KeyWord name="JSON" />
<KeyWord name="Key" />
<KeyWord name="Key.ALT" />
<KeyWord name="Key.BACKSPACE" />
@ -343,7 +332,6 @@
<KeyWord name="moveTo" />
<KeyWord name="MovieClip" />
<KeyWord name="multiline" />
<KeyWord name="Namespace" />
<KeyWord name="NaN" />
<KeyWord name="ne" />
<KeyWord name="NEGATIVE_INFINITY" />
@ -425,13 +413,9 @@
<KeyWord name="prototype" />
<KeyWord name="publish" />
<KeyWord name="push" />
<KeyWord name="QName" />
<KeyWord name="random" />
<KeyWord name="RangeError" />
<KeyWord name="receiveAudio" />
<KeyWord name="receiveVideo" />
<KeyWord name="ReferenceError" />
<KeyWord name="RegExp" />
<KeyWord name="registerClass" />
<KeyWord name="release" />
<KeyWord name="releaseOutside" />
@ -456,7 +440,6 @@
<KeyWord name="scroll" />
<KeyWord name="scrollString" />
<KeyWord name="security" />
<KeyWord name="SecurityError" />
<KeyWord name="seek" />
<KeyWord name="selectable" />
<KeyWord name="Selection" />
@ -549,7 +532,6 @@
<KeyWord name="super" />
<KeyWord name="swapDepths" />
<KeyWord name="switch" />
<KeyWord name="SyntaxError" />
<KeyWord name="System" />
<KeyWord name="System.capabilities" />
<KeyWord name="System.capabilities.hasAccessibility" />
@ -595,9 +577,7 @@
<KeyWord name="trackAsMenu" />
<KeyWord name="true" />
<KeyWord name="type" />
<KeyWord name="TypeError" />
<KeyWord name="typeof" />
<KeyWord name="uint" />
<KeyWord name="undefined" />
<KeyWord name="underline" />
<KeyWord name="unescape" />
@ -609,15 +589,12 @@
<KeyWord name="unwatch" />
<KeyWord name="UP" />
<KeyWord name="updateAfterEvent" />
<KeyWord name="URIError" />
<KeyWord name="url" />
<KeyWord name="useHandCursor" />
<KeyWord name="UTC" />
<KeyWord name="valueOf" />
<KeyWord name="var" />
<KeyWord name="variable" />
<KeyWord name="Vector" />
<KeyWord name="VerifyError" />
<KeyWord name="version" />
<KeyWord name="Video" />
<KeyWord name="void" />
@ -628,7 +605,6 @@
<KeyWord name="wordWrap" />
<KeyWord name="XML" />
<KeyWord name="xmlDecl" />
<KeyWord name="XMLList" />
<KeyWord name="XMLNode" />
<KeyWord name="XMLSocket" />
<KeyWord name="_alpha" />

View File

@ -1,145 +0,0 @@
<NotepadPlus>
<AutoComplete language="Go">
<KeyWord name="_" />
<KeyWord name="false" />
<KeyWord name="iota" />
<KeyWord name="nil" />
<KeyWord name="true" />
<KeyWord name="break" />
<KeyWord name="case" />
<KeyWord name="continue" />
<KeyWord name="default" />
<KeyWord name="defer" />
<KeyWord name="else" />
<KeyWord name="fallthrough" />
<KeyWord name="for" />
<KeyWord name="go" />
<KeyWord name="goto" />
<KeyWord name="if" />
<KeyWord name="import" />
<KeyWord name="range" />
<KeyWord name="return" />
<KeyWord name="select" />
<KeyWord name="switch" />
<KeyWord name="append" func="yes">
<Overload retVal="[]Type" >
<Param name="slice []Type" />
<Param name="elems ...Type" />
</Overload>
</KeyWord>
<KeyWord name="cap" func="yes">
<Overload retVal="int" >
<Param name="v Type" />
</Overload>
</KeyWord>
<KeyWord name="clear" func="yes">
<Overload retVal="~[]Type" >
<Param name="t T" />
</Overload>
</KeyWord>
<KeyWord name="close" func="yes">
<Overload retVal="" >
<Param name="c chan&lt;- Type" />
</Overload>
</KeyWord>
<KeyWord name="complex" func="yes">
<Overload retVal="ComplexType" >
<Param name="r" />
<Param name="i FloatType" />
</Overload>
</KeyWord>
<KeyWord name="copy" func="yes">
<Overload retVal="int" >
<Param name="dst" />
<Param name="src []Type" />
</Overload>
</KeyWord>
<KeyWord name="delete" func="yes">
<Overload retVal="" >
<Param name="m map[Type]Type1" />
<Param name="key Type" />
</Overload>
</KeyWord>
<KeyWord name="imag" func="yes">
<Overload retVal="FloatType" >
<Param name="c ComplexType" />
</Overload>
</KeyWord>
<KeyWord name="len" func="yes">
<Overload retVal="int" >
<Param name="v Type" />
</Overload>
</KeyWord>
<KeyWord name="make" func="yes">
<Overload retVal="Type" >
<Param name="Type" />
<Param name="size IntegerType" />
</Overload>
</KeyWord>
<KeyWord name="new" func="yes">
<Overload retVal="*Type" >
<Param name="Type" />
</Overload>
</KeyWord>
<KeyWord name="panic" func="yes">
<Overload retVal="" >
<Param name="v interface{}" />
</Overload>
</KeyWord>
<KeyWord name="print" func="yes">
<Overload retVal="" >
<Param name="args ...Type" />
</Overload>
</KeyWord>
<KeyWord name="println" func="yes">
<Overload retVal="" >
<Param name="args ...Type" />
</Overload>
</KeyWord>
<KeyWord name="real" func="yes">
<Overload retVal="FloatType" >
<Param name="c ComplexType" />
</Overload>
</KeyWord>
<KeyWord name="recover" func="yes">
<Overload retVal="interface{}" >
</Overload>
</KeyWord>
<KeyWord name="ComplexType" />
<KeyWord name="FloatType" />
<KeyWord name="IntegerType" />
<KeyWord name="Type" />
<KeyWord name="Type1" />
<KeyWord name="any" />
<KeyWord name="bool" />
<KeyWord name="byte" />
<KeyWord name="comparable" />
<KeyWord name="complex128" />
<KeyWord name="complex64" />
<KeyWord name="error" />
<KeyWord name="float32" />
<KeyWord name="float64" />
<KeyWord name="int" />
<KeyWord name="int16" />
<KeyWord name="int32" />
<KeyWord name="int64" />
<KeyWord name="int8" />
<KeyWord name="rune" />
<KeyWord name="string" />
<KeyWord name="uint" />
<KeyWord name="uint16" />
<KeyWord name="uint32" />
<KeyWord name="uint64" />
<KeyWord name="uint8" />
<KeyWord name="uintptr" />
<KeyWord name="chan" />
<KeyWord name="const" />
<KeyWord name="func" />
<KeyWord name="interface" />
<KeyWord name="map" />
<KeyWord name="package" />
<KeyWord name="struct" />
<KeyWord name="type" />
<KeyWord name="var" />
</AutoComplete>
</NotepadPlus>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<NotepadPlus>
<AutoComplete language="LUA">
<Environment ignoreCase="no" startFunc="(" stopFunc=")" paramSeparator="," terminal=";" additionalWordChar=".:" />
<Environment ignoreCase="yes" startFunc="(" stopFunc=")" paramSeparator="," terminal=";" additionalWordChar=".:" />
<!-- Lua syntax-->
<KeyWord name="break" func="no" />

View File

@ -1,747 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<NotepadPlus>
<AutoComplete>
<Environment ignoreCase="no" startFunc="(" stopFunc=")" paramSeparator="," terminal=";" />
<KeyWord name="ACCEPTS" />
<KeyWord name="AST" />
<KeyWord name="AT-KEY" />
<KeyWord name="Any" />
<KeyWord name="Array" />
<KeyWord name="Associative" />
<KeyWord name="Attribute" />
<KeyWord name="BEGIN" />
<KeyWord name="Backtrace" />
<KeyWord name="Backtrace::Frame" />
<KeyWord name="Bag" />
<KeyWord name="BagHash" />
<KeyWord name="Baggy" />
<KeyWord name="Blob" />
<KeyWord name="Block" />
<KeyWord name="Bool" />
<KeyWord name="Buf" />
<KeyWord name="CATCH" />
<KeyWord name="CHECK" />
<KeyWord name="CONTROL" />
<KeyWord name="CX::Done" />
<KeyWord name="CX::Emit" />
<KeyWord name="CX::Last" />
<KeyWord name="CX::Next" />
<KeyWord name="CX::Proceed" />
<KeyWord name="CX::Redo" />
<KeyWord name="CX::Return" />
<KeyWord name="CX::Succeed" />
<KeyWord name="CX::Take" />
<KeyWord name="CX::Warn" />
<KeyWord name="CallFrame" />
<KeyWord name="Callable" />
<KeyWord name="Cancellation" />
<KeyWord name="Capture" />
<KeyWord name="Channel" />
<KeyWord name="Code" />
<KeyWord name="Collation" />
<KeyWord name="CompUnit" />
<KeyWord name="CompUnit::Repository" />
<KeyWord name="CompUnit::Repository::FileSystem" />
<KeyWord name="CompUnit::Repository::Installation" />
<KeyWord name="Compiler" />
<KeyWord name="Complex" />
<KeyWord name="ComplexStr" />
<KeyWord name="Cool" />
<KeyWord name="CurrentThreadScheduler" />
<KeyWord name="D" />
<KeyWord name="Date" />
<KeyWord name="DateTime" />
<KeyWord name="Dateish" />
<KeyWord name="Distribution" />
<KeyWord name="Distribution::Hash" />
<KeyWord name="Distribution::Locally" />
<KeyWord name="Distribution::Path" />
<KeyWord name="Distro" />
<KeyWord name="Duration" />
<KeyWord name="END" />
<KeyWord name="ENTER" />
<KeyWord name="EVAL" />
<KeyWord name="EVALFILE" />
<KeyWord name="EXISTS-KEY" />
<KeyWord name="Encoding" />
<KeyWord name="Encoding::Registry" />
<KeyWord name="Endian" />
<KeyWord name="Enumeration" />
<KeyWord name="Exception" />
<KeyWord name="FIRST" />
<KeyWord name="Failure" />
<KeyWord name="FatRat" />
<KeyWord name="Filetests" />
<KeyWord name="ForeignCode" />
<KeyWord name="Grammar" />
<KeyWord name="Hash" />
<KeyWord name="HyperSeq" />
<KeyWord name="HyperWhatever" />
<KeyWord name="INIT" />
<KeyWord name="IO" />
<KeyWord name="IO" />
<KeyWord name="IO::ArgFiles" />
<KeyWord name="IO::CatHandle" />
<KeyWord name="IO::Handle" />
<KeyWord name="IO::Notification" />
<KeyWord name="IO::Path" />
<KeyWord name="IO::Path::Cygwin" />
<KeyWord name="IO::Path::QNX" />
<KeyWord name="IO::Path::Unix" />
<KeyWord name="IO::Path::Win32" />
<KeyWord name="IO::Pipe" />
<KeyWord name="IO::Socket" />
<KeyWord name="IO::Socket::Async" />
<KeyWord name="IO::Socket::INET" />
<KeyWord name="IO::Spec" />
<KeyWord name="IO::Spec::Cygwin" />
<KeyWord name="IO::Spec::QNX" />
<KeyWord name="IO::Spec::Unix" />
<KeyWord name="IO::Spec::Win32" />
<KeyWord name="IO::Special" />
<KeyWord name="Instant" />
<KeyWord name="Int" />
<KeyWord name="IntStr" />
<KeyWord name="Iterable" />
<KeyWord name="Iterator" />
<KeyWord name="Junction" />
<KeyWord name="KEEP" />
<KeyWord name="Kernel" />
<KeyWord name="LAST" />
<KeyWord name="LEAVE" />
<KeyWord name="Label" />
<KeyWord name="List" />
<KeyWord name="Lock" />
<KeyWord name="Lock::Async" />
<KeyWord name="Macro" />
<KeyWord name="Map" />
<KeyWord name="Match" />
<KeyWord name="Method" />
<KeyWord name="Mix" />
<KeyWord name="MixHash" />
<KeyWord name="Mixy" />
<KeyWord name="Mu" />
<KeyWord name="NEXT" />
<KeyWord name="NFC" />
<KeyWord name="NFD" />
<KeyWord name="NFKC" />
<KeyWord name="NFKD" />
<KeyWord name="Nil" />
<KeyWord name="Num" />
<KeyWord name="NumStr" />
<KeyWord name="Numeric" />
<KeyWord name="ObjAt" />
<KeyWord name="Order" />
<KeyWord name="POST" />
<KeyWord name="PRE" />
<KeyWord name="Pair" />
<KeyWord name="Parameter" />
<KeyWord name="Perl" />
<KeyWord name="Pod::Block" />
<KeyWord name="Pod::Block::Code" />
<KeyWord name="Pod::Block::Comment" />
<KeyWord name="Pod::Block::Declarator" />
<KeyWord name="Pod::Block::Named" />
<KeyWord name="Pod::Block::Para" />
<KeyWord name="Pod::Block::Table" />
<KeyWord name="Pod::Defn" />
<KeyWord name="Pod::FormattingCode" />
<KeyWord name="Pod::Heading" />
<KeyWord name="Pod::Item" />
<KeyWord name="Positional" />
<KeyWord name="PositionalBindFailover" />
<KeyWord name="PredictiveIterator" />
<KeyWord name="Proc" />
<KeyWord name="Proc::Async" />
<KeyWord name="Promise" />
<KeyWord name="Proxy" />
<KeyWord name="PseudoStash" />
<KeyWord name="QuantHash" />
<KeyWord name="RaceSeq" />
<KeyWord name="Range" />
<KeyWord name="Rat" />
<KeyWord name="RatStr" />
<KeyWord name="Rational" />
<KeyWord name="Real" />
<KeyWord name="Regex" />
<KeyWord name="Routine" />
<KeyWord name="Routine::WrapHandle" />
<KeyWord name="START" />
<KeyWord name="STORE" />
<KeyWord name="Scalar" />
<KeyWord name="Scheduler" />
<KeyWord name="Semaphore" />
<KeyWord name="Seq" />
<KeyWord name="Sequence" />
<KeyWord name="Set" />
<KeyWord name="SetHash" />
<KeyWord name="Setty" />
<KeyWord name="Signature" />
<KeyWord name="Slip" />
<KeyWord name="Stash" />
<KeyWord name="Str" />
<KeyWord name="StrDistance" />
<KeyWord name="Stringy" />
<KeyWord name="Sub" />
<KeyWord name="Submethod" />
<KeyWord name="Supplier" />
<KeyWord name="Supplier::Preserving" />
<KeyWord name="Supply" />
<KeyWord name="Systemic" />
<KeyWord name="TEMP" />
<KeyWord name="Tap" />
<KeyWord name="Telemetry" />
<KeyWord name="Telemetry::Instrument::Thread" />
<KeyWord name="Telemetry::Instrument::ThreadPool" />
<KeyWord name="Telemetry::Instrument::Usage" />
<KeyWord name="Telemetry::Period" />
<KeyWord name="Telemetry::Sampler" />
<KeyWord name="Thread" />
<KeyWord name="ThreadPoolScheduler" />
<KeyWord name="UInt" />
<KeyWord name="UNDO" />
<KeyWord name="Uni" />
<KeyWord name="VM" />
<KeyWord name="ValueObjAt" />
<KeyWord name="Variable" />
<KeyWord name="Version" />
<KeyWord name="Whatever" />
<KeyWord name="WhateverCode" />
<KeyWord name="X::AdHoc" />
<KeyWord name="X::Anon::Augment" />
<KeyWord name="X::Anon::Multi" />
<KeyWord name="X::Assignment::RO" />
<KeyWord name="X::Attribute::NoPackage" />
<KeyWord name="X::Attribute::Package" />
<KeyWord name="X::Attribute::Required" />
<KeyWord name="X::Attribute::Undeclared" />
<KeyWord name="X::Augment::NoSuchType" />
<KeyWord name="X::Bind" />
<KeyWord name="X::Bind::NativeType" />
<KeyWord name="X::Bind::Slice" />
<KeyWord name="X::Caller::NotDynamic" />
<KeyWord name="X::Channel::ReceiveOnClosed" />
<KeyWord name="X::Channel::SendOnClosed" />
<KeyWord name="X::Comp" />
<KeyWord name="X::Composition::NotComposable" />
<KeyWord name="X::Constructor::Positional" />
<KeyWord name="X::Control" />
<KeyWord name="X::ControlFlow" />
<KeyWord name="X::ControlFlow::Return" />
<KeyWord name="X::DateTime::TimezoneClash" />
<KeyWord name="X::Declaration::Scope" />
<KeyWord name="X::Declaration::Scope::Multi" />
<KeyWord name="X::Does::TypeObject" />
<KeyWord name="X::Dynamic::NotFound" />
<KeyWord name="X::Eval::NoSuchLang" />
<KeyWord name="X::Export::NameClash" />
<KeyWord name="X::IO" />
<KeyWord name="X::IO::Chdir" />
<KeyWord name="X::IO::Chmod" />
<KeyWord name="X::IO::Copy" />
<KeyWord name="X::IO::Cwd" />
<KeyWord name="X::IO::Dir" />
<KeyWord name="X::IO::DoesNotExist" />
<KeyWord name="X::IO::Link" />
<KeyWord name="X::IO::Mkdir" />
<KeyWord name="X::IO::Move" />
<KeyWord name="X::IO::Rename" />
<KeyWord name="X::IO::Rmdir" />
<KeyWord name="X::IO::Symlink" />
<KeyWord name="X::IO::Unlink" />
<KeyWord name="X::Inheritance::NotComposed" />
<KeyWord name="X::Inheritance::Unsupported" />
<KeyWord name="X::Method::InvalidQualifier" />
<KeyWord name="X::Method::NotFound" />
<KeyWord name="X::Method::Private::Permission" />
<KeyWord name="X::Method::Private::Unqualified" />
<KeyWord name="X::Mixin::NotComposable" />
<KeyWord name="X::NYI" />
<KeyWord name="X::NoDispatcher" />
<KeyWord name="X::Numeric::Real" />
<KeyWord name="X::OS" />
<KeyWord name="X::Obsolete" />
<KeyWord name="X::OutOfRange" />
<KeyWord name="X::Package::Stubbed" />
<KeyWord name="X::Parameter::Default" />
<KeyWord name="X::Parameter::MultipleTypeConstraints" />
<KeyWord name="X::Parameter::Placeholder" />
<KeyWord name="X::Parameter::Twigil" />
<KeyWord name="X::Parameter::WrongOrder" />
<KeyWord name="X::Phaser::Multiple" />
<KeyWord name="X::Phaser::PrePost" />
<KeyWord name="X::Placeholder::Block" />
<KeyWord name="X::Placeholder::Mainline" />
<KeyWord name="X::Pod" />
<KeyWord name="X::Proc::Async" />
<KeyWord name="X::Proc::Async::AlreadyStarted" />
<KeyWord name="X::Proc::Async::BindOrUse" />
<KeyWord name="X::Proc::Async::CharsOrBytes" />
<KeyWord name="X::Proc::Async::MustBeStarted" />
<KeyWord name="X::Proc::Async::OpenForWriting" />
<KeyWord name="X::Proc::Async::TapBeforeSpawn" />
<KeyWord name="X::Proc::Unsuccessful" />
<KeyWord name="X::Promise::CauseOnlyValidOnBroken" />
<KeyWord name="X::Promise::Vowed" />
<KeyWord name="X::Redeclaration" />
<KeyWord name="X::Role::Initialization" />
<KeyWord name="X::Scheduler::CueInNaNSeconds" />
<KeyWord name="X::Seq::Consumed" />
<KeyWord name="X::Sequence::Deduction" />
<KeyWord name="X::Signature::NameClash" />
<KeyWord name="X::Signature::Placeholder" />
<KeyWord name="X::Str::Numeric" />
<KeyWord name="X::StubCode" />
<KeyWord name="X::Syntax" />
<KeyWord name="X::Syntax::Augment::WithoutMonkeyTyping" />
<KeyWord name="X::Syntax::Comment::Embedded" />
<KeyWord name="X::Syntax::Confused" />
<KeyWord name="X::Syntax::InfixInTermPosition" />
<KeyWord name="X::Syntax::Malformed" />
<KeyWord name="X::Syntax::Missing" />
<KeyWord name="X::Syntax::NegatedPair" />
<KeyWord name="X::Syntax::NoSelf" />
<KeyWord name="X::Syntax::Number::RadixOutOfRange" />
<KeyWord name="X::Syntax::P5" />
<KeyWord name="X::Syntax::Perl5Var" />
<KeyWord name="X::Syntax::Regex::Adverb" />
<KeyWord name="X::Syntax::Regex::SolitaryQuantifier" />
<KeyWord name="X::Syntax::Reserved" />
<KeyWord name="X::Syntax::Self::WithoutObject" />
<KeyWord name="X::Syntax::Signature::InvocantMarker" />
<KeyWord name="X::Syntax::Term::MissingInitializer" />
<KeyWord name="X::Syntax::UnlessElse" />
<KeyWord name="X::Syntax::Variable::Match" />
<KeyWord name="X::Syntax::Variable::Numeric" />
<KeyWord name="X::Syntax::Variable::Twigil" />
<KeyWord name="X::Temporal" />
<KeyWord name="X::Temporal::InvalidFormat" />
<KeyWord name="X::TypeCheck" />
<KeyWord name="X::TypeCheck::Assignment" />
<KeyWord name="X::TypeCheck::Binding" />
<KeyWord name="X::TypeCheck::Return" />
<KeyWord name="X::TypeCheck::Splice" />
<KeyWord name="X::Undeclared" />
<KeyWord name="a" />
<KeyWord name="abs" />
<KeyWord name="accept" />
<KeyWord name="acos" />
<KeyWord name="acosec" />
<KeyWord name="acosech" />
<KeyWord name="acosh" />
<KeyWord name="acotan" />
<KeyWord name="acotanh" />
<KeyWord name="after" />
<KeyWord name="alarm" />
<KeyWord name="also" />
<KeyWord name="and" />
<KeyWord name="andthen" />
<KeyWord name="antipairs" />
<KeyWord name="array" />
<KeyWord name="as" />
<KeyWord name="asec" />
<KeyWord name="asech" />
<KeyWord name="asin" />
<KeyWord name="asinh" />
<KeyWord name="async" />
<KeyWord name="atan" />
<KeyWord name="atan2" />
<KeyWord name="atanh" />
<KeyWord name="atomicint" />
<KeyWord name="augment" />
<KeyWord name="b" />
<KeyWord name="backslash" />
<KeyWord name="bag" />
<KeyWord name="base" />
<KeyWord name="before" />
<KeyWord name="bind" />
<KeyWord name="binmode" />
<KeyWord name="bit" />
<KeyWord name="bless" />
<KeyWord name="bool" />
<KeyWord name="break" />
<KeyWord name="buf" />
<KeyWord name="buf1" />
<KeyWord name="buf16" />
<KeyWord name="buf2" />
<KeyWord name="buf32" />
<KeyWord name="buf4" />
<KeyWord name="buf64" />
<KeyWord name="buf8" />
<KeyWord name="but" />
<KeyWord name="c" />
<KeyWord name="caller" />
<KeyWord name="category" />
<KeyWord name="ceiling" />
<KeyWord name="chars" />
<KeyWord name="chdir" />
<KeyWord name="chmod" />
<KeyWord name="chomp" />
<KeyWord name="chop" />
<KeyWord name="chr" />
<KeyWord name="chroot" />
<KeyWord name="chrs" />
<KeyWord name="circumfix" />
<KeyWord name="cis" />
<KeyWord name="class" />
<KeyWord name="close" />
<KeyWord name="closedir" />
<KeyWord name="closure" />
<KeyWord name="cmp" />
<KeyWord name="codes" />
<KeyWord name="comb" />
<KeyWord name="complex" />
<KeyWord name="conj" />
<KeyWord name="connect" />
<KeyWord name="constant" />
<KeyWord name="contains" />
<KeyWord name="contend" />
<KeyWord name="continue" />
<KeyWord name="cos" />
<KeyWord name="cosec" />
<KeyWord name="cosech" />
<KeyWord name="cosh" />
<KeyWord name="cotan" />
<KeyWord name="cotanh" />
<KeyWord name="crypt" />
<KeyWord name="dbm" />
<KeyWord name="default" />
<KeyWord name="defer" />
<KeyWord name="defined" />
<KeyWord name="delete" />
<KeyWord name="die" />
<KeyWord name="div" />
<KeyWord name="do" />
<KeyWord name="does" />
<KeyWord name="double" />
<KeyWord name="dump" />
<KeyWord name="dynamic" />
<KeyWord name="each" />
<KeyWord name="elems" />
<KeyWord name="else" />
<KeyWord name="elsif" />
<KeyWord name="enum" />
<KeyWord name="eof" />
<KeyWord name="eq" />
<KeyWord name="eqv" />
<KeyWord name="exec" />
<KeyWord name="exec" />
<KeyWord name="exists" />
<KeyWord name="exists" />
<KeyWord name="exit" />
<KeyWord name="exp" />
<KeyWord name="expmod" />
<KeyWord name="extra" />
<KeyWord name="f" />
<KeyWord name="fail" />
<KeyWord name="fatal" />
<KeyWord name="fc" />
<KeyWord name="fcntl" />
<KeyWord name="ff" />
<KeyWord name="fff" />
<KeyWord name="fileno" />
<KeyWord name="flat" />
<KeyWord name="flip" />
<KeyWord name="flock" />
<KeyWord name="floor" />
<KeyWord name="fmt" />
<KeyWord name="for" />
<KeyWord name="fork" />
<KeyWord name="formats" />
<KeyWord name="function" />
<KeyWord name="functions" />
<KeyWord name="gather" />
<KeyWord name="gcd" />
<KeyWord name="ge" />
<KeyWord name="get" />
<KeyWord name="getc" />
<KeyWord name="getpeername" />
<KeyWord name="getpgrp" />
<KeyWord name="getppid" />
<KeyWord name="getpriority" />
<KeyWord name="getsock" />
<KeyWord name="gist" />
<KeyWord name="given" />
<KeyWord name="glob" />
<KeyWord name="gmtime" />
<KeyWord name="goto" />
<KeyWord name="grammar" />
<KeyWord name="grep" />
<KeyWord name="gt" />
<KeyWord name="h" />
<KeyWord name="handles" />
<KeyWord name="has" />
<KeyWord name="hash" />
<KeyWord name="heredoc" />
<KeyWord name="hyper" />
<KeyWord name="if" />
<KeyWord name="import" />
<KeyWord name="index" />
<KeyWord name="infix" />
<KeyWord name="int" />
<KeyWord name="int" />
<KeyWord name="int1" />
<KeyWord name="int16" />
<KeyWord name="int2" />
<KeyWord name="int32" />
<KeyWord name="int4" />
<KeyWord name="int64" />
<KeyWord name="int8" />
<KeyWord name="invert" />
<KeyWord name="ioctl" />
<KeyWord name="is" />
<KeyWord name="is-prime" />
<KeyWord name="iterator" />
<KeyWord name="join" />
<KeyWord name="k" />
<KeyWord name="keyof" />
<KeyWord name="keys" />
<KeyWord name="kill" />
<KeyWord name="kv" />
<KeyWord name="kv" />
<KeyWord name="last" />
<KeyWord name="lazy" />
<KeyWord name="lc" />
<KeyWord name="lcfirst" />
<KeyWord name="lcm" />
<KeyWord name="le" />
<KeyWord name="leave" />
<KeyWord name="leg" />
<KeyWord name="let" />
<KeyWord name="lift" />
<KeyWord name="lines" />
<KeyWord name="link" />
<KeyWord name="list" />
<KeyWord name="listen" />
<KeyWord name="local" />
<KeyWord name="localtime" />
<KeyWord name="lock" />
<KeyWord name="log" />
<KeyWord name="log10" />
<KeyWord name="long" />
<KeyWord name="longlong" />
<KeyWord name="loop" />
<KeyWord name="lsb" />
<KeyWord name="lstat" />
<KeyWord name="lt" />
<KeyWord name="macro" />
<KeyWord name="make" />
<KeyWord name="map" />
<KeyWord name="match" />
<KeyWord name="maybe" />
<KeyWord name="method" />
<KeyWord name="mix" />
<KeyWord name="mkdir" />
<KeyWord name="mod" />
<KeyWord name="module" />
<KeyWord name="msb" />
<KeyWord name="msg" />
<KeyWord name="multi" />
<KeyWord name="my" />
<KeyWord name="narrow" />
<KeyWord name="ne" />
<KeyWord name="new" />
<KeyWord name="next" />
<KeyWord name="no" />
<KeyWord name="not" />
<KeyWord name="num" />
<KeyWord name="num32" />
<KeyWord name="num64" />
<KeyWord name="o" />
<KeyWord name="of" />
<KeyWord name="only" />
<KeyWord name="oo" />
<KeyWord name="open" />
<KeyWord name="or" />
<KeyWord name="ord" />
<KeyWord name="ords" />
<KeyWord name="orelse" />
<KeyWord name="orwith" />
<KeyWord name="our" />
<KeyWord name="p" />
<KeyWord name="pack" />
<KeyWord name="package" />
<KeyWord name="pairs" />
<KeyWord name="path" />
<KeyWord name="pick" />
<KeyWord name="pipe" />
<KeyWord name="polymod" />
<KeyWord name="pop" />
<KeyWord name="pos" />
<KeyWord name="postcircumfix" />
<KeyWord name="postfix" />
<KeyWord name="pred" />
<KeyWord name="prefix" />
<KeyWord name="print" />
<KeyWord name="printf" />
<KeyWord name="proto" />
<KeyWord name="prototype" />
<KeyWord name="push" />
<KeyWord name="q" />
<KeyWord name="qq" />
<KeyWord name="quotewords" />
<KeyWord name="quoting" />
<KeyWord name="race" />
<KeyWord name="rand" />
<KeyWord name="rat" />
<KeyWord name="rat1" />
<KeyWord name="rat16" />
<KeyWord name="rat2" />
<KeyWord name="rat32" />
<KeyWord name="rat4" />
<KeyWord name="rat64" />
<KeyWord name="rat8" />
<KeyWord name="read" />
<KeyWord name="readdir" />
<KeyWord name="readline" />
<KeyWord name="readlink" />
<KeyWord name="readpipe" />
<KeyWord name="recv" />
<KeyWord name="redo" />
<KeyWord name="ref" />
<KeyWord name="regex" />
<KeyWord name="rename" />
<KeyWord name="repeat" />
<KeyWord name="require" />
<KeyWord name="requires" />
<KeyWord name="reset" />
<KeyWord name="return" />
<KeyWord name="return-rw" />
<KeyWord name="returns" />
<KeyWord name="reverse" />
<KeyWord name="rewinddir" />
<KeyWord name="rindex" />
<KeyWord name="rmdir" />
<KeyWord name="role" />
<KeyWord name="roots" />
<KeyWord name="round" />
<KeyWord name="rule" />
<KeyWord name="s" />
<KeyWord name="samecase" />
<KeyWord name="say" />
<KeyWord name="scalar" />
<KeyWord name="scalar" />
<KeyWord name="sec" />
<KeyWord name="sech" />
<KeyWord name="seek" />
<KeyWord name="seekdir" />
<KeyWord name="select" />
<KeyWord name="semctl" />
<KeyWord name="semget" />
<KeyWord name="semop" />
<KeyWord name="send" />
<KeyWord name="set" />
<KeyWord name="setpgrp" />
<KeyWord name="setpriority" />
<KeyWord name="setsockopt" />
<KeyWord name="shift" />
<KeyWord name="shm" />
<KeyWord name="shutdown" />
<KeyWord name="sign" />
<KeyWord name="sin" />
<KeyWord name="single" />
<KeyWord name="sinh" />
<KeyWord name="size_t" />
<KeyWord name="slang" />
<KeyWord name="sleep" />
<KeyWord name="sockets" />
<KeyWord name="sort" />
<KeyWord name="splice" />
<KeyWord name="split" />
<KeyWord name="sprintf" />
<KeyWord name="sqrt" />
<KeyWord name="srand" />
<KeyWord name="start" />
<KeyWord name="stat" />
<KeyWord name="state" />
<KeyWord name="str" />
<KeyWord name="study" />
<KeyWord name="sub" />
<KeyWord name="submethod" />
<KeyWord name="subset" />
<KeyWord name="subst" />
<KeyWord name="substr" />
<KeyWord name="substr-rw" />
<KeyWord name="succ" />
<KeyWord name="supersede" />
<KeyWord name="sym" />
<KeyWord name="symlink" />
<KeyWord name="sys" />
<KeyWord name="syscall" />
<KeyWord name="system" />
<KeyWord name="syswrite" />
<KeyWord name="take" />
<KeyWord name="tan" />
<KeyWord name="tanh" />
<KeyWord name="tc" />
<KeyWord name="tclc" />
<KeyWord name="tell" />
<KeyWord name="telldir" />
<KeyWord name="temp" />
<KeyWord name="term" />
<KeyWord name="tie" />
<KeyWord name="time" />
<KeyWord name="times" />
<KeyWord name="to" />
<KeyWord name="token" />
<KeyWord name="trans" />
<KeyWord name="trim" />
<KeyWord name="trim-leading" />
<KeyWord name="trim-trailing" />
<KeyWord name="truncate" />
<KeyWord name="trusts" />
<KeyWord name="try" />
<KeyWord name="uc" />
<KeyWord name="ucfirst" />
<KeyWord name="uint" />
<KeyWord name="uint1" />
<KeyWord name="uint16" />
<KeyWord name="uint2" />
<KeyWord name="uint32" />
<KeyWord name="uint4" />
<KeyWord name="uint64" />
<KeyWord name="uint8" />
<KeyWord name="unimatch" />
<KeyWord name="uniname" />
<KeyWord name="uninames" />
<KeyWord name="uniprop" />
<KeyWord name="uniprops" />
<KeyWord name="unit" />
<KeyWord name="unival" />
<KeyWord name="unless" />
<KeyWord name="unlink" />
<KeyWord name="unpack" />
<KeyWord name="unpolar" />
<KeyWord name="unshift" />
<KeyWord name="untie" />
<KeyWord name="until" />
<KeyWord name="use" />
<KeyWord name="utf16" />
<KeyWord name="utf32" />
<KeyWord name="utf8" />
<KeyWord name="utf8" />
<KeyWord name="utime" />
<KeyWord name="v" />
<KeyWord name="val" />
<KeyWord name="values" />
<KeyWord name="w" />
<KeyWord name="wait" />
<KeyWord name="waitpid" />
<KeyWord name="wantarray" />
<KeyWord name="warn" />
<KeyWord name="when" />
<KeyWord name="where" />
<KeyWord name="while" />
<KeyWord name="with" />
<KeyWord name="without" />
<KeyWord name="wordcase" />
<KeyWord name="words" />
<KeyWord name="words" />
<KeyWord name="write" />
<KeyWord name="ww" />
<KeyWord name="x" />
<KeyWord name="x" />
<KeyWord name="xor" />
<KeyWord name="xx" />
</AutoComplete>
</NotepadPlus>

View File

@ -1,715 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<NotepadPlus>
<AutoComplete>
<Environment ignoreCase="yes" startFunc="(" stopFunc=")" paramSeparator="," terminal=";" />
<KeyWord name="abort" />
<KeyWord name="abs" />
<KeyWord name="addrlong" />
<KeyWord name="airy" />
<KeyWord name="allcomb" />
<KeyWord name="allcombi" />
<KeyWord name="allperm" />
<KeyWord name="anyalnum" />
<KeyWord name="anyalpha" />
<KeyWord name="anycntrl" />
<KeyWord name="anydigit" />
<KeyWord name="anyfirst" />
<KeyWord name="anygraph" />
<KeyWord name="anylower" />
<KeyWord name="anyname" />
<KeyWord name="anyprint" />
<KeyWord name="anypunct" />
<KeyWord name="anyspace" />
<KeyWord name="anyupper" />
<KeyWord name="anyxdigit" />
<KeyWord name="arcos" />
<KeyWord name="arcosh" />
<KeyWord name="array" />
<KeyWord name="arsin" />
<KeyWord name="arsinh" />
<KeyWord name="artanh" />
<KeyWord name="atan" />
<KeyWord name="atan2" />
<KeyWord name="attrc" />
<KeyWord name="attrib" />
<KeyWord name="attrn" />
<KeyWord name="band" />
<KeyWord name="beta" />
<KeyWord name="betainv" />
<KeyWord name="bhamming_32" />
<KeyWord name="bhamming_hex" />
<KeyWord name="blackclprc" />
<KeyWord name="blackptprc" />
<KeyWord name="blkshclprc" />
<KeyWord name="blkshptprc" />
<KeyWord name="blshift" />
<KeyWord name="bnot" />
<KeyWord name="bor" />
<KeyWord name="bquote" />
<KeyWord name="brshift" />
<KeyWord name="bxor" />
<KeyWord name="by" />
<KeyWord name="byte" />
<KeyWord name="call" />
<KeyWord name="cards" />
<KeyWord name="cards4" />
<KeyWord name="cat" />
<KeyWord name="catname" />
<KeyWord name="catq" />
<KeyWord name="cats" />
<KeyWord name="catt" />
<KeyWord name="catx" />
<KeyWord name="cdf" />
<KeyWord name="ceil" />
<KeyWord name="ceilz" />
<KeyWord name="cexist" />
<KeyWord name="char" />
<KeyWord name="checkpoint" />
<KeyWord name="choosec" />
<KeyWord name="choosen" />
<KeyWord name="cinv" />
<KeyWord name="clibexist" />
<KeyWord name="close" />
<KeyWord name="cmiss" />
<KeyWord name="cnonct" />
<KeyWord name="coalesce" />
<KeyWord name="coalescec" />
<KeyWord name="collate" />
<KeyWord name="comb" />
<KeyWord name="comment" />
<KeyWord name="compare" />
<KeyWord name="compbl" />
<KeyWord name="compcost" />
<KeyWord name="compfuzz" />
<KeyWord name="compfuzz_miss" />
<KeyWord name="compged" />
<KeyWord name="complev" />
<KeyWord name="compound" />
<KeyWord name="compress" />
<KeyWord name="compsrv_oval" />
<KeyWord name="compsrv_unquote2" />
<KeyWord name="constant" />
<KeyWord name="continue" />
<KeyWord name="convx" />
<KeyWord name="convxp" />
<KeyWord name="copy" />
<KeyWord name="cos" />
<KeyWord name="cosh" />
<KeyWord name="cot" />
<KeyWord name="count" />
<KeyWord name="countc" />
<KeyWord name="countw" />
<KeyWord name="csc" />
<KeyWord name="css" />
<KeyWord name="cumipmt" />
<KeyWord name="cumprinc" />
<KeyWord name="curobs" />
<KeyWord name="cv" />
<KeyWord name="daccdb" />
<KeyWord name="daccdbsl" />
<KeyWord name="daccsl" />
<KeyWord name="daccsyd" />
<KeyWord name="dacctab" />
<KeyWord name="dairy" />
<KeyWord name="data" />
<KeyWord name="datalines" />
<KeyWord name="datalines4" />
<KeyWord name="datdif" />
<KeyWord name="date" />
<KeyWord name="datejul" />
<KeyWord name="datepart" />
<KeyWord name="datetime" />
<KeyWord name="day" />
<KeyWord name="dclose" />
<KeyWord name="dcreate" />
<KeyWord name="delete" />
<KeyWord name="depdb" />
<KeyWord name="depdbsl" />
<KeyWord name="depsl" />
<KeyWord name="depsyd" />
<KeyWord name="deptab" />
<KeyWord name="dequote" />
<KeyWord name="describe" />
<KeyWord name="deviance" />
<KeyWord name="dhms" />
<KeyWord name="dif" />
<KeyWord name="digamma" />
<KeyWord name="dim" />
<KeyWord name="dinfo" />
<KeyWord name="display" />
<KeyWord name="divide" />
<KeyWord name="dlgcdir" />
<KeyWord name="dm" />
<KeyWord name="dnum" />
<KeyWord name="do" />
<KeyWord name="dopen" />
<KeyWord name="doptname" />
<KeyWord name="doptnum" />
<KeyWord name="dosubl" />
<KeyWord name="dread" />
<KeyWord name="drop" />
<KeyWord name="dropnote" />
<KeyWord name="dsname" />
<KeyWord name="dur" />
<KeyWord name="durp" />
<KeyWord name="effrate" />
<KeyWord name="else" />
<KeyWord name="end" />
<KeyWord name="endsas" />
<KeyWord name="envlen" />
<KeyWord name="erf" />
<KeyWord name="erfc" />
<KeyWord name="error" />
<KeyWord name="euclid" />
<KeyWord name="eval" />
<KeyWord name="execute" />
<KeyWord name="execute_always" />
<KeyWord name="exist" />
<KeyWord name="exp" />
<KeyWord name="expm1" />
<KeyWord name="fact" />
<KeyWord name="fappend" />
<KeyWord name="fclose" />
<KeyWord name="fcol" />
<KeyWord name="fcopy" />
<KeyWord name="fdelete" />
<KeyWord name="fetch" />
<KeyWord name="fetchobs" />
<KeyWord name="fexist" />
<KeyWord name="fget" />
<KeyWord name="file" />
<KeyWord name="fileexist" />
<KeyWord name="filename" />
<KeyWord name="fileref" />
<KeyWord name="finance" />
<KeyWord name="find" />
<KeyWord name="findc" />
<KeyWord name="findw" />
<KeyWord name="finfo" />
<KeyWord name="finv" />
<KeyWord name="fipname" />
<KeyWord name="fipnamel" />
<KeyWord name="fipstate" />
<KeyWord name="first" />
<KeyWord name="floor" />
<KeyWord name="floorz" />
<KeyWord name="fmtinfo" />
<KeyWord name="fnonct" />
<KeyWord name="fnote" />
<KeyWord name="footnote" />
<KeyWord name="fopen" />
<KeyWord name="foptname" />
<KeyWord name="foptnum" />
<KeyWord name="format" />
<KeyWord name="fpoint" />
<KeyWord name="fpos" />
<KeyWord name="fput" />
<KeyWord name="fread" />
<KeyWord name="frewind" />
<KeyWord name="frlen" />
<KeyWord name="fsep" />
<KeyWord name="fuzz" />
<KeyWord name="fwrite" />
<KeyWord name="gaminv" />
<KeyWord name="gamma" />
<KeyWord name="garkhclprc" />
<KeyWord name="garkhptprc" />
<KeyWord name="gcd" />
<KeyWord name="geodist" />
<KeyWord name="geomean" />
<KeyWord name="geomeanz" />
<KeyWord name="getcasurl" />
<KeyWord name="getlcaslib" />
<KeyWord name="getlsessref" />
<KeyWord name="getltag" />
<KeyWord name="getoption" />
<KeyWord name="getsessopt" />
<KeyWord name="getvarc" />
<KeyWord name="getvarn" />
<KeyWord name="git_branch_chkout" />
<KeyWord name="git_branch_delete" />
<KeyWord name="git_branch_merge" />
<KeyWord name="git_branch_new" />
<KeyWord name="git_clone" />
<KeyWord name="git_commit" />
<KeyWord name="git_commit_free" />
<KeyWord name="git_commit_get" />
<KeyWord name="git_commit_log" />
<KeyWord name="git_delete_repo" />
<KeyWord name="git_diff" />
<KeyWord name="git_diff_file_idx" />
<KeyWord name="git_diff_free" />
<KeyWord name="git_diff_get" />
<KeyWord name="git_diff_to_file" />
<KeyWord name="git_fetch" />
<KeyWord name="git_index_add" />
<KeyWord name="git_index_remove" />
<KeyWord name="git_init_repo" />
<KeyWord name="git_pull" />
<KeyWord name="git_push" />
<KeyWord name="git_rebase" />
<KeyWord name="git_rebase_op" />
<KeyWord name="git_ref_free" />
<KeyWord name="git_ref_get" />
<KeyWord name="git_ref_list" />
<KeyWord name="git_reset" />
<KeyWord name="git_reset_file" />
<KeyWord name="git_set_url" />
<KeyWord name="git_stash" />
<KeyWord name="git_stash_apply" />
<KeyWord name="git_stash_drop" />
<KeyWord name="git_stash_pop" />
<KeyWord name="git_status" />
<KeyWord name="git_status_free" />
<KeyWord name="git_status_get" />
<KeyWord name="git_version" />
<KeyWord name="gitfn_clone" />
<KeyWord name="gitfn_co_branch" />
<KeyWord name="gitfn_commit" />
<KeyWord name="gitfn_commit_get" />
<KeyWord name="gitfn_commit_log" />
<KeyWord name="gitfn_commitfree" />
<KeyWord name="gitfn_del_branch" />
<KeyWord name="gitfn_del_repo" />
<KeyWord name="gitfn_diff" />
<KeyWord name="gitfn_diff_free" />
<KeyWord name="gitfn_diff_get" />
<KeyWord name="gitfn_diff_idx_f" />
<KeyWord name="gitfn_idx_add" />
<KeyWord name="gitfn_idx_remove" />
<KeyWord name="gitfn_mrg_branch" />
<KeyWord name="gitfn_new_branch" />
<KeyWord name="gitfn_pull" />
<KeyWord name="gitfn_push" />
<KeyWord name="gitfn_reset" />
<KeyWord name="gitfn_reset_file" />
<KeyWord name="gitfn_status" />
<KeyWord name="gitfn_status_get" />
<KeyWord name="gitfn_statusfree" />
<KeyWord name="gitfn_version" />
<KeyWord name="global" />
<KeyWord name="go" />
<KeyWord name="goto" />
<KeyWord name="graycode" />
<KeyWord name="harmean" />
<KeyWord name="harmeanz" />
<KeyWord name="hash_fast_hex" />
<KeyWord name="hash_xx_hex" />
<KeyWord name="hashing" />
<KeyWord name="hashing_file" />
<KeyWord name="hashing_hmac" />
<KeyWord name="hashing_hmac_file" />
<KeyWord name="hashing_hmac_init" />
<KeyWord name="hashing_init" />
<KeyWord name="hashing_part" />
<KeyWord name="hashing_term" />
<KeyWord name="hbound" />
<KeyWord name="hms" />
<KeyWord name="holiday" />
<KeyWord name="holidayck" />
<KeyWord name="holidaycount" />
<KeyWord name="holidayname" />
<KeyWord name="holidaynx" />
<KeyWord name="holidayny" />
<KeyWord name="holidaytest" />
<KeyWord name="hour" />
<KeyWord name="htmldecode" />
<KeyWord name="htmlencode" />
<KeyWord name="ibessel" />
<KeyWord name="if" />
<KeyWord name="ifc" />
<KeyWord name="ifn" />
<KeyWord name="include" />
<KeyWord name="index" />
<KeyWord name="indexc" />
<KeyWord name="indexw" />
<KeyWord name="infile" />
<KeyWord name="informat" />
<KeyWord name="input" />
<KeyWord name="inputc" />
<KeyWord name="inputn" />
<KeyWord name="int" />
<KeyWord name="intcindex" />
<KeyWord name="intck" />
<KeyWord name="intcycle" />
<KeyWord name="intfit" />
<KeyWord name="intfmt" />
<KeyWord name="intget" />
<KeyWord name="intindex" />
<KeyWord name="intnx" />
<KeyWord name="intrr" />
<KeyWord name="intseas" />
<KeyWord name="intshift" />
<KeyWord name="inttest" />
<KeyWord name="intz" />
<KeyWord name="iorcmsg" />
<KeyWord name="ipmt" />
<KeyWord name="iqr" />
<KeyWord name="irr" />
<KeyWord name="is8601_convert" />
<KeyWord name="jbessel" />
<KeyWord name="jsonpp" />
<KeyWord name="juldate" />
<KeyWord name="juldate7" />
<KeyWord name="kcmpres" />
<KeyWord name="keep" />
<KeyWord name="kindex" />
<KeyWord name="kleft" />
<KeyWord name="klength" />
<KeyWord name="kscan" />
<KeyWord name="ksubstr" />
<KeyWord name="kupcase" />
<KeyWord name="kurtosis" />
<KeyWord name="label" />
<KeyWord name="lag" />
<KeyWord name="largest" />
<KeyWord name="lbound" />
<KeyWord name="lcm" />
<KeyWord name="lcomb" />
<KeyWord name="leave" />
<KeyWord name="left" />
<KeyWord name="length" />
<KeyWord name="lengthc" />
<KeyWord name="lengthm" />
<KeyWord name="lengthn" />
<KeyWord name="let" />
<KeyWord name="lexcomb" />
<KeyWord name="lexcombi" />
<KeyWord name="lexperk" />
<KeyWord name="lexperm" />
<KeyWord name="lfact" />
<KeyWord name="lgamma" />
<KeyWord name="libname" />
<KeyWord name="libref" />
<KeyWord name="link" />
<KeyWord name="list" />
<KeyWord name="local" />
<KeyWord name="lock" />
<KeyWord name="lockdown" />
<KeyWord name="log" />
<KeyWord name="log10" />
<KeyWord name="log1px" />
<KeyWord name="log2" />
<KeyWord name="logbeta" />
<KeyWord name="logcdf" />
<KeyWord name="logistic" />
<KeyWord name="logpdf" />
<KeyWord name="logsdf" />
<KeyWord name="lostcard" />
<KeyWord name="lowcase" />
<KeyWord name="lperm" />
<KeyWord name="lpnorm" />
<KeyWord name="macro" />
<KeyWord name="mad" />
<KeyWord name="margrclprc" />
<KeyWord name="margrptprc" />
<KeyWord name="max" />
<KeyWord name="md5" />
<KeyWord name="mdy" />
<KeyWord name="mean" />
<KeyWord name="median" />
<KeyWord name="mend" />
<KeyWord name="merge" />
<KeyWord name="min" />
<KeyWord name="minute" />
<KeyWord name="missing" />
<KeyWord name="mod" />
<KeyWord name="modexist" />
<KeyWord name="modify" />
<KeyWord name="module" />
<KeyWord name="modulec" />
<KeyWord name="modulen" />
<KeyWord name="modz" />
<KeyWord name="month" />
<KeyWord name="mopen" />
<KeyWord name="mort" />
<KeyWord name="msplint" />
<KeyWord name="mvalid" />
<KeyWord name="n" />
<KeyWord name="netpv" />
<KeyWord name="nliteral" />
<KeyWord name="nmiss" />
<KeyWord name="nomrate" />
<KeyWord name="normal" />
<KeyWord name="notalnum" />
<KeyWord name="notalpha" />
<KeyWord name="notcntrl" />
<KeyWord name="notdigit" />
<KeyWord name="note" />
<KeyWord name="notfirst" />
<KeyWord name="notgraph" />
<KeyWord name="notlower" />
<KeyWord name="notname" />
<KeyWord name="notprint" />
<KeyWord name="notpunct" />
<KeyWord name="notspace" />
<KeyWord name="notupper" />
<KeyWord name="notxdigit" />
<KeyWord name="npv" />
<KeyWord name="nrbquote" />
<KeyWord name="nrquote" />
<KeyWord name="nrstr" />
<KeyWord name="null" />
<KeyWord name="nvalid" />
<KeyWord name="nwkdom" />
<KeyWord name="open" />
<KeyWord name="options" />
<KeyWord name="ordinal" />
<KeyWord name="output" />
<KeyWord name="page" />
<KeyWord name="pathname" />
<KeyWord name="pctl" />
<KeyWord name="pdf" />
<KeyWord name="peekclong" />
<KeyWord name="peeklong" />
<KeyWord name="perm" />
<KeyWord name="pmt" />
<KeyWord name="point" />
<KeyWord name="poisson" />
<KeyWord name="pokelong" />
<KeyWord name="ppmt" />
<KeyWord name="probbeta" />
<KeyWord name="probbnml" />
<KeyWord name="probbnrm" />
<KeyWord name="probchi" />
<KeyWord name="probf" />
<KeyWord name="probgam" />
<KeyWord name="probhypr" />
<KeyWord name="probit" />
<KeyWord name="probmc" />
<KeyWord name="probmed" />
<KeyWord name="probnegb" />
<KeyWord name="probnorm" />
<KeyWord name="probt" />
<KeyWord name="propcase" />
<KeyWord name="prxchange" />
<KeyWord name="prxdebug" />
<KeyWord name="prxfree" />
<KeyWord name="prxmatch" />
<KeyWord name="prxnext" />
<KeyWord name="prxparen" />
<KeyWord name="prxparse" />
<KeyWord name="prxposn" />
<KeyWord name="prxsubstr" />
<KeyWord name="ptrlongadd" />
<KeyWord name="put" />
<KeyWord name="putc" />
<KeyWord name="putlog" />
<KeyWord name="putn" />
<KeyWord name="pvp" />
<KeyWord name="qkleft" />
<KeyWord name="qkscan" />
<KeyWord name="qksubstr" />
<KeyWord name="qkupcase" />
<KeyWord name="qscan" />
<KeyWord name="qsubstr" />
<KeyWord name="qsysfunc" />
<KeyWord name="qtr" />
<KeyWord name="quantile" />
<KeyWord name="quote" />
<KeyWord name="qupcase" />
<KeyWord name="ranbin" />
<KeyWord name="rancau" />
<KeyWord name="rancomb" />
<KeyWord name="rand" />
<KeyWord name="randperm" />
<KeyWord name="ranexp" />
<KeyWord name="rangam" />
<KeyWord name="range" />
<KeyWord name="rank" />
<KeyWord name="rannor" />
<KeyWord name="ranperk" />
<KeyWord name="ranperm" />
<KeyWord name="ranpoi" />
<KeyWord name="rantbl" />
<KeyWord name="rantri" />
<KeyWord name="ranuni" />
<KeyWord name="redirect" />
<KeyWord name="remove" />
<KeyWord name="rename" />
<KeyWord name="repeat" />
<KeyWord name="replace" />
<KeyWord name="resetline" />
<KeyWord name="resolve" />
<KeyWord name="retain" />
<KeyWord name="return" />
<KeyWord name="reverse" />
<KeyWord name="rewind" />
<KeyWord name="right" />
<KeyWord name="rms" />
<KeyWord name="round" />
<KeyWord name="rounde" />
<KeyWord name="roundz" />
<KeyWord name="run" />
<KeyWord name="sasfile" />
<KeyWord name="saving" />
<KeyWord name="savings" />
<KeyWord name="scan" />
<KeyWord name="sdf" />
<KeyWord name="sec" />
<KeyWord name="second" />
<KeyWord name="select" />
<KeyWord name="sessbusy" />
<KeyWord name="sessfound" />
<KeyWord name="set" />
<KeyWord name="sha256" />
<KeyWord name="sha256hex" />
<KeyWord name="sha256hmachex" />
<KeyWord name="sign" />
<KeyWord name="sin" />
<KeyWord name="sinh" />
<KeyWord name="skewness" />
<KeyWord name="skip" />
<KeyWord name="sleep" />
<KeyWord name="smallest" />
<KeyWord name="softmax" />
<KeyWord name="sort" />
<KeyWord name="sortc" />
<KeyWord name="sortn" />
<KeyWord name="soundex" />
<KeyWord name="spedis" />
<KeyWord name="sqrt" />
<KeyWord name="squantile" />
<KeyWord name="std" />
<KeyWord name="stderr" />
<KeyWord name="stdize" />
<KeyWord name="stfips" />
<KeyWord name="stname" />
<KeyWord name="stnamel" />
<KeyWord name="stop" />
<KeyWord name="str" />
<KeyWord name="stream" />
<KeyWord name="streaminit" />
<KeyWord name="streamrewind" />
<KeyWord name="strip" />
<KeyWord name="subpad" />
<KeyWord name="substr" />
<KeyWord name="substrn" />
<KeyWord name="sum" />
<KeyWord name="sumabs" />
<KeyWord name="superq" />
<KeyWord name="symdel" />
<KeyWord name="symexist" />
<KeyWord name="symget" />
<KeyWord name="symglobl" />
<KeyWord name="symlocal" />
<KeyWord name="symput" />
<KeyWord name="symputx" />
<KeyWord name="syscall" />
<KeyWord name="sysecho" />
<KeyWord name="sysevalf" />
<KeyWord name="sysexec" />
<KeyWord name="sysexist" />
<KeyWord name="sysfunc" />
<KeyWord name="sysget" />
<KeyWord name="syslput" />
<KeyWord name="sysmacdelete" />
<KeyWord name="sysmacexec" />
<KeyWord name="sysmacexist" />
<KeyWord name="sysmexecdepth" />
<KeyWord name="sysmexecname" />
<KeyWord name="sysmsg" />
<KeyWord name="sysmstoreclear" />
<KeyWord name="sysparm" />
<KeyWord name="sysprocessid" />
<KeyWord name="sysprocessname" />
<KeyWord name="sysprod" />
<KeyWord name="sysrc" />
<KeyWord name="sysrput" />
<KeyWord name="systask" />
<KeyWord name="system" />
<KeyWord name="tan" />
<KeyWord name="tanh" />
<KeyWord name="then" />
<KeyWord name="time" />
<KeyWord name="timepart" />
<KeyWord name="timevalue" />
<KeyWord name="tinv" />
<KeyWord name="title" />
<KeyWord name="tnonct" />
<KeyWord name="to" />
<KeyWord name="today" />
<KeyWord name="translate" />
<KeyWord name="transtrn" />
<KeyWord name="tranwrd" />
<KeyWord name="trigamma" />
<KeyWord name="trim" />
<KeyWord name="trimn" />
<KeyWord name="trunc" />
<KeyWord name="tslvl" />
<KeyWord name="typeof" />
<KeyWord name="tzoneid" />
<KeyWord name="tzonename" />
<KeyWord name="tzoneoff" />
<KeyWord name="tzones2u" />
<KeyWord name="tzoneu2s" />
<KeyWord name="uniform" />
<KeyWord name="unquote" />
<KeyWord name="until" />
<KeyWord name="upcase" />
<KeyWord name="update" />
<KeyWord name="urldecode" />
<KeyWord name="urlencode" />
<KeyWord name="uss" />
<KeyWord name="uuidgen" />
<KeyWord name="var" />
<KeyWord name="varfmt" />
<KeyWord name="varinfmt" />
<KeyWord name="varlabel" />
<KeyWord name="varlen" />
<KeyWord name="varname" />
<KeyWord name="varnum" />
<KeyWord name="varray" />
<KeyWord name="varrayx" />
<KeyWord name="vartype" />
<KeyWord name="verify" />
<KeyWord name="vformat" />
<KeyWord name="vformatd" />
<KeyWord name="vformatdx" />
<KeyWord name="vformatn" />
<KeyWord name="vformatnx" />
<KeyWord name="vformatw" />
<KeyWord name="vformatwx" />
<KeyWord name="vformatx" />
<KeyWord name="vinarray" />
<KeyWord name="vinarrayx" />
<KeyWord name="vinformat" />
<KeyWord name="vinformatd" />
<KeyWord name="vinformatdx" />
<KeyWord name="vinformatn" />
<KeyWord name="vinformatnx" />
<KeyWord name="vinformatw" />
<KeyWord name="vinformatwx" />
<KeyWord name="vinformatx" />
<KeyWord name="vlabel" />
<KeyWord name="vlabelx" />
<KeyWord name="vlength" />
<KeyWord name="vlengthx" />
<KeyWord name="vname" />
<KeyWord name="vnamex" />
<KeyWord name="vnext" />
<KeyWord name="vtype" />
<KeyWord name="vtypex" />
<KeyWord name="vvalue" />
<KeyWord name="vvaluex" />
<KeyWord name="waitfor" />
<KeyWord name="week" />
<KeyWord name="weekday" />
<KeyWord name="where" />
<KeyWord name="whichc" />
<KeyWord name="whichn" />
<KeyWord name="while" />
<KeyWord name="window" />
<KeyWord name="x" />
<KeyWord name="year" />
<KeyWord name="yieldp" />
<KeyWord name="yrdif" />
<KeyWord name="yyq" />
<KeyWord name="zipcity" />
<KeyWord name="zipcitydistance" />
<KeyWord name="zipfips" />
<KeyWord name="zipname" />
<KeyWord name="zipnamel" />
<KeyWord name="zipstate" />
</AutoComplete>
</NotepadPlus>

View File

@ -9,8 +9,6 @@
<NotepadPlus>
<functionList>
<!--
| Complies to ADA 2022
| http://www.ada-auth.org/standards/overview22.html
| Based on:
| http://stackoverflow.com/questions/32126855/notepad-and-ada
\-->
@ -25,10 +23,10 @@
mainExpr="(?x) # free-spacing (see `RegEx - Pattern Modifiers`)
^\h* # optional leading whitespace at start-of-line
(?:
(?i:function)
(?-i:function)
\s+
(?'VALID_ID' # valid identifier, use as subroutine
\b(?!(?i: # keywords (case-insensitive), not to be used as identifier
\b(?!(?-i: # keywords (case-sensitive), not to be used as identifier
a(?:b(?:ort|s(?:tract)?)|cce(?:pt|ss)|l(?:iased|l)|nd|rray|t)
| b(?:egin|ody)
| c(?:ase|onstant)
@ -41,7 +39,7 @@
| mod
| n(?:ew|ot|ull)
| o(?:[fr]|thers|ut|verriding)
| p(?:a(?:ckage|rallel)|r(?:agma|ivate|o(?:cedure|tected)))
| p(?:ackage|r(?:agma|ivate|o(?:cedure|tected)))
| r(?:a(?:is|ng)e|e(?:cord|m|names|queue|turn|verse))
| s(?:e(?:lect|parate)|ome|ubtype|ynchronized)
| t(?:a(?:gged|sk)|erminate|hen|ype)
@ -49,7 +47,7 @@
| w(?:h(?:en|ile)|ith)
| xor
)\b)
[[:alpha:]](?:[\w.]*[[:alnum:]])? # valid character combination for identifiers
[A-Za-z_]\w* # valid character combination for identifiers
)
(?'PARAMETERS'
\s*
@ -57,34 +55,32 @@
[^()]* # parameters
\) # end-of-parameters indicator
)? # parentheses and parameters optional
\s*
(?:return # function returns a value with...
\s*return # function returns a value with...
\s+(?&amp;VALID_ID) # ...type-name
)?
|
(?i:procedure)
(?-i:procedure)
\s+(?&amp;VALID_ID)
(?&amp;PARAMETERS)?
(?:(?&amp;PARAMETERS))? # Boost::Regex 1.58-1.59 do not correctly handle quantifiers on subroutine calls
)
\s*(?i:\bis\b|;) # end-of-definition indicator
\s*(?-i:\bis\b) # end-of-definition indicator
"
>
<functionName>
<nameExpr expr="(?x) # free-spacing (see `RegEx - Pattern Modifiers`)
(?:function|procedure)\s+
\K # discard text matched so far
[[:alpha:]](?:[\w.]*[[:alnum:]])?
[A-Za-z_]\w*
(?:\s*\([^()]*\))? # parentheses and parameters optional
(?=
\s*
(?:\breturn|\bis|;)
\b(?:return|is)
)
"
/>
<!-- comment out the following node to display the method with its parameters -->
<!-- <nameExpr expr="[[:alpha:]](?:[\w.]*[[:alnum:]])?" /> -->
<!-- <nameExpr expr="[A-Za-z_]\w*" /> -->
</functionName>
</function>
</parser>
</functionList>
</NotepadPlus>
</NotepadPlus>

View File

@ -15,21 +15,6 @@
id ="javascript_function"
commentExpr="(?s:/\*.*?\*/)|(?m-s://.*?$)"
>
<classRange mainExpr="\bclass\s+[A-Za-z_$][\w$]*[^{]*{" openSymbole="\{" closeSymbole="\}">
<className>
<!-- Make consecutive patterns to extract the identifier. -->
<nameExpr expr="class\s+[A-Za-z_$][\w$]*" />
<nameExpr expr="\s+[A-Za-z_$][\w$]*" />
<nameExpr expr="[A-Za-z_$][\w$]*" />
</className>
<function mainExpr="\b(?:(?:static|async)\s+)?\b(?!if|while|for|switch)\b[A-Za-z_$][\w$]*\s*\([^\)]*\)\s*{">
<functionName>
<funcNameExpr expr="[A-Za-z_$][\w$]*\s*\(" />
<funcNameExpr expr="[A-Za-z_$][\w$]*" />
</functionName>
</function>
</classRange>
<function
mainExpr="((^|\s+|[;\}\.])([A-Za-z_$][\w$]*\.)*[A-Za-z_$][\w$]*\s*[=:]|^|[\s;\}]+)\s*function(\s+[A-Za-z_$][\w$]*)?\s*\([^\)\(]*\)[\n\s]*\{"
>
@ -44,4 +29,4 @@
</function>
</parser>
</functionList>
</NotepadPlus>
</NotepadPlus>

View File

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
| To learn how to make your own language parser, please check the following
| link: https://npp-user-manual.org/docs/function-list/
\=========================================================================== -->
<NotepadPlus>
<functionList>
<parser
displayName="LaTeX Syntax"
id ="latex_function"
commentExpr="(?x)
(%.*?$) # Comment
"
>
<function
mainExpr="(?x) # free-spacing (see `RegEx - Pattern Modifiers`)
(?im-s) # ignore case, ^ and $ match start/end of line, dot doesn't match newline
\\(begin|
part\*?|
chapter\*?|
section\*?|
subsection\*?|
subsubsection\*?|
paragraph\*?|
subparagraph\*?)
{.*}"
>
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -16,7 +16,7 @@
Here are the default value they are using:
<association id= "php.xml" langID= "1" />
<association id= "c.xml" langID= "2" />
<association id= "c.xml" langID= "2" />
<association id= "cpp.xml" langID= "3" /> (C++)
<association id= "cs.xml" langID= "4" /> (C#)
<association id= "objc.xml" langID= "5" /> (Obective-C)
@ -26,7 +26,7 @@
<association id= "xml.xml" langID= "9" />
<association id= "makefile.xml" langID= "10"/>
<association id= "pascal.xml" langID= "11"/>
<association id= "batch.xml" langID= "12"/>
<association id= "batch.xml" langID= "12"/>
<association id= "ini.xml" langID= "13"/>
<association id= "asp.xml" langID= "16"/>
<association id= "sql.xml" langID= "17"/>
@ -45,10 +45,10 @@
<association id= "scheme.xml" langID= "31"/>
<association id= "asm.xml" langID= "32"/> (Assembly)
<association id= "diff.xml" langID= "33"/>
<association id= "props.xml" langID= "34"/>
<association id= "props.xml" langID= "34"/>
<association id= "postscript.xml" langID= "35"/>
<association id= "ruby.xml" langID= "36"/>
<association id= "smalltalk.xml" langID= "37"/>
<association id= "smalltalk.xml" langID= "37"/>
<association id= "vhdl.xml" langID= "38"/>
<association id= "kix.xml" langID= "39"/> (KiXtart)
<association id= "autoit.xml" langID= "40"/>
@ -58,61 +58,57 @@
<association id= "matlab.xml" langID= "44"/>
<association id= "haskell.xml" langID= "45"/>
<association id= "inno.xml" langID= "46"/> (Inno Setup)
<association id= "cmake.xml" langID= "48"/>
<association id= "cmake.xml" langID= "48"/>
<association id= "yaml.xml" langID= "49"/>
<association id= "cobol.xml" langID= "50"/>
<association id= "cobol.xml" langID= "50"/>
<association id= "gui4cli.xml" langID= "51"/>
<association id= "d.xml" langID= "52"/>
<association id= "d.xml" langID= "52"/>
<association id= "powershell.xml" langID= "53"/>
<association id= "r.xml" langID= "54"/>
<association id= "r.xml" langID= "54"/>
<association id= "jsp.xml" langID= "55"/>
<association id= "coffeescript.xml" langID= "56"/>
<association id= "json.xml" langID= "57"/>
<association id= "javascript.js.xml" langID= "58"/>
<association id= "fortran77.xml" langID= "59"/>
<association id= "fortran77.xml" langID= "59"/>
<association id= "baanc.xml" langID= "60"/> (BaanC)
<association id= "srec.xml" langID= "61"/> (Motorola S-Record binary data)
<association id= "ihex.xml" langID= "62"/> (Intel HEX binary data)
<association id= "tehex.xml" langID= "63"/> (Tektronix extended HEX binary data)
<association id= "swift.xml" langID= "64"/>
<association id= "swift.xml" langID= "64"/>
<association id= "asn1.xml" langID= "65"/> (Abstract Syntax Notation One)
<association id= "avs.xml" langID= "66"/> (AviSynth)
<association id= "blitzbasic.xml" langID= "67"/> (BlitzBasic)
<association id= "purebasic.xml" langID= "68"/>
<association id= "freebasic.xml" langID= "69"/>
<association id= "purebasic.xml" langID= "68"/>
<association id= "freebasic.xml" langID= "69"/>
<association id= "csound.xml" langID= "70"/>
<association id= "erlang.xml" langID= "71"/>
<association id= "escript.xml" langID= "72"/>
<association id= "forth.xml" langID= "73"/>
<association id= "latex.xml" langID= "74"/>
<association id= "forth.xml" langID= "73"/>
<association id= "latex.xml" langID= "74"/>
<association id= "mmixal.xml" langID= "75"/>
<association id= "nimrod.xml" langID= "76"/>
<association id= "nncrontab.xml" langID= "77"/> (extended crontab)
<association id= "oscript.xml" langID= "78"/>
<association id= "rebol.xml" langID= "79"/>
<association id= "rebol.xml" langID= "79"/>
<association id= "registry.xml" langID= "80"/>
<association id= "rust.xml" langID= "81"/>
<association id= "spice.xml" langID= "82"/>
<association id= "spice.xml" langID= "82"/>
<association id= "txt2tags.xml" langID= "83"/>
<association id= "visualprolog.xml" langID= "84"/>
<association id= "typescript.xml" langID= "85"/>
<association id= "mssql.xml" langID= "87"/>
<association id= "gdscript.xml" langID= "88"/>
<association id= "hollywood.xml" langID= "89"/>
<association id= "go.xml" langID= "90"/>
<association id= "raku.xml" langID= "91"/>
<association id= "toml.xml" langID= "92"/>
<association id= "sas.xml" langID= "93"/>
If you create your own parse rule of supported languages (above) for your specific need,
you can copy it without modifying the original one, and make it point to your rule.
For example, you have created your php parse rule, named "myphp2.xml". You add the rule file
into the functionlist directory and add the following line in this file:
<association id= "myphp2.xml" langID= "1" />
and that's it.
-->
<!--
As there is currently only one langID for COBOL:
@ -122,12 +118,12 @@
<!--
<association id= "cobol-free.xml" langID= "50"/>
-->
<!--
For User Defined Languages (UDL's) use:
<association id="my_parser.xml" userDefinedLangName="My UDL Name" />
If "My UDL Name" doesn't exist yet, you can create it via UDL dialog.
-->
<!-- ==================== User Defined Languages ============================ -->

View File

@ -22,7 +22,7 @@
<nameExpr expr="\w+(?=\s*[\(|:])" />
</className>
<function
mainExpr="\s(async )?def\x20\K.+?(?=(:\h*$|,\h*$|:\s*#))"
mainExpr="\s(async )?def\x20\K.+?(?=(:$|,$|:\s*#))"
>
<functionName>
<funcNameExpr expr=".*" />
@ -30,7 +30,7 @@
</function>
</classRange>
<function
mainExpr="^(async )?def\x20\K.+?(?=(:\h*$|,\h*$|:\s*#))"
mainExpr="^(async )?def\x20\K.+?(?=(:$|,$|:\s*#))"
>
<functionName>
<nameExpr expr=".*" />

View File

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
|
| To learn how to make your own language parser, please check the following
| link:
| https://npp-user-manual.org/docs/function-list/
|
\=========================================================================== -->
<NotepadPlus>
<functionList>
<!-- ======================================================== [ Raku ] -->
<parser
displayName="Raku"
id ="raku_function"
commentExpr="(?x) # Utilize inline comments (see `RegEx - Pattern Modifiers`)
(?m-s:\x23.*$) # Single Line Comment
"
>
<function
mainExpr="(?x) # Utilize inline comments (see `RegEx - Pattern Modifiers`)
sub
\s+
[A-Za-z_]\w*
(\s*\([^()]*\))? # prototype or signature
(\s*\:\s*[^{]+)? # attributes
\s*\{ # start of class body
"
>
<functionName>
<nameExpr expr="(?:sub\s+)?\K[A-Za-z_]\w*" />
</functionName>
<className>
<nameExpr expr="[A-Za-z_]\w*(?=\s*:{2})" />
</className>
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
|
| To learn how to make your own language parser, please check the following
| link:
| https://npp-user-manual.org/docs/function-list/
|
\=========================================================================== -->
<NotepadPlus>
<functionList>
<!-- =========================================================== [ SAS ] -->
<parser
displayName="SAS"
id ="sas_function"
commentExpr="(?x) # Utilize inline comments (see `RegEx - Pattern Modifiers`)
(?s:\x2F\x2A.*?\x2A\x2F) # Multi Line Comment
| (?m-s:\x2F{2}.*$) # Single Line Comment
"
>
<function
mainExpr="(?x-s) # free-spacing (see `RegEx - Pattern Modifiers`)
^\h*\K # optional leading whitespace at start-of-line
(?: # pick either %macro or function defintions
%macro
|
function
)
\h+ # need a space between
#\K # uncomment this line to strip out the leading %macro or function prefix
\w+ # the macro or function name
#.*$ # uncomment this line to include optional parameters
"
>
<!-- ORIGINALLY: comment out the following node to display the method with its parameters -->
<!-- unfortunately, I could not get it `function` lines working if I uncomment this, even if the expr is identical to the mainExpr above -->
<!--functionName>
<nameExpr expr="(?x-s) # free-spacing (see `RegEx - Pattern Modifiers`)
^\h*\K # optional leading whitespace at start-of-line
(?: # pick either %macro or function defintions
%macro
|
function
)
\h+ # need a space between
\w+ # the macro or function name
" />
</functionName-->
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
| To learn how to make your own language parser, please check the following
| link: https://npp-user-manual.org/docs/function-list/
\=========================================================================== -->
<NotepadPlus>
<functionList>
<parser
displayName="TeX Syntax"
id ="tex_function"
commentExpr="(?x)
(%.*?$) # Comment
"
>
<function
mainExpr="(?x) # free-spacing (see `RegEx - Pattern Modifiers`)
(?im-s) # ignore case, ^ and $ match start/end of line, dot doesn't match newline
\\(begin|
part\*?|
chapter\*?|
section\*?|
subsection\*?|
subsubsection\*?|
paragraph\*?|
subparagraph\*?)
{.*}"
>
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
|
| To learn how to make your own language parser, please check the following
| link:
| https://npp-user-manual.org/docs/function-list/
|
\=========================================================================== -->
<NotepadPlus>
<functionList>
<!-- ========================================= [ Initialisation File ] -->
<!-- File format used for TOML -->
<parser
displayName="TOML Table"
id ="toml_table"
commentExpr="(?x)
(?m-s:[#].*$) # Single Line Comment
"
>
<function
mainExpr="^\h*[\[[\w\.&quot;\-&apos;]+\]"
>
<functionName>
<nameExpr expr="[\w\.&quot;\-&apos;]+" />
</functionName>
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -1,50 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
|
| To learn how to make your own language parser, please check the following
| link:
| https://npp-user-manual.org/docs/function-list/
|
\=========================================================================== -->
<NotepadPlus>
<functionList>
<!-- ========================================================== [ VBS ] -->
<!--
| Based on:
| http://sourceforge.net/p/notepad-plus/patches/613/
\-->
<parser
displayName="Visual Basic (.NET|Script|for Applications)"
id ="vb_function"
commentExpr="(?m:((?&lt;=&apos;).*?$)|((?i:REM)([\t ].*?)?$))"
>
<classRange
mainExpr="(?s:(?&lt;SCOPE&gt;(?i:CLASS|TYPE)).*?(?i:END[\t ]\k&lt;SCOPE&gt;))"
displayMode="node" >
<className>
<nameExpr expr="(?i:CLASS|TYPE)[\t ]+(?:[A-Za-z_][\w]*\b)(?:.*?[\r\n])" />
<nameExpr expr="[\t ]+(?:[A-Za-z_][\w]*\b)" />
<nameExpr expr="[A-Za-z_][\w]*" />
</className>
<function
mainExpr="(?m:^[\t ]*(?i:(?:(?:PUBLIC|PRIVATE|PROTECTED|FRIEND|PROTECTED FRIEND)[\t ]+)?(?:(?:STATIC|SHARED|SHADOWS|OVERRIDABLE|OVERRIDES|READONLY|WRITEONLY)[\t ]+)?(?:SUB|FUNCTION|PROPERTY)).*?(?:\(|$))" >
<functionName>
<funcNameExpr expr="(?i:(?:(?:PUBLIC|PRIVATE|PROTECTED|FRIEND|PROTECTED FRIEND)[\t ]+)?(?:STATIC[\t ]+)?(?:SUB|FUNCTION|PROPERTY)).*?(?:\(|$)"/>
<funcNameExpr expr="(?i:(?:SUB|FUNCTION|PROPERTY)).*?(?:\(|$)"/>
<funcNameExpr expr="(?i:(?:GET|LET|SET)[\t ]+)?[A-Za-z_][\w]*(?=[\t ]*\()"/>
</functionName>
</function>
</classRange>
<function
mainExpr="^[\t ]*(?i:(?:(?:PUBLIC|PRIVATE|PROTECTED|FRIEND|PROTECTED FRIEND)[\t ]+)?(?:(?:STATIC|(?:DECLARE(?:[\t ]+(ANSI|UNICODE|AUTO))?))[\t ]+)?(?:SUB|FUNCTION|PROPERTY)).*?(?:\(|$)"
displayMode="$functionName">
<functionName>
<nameExpr expr="(?i:(?:(?:PUBLIC|PRIVATE|PROTECTED|FRIEND|PROTECTED FRIEND)[\t ]+)?(?:(?:STATIC|(?:DECLARE(?:[\t ]+(?:ANSI|UNICODE|AUTO))?))[\t ]+)?(?:SUB|FUNCTION|PROPERTY)).*?(?:\(|$)"/>
<nameExpr expr="(?i:(?:SUB|FUNCTION|PROPERTY)).*?(?:\(|$)"/>
<nameExpr expr="(?i:(?:GET|LET|SET)[\t ]+)?[A-Za-z_][\w]*(?i:[\t ]+(LIB|ALIAS)[\t ]+[\w&quot;\.]+)*(?=[\t ]*\()"/>
</functionName>
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -206,6 +206,7 @@ Updated to v8.2.1:
<Item id="42051" name="ASCII асимволқәа рТаблица"/>
<Item id="42052" name="Абуфер Аҭоурых"/>
<Item id="42028" name="Иқәыргылатәуп Аԥхьара Мацара"/>
<Item id="42033" name="Иқәгатәуп Аԥхьара Мацара азгәаҭага"/>
<Item id="43001" name="Иԥшаатәуп..."/>
<Item id="43013" name="Иԥшаатәуп афаилқәа рҟны..."/>
@ -468,6 +469,7 @@ Updated to v8.2.1:
<Item id="1658" name="Акаталоггәылақәа зегьы рҟны"/>
<Item id="1659" name="Иҵәаху акаталогқәа рҟны"/>
<Item id="1660" name="Иалаԥсахтәуп Афаилқәа рҟны"/>
<Item id="1661" name="Ари адокумент акаталог"/>
<Item id="1662" name="Апроект апанель 1"/>
<Item id="1663" name="Апроект апанель 2"/>
<Item id="1664" name="Апроект апанель 3"/>
@ -862,6 +864,7 @@ Updated to v8.2.1:
<Preference title="Архиарақәа">
<Item id="6001" name="Иарктәуп"/>
<Global title="Ихадақәоу">
<Item id="6101" name="Амаругақәа Рпанель"/>
<Item id="6102" name="Иҵәахтәуп"/>
<Item id="6103" name="Fluent UI: ахәыҷқәа"/>
@ -870,10 +873,12 @@ Updated to v8.2.1:
<Item id="6130" name="Аҭарҭәара Fluent UI: адуқәа"/>
<Item id="6105" name="Истандарту адыргаҷқәа : ахәыҷқәа"/>
<Item id="6106" name="Агәылаҵақәа Рпанель"/>
<Item id="6107" name="Ирмаҷу ашәагаа"/>
<Item id="6108" name="Ақәырҳәазара мап ацәктәуп"/>
<Item id="6109" name="Иактивым агәылаҵақәа рцәыштәуп"/>
<Item id="6110" name="Иактиву аԥенџьыр аԥштәы змоу аҵәаҳәа ала алкаара"/>
<Item id="6111" name="Иаарԥшлатәуп Аҭагылазаашьа Ацәаҳәа"/>
<Item id="6112" name="Аркра акнопка агәылаҵа аҟны"/>
<Item id="6113" name="Иарклатәуп ҩынтә ақәыӷәӷәарала"/>
<Item id="6118" name="Иҵәахтәуп"/>
@ -894,6 +899,7 @@ Updated to v8.2.1:
<Item id="6219" name="Алацәҟәра алассы-лассра :"/>
<Item id="6221" name="Ч"/>
<Item id="6222" name="Р"/>
<Item id="6225" name="Амульти-Редакциазура (Ctrl + Ақәыӷә. / Алкаара)"/>
<Item id="6227" name="Ацәаҳәа Аиагара Астиль"/>
<Item id="6228" name="Истандарту"/>
<Item id="6229" name="Еиҟаратәу"/>
@ -1054,6 +1060,7 @@ Updated to v8.2.1:
<Element name="Иаҿакуп иаарту афаилқәа зегьы рзы"/>
<Element name="Иаҿыхуп"/>
</ComboBox>
<Item id="6308" name="Еикәарҳәтәуп атреи ахь"/>
<Item id="6312" name="Афаилқәа рҟны Аԥсахрақәа Рыцклаԥшра"/>
<Item id="6313" name="Ирҿыцлатәуп зҵаарада"/>
<Item id="6325" name="Арҿыцра ашьҭахь аҵыхәтәантәи ацәаҳәахьы"/>
@ -1068,6 +1075,7 @@ Updated to v8.2.1:
<Item id="6344" name="Адокумент Аԥхьахәаԥшра"/>
<Item id="6345" name="Аминиатиура Агәылаҵа аҵаҟа"/>
<Item id="6346" name="Иаарԥшлатәуп Адокумент Ахсаала аҟны"/>
<Item id="6349" name="Ихархә. DirectWrite (ари иалнаршоит испециалу асимволқәа еиӷьны раарԥшра, иаҭахуп Notepad++ аиҭадәықәҵара)"/>
<Item id="6360" name="Иаҿыхтәуп абжьқәа зегьы"/>
<Item id="6361" name="Иаҿактәуп Еиқәырхатәуп Зегьы ашьақәырӷәӷәара"/>
</MISC>
@ -1126,6 +1134,7 @@ Updated to v8.2.1:
<Item id="6822" name="Арезервтә копиа амҩа:"/>
</Backup>
<AutoCompletion title="Автохыркәшара">
<Item id="6115" name="Авто-хьаҵ Ацәаҳәа Ҿыц аҟны"/>
<Item id="6807" name="Автохыркәшара"/>
<Item id="6808" name="Иаҿактәуп аҭагаларақәа рыцԥхьаӡа рзы автоматикала ахарҭәара"/>
<Item id="6809" name="Афункциақәа рхыркәшара"/>
@ -1430,8 +1439,10 @@ Updated to v8.2.1:
<finder-uncollapse-all value="Еиҵыхтәуп зегьы"/>
<finder-copy value="Икопиатәуп иалкаау ацәаҳәа(қәа)"/>
<finder-copy-verbatim value="Икопиатәуп"/>
<finder-copy-paths value="Икопиатәуп афаил амҩа(қәа)"/>
<finder-select-all value="Иалкаатәуп зегьы"/>
<finder-clear-all value="Ирыцқьатәуп иԥшаау зегьы"/>
<finder-open-all value="Иаарттәуп афаилқәа зегьы"/>
<finder-wrap-long-lines value="Иауу ацәаҳәақәа рҟны ажәақәа риагара"/>
<common-ok value="ОК"/>
<common-cancel value="Аҟәыхра"/>
@ -1475,6 +1486,7 @@ Updated to v8.2.1:
<find-result-title-info-selections value="($INT_REPLACE1$ аиқәшәарақәа $INT_REPLACE2$ аҟны иалкаақәоу $INT_REPLACE3$ рҟынтәи)"/>
<find-result-title-info-extra value=" - Ацәаҳәақәа рФильтр Арежим: иаанарԥшуеит афильтрра алҵшәақәа мацара"/>
<find-result-hits value="(Аиқәшәарақәа $INT_REPLACE$)"/>
<find-result-hits-and-line-hits value="($INT_REPLACE1$ аиқәшәарақәа ацәаҳәақәа $INT_REPLACE2$ рҟны)"/>
<find-regex-zero-length-match value="ноль аура змоу аиқәшәара"/>
<session-save-folder-as-workspace value="Еиқәырхатәуп Акаталог Апроект ҳасабла"/>
<tab-untitled-string value="аҿыц "/>

View File

@ -86,6 +86,7 @@
<Item id="42030" name="Huidige leêr naam na klipbord"/>
<Item id="42031" name="Huidige dir lokasie na klipbord"/>
<Item id="42032" name="Loop 'n makro baie kere..."/>
<Item id="42033" name="Verwyder lees-alleenlik vlag"/>
<Item id="42035" name="Blok Kommentaar"/>
<Item id="42036" name="Ontblok Kommentaar"/>
@ -350,16 +351,19 @@
<Preference title="Voorkeure">
<Item id="6001" name="Maak Toe"/>
<Global title="Globaal">
<Item id="6101" name="Gereedskap staaf"/>
<Item id="6102" name="Steek weg"/>
<Item id="6103" name="Klein ikone"/>
<Item id="6104" name="Groot ikone"/>
<Item id="6105" name="Klein standaard ikone"/>
<Item id="6106" name="Tab staaf"/>
<Item id="6107" name="Verminder"/>
<Item id="6108" name="Sluit (No Drag N Drop)"/>
<Item id="6109" name="Teken die onaktiewe tabs"/>
<Item id="6110" name="Teken die oranje boonste staaf"/>
<Item id="6111" name="Wys Status Staaf"/>
<Item id="6112" name="Aktiveer maak toe knoppie op elke tab"/>
<Item id="6113" name="Dubbel kliek om dokument toe te maak"/>
<Item id="6118" name="Steek weg"/>
@ -454,6 +458,8 @@
<Item id="6304" name="Geskiedenis Leêr Verstellings"/>
<Item id="6305" name="Moet nie kyk op begin nie"/>
<Item id="6306" name="Maksimum geskiedenis leêr :"/>
<Item id="6307" name="Aktiveer"/>
<Item id="6308" name="Verklein na sys tray"/>
<Item id="6309" name="Onthou huidige sessie vir volgende begin"/>
<Item id="6312" name="Leêr Status Auto-Optelling"/>
<Item id="6313" name="Dateer saggies op"/>
@ -472,6 +478,7 @@
<Item id="6331" name="Wys slegs leêr naam in titelstaaf"/>
<Item id="6114" name="Aktiveer"/>
<Item id="6115" name="Auto-indent"/>
<Item id="6117" name="Aktiveer MRU optrede"/>
</MISC>

View File

@ -136,6 +136,7 @@
<Item id="42030" name="Emri i filit aktual për Clipboard"/>
<Item id="42031" name="Dosja aktuale. Rruga për Clipboard"/>
<Item id="42032" name="Ekzekuto Macro shumë herë..."/>
<Item id="42033" name="Pastro flamurin vetëm-lexo"/>
<Item id="42035" name="Koment i linjës së vetme"/>
<Item id="42036" name="Jo-koment i linjës së vetme"/>
<Item id="42055" name="Largo linjat e zbrazëta"/>
@ -357,6 +358,7 @@
<Item id="1625" name="Normal"/>
<Item id="1626" name="Zgjeruar (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Zëvendëso në file"/>
<Item id="1661" name="Ndjek dok. aktual"/>
<Item id="1641" name="Gjej të gjitha në dokumentin aktual"/>
<Item id="1686" name="Transparencë"/>
<Item id="1703" name="&amp;. përkime linjë re"/>
@ -594,16 +596,19 @@
<Preference title="Preferencat">
<Item id="6001" name="Mbyll"/>
<Global title="E përgjithshme">
<Item id="6101" name="Linja e mjeteve"/>
<Item id="6102" name="Fsheh"/>
<Item id="6103" name="Ikona të vogla"/>
<Item id="6104" name="Ikona të mëdha"/>
<Item id="6105" name="Ikona standarde"/>
<Item id="6106" name="Linja Tab"/>
<Item id="6107" name="Zvogëlo"/>
<Item id="6108" name="Kyë (jo tërhiq dhe lësho)"/>
<Item id="6109" name="Errëso tabelorët inaktivë"/>
<Item id="6110" name="Vizato një linjë me ngjyra në tabelorin aktiv"/>
<Item id="6111" name="Shfaq linjën e statusit"/>
<Item id="6112" name="Shfaq butonin mbyll në secilin tab"/>
<Item id="6113" name="Kliko dyfish për të mbyllur dokumentin"/>
<Item id="6118" name="Fsheh"/>
@ -624,6 +629,7 @@
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6224" name="Rregullimet Multi-korrigjim"/>
<Item id="6225" name="Aftëso (Ctrl+klikim miu/zgjedhje)"/>
<Item id="6201" name="Stili i margjinës së dosjes"/>
<Item id="6202" name="Thjeshtë"/>
<Item id="6203" name="Shigjetë"/>
@ -748,6 +754,7 @@
</Backup>
<AutoCompletion title="Auto-plotësimi">
<Item id="6115" name="Auto-kryeradhë"/>
<Item id="6807" name="Auto-plotësimi"/>
<Item id="6808" name="Aftëso auto-plotësimin në secilën hyrje"/>
<Item id="6809" name="Plotësimi i funksionit"/>
@ -791,6 +798,8 @@
</Cloud>
<MISC title="MISC.">
<Item id="6307" name="Aftëso"/>
<Item id="6308" name="Minimizo në tabaken e sistemit"/>
<Item id="6312" name="Statusi i filit Auto-Detekto"/>
<Item id="6313" name="Aktualizo në qetësi"/>
<Item id="6318" name="Rregullimet e lidhjes së klikueshme"/>

View File

@ -177,6 +177,7 @@
<Item id="42030" name="اسم الملف الحالي إلى الذاكرة"/>
<Item id="42031" name="مسار المجلد الحالي إلى الذاكرة"/>
<Item id="42032" name="تشغيل الماكرو أكثر من مرة..."/>
<Item id="42033" name="مسح علامة للقراءة فقط"/>
<Item id="42035" name="تعليق سطر واحد"/>
<Item id="42036" name="إلغاء تعليق سطر واحد"/>
<Item id="42055" name="إزالة الأسطر الفارغة"/>
@ -393,6 +394,7 @@
<Item id="1625" name="&amp;عادي"/>
<Item id="1626" name="مو&amp;سع (\n أو \r أو \t أو \0 أو \x...)"/>
<Item id="1660" name="ا&amp;ستبدال في الملفات"/>
<Item id="1661" name="اتبع المستند الحالي"/>
<Item id="1641" name="بحث عن الكل في المستند الحالي"/>
<Item id="1686" name="الشفاف&amp;ية"/>
<Item id="1703" name="&amp;. تطابق سطر جديد"/>
@ -696,16 +698,19 @@
<Preference title="تفضيلات">
<Item id="6001" name="إغلاق"/>
<Global title="عام">
<Item id="6101" name="شريط الأدوات"/>
<Item id="6102" name="إخفاء"/>
<Item id="6103" name="أيقونات صغيرة"/>
<Item id="6104" name="أيقونات كبيرة"/>
<Item id="6105" name="أيقونات قياسية"/>
<Item id="6106" name="شريط علامات التبويب"/>
<Item id="6107" name="تقليل"/>
<Item id="6108" name="قفل (لا يمكن السحب والإفلات)"/>
<Item id="6109" name="تظليم علامات التبويب غير النشطة"/>
<Item id="6110" name="رسم شريط ملون على علامة التبويب النشطة"/>
<Item id="6111" name="إظهار شريط الحالة"/>
<Item id="6112" name="إظهار زر الإغلاق على كل علامة تبويب"/>
<Item id="6113" name="نقرة مزدوجة لإغلاق المستند"/>
<Item id="6118" name="إخفاء"/>
@ -727,6 +732,7 @@
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6224" name="إعدادات التعديل المتعدد"/>
<Item id="6225" name="تفعيل (Ctrl + الفأرة نقر / تحديد)"/>
<Item id="6201" name="نمط هامش المجلد"/>
<Item id="6202" name="بسيط"/>
<Item id="6203" name="سهم"/>
@ -864,6 +870,7 @@
</Backup>
<AutoCompletion title="الإكمال التلقائي">
<Item id="6115" name="إزاحة تلقائية"/>
<Item id="6807" name="الإكمال التلقائي"/>
<Item id="6808" name="تفعيل الإكمال التلقائي لكل إدخال"/>
<Item id="6809" name="إكمال الإقتران"/>
@ -924,6 +931,7 @@
<Element name="تفعيل لكل الملفات المفتوحة"/>
<Element name="تعطيل"/>
</ComboBox>
<Item id="6308" name="تصغير إلى جوار الساعة"/>
<Item id="6312" name="التحقق التلقائي من حالة الملف"/>
<Item id="6313" name="التحديث بشكل صامت"/>
<Item id="6318" name="إعدادات الرابط القابل للنقر"/>
@ -1188,6 +1196,7 @@
<finder-copy value="نسخ"/>
<finder-select-all value="تحديد الكل"/>
<finder-clear-all value="مسح الكل"/>
<finder-open-all value="فتح الكل"/>
<common-ok value="موافق"/>
<common-cancel value="إلغاء"/>
<common-name value="الاسم: "/>

View File

@ -134,6 +134,7 @@ By Chesús D. Trigo [xuxinho7@gmail.com] & softaragones [softaragones@soft
<Item id="42030" name="Copiar o nombre d'o fichero actual t'o portafuellas"/>
<Item id="42031" name="Copiar o camín d'o directorio actual t'o portafuellas"/>
<Item id="42032" name="&amp;Executar una macro quantas vegadas..."/>
<Item id="42033" name="&amp;Suprimir o sinyal de Nomás-Lectura"/>
<Item id="42035" name="&amp;Adhibir-ie o simbolo de comentarios"/>
<Item id="42036" name="&amp;Sacar-ne o simbolo de comentarios"/>
<Item id="42055" name="&amp;Borrar as linias vuedas"/>
@ -320,6 +321,7 @@ By Chesús D. Trigo [xuxinho7@gmail.com] & softaragones [softaragones@soft
<Item id="1625" name="Normal"/>
<Item id="1626" name="Estendillau (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Substituir-lo en os fichers"/>
<Item id="1661" name="Seguir documento actual"/>
<Item id="1641" name="Mirar-lo tot en o documento actual"/>
<Item id="1686" name="Transparencia"/>
<Item id="1703" name="&amp;. mirar nueva linia"/>
@ -554,16 +556,19 @@ By Chesús D. Trigo [xuxinho7@gmail.com] & softaragones [softaragones@soft
<Preference title="Preferencias">
<Item id="6001" name="Zarrar"/>
<Global title="Cheneral">
<Item id="6101" name="Barra de ferramientas"/>
<Item id="6102" name="Amagar-la"/>
<Item id="6103" name="Iconos chicotz"/>
<Item id="6104" name="Iconos grans"/>
<Item id="6105" name="Iconos estandar"/>
<Item id="6106" name="Barra de pestanyas"/>
<Item id="6107" name="Reducir"/>
<Item id="6108" name="Blocar (no se podrá arrocegar)"/>
<Item id="6109" name="Enfoscar as pestanyas inactivas"/>
<Item id="6110" name="Meter una marca en a pestanya activa"/>
<Item id="6111" name="Amostrar a barra d'estau"/>
<Item id="6112" name="Botón de zarrar en cada pestanya"/>
<Item id="6113" name="Doble clic ta zarrar o documento"/>
<Item id="6118" name="Amagar-la"/>
@ -584,6 +589,7 @@ By Chesús D. Trigo [xuxinho7@gmail.com] & softaragones [softaragones@soft
<Item id="6221" name="R"/><!--rapedo-->
<Item id="6222" name="P"/><!--pando-->
<Item id="6224" name="Multi-edición"/>
<Item id="6225" name="Habilitar (Ctrl+zorz)"/>
<Item id="6201" name="Estilo de agrupación"/>
<Item id="6202" name="Simple"/>
<Item id="6203" name="Trianglo"/>
@ -691,6 +697,8 @@ By Chesús D. Trigo [xuxinho7@gmail.com] & softaragones [softaragones@soft
</RecentFilesHistory>
<MISC title="Miscelania">
<Item id="6307" name="Habilitar"/>
<Item id="6308" name="Minimizar ta la servilla d'o sistema"/>
<Item id="6309" name="Remerar a sesión actual ta la venient execución"/>
<Item id="6312" name="Autodetección de l'estau d'o fichero"/>
<Item id="6313" name="Esviellar en silencio"/>
@ -723,6 +731,7 @@ By Chesús D. Trigo [xuxinho7@gmail.com] & softaragones [softaragones@soft
</Backup>
<AutoCompletion title="Autocompleción">
<Item id="6115" name="Sangrar automaticament"/>
<Item id="6807" name="Autocompleción"/>
<Item id="6808" name="Permitir l'autocompleción en cada dentrada"/>
<Item id="6809" name="Autocompletar funcions"/>

View File

@ -255,16 +255,19 @@
<Preference title="Preferències">
<Item id="6001" name="Barrar"/>
<Global title="Globau">
<Item id="6101" name="Barra d'utís"/>
<Item id="6102" name="Amagar"/>
<Item id="6103" name="Icònes petites"/>
<Item id="6104" name="Icònes Granes"/>
<Item id="6105" name="Icònes petites estandard"/>
<Item id="6106" name="Barra de pestanhes"/>
<Item id="6107" name="Reduir"/>
<Item id="6108" name="Bloquejar (Non Arrastar)"/>
<Item id="6109" name="Diboishar es pestanhes inactiues"/>
<Item id="6110" name="Diboishar era barra iranja de naut"/>
<Item id="6111" name="Ensenhar era Barra d'Estat"/>
</Global>
<Scintillas title="Editar Components">
<Item id="6201" name="Estil deth marge des directòris"/>
@ -338,6 +341,8 @@
<Item id="6304" name="Configuracion der Istòria de archius"/>
<Item id="6305" name="Non comprovar quan se daurís"/>
<Item id="6306" name="Nombre màxim deth archiu de istòria :"/>
<Item id="6307" name="Activar"/>
<Item id="6308" name="Minimitzar ena barra"/>
<Item id="6309" name="Rebrembar es sessions actuaus entà auta session"/>
<Item id="6312" name="Auto-detecion de Estat des Fichers"/>
<Item id="6313" name="Actualitzar sileciosament"/>

View File

@ -111,6 +111,7 @@
<Item id="42030" name="Faylın adını kopiya et"/>
<Item id="42031" name="Qovluğun yolunu kopiya et"/>
<Item id="42032" name="Makronu bir neçə dəfə işlət..."/>
<Item id="42033" name="&quot;Ancaq oxumaq&quot; tağını götür"/>
<Item id="42035" name="Bloku Şərhləndir"/>
<Item id="42036" name="Bloku Şərhləndirmə"/>
@ -288,6 +289,7 @@
<Item id="1625" name="Normal"/>
<Item id="1626" name="Genişləndirilmiş (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Fayllarda əvəz et"/>
<Item id="1661" name="Bu sənəddən sonrakı"/>
<Item id="1641" name="Bu sənəddə hamısını tap"/>
<Item id="1686" name="Şəffaflıq"/>
</Find>
@ -406,16 +408,19 @@
<Item id="6001" name="Bağla"/>
<Global title="Ümumi">
<Item id="6101" name="Alətlər paneli"/>
<Item id="6102" name="Gizlət"/>
<Item id="6103" name="Balaca ikonlar"/>
<Item id="6104" name="Böyük ikonlar"/>
<Item id="6105" name="Standart ikonlar"/>
<Item id="6106" name="Sənəd başlıqları"/>
<Item id="6107" name="Kiçiltmək"/>
<Item id="6108" name="Qıfılla (yer dəyişməsinə qadağa et)"/>
<Item id="6109" name="Aktiv olmayan başlıqlar boz olsun"/>
<Item id="6110" name="Üstündə sarı xətt olsun"/>
<Item id="6111" name="Vəziyyət sətirini göstər"/>
<Item id="6112" name="Bağla düyməsini göstər"/>
<Item id="6113" name="Başlığı iki kliklə bağla"/>
<Item id="6118" name="Gizlət"/>
@ -434,6 +439,7 @@
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6224" name="Multi-Redaktə nizamları"/>
<Item id="6225" name="İcazə ver (Ctrl+Mouse klik/Seçmək)"/>
<Item id="6201" name="Blokun qıraqlarının stili"/>
<Item id="6202" name="Sadə"/>
<Item id="6203" name="Oxlar"/>
@ -525,6 +531,8 @@
<Item id="6304" name="Açılmış sənədlərin tarixi"/>
<Item id="6305" name="İşə salarkən yoxlama"/>
<Item id="6306" name="Maks. sənəd sayı :"/>
<Item id="6307" name="İcazə ver"/>
<Item id="6308" name="Sistem treyə kiçilt"/>
<Item id="6309" name="Axırıncı sessiyanın sənədlərini aç"/>
<Item id="6312" name="Statusu avtomatik təyinləşdir"/>
<Item id="6313" name="Soruşmadan yenilə"/>
@ -544,6 +552,7 @@
<Item id="6331" name="Başlıqda yalnız faylın adını göstər"/>
<Item id="6114" name="İcazə ver"/>
<Item id="6115" name="Auto-indent"/>
<Item id="6117" name="Enable MRU behaviour"/>
</MISC>

View File

@ -182,6 +182,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="42087" name="Fitxategi guztien izenak Arbelera"/>
<Item id="42088" name="Fitxategi guztien bideak Arbelera"/>
<Item id="42032" name="Exekutatu Makro bat Hainbat Aldiz..."/>
<Item id="42033" name="Kendu Irakurtzeko-Bakarrik Marka"/>
<Item id="42035" name="Gehitu Lerro Bakarreko Iruzkina"/>
<Item id="42036" name="Kendu Lerro Bakarreko Iruzkina"/>
<Item id="42055" name="Kendu Lerro Hutsak"/>
@ -437,6 +438,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="1626" name="Hedatua (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Ordeztu Fitxategietan"/>
<Item id="1665" name="Ordeztu Proiektuetan"/>
<Item id="1661" name="Jarraitu oraingo dok."/>
<Item id="1662" name="1. Proiektu-panela"/>
<Item id="1663" name="2. Proiektu-panela"/>
<Item id="1664" name="3. Proiektu-panela"/>
@ -839,6 +841,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Preference title="Hobespenak">
<Item id="6001" name="Itxi"/>
<Global title="Orokorra">
<Item id="6101" name="Tresna-barra"/>
<Item id="6102" name="Ezkutatu"/>
<Item id="6103" name="Fluent UI: txikiak"/>
<Item id="6104" name="Fluent UI: handiak"/>
@ -846,11 +849,13 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6130" name="Filled Fluent UI: handiak"/>
<Item id="6105" name="Ikono arruntak: txikiak"/>
<Item id="6106" name="Fitxa-barra"/>
<Item id="6107" name="Gutxitu"/>
<Item id="6108" name="Blokeatu (ezin hartu eta eraman egin)"/>
<Item id="6109" name="Ilundu fitxa ez-aktiboak"/>
<Item id="6110" name="Marraztu barra koloreduna fitxa aktiboan"/>
<Item id="6111" name="Erakutsi egoera-barra"/>
<Item id="6112" name="Erakutsi itxi botoia fitxa bakoitzean"/>
<Item id="6113" name="Klik bikoitza fitxategia ixteko"/>
<Item id="6118" name="Ezkutatu"/>
@ -869,6 +874,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6219" name="Kliskatze-ratioa:"/>
<Item id="6221" name="Azkar"/>
<Item id="6222" name="Mantso"/>
<Item id="6225" name="Gaitu Editatze-Anitza (Ctrl+sagu klika/hautapena)"/>
<Item id="6227" name="Lerro-itzulbiraketa"/>
<Item id="6228" name="Lehenetsitakoa"/>
<Item id="6229" name="Lerrokatuta"/>
@ -1063,6 +1069,7 @@ Zutabe-markatzaile anitz zehaztu ditzakezu zenbakiak zuriuneen bidez banatuta."/
</Backup>
<AutoCompletion title="Osaketa automatikoa">
<Item id="6115" name="Koskatze automatikoa"/>
<Item id="6807" name="Osaketa automatikoa"/>
<Item id="6808" name="Gaitu osaketa automatikoa sarrera bakoitzean"/>
<Item id="6809" name="Funtzio-osaketa"/>
@ -1135,6 +1142,7 @@ Zutabe-markatzaile anitz zehaztu ditzakezu zenbakiak zuriuneen bidez banatuta."/
<Element name="Gaitu irekitako fitxategi guztientzat"/>
<Element name="Desgaitu"/>
</ComboBox>
<Item id="6308" name="Eraman sistemako tresna-barrara minimizatzean"/>
<Item id="6312" name="Fitxategi-egoeraren Antzemate Automatikoa"/>
<Item id="6313" name="Eguneratu isiliean"/>
<Item id="6325" name="Korritu azken lerrora eguneratu ondoren"/>
@ -1143,6 +1151,7 @@ Zutabe-markatzaile anitz zehaztu ditzakezu zenbakiak zuriuneen bidez banatuta."/
<Item id="6324" name="Dokumentu Aldatzailea (Ctrl+TAB)"/>
<Item id="6331" name="Erakutsi soilik fitxategi-izena izenburu-barran"/>
<Item id="6334" name="Antzeman automatikoki karaktere-kodifikazioa"/>
<Item id="6349" name="Erabili DirectWrite (Karaktere berezien errenderizatzea hobetu dezake, Notepad++ berrabiaraztea behar du)"/>
<Item id="6337" name="Lan eremuaren fitxategi-luzapena:"/>
<Item id="6114" name="Gaitu"/>
<Item id="6117" name="Gaitu MRU jokaera (Gehien Erabilitakoak)"/>
@ -1477,8 +1486,10 @@ Bilatu fitxategi guztietan baina alde batera utzi log ala logs karpetak modu err
<finder-uncollapse-all value="Zabaldu guztiak"/>
<finder-copy value="Kopiatu Aukeratutako Lerroa(k)"/>
<finder-copy-verbatim value="Kopiatu"/>
<finder-copy-paths value="Kopiatu Bide-izena(k)"/>
<finder-select-all value="Aukeratu guztia"/>
<finder-clear-all value="Garbitu guztia"/>
<finder-open-all value="Ireki guztia"/>
<finder-purge-for-every-search value="Garbitu bilaketa bakoitzean"/>
<finder-wrap-long-lines value="Lerro luzeetako hitzen itzulbiraketa"/>
<common-ok value="Ados"/>

View File

@ -182,6 +182,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="42087" name="Капіяваць усе назвы файлаў"/>
<Item id="42088" name="Капіяваць усе шляхі да файлаў"/>
<Item id="42032" name="Шматразовае выкананне макраса..."/>
<Item id="42033" name="Зняць атрыбут толькі чытанне"/>
<Item id="42035" name="Закаментаваць радок"/>
<Item id="42036" name="Раскаментаваць радок"/>
<Item id="42055" name="Выдаліць пустыя радкі"/>
@ -456,6 +457,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="1626" name="Пашыраны (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Замяніць у файлах"/>
<Item id="1665" name="Замяніць у праектах"/>
<Item id="1661" name="У папцы бягучага файла"/>
<Item id="1662" name="Панэль праекта 1"/>
<Item id="1663" name="Панэль праекта 2"/>
<Item id="1664" name="Панэль праекта 3"/>
@ -867,6 +869,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Preference title="Параметры">
<Item id="6001" name="Закрыць"/>
<Global title="Агульныя">
<Item id="6101" name="Панэль інструментаў"/>
<Item id="6102" name="Схаваць"/>
<Item id="6103" name="Fluent UI: маленькі"/>
<Item id="6104" name="Fluent UI: вялікі"/>
@ -874,11 +877,13 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6130" name="Filled Fluent UI: вялікі"/>
<Item id="6105" name="Стандартныя значкі: маленькія"/>
<Item id="6106" name="Панэль укладак"/>
<Item id="6107" name="Паменшыць"/>
<Item id="6108" name="Забараніць перацягванне"/>
<Item id="6109" name="Неактыўныя шэрыя ўкладкі"/>
<Item id="6110" name="Каляровая панэль актыўнай укладкі"/>
<Item id="6111" name="Радок стану"/>
<Item id="6112" name="Клавіша закрыцця на кожнай укладцы"/>
<Item id="6113" name="Закрываць падвойным націскам"/>
<Item id="6118" name="Схаваць"/>
@ -900,6 +905,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6221" name="+"/>
<Item id="6222" name="-"/>
<Item id="6246" name="Пераключаць каманды згортвання/разгортвання бягучага ўзроўню"/>
<Item id="6225" name="Уключыць мульты-рэдагаванне (Ctrl+націск мышы/выбар)"/>
<Item id="6227" name="Перанос радкоў"/>
<Item id="6228" name="Прадвызначана"/>
<Item id="6229" name="Выраўнены"/>
@ -1105,6 +1111,7 @@ The comments are here for explanation, it's not necessary to translate them.
</Backup>
<AutoCompletion title="Аўтазавяршэнне">
<Item id="6115" name="Аўтаводступ"/>
<Item id="6807" name="Аўтазавяршэнне"/>
<Item id="6808" name="Уключыць аўтазавяршэнне для кожнага ўвядзення"/>
<Item id="6809" name="Завяршэнне функцый"/>
@ -1189,6 +1196,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Element name="Уключыць для ўсіх адкрытых файлаў"/>
<Element name="Адключыць"/>
</ComboBox>
<Item id="6308" name="Згортваць у сістэмны латок"/>
<Item id="6312" name="Аўтавызначэнне стану файла"/>
<Item id="6313" name="Абнаўляць без апавяшчэння"/>
<Item id="6325" name="Пасля абнаўлення перайсці да апошняга радка"/>
@ -1197,6 +1205,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6324" name="Пераключэнне дакументаў (Ctrl+TAB)"/>
<Item id="6331" name="Паказваць толькі назву файла ў радку загалоўка"/>
<Item id="6334" name="Аўтавызначэнне кадавання сімвалаў"/>
<Item id="6349" name="Выкарыстоўваць DirectWrite (можа палепшыць апрацоўку спецыяльных сімвалаў, неабходны перазапуск праграмы)"/>
<Item id="6337" name="Пашырэнне файла працоўнай вобласці:"/>
<Item id="6114" name="Уключыць"/>
<Item id="6117" name="Будаваць спіс па меры выкарыстання"/>
@ -1535,8 +1544,10 @@ The comments are here for explanation, it's not necessary to translate them.
<finder-uncollapse-all value="Разгарнуць усе"/>
<finder-copy value="Капіяваць выбраныя радкі"/>
<finder-copy-verbatim value="Капіяваць"/>
<finder-copy-paths value="Капіяваць назвы шляхоў"/>
<finder-select-all value="Выбраць усе"/>
<finder-clear-all value="Ачысціць усе"/>
<finder-open-all value="Адкрыць усе"/>
<finder-purge-for-every-search value="Ачышчаць для кожнага пошуку"/>
<finder-wrap-long-lines value="Пераносіць словы ў доўгіх радках"/>
<common-ok value="Добра"/>

View File

@ -135,6 +135,7 @@
<Item id="42030" name="বর্তমান ফাইল নাম ক্লিপবোর্ডে"/>
<Item id="42031" name="ক্লিপবোর্ডে বর্তমান ডিরেক্টরির পাথ"/>
<Item id="42032" name="প্রায়ই একটি ম্যাক্রো চালান ..."/>
<Item id="42033" name="শুধুমাত্র পরিষ্কার পতাকা রিয়াদ"/>
<Item id="42035" name="একক লাইন মন্তব্য"/>
<Item id="42036" name="একক লাইন ও মন্তব্য"/>
<Item id="42055" name="খালি বাধাপ্রাপ্ত সরান"/>
@ -341,6 +342,7 @@
<Item id="1625" name="সাধারণ"/>
<Item id="1626" name="সম্প্রসারিত(Extended) (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="ফাইল পরিবর্তনের জন্য সমগ্র প্রতিস্থাপন"/>
<Item id="1661" name="বর্তমান নথি অনুসরণ করুন"/>
<Item id="1641" name="সমস্ত বিদ্যমান নথি অনুসন্ধান"/>
<Item id="1686" name="স্বচ্ছতা"/>
<Item id="1703" name="&amp;. নতুন লাইন ম্যাচ"/>
@ -566,16 +568,19 @@
<Preference title="Preferences">
<Item id="6001" name="নিকট"/>
<Global title="General">
<Item id="6101" name="টুলবার"/>
<Item id="6102" name="লুকান"/>
<Item id="6103" name="ছোট আইকন"/>
<Item id="6104" name="বড় আইকন"/>
<Item id="6105" name="মান আইকন"/>
<Item id="6106" name="ট্যাব বার"/>
<Item id="6107" name="কমানো"/>
<Item id="6108" name="(ড্র্যাগ এবং ড্রপ না) লক করুন"/>
<Item id="6109" name="ডার্ক ট্যাব নিষ্ক্রিয় করার জন্য"/>
<Item id="6110" name="সক্রিয় ট্যাব বারের রঙ আঁকা"/>
<Item id="6111" name="স্থিতি দণ্ড দেখান"/>
<Item id="6112" name="ট্যাব বন্ধ বোতাম দেখান"/>
<Item id="6113" name="বন্ধ নথি ডাবল ক্লিক করুন"/>
<Item id="6118" name="লুকান"/>
@ -596,6 +601,7 @@
<Item id="6221" name="ফল(F)"/>
<Item id="6222" name="এস(S)"/>
<Item id="6224" name="মাল্টি সম্পাদনা সেটিংস"/>
<Item id="6225" name="সক্রিয় করুন (Ctrl + মাউস ক্লিক / নির্বাচন)"/>
<Item id="6201" name="শৈলী ফোল্ডার মার্জিন"/>
<Item id="6202" name="সহজ"/>
<Item id="6203" name="তীর"/>
@ -716,6 +722,7 @@
</Backup>
<AutoCompletion title="Auto-Completion">
<Item id="6115" name="অটো-ইন্ডেন্ট"/>
<Item id="6807" name="স্বয়ং সম্পূর্ণতা(Auto-Completion)"/>
<Item id="6808" name="প্রতিটি ইনপুট জন্য স্বয়ংক্রিয় সমাপ্তির সক্রিয়"/>
<Item id="6809" name="শেষ ফাংশন"/>
@ -750,6 +757,8 @@
</Delimiter>
<MISC title="MISC.">
<Item id="6307" name="সক্রিয়"/>
<Item id="6308" name="সিস্টেম ট্রে / হ্রাস"/>
<Item id="6312" name="ফাইল অবস্থা অটো সনাক্তকরণ"/>
<Item id="6313" name="চুপি চুপি আপডেট"/>
<Item id="6318" name="যোগ্য লিঙ্ক সেটিংস"/>

View File

@ -110,6 +110,7 @@
<Item id="42030" name="Prebaci ime fajla u clipboard"/>
<Item id="42031" name="Prebaci cijelu putanju foldera u clipboard"/>
<Item id="42032" name="Višestruko pokretanje makro-naredbi..."/>
<Item id="42033" name="Ukloni zaštitu od pisanja"/>
<Item id="42035" name="Komentariši nivo"/>
<Item id="42036" name="Odkomentariši nivo"/>
@ -407,16 +408,19 @@
<Preference title="Postavke">
<Item id="6001" name="Zatvori"/>
<Global title="Općenito">
<Item id="6101" name="Alatna traka"/>
<Item id="6102" name="Sakrij"/>
<Item id="6103" name="Male ikone"/>
<Item id="6104" name="Velike ikone"/>
<Item id="6105" name="Male standardne ikone"/>
<Item id="6106" name="Traka s tab barom"/>
<Item id="6107" name="Smanji"/>
<Item id="6108" name="Zaključaj (Bez funkcije drag and drop)"/>
<Item id="6109" name="Neaktivne tabove osjenči sivo"/>
<Item id="6110" name="Vrh taba osjenčiti narančasto"/>
<Item id="6111" name="Prikaži traku stanja"/>
<Item id="6112" name="Dodaj dugme za zatvaranje na svakom tabu"/>
<Item id="6113" name="Zatvori dokument dvoklikom"/>
<Item id="6118" name="Sakrij"/>
@ -510,6 +514,8 @@
<Item id="6304" name="Postavke historije datoteka"/>
<Item id="6305" name="Tokom pokretanja ne provjeravaj"/>
<Item id="6306" name="Najveći broj historije:"/>
<Item id="6307" name="Uključi"/>
<Item id="6308" name="Minimizirati u traci zadaća sistema"/>
<Item id="6309" name="Tekuće mjesto upamti do slijedećeg pokretanja"/>
<Item id="6312" name="Samoprepoznavanje stanja datoteke"/>
<Item id="6313" name="Tiho nadograđivanje"/>
@ -528,6 +534,7 @@
<Item id="6331" name="U titl baru prikaži samo naziv fajla"/>
<Item id="6114" name="Uključi sklopku dokumenata (Ctrl+Tab)"/>
<Item id="6115" name="Automatska uvlaka redova"/>
<Item id="6117" name="Uključi MRU ponašanje"/>
</MISC>

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Brazilian Portuguese by Hélio de Souza and Luxy, updated: Jul 2021, for Notepad++ 8.1.2; last update by Marcello, 24 Jul 2025 for 8.8.3+
<!-- Brazilian Portuguese by Hélio de Souza and Luxy, updated: Jul 2021, for Notepad++ 8.1.2, last update by Marcello, 05 Feb 2024, for Notepad++ 8.6.3
Translation note:
1. Please install XML Tools plugin for formatting your XML translation. Via menu "Plugins -> XML Tools-> Pretty Print - indent only" command.
2. All the comments are for explanation, they are not for translation.
-->
<NotepadPlus>
<Native-Langue name="Brazilian Portuguese" filename="brazilian_portuguese.xml" version="8.8.3">
<Native-Langue name="Brazilian Portuguese" filename="brazilian_portuguese.xml" version="8.6.3">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -93,7 +93,6 @@ Translation note:
<Item id="41003" name="&amp;Fechar"/>
<Item id="41004" name="F&amp;echar todos"/>
<Item id="41005" name="Fechar todos exceto o atual"/>
<Item id="41026" name="Fechar todos, exceto fixados"/>
<Item id="41009" name="Fechar todos à esquerda"/>
<Item id="41018" name="Fechar todos à direita"/>
<Item id="41024" name="Fechar todos inalterados"/>
@ -137,8 +136,6 @@ Translation note:
<Item id="42060" name="Classificar em ordem decrescente"/>
<Item id="42080" name="Classificar em ordem crescente - ignorando maiúsculas/minúsculas"/>
<Item id="42081" name="Classificar em ordem decrescente - ignorando maiúsculas/minúsculas"/>
<Item id="42100" name="Classificar linhas em ordem ascendente local"/>
<Item id="42101" name="Classificar linhas em ordem descendente local"/>
<Item id="42061" name="Classificar como números inteiros - ordem crescente"/>
<Item id="42062" name="Classificar como números inteiros - ordem decrescente"/>
<Item id="42063" name="Classificar como números decimais (vírgula) - ordem crescente"/>
@ -203,7 +200,7 @@ Translation note:
<Item id="42087" name="Copiar todos os nomes de arquivos"/>
<Item id="42088" name="Copiar todos os caminhos de arquivos"/>
<Item id="42032" name="Executar macro múltiplas vezes..."/>
<Item id="42033" name="Atributo Apenas-Leitura no Windows"/>
<Item id="42033" name="Desmarcar como somente leitura"/>
<Item id="42035" name="Comentar linha única"/>
<Item id="42036" name="Remover comentário de linha única"/>
<Item id="42055" name="Remover linhas vazias"/>
@ -358,7 +355,6 @@ Translation note:
<Item id="10005" name="Mover para o Começo"/>
<Item id="10006" name="Mover para o Fim"/>
<Item id="46001" name="Configurador de estilos..."/>
<Item id="46016" name="Nenhum (Texto Normal)"/>
<Item id="46250" name="Defina a sua linguagem..."/>
<Item id="46300" name="Pasta de Linguagens definidas pelo usuário..."/>
<Item id="46301" name="Lista de Linguagens definidas pelo usuário"/>
@ -422,11 +418,9 @@ Translation note:
<Item CMDID="41003" name="Fechar"/>
<Item CMDID="0" name="Fechar Múltiplas Abas"/>
<Item CMDID="41005" name="Fechar Todas Abas, exceto esta"/>
<Item CMDID="41026" name="Fechar Todas, exceto as fixadas"/>
<Item CMDID="41009" name="Fechar todas à esquerda"/>
<Item CMDID="41018" name="Fechar todas à direita"/>
<Item CMDID="41024" name="Fechar todas inalteradas"/>
<Item CMDID="44048" name="Fixar Aba" alternativeName="Desafixar Aba"/>
<Item CMDID="41006" name="Salvar"/>
<Item CMDID="41008" name="Salvar como..."/>
<Item CMDID="1" name="Abrir em"/>
@ -439,7 +433,7 @@ Translation note:
<Item CMDID="41014" name="Recarregar"/>
<Item CMDID="41010" name="Imprimir"/>
<Item CMDID="42028" name="Somente Leitura"/>
<Item CMDID="42033" name="Atributo Apenas-Leitura no Windows"/>
<Item CMDID="42033" name="Desmarcar Somente Leitura"/>
<Item CMDID="2" name="Copiar para Área de Transferência"/>
<Item CMDID="42029" name="Copiar Caminho Completo"/>
<Item CMDID="42030" name="Copiar Nome do Arquivo"/>
@ -468,13 +462,13 @@ Translation note:
<Item id="43105" name="Fechar Ícone da Bandeja"/>
</TrayIcon>
</Menu>
<Dialog>
<Find title="" titleFind="Localizar" titleReplace="Substituir" titleFindInFiles="Localizar nos arquivos" titleFindInProjects="Localizar nos projetos" titleMark="Marcar">
<Item id="1" name="Localizar próximo"/>
<Item id="1722" name="Direção para trás"/>
<Item id="2" name="Fechar"/>
<Item id="1620" name="Localizar:"/>
<Item id="1620" name="Localizar :"/>
<Item id="1603" name="Coincidir palavra inteira"/>
<Item id="1604" name="Diferen&amp;ciar maiúsculas/minúsculas"/>
<Item id="1605" name="&amp;Expressão regular"/>
@ -483,7 +477,7 @@ Translation note:
<Item id="1615" name="Localizar todos"/>
<Item id="1616" name="Marcar linha"/>
<Item id="1618" name="Limpar marcadores"/>
<Item id="1611" name="Substituir por:"/>
<Item id="1611" name="Substituir por :"/>
<Item id="1608" name="Substitui&amp;r"/>
<Item id="1609" name="Substituir &amp;todos"/>
<Item id="1687" name="Ao perder o foco"/>
@ -492,8 +486,8 @@ Translation note:
<Item id="1633" name="Limpar"/>
<Item id="1635" name="Substituir em todos os documentos abertos"/>
<Item id="1636" name="Localizar em todos os documentos abertos"/>
<Item id="1654" name="Filtros:"/>
<Item id="1655" name="Pasta:"/>
<Item id="1654" name="Filtros :"/>
<Item id="1655" name="Pasta :"/>
<Item id="1656" name="Localizar todos"/>
<Item id="1658" name="Incluir subpastas"/>
<Item id="1659" name="Incluir pastas ocultas"/>
@ -502,6 +496,7 @@ Translation note:
<Item id="1626" name="Estendida (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Substituir nos arquivos"/>
<Item id="1665" name="Substituir nos projetos"/>
<Item id="1661" name="Acompanhar doc. atual"/>
<Item id="1662" name="Painel de Projeto 1"/>
<Item id="1663" name="Painel de Projeto 2"/>
<Item id="1664" name="Painel de Projeto 3"/>
@ -526,8 +521,8 @@ Translation note:
<FindCharsInRange title="Localizar caracteres em um intervalo...">
<Item id="2" name="Fechar"/>
<Item id="2901" name="Caracteres não ASCII (128255)"/>
<Item id="2902" name="Caracteres ASCII (0127)"/>
<Item id="2901" name="Caracteres não ASCII (128-255)"/>
<Item id="2902" name="Caracteres ASCII (0-127)"/>
<Item id="2903" name="Meu intervalo:"/>
<Item id="2906" name="&amp;Acima"/>
<Item id="2907" name="&amp;Abaixo"/>
@ -538,12 +533,12 @@ Translation note:
<GoToLine title="Ir para...">
<Item id="2007" name="&amp;Linha"/>
<Item id="2008" name="&amp;Posição"/>
<Item id="2008" name="&amp;Caractere"/>
<Item id="1" name="Ir"/>
<Item id="2" name="Cancelar"/>
<Item id="2004" name="Você está aqui:"/>
<Item id="2005" name="Deseja ir para:"/>
<Item id="2006" name="Você não pode exceder:"/>
<Item id="2004" name="Você está aqui :"/>
<Item id="2005" name="Deseja ir para :"/>
<Item id="2006" name="Você não pode exceder :"/>
</GoToLine>
<Run title="Executar...">
@ -634,16 +629,14 @@ Translation note:
<Item id="2219" name="Palavras-chave padrão"/>
<Item id="2221" name="Palavras-chave definidas pelo usuário"/>
<Item id="2225" name="Linguagem:"/>
<Item id="2226" name="Forçar cor de primeiro plano para todos os estilos"/>
<Item id="2227" name="Forçar cor de plano de fundo para todos os estilos"/>
<Item id="2228" name="Forçar fonte para todos os estilos"/>
<Item id="2229" name="Forçar tamanho de fonte para todos os estilos"/>
<Item id="2230" name="Forçar fonte em negrito para todos os estilos"/>
<Item id="2231" name="Forçar fonte em itálico para todos os estilos"/>
<Item id="2232" name="Forçar fonte sublinhada para todos os estilos"/>
<Item id="2226" name="Habilitar cor de primeiro plano global"/>
<Item id="2227" name="Habilitar cor de plano de fundo global"/>
<Item id="2228" name="Habilitar fonte global"/>
<Item id="2229" name="Habilitar tamanho de fonte global"/>
<Item id="2230" name="Habilitar fonte em negrito global"/>
<Item id="2231" name="Habilitar fonte em itálico global"/>
<Item id="2232" name="Habilitar fonte sublinhada global"/>
<Item id="2234" name="Ir para configuração"/>
<!-- Não traduzir "Global override" -->
<Item id="2235" name="O que é Global override?"/>
</SubDialog>
</StyleConfig>
@ -824,7 +817,6 @@ Translation note:
<Folder title="Dobragem e padrão">
<Item id="21101" name="Estilo padrão"/>
<Item id="21102" name="Estilo"/>
<Item id="21103" name="Ajuda online para Linguagens definidas pelo usuário"/>
<Item id="21105" name="Documentação:"/>
<Item id="21106" name="Dobrar e compactar (dobrar linhas vazias também)"/>
<Item id="21220" name="Dobragem de código estilo 1:"/>
@ -948,57 +940,37 @@ Translation note:
<Preference title="Preferências">
<Item id="6001" name="Fechar"/>
<Global title="Geral">
<Item id="6123" name="Localização"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Ocultar (use teclas Alt ou F10 para alternar)"/>
<Item id="6132" name="Ocultar atalhos à direita ▼ ✕"/>
<Item id="6133" name="Barra de Status"/>
<Item id="6134" name="Ocultar"/>
</Global>
<Toolbar title="Ferramentas">
<Item id="6101" name="Barra de ferramentas"/>
<Item id="6102" name="Ocultar"/>
<Item id="6103" name="Ícones contornados: pequenos"/>
<Item id="6104" name="Ícones contornados: grandes"/>
<Item id="6129" name="Ícones cheios: pequenos"/>
<Item id="6130" name="Ícones cheios: grandes"/>
<Item id="6105" name="Ícones clássicos: pequenos"/>
<Item id="6011" name="Colorização"/>
<Item id="6012" name="Completo"/>
<Item id="6013" name="Parcial"/>
<Item id="6014" name="Escolha de Cor"/>
<Item id="6015" name="Padrão"/>
<Item id="6016" name="Vermelho"/>
<Item id="6017" name="Verde"/>
<Item id="6018" name="Azul"/>
<Item id="6019" name="Roxo"/>
<Item id="6020" name="Ciano"/>
<Item id="6021" name="Verde Azeitona"/>
<Item id="6022" name="Amarelo"/>
<Item id="6023" name="Cor base do Sistema"/>
<Item id="6024" name="Particularizado"/>
</Toolbar>
<Tabbar title="Barra de Abas">
<Item id="6103" name="Fluent UI: ícones pequenos"/>
<Item id="6104" name="Fluent UI: ícones grandes"/>
<Item id="6129" name="Filled Fluent UI: ícones pequenos"/>
<Item id="6130" name="Filled Fluent UI: ícones grandes"/>
<Item id="6105" name="Padrão: ícones pequenos"/>
<Item id="6106" name="Barra de abas"/>
<Item id="6107" name="Reduzir"/>
<Item id="6108" name="Travar (sem arrastar e soltar)"/>
<Item id="6109" name="Mudar cor de aba inativa"/>
<Item id="6109" name="Esmaecer abas inativas"/>
<Item id="6110" name="Destacar topo da aba ativa"/>
<Item id="6111" name="Mostrar botões em abas inativas"/>
<Item id="6112" name="Mostrar o botão fechar"/>
<Item id="6112" name="Mostrar o botão fechar em cada aba"/>
<Item id="6113" name="Fechar documento com duplo clique"/>
<Item id="6115" name="Habilitar recurso de fixar aba"/>
<Item id="6135" name="Mostrar apenas botões fixados"/>
<Item id="6118" name="Ocultar"/>
<Item id="6119" name="Multilinhas"/>
<Item id="6120" name="Vertical"/>
<Item id="6121" name="Sair ao fechar a última aba"/>
<Item id="6128" name="Ícones alternativos"/>
<Item id="6125" name="Comportamento"/>
<Item id="6126" name="Olhar &amp;&amp; sentir"/>
</Tabbar>
<Scintillas title="Edição 1">
<Item id="6133" name="Barra de Status"/>
<Item id="6134" name="Ocultar"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Ocultar barra de menus (use Alt ou F10 para alternar)"/>
<Item id="6132" name="Esconder atalhos à direita ▼ ✕ da barra de menus (é necessário reiniciar o Notepad++)"/>
<Item id="6123" name="Localização"/>
</Global>
<Scintillas title="Edição">
<Item id="6216" name="Configurações do cursor"/>
<Item id="6217" name="Largura:"/>
<Item id="6219" name="Veloc. piscada:"/>
@ -1015,30 +987,21 @@ Translation note:
<Item id="6239" name="Manter a seleção ao clicar com o botão direito fora da seleção"/>
<Item id="6245" name="Habilitar espaço virtual"/>
<Item id="6214" name="Habilitar Copiar/Recortar Linha sem seleção"/>
<Item id="6225" name="Aplicar cor customizada em texto selecionado"/>
<Item id="6651" name="Indicador de linha atual"/>
<Item id="6652" name="Nenhum"/>
<Item id="6653" name="Destacar fundo"/>
<Item id="6654" name="Enquadrado"/>
<Item id="6655" name="Largura:"/>
</Scintillas>
<Scintillas2 title="Edição 2">
<Item id="6521" name="Multi-Edição"/>
<Item id="6522" name="Habilitar Multi-Edição (Ctrl+Clique do Mouse/seleção)"/>
<Item id="6523" name="Habilitar Seleção em Colunas para Multi-Edição"/>
<Item id="6247" name="Fim de Linha (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Padrão"/>
<Item id="6249" name="Texto comum"/>
<Item id="6250" name="Cor Customizada"/>
<Item id="6252" name="Caracteres sem representação"/>
<Item id="6260" name="Aparência"/>
<Item id="6254" name="Abreviação"/>
<Item id="6255" name="Ponto de Código"/>
<Item id="6256" name="Cor Personalizada"/>
<Item id="6258" name="Aplicar configurações de Exibição para caracteres C0, C1 &amp;&amp; EOL Unicode"/>
<Item id="6259" name="Impedir digitação de caracter de controle (código C0) no documento"/>
</Scintillas2>
<Item id="6258" name="Aplicar para caracteres C0, C1 &amp;&amp; EOL Unicode"/>
</Scintillas>
<DarkMode title="Modo Escuro">
<Item id="7131" name="Modo Claro"/>
@ -1080,11 +1043,11 @@ Translation note:
<Item id="6292" name="Largura dinâmica"/>
<Item id="6293" name="Largura constante"/>
<Item id="6207" name="Exibir margem dos marcadores"/>
<Item id="6295" name="Mudar Histórico"/>
<Item id="6223" name="Mostrar na margem"/>
<Item id="6296" name="Mostrar no texto"/>
<Item id="6223" name="Mostrar Histórico de Modificações"/>
<Item id="6211" name="Configurações do marcador de coluna"/>
<Item id="6213" name="Modo plano de fundo"/>
<Item id="6237" name="Adicione seu marcador de coluna, indicando sua posição com um número decimal.
Você pode definir vários marcadores de coluna usando espaço em branco para separar os diferentes números."/>
<Item id="6231" name="Largura da borda"/>
<Item id="6235" name="Sem borda"/>
<Item id="6208" name="Exibir linha vertical"/>
@ -1104,11 +1067,10 @@ Translation note:
<Item id="6408" name="UTF-8 com BOM"/>
<Item id="6409" name="UTF-16 Big Endian com BOM"/>
<Item id="6410" name="UTF-16 Little Endian com BOM"/>
<Item id="6411" name="Linguagem padrão:"/>
<Item id="6411" name="Linguagem padrão :"/>
<Item id="6419" name="Novo documento"/>
<Item id="6420" name="Aplicar ao abrir arquivos ANSI"/>
<Item id="6432" name="Sempre abrir um novo documento ao iniciar"/>
<Item id="6433" name="Usar a primeira linha do documento como nome da aba sem título"/>
</NewDoc>
<DefaultDir title="Diretório padrão">
@ -1123,30 +1085,18 @@ Translation note:
<Item id="4009" name="Extensões suportadas:"/>
<Item id="4010" name="Extensões registradas:"/>
</FileAssoc>
<Language title="Linguagem">
<Item id="6505" name="Itens disponíveis"/>
<Item id="6506" name="Itens desabilitados"/>
<Item id="6507" name="Tornar o menu de linguagens compacto"/>
<Item id="6508" name="Menu de linguagens"/>
<Item id="6301" name="Configurações de tabulação"/>
<Item id="6302" name="Substituir por espaço"/>
<Item id="6303" name="Tamanho: "/>
<Item id="6510" name="Usar valor padrão"/>
<Item id="6335" name="Tratar a barra invertida como caractere de escape para SQL"/>
</Language>
<Indentation title="Indentação">
<Item id="7161" name="Auto-indentar"/>
<Item id="7162" name="Nenhuma"/>
<Item id="7163" name="Básica"/>
<Item id="7164" name="Avançada"/>
<Item id="6301" name="Configurações de Indentação"/>
<Item id="6302" name="Caracter(es) de espaço"/>
<Item id="6303" name="Tamanho de indentação:"/>
<Item id="6310" name="Indentar usando:"/>
<Item id="6311" name="Caracter de TAB"/>
<Item id="6510" name="Usar valor padrão"/>
<Item id="6512" name="Tecla backspace deleta indentação ao invés de remover um único caracter espaço"/>
</Indentation>
<Highlighting title="Destaque">
<Item id="6351" name="Marcar todos"/>
<Item id="6352" name="Coincidir maiúsculas/minúsculas"/>
@ -1213,7 +1163,6 @@ Translation note:
<Item id="6908" name="Preencher o texto selecionado no campo de localização"/>
<Item id="6909" name="Selecionar palavra da posição atual do cursor quando nada for selecionado"/>
<Item id="6910" name="Tamanho Mínimo para Auto-Selecionar Opção &quot;Na seleção&quot;"/>
<Item id="6913" name="Preencher o campo 'Pasta' de 'Localizar nos arquivos' Baseado no Documento Ativo"/>
</Searching>
<RecentFilesHistory title="Histórico de arquivos recentes">
@ -1230,7 +1179,7 @@ Translation note:
<Backup title="Backup">
<Item id="6817" name="Captura da sessão e backup periódico"/>
<Item id="6818" name="Habilitar captura da sessão e backup periódico"/>
<Item id="6819" name="Disparar backup em caso de modificação a cada"/>
<Item id="6819" name="Backup a cada"/>
<Item id="6821" name="segundos"/>
<Item id="6822" name="Caminho do backup:"/>
<Item id="6309" name="Lembrar sessão atual para a próxima inicialização"/>
@ -1240,10 +1189,11 @@ Translation note:
<Item id="6316" name="Backup simples"/>
<Item id="6317" name="Backup completo"/>
<Item id="6804" name="Personalizar pasta de backup"/>
<Item id="6803" name="Pasta:"/>
<Item id="6803" name="Pasta :"/>
</Backup>
<AutoCompletion title="Autocompletar">
<Item id="6115" name="Autoindentar"/>
<Item id="6807" name="Autocompletar"/>
<Item id="6808" name="Habilitar autocompletar para cada entrada"/>
<Item id="6809" name="Completar função"/>
@ -1302,7 +1252,7 @@ Translation note:
<Item id="7141" name="Restrição para Arquivos Grandes"/>
<Item id="7143" name="Habilitar Restrição para Arquivos Grandes (sem destaque de sintaxe)"/>
<Item id="7144" name="Definir Tamanho de Arquivos Grandes:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Permitr Chaves Correspondentes"/>
<Item id="7148" name="Permitir Autocompletar"/>
<Item id="7149" name="Permitir Destaque Inteligente"/>
@ -1335,38 +1285,20 @@ Translation note:
<MISC title="Diversos">
<ComboBox id="6347">
<Element name="Habilitar para o arquivo atual"/>
<Element name="Habilitar"/>
<Element name="Habilitar para todos os arquivos abertos"/>
<Element name="Desabilitar"/>
</ComboBox>
<ComboBox id="6307">
<Element name="Sem ação para"/>
<Element name="Minimizar para"/>
<Element name="Fechar para"/>
<Element name="Minimizar / Fechar para"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (mais compatível)"/>
<Element name="DirectWrite (padrão)"/>
<Element name="DirectWrite (mantém estrutura)"/>
<Element name="DirectWrite (estendendo a GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Desabilitar"/>
<Element name="Habilitar ao iniciar o Notepad++"/>
<Element name="Habilitar ao encerrar o Notepad++"/>
</ComboBox>
<Item id="6308" name="bandeja"/>
<Item id="6363" name="modo renderização"/>
<Item id="6365" name="Auto-atualizar:"/>
<Item id="6308" name="Minimizar na bandeja"/>
<Item id="6312" name="Autodetectar estado de arquivos"/>
<Item id="6313" name="Atualizar silenciosamente"/>
<Item id="6325" name="Ir para a última linha depois de atualizar"/>
<Item id="6322" name="Extensão do arquivo de sessão:"/>
<Item id="6323" name="Habilitar auto-atualização do Notepad++"/>
<Item id="6324" name="Alternador de documentos (Ctrl+TAB)"/>
<Item id="6331" name="Exibir somente o nome do arquivo no título"/>
<Item id="6334" name="Autodetectar codificação do caractere"/>
<Item id="6349" name="Usar DirectWrite (Pode melhorar a renderização de caracteres especiais, é necessário reiniciar o Notepad++)"/>
<Item id="6337" name="Extensão do arquivo de espaço de trabalho:"/>
<Item id="6114" name="Habilitar"/>
<Item id="6117" name="Habilitar comportamento MRU"/>
@ -1442,11 +1374,6 @@ Você pode reativar esta janela de confirmação em Preferências depois."/>
<Item id="7" name="&amp;Não"/>
<Item id="4" name="Sem&amp;pre Sim"/>
</DoSaveAll><!-- HowToReproduce: Check the &quot;Enable Save All confirm dialog&quot; checkbox in Preference->MISC, now click &quot;Save all&quot; -->
<DebugInfo title="Informação de Depuração">
<Item id="1752" name="&amp;Copiar informação de depuração para a área de transferência"/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
@ -1476,11 +1403,8 @@ Suas configurações na nuvem serão canceladas. Por favor, redefina um valor co
<FilePathNotFoundWarning title="Abrir arquivo" message="O arquivo que você está tentando abrir não existe."/> <!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SessionFileInvalidError title="Não foi possível carregar a sessão" message="O arquivo de sessão está corrompido ou não é válido."/><!-- HowToReproduce: Save current session via menu "File -> Save Session...", use another editor to modify the session you saved to make it an invalid xml file. Then load this invalid session via menu "File -> Load Session...". -->
<DroppingFolderAsProjectModeWarning title="Você só pode soltar arquivos ou pastas, mas não ambos, porque você está soltando Pasta como modo Projeto.
É necessário habilitar &quot;Abrir todos os arquivos da pasta em vez de usar a pasta como espaço de trabalho&quot; na seção &quot;Diretório padrão&quot; da opção Preferências para que esta operação funcione."/>
Você tem que habilitar o &quot;Abrir todos os arquivos da pasta em vez de usar a pasta como espaço de trabalho&quot; na seção &quot;Diretório padrão&quot; em Preferências para fazer esta operação funcionar."/>
<SortingError title="Erro de Classificação" message="Não é possível realizar a classificação numérica devido à linha $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SortLocaleMultiple title="Classificação não efetuada" message="Classificação de múltiplas seleções não é suportada."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Erro de Classificação" message="O motivo da falha de classificação não pôde ser determinado."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Erro de Classificação" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Dica de Modo Coluna" message="
Existem 3 maneiras de ativar o modo de seleção em colunas:
@ -1551,13 +1475,8 @@ Deseja continuar?"/>
<UDLNewNameError title="Erro UDL" message="Esse nome é usado por outro idioma.
Por favor, dê outro."/>
<UDLRemoveCurrentLang title="Remover a linguagem atual" message="Você tem certeza?"/>
<UDL_importSuccessful title="Linguagem Definida pelo Usuário" message="Importação efetuada com sucesso."/>
<UDL_importFails title="Linguagem Definida pelo Usuário" message="Erro na importação."/>
<UDL_saveBeforeImport title="Linguagem Definida pelo Usuário" message="Antes de exportar, salve sua definição de linguagem clicando no botão &quot;Salvar como...&quot;."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="Linguagem Definida pelo Usuário" message="Exportação efetuada com sucesso."/>
<UDL_exportFails title="Linguagem Definida pelo Usuário" message="Erro na exportação."/>
<SCMapperDoDeleteOrNot title="Você tem certeza?" message="Tem certeza de que deseja excluir este atalho?"/>
<FindCharRangeValueError title="Problema do Valor do intervalo" message="Você deve escolher entre 0 e 255."/> <!-- Como Reproduzir: No menu 'Localizar', depois 'Localizar caracteres em um intervalo', selecione 'Meu intervalo', digite 999 nas duas caixas de edição, e clique em 'Localizar'. -->
<FindCharRangeValueError title="Problema do Valor do intervalo" message="Você deve digitar entre 0 e 255."/>
<OpenInAdminMode title="Falha ao salvar" message="O arquivo não pode ser salvo e pode estar protegido.
Deseja iniciar o Notepad++ no modo Administrador?"/>
<OpenInAdminModeWithoutCloseCurrent title="Falha ao salvar" message="O arquivo não pode ser salvo e pode estar protegido.
@ -1592,16 +1511,6 @@ Deseja criar estes substitutos?
OBSERVAÇÃO: Ao escolher não criar os substitutos ou ao fechá-los depois, sua sessão SERÁ MODIFICADA QUANDO SAIR! É recomendável que você faça backup do seu arquivo &quot;session.xml&quot; agora."/>
<RTLvsDirectWrite title="Impossível executar o RTL" message="O RTL (Orientação de texto da Direita para a Esquerda) não é compatível com o modo DirectWrite. Por favor, desabilite a opção &quot;Usar DirectWrite&quot; na seção &quot;Diversos&quot; da opção &quot;Preferências&quot; do menu &quot;Configurações&quot;, e reinicie o Notepad++."/>
<FileMemoryAllocationFailed title="Exceção: A Alocação de memória para arquivo falhou" message="Pravavelmente não há memória livre contígua para que o arquivo possa ser carregado pelo Notepad++."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Busca tipo Regex para trás está desabilitada" message="Por padrão, as buscas Regex para trás são desabilitadas devido a erros que levam a resultados potencialmente inesperados. Para executar uma busca para trás, abra a caixa de diálogo Localizar e selecione busca normal ou estendida ao invés de expressão regular.
Pressione o botão OK para abrir a caixa de diálogo Localizar ou alterne o foco para ela.
Se for necessário executar uma busca regex para trás, consulte o manual de usuário para instruções sobre como habilitar este recurso."/>
<PrintError title="0" message="Não foi posssível iniciar a impressão do documento."/><!-- Use title="0" para usar o título do "Erro" padrão do Windows. -->
<FindAutoChangeOfInSelectionWarning title="Aviso da Localização" message="O estado da caixa de seleção &quot;Na seleção&quot; foi modificado automaticamente.
Por favor verifique a condição de localização antes de continuar."/> <!-- Como Reproduzir: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="O Notepad++ precisa ser reiniciado" message="O Notepad++ precisa ser reiniciado para mostrar os atalhos de botão direito."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Falha na mudança de atributo de apenas leitura do arquivo" message="Por favor execute o Notepad++ como administrador para mudar os atributos de arquivo."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Histórico da área de transferência"/>
@ -1725,6 +1634,7 @@ Por favor verifique a condição de localização antes de continuar."/> <!-- Co
<default-open-save-select-folder value="Selecione uma pasta como pasta padrão"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Usar Shift+Enter para pesquisar na direção oposta."/>
<two-find-buttons-tip value="Modo 2 botões"/>
<file-rename-title value="Renomear"/>
<find-in-files-filter-tip value="Procurar em cpp, cxx, h, hxx &amp;&amp; hpp:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1736,10 +1646,9 @@ Procurar em todos os arquivos, excluindo pastas de teste, lixeira&amp;&amp; bin6
Procurar em todos os arquivos, excluindo pastas de log ou logs recursivamente:
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Selecione uma pasta origem da busca"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Preencha o campo Pasta baseado no documento ativo"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Localizar: O início do documento foi alcançado, a primeira ocorrência a partir do final foi encontrada."/>
<find-status-end-reached value="Localizar: O final do documento foi alcançado, a primeira ocorrência a partir do início foi encontrada."/>
<find-in-files-select-folder value="Selecione uma pastaorigem da busca"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-status-top-reached value="Localizar: Encontrada a primeira ocorrência a partir do final. O início do documento foi alcançado."/>
<find-status-end-reached value="Localizar: Encontrada a primeira ocorrência a partir do início. O final do documento foi alcançado."/>
<find-status-replaceinfiles-1-replaced value="Substituir em Arquivos: 1 ocorrência foi substituída."/>
<find-status-replaceinfiles-nb-replaced value="Substituir em Arquivos: $INT_REPLACE$ ocorrências foram substituídas."/>
<find-status-replaceinopenedfiles-1-replaced value="Substituir em Arquivos Abertos: 1 ocorrência foi substituída."/>
@ -1753,8 +1662,8 @@ Procurar em todos os arquivos, excluindo pastas de log ou logs recursivamente:
<find-status-replaceall-1-replaced value="Substituir todas: 1 ocorrência foi substituída."/>
<find-status-replaceall-nb-replaced value="Substituir todas: $INT_REPLACE$ ocorrências foram substituídas."/>
<find-status-replaceall-readonly value="Substituir todas: Texto não substituído. O documento é somente leitura."/>
<find-status-replace-end-reached value="Substituir: O final do documento foi alcançado, a primeira ocorrência a partir do início foi substituída."/>
<find-status-replace-top-reached value="Substituir: O início do documento foi alcançado, a primeira ocorrência a partir do final foi substituída."/>
<find-status-replace-end-reached value="Substituir: Substituída a primeira ocorrência a partir do início. O final do documento foi alcançado."/>
<find-status-replace-top-reached value="Substituir: Substituída a primeira ocorrência a partir do final. O início do documento foi alcançado."/>
<find-status-replaced-next-found value="Substituir: 1 ocorrência foi substituída. A próxima ocorrência encontrada."/>
<find-status-replaced-without-continuing value="Substituir: 1 ocorrência foi substituída."/>
<find-status-replaced-next-not-found value="Substituir: 1 ocorrência foi substituída. A próxima ocorrência não encontrada."/>
@ -1771,9 +1680,11 @@ Procurar em todos os arquivos, excluindo pastas de log ou logs recursivamente:
<finder-collapse-all value="Recolher tudo"/>
<finder-uncollapse-all value="Expandir tudo"/>
<finder-copy value="Copiar linha(s) selecionada(s)"/>
<finder-copy-selected-paths value="Copiar caminho(s) selecionado(s)"/>
<finder-copy-verbatim value="Copiar"/>
<finder-copy-paths value="Copiar nome(s) de caminho(s)"/>
<finder-select-all value="Selecionar tudo"/>
<finder-clear-all value="Limpar tudo"/>
<finder-open-selected-paths value="Abrir caminho(s) selecionado(s)"/>
<finder-open-all value="Abrir tudo"/>
<finder-purge-for-every-search value="Limpar a cada pesquisa"/>
<finder-wrap-long-lines value="Quebra de linha em linhas longas"/>
<common-ok value="OK"/>
@ -1798,11 +1709,12 @@ Procurar em todos os arquivos, excluindo pastas de log ou logs recursivamente:
<summary-nbsel2 value=" bytes) em "/>
<summary-nbrange value=" intervalo"/>
<progress-hits-title value="Ocorrências:"/>
<progress-cancel-button value="Cancelar"/>
<progress-cancel-info value="Cancelando operação, aguarde..."/>
<find-in-files-progress-title value="Progresso do Localizar nos arquivos..."/>
<replace-in-files-confirm-title value="Tem certeza?"/>
<replace-in-files-confirm-directory value="Tem certeza de que deseja substituir todas as ocorrências em:"/>
<replace-in-files-confirm-filetype value="Para o tipo de arquivo:"/>
<replace-in-files-confirm-directory value="Tem certeza de que deseja substituir todas as ocorrências em :"/>
<replace-in-files-confirm-filetype value="Para o tipo de arquivo :"/>
<replace-in-files-progress-title value="Progresso do Substituir nos arquivos..."/>
<replace-in-projects-confirm-title value="Tem certeza?"/>
<replace-in-projects-confirm-message value="Deseja substituir todas as ocorrências em todos os documentos no(s) Painel(éis) de Projeto selecionado(s)?"/>
@ -1866,32 +1778,6 @@ Clique no botão &quot;?&quot; à direita para abrir o site com o Manual do Usu
<npcCustomColor-tip value="Acesse o Configurador de Estilos para mudar a cor padrão para espaços em branco e caracteres sem representação selecionados (&quot;Cor padrão para caracteres sem representação&quot;)."/>
<npcIncludeCcUniEol-tip value="Aplicar as configurações de caracteres sem representação para os caracteres C0, C1 e EOL Unicode (próxima linha, separador de linha e separador de parágrafo)."/>
<searchingInSelThresh-tip value="Número de caracteres selecionados no modo editor para marcar automaticamente a opção &quot;Na seleção&quot; quando a caixa de diálogo Localizar for ativada. O valor máximo é 1024. Use o valor 0 para desabilitar a auto-seleção."/>
<verticalEdge-tip value="Adicione seu marcador de coluna indicando a posição com um número decimal. É possível definir vários marcadores de coluna usando um espaço em branco para separar os números diferentes."/>
<fileSaveAsCopySaveButton-tip value="Pressione a tecla Shift enquanto clica em &quot;Salvar uma cópia como...&quot; para abrir a cópia após salvar."/>
<autoIndentBasic-tip value="Garantir que a indentação da linha atual (por exemplo, a nova linha criada ao pressionar a tecla ENTER) seja igual à indentação da linha anterior."/>
<autoIndentAdvanced-tip value="Habilitar a indentação inteligente para linguagens com regras baseadas nas linguagens &quot;C&quot; e Python. As linguagens baseadas em &quot;C&quot; incluem:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell e JSON.
Se você ativar o modo avançado mas não editar arquivos destas linguagens, a indentação continuará em modo básico."/>
<!-- Não traduzir "Global override" e "Default Style" -->
<global-override-tip value="Habilitar o &quot;Global override&quot; aqui vai prevalecer sobre este parâmetro em todos os estilos de linguagem. O que provavelmente é desejado é usar as configurações de &quot;Default Style&quot;"/>
<scintillaRenderingTechnology-tip value="Pode melhorar a renderização de caracteres especiais ou resolver alguns problemas gráficos, reinicie o Notepad++ para aplicar as mudanças."/>
<!-- Devido ao espaço limitado na barra de status, se as traduções para 'length' & 'lines' forem muito maiores do que o texto em Inglês, por favor deixe-os em Inglês ao invés de traduzi-los. -->
<statusbar-length-lines value="tamanho: $STR_REPLACE1$ linhas: $STR_REPLACE2$"/>
<!-- Devido ao espaço limitado na barra de status, se as traduções para 'Ln' & 'Col' forem muito maiores do que o texto em Inglês, por favor deixe-os em Inglês ao invés de traduzi-los. -->
<statusbar-Ln-Col value="Ln: $STR_REPLACE1$ Col: $STR_REPLACE2$"/>
<!-- Devido ao espaço limitado na barra de status, se as traduções para 'Pos' & 'Sel' forem muito maiores do que o texto em Inglês, por favor deixe-os em Inglês ao invés de traduzi-los. -->
<statusbar-Pos value="Pos: "/>
<statusbar-Sel value="Sel: "/>
<statusbar-Sel-number value="Sel"/>
<toolbar-accent-tip value="Esta opção faz com que os ícondes de sua barra de ferramentas sigam a cor principal do sistema Windows. A cor principal é a cor de destaque usada em botões, margens, e títulos no Menu Iniciar do Windows. Para alterar, acesse Configurações &gt; Preferências &gt; Cores, e então selecione seu padrão de cores preferido."/>
<max-len-on-search-tip value="São permitidos apenas $INT_REPLACE$ caracteres para tamanho de texto de localização/substituição - o seu texto pode ser truncado, e não será salvo para a próxima sessão."/>
<max-len-on-save-tip value="Este texto de localização (> $INT_REPLACE$ caracteres) não será salvo para a próxima sessão."/>
<goto-setting-tip value="Encontre sua configuração aqui"/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

View File

@ -163,6 +163,7 @@
<Item id="42030" name="Eilañ an anv-restr-red er golver"/>
<Item id="42031" name="Eilañ an doser-red er golver"/>
<Item id="42032" name="Sevenniñ ur makro dibaouez..."/>
<Item id="42033" name="Diverkañ ar baniell Lenn-Hepken"/>
<Item id="42035" name="Evezhiadenniñ (mod linenn)"/>
<Item id="42036" name="Dievezhiedennañ (mod linenn)"/>
<Item id="42055" name="Dilemel al linennoù goullo"/>
@ -383,6 +384,7 @@
<Item id="1625" name="&amp;Normal"/>
<Item id="1626" name="Astennet (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Erlec'hiañ er restroù"/>
<Item id="1661" name="Heuliañ an teuliad-red"/>
<Item id="1641" name="Kavout pep-tra en teuliad-red"/>
<Item id="1686" name="Treuzwelusted"/>
<Item id="1703" name="&amp;. a genglot gant linennoù nevez"/>
@ -686,16 +688,19 @@
<Preference title="Arventennoù">
<Item id="6001" name="Serriñ"/>
<Global title="Hollek">
<Item id="6101" name="Barrenn ostilhoù"/>
<Item id="6102" name="Kuzhat"/>
<Item id="6103" name="Ikonioù bihan"/>
<Item id="6104" name="Ikonioù bras"/>
<Item id="6105" name="Ikonioù standard"/>
<Item id="6106" name="Barrenn ivinelloù"/>
<Item id="6107" name="Bihanaat"/>
<Item id="6108" name="Morailhañ (stlejañ-dilec'hiañ ebet)"/>
<Item id="6109" name="Ivinelloù dioberiant teñvalet"/>
<Item id="6110" name="Barrenn livet war an ivinell oberiant"/>
<Item id="6111" name="Diskouez barrenn ar statudoù"/>
<Item id="6112" name="Diskouez ar bouton serriñ war bep ivinell"/>
<Item id="6113" name="Klikañ doubl evit serriñ un teuliad"/>
<Item id="6118" name="Kuzhat"/>
@ -717,6 +722,7 @@
<Item id="6221" name="Herrek"/>
<Item id="6222" name="Gorrek"/>
<Item id="6224" name="Arventennoù lies-aozañ"/>
<Item id="6225" name="Enaouiñ (Ktrl+Klik diuzañ)"/>
<Item id="6201" name="Stil bevennoù doser"/>
<Item id="6202" name="Simpl"/>
<Item id="6203" name="Bir"/>
@ -856,6 +862,7 @@
</Backup>
<AutoCompletion title="Em-glokaat">
<Item id="6115" name="Em-endantañ"/>
<Item id="6807" name="Em-glokaat"/>
<Item id="6808" name="Enaouiñ an em-glokaat war bep enmont"/>
<Item id="6809" name="Arc'hweladur klokat"/>
@ -917,6 +924,7 @@
<Element name="Enaouiñ evit an holl restroù digoret"/>
<Element name="Lazhañ"/>
</ComboBox>
<Item id="6308" name="Bihanaat e barrenn ar c'hemennoù"/>
<Item id="6312" name="Em-diguzhadur ar statudoù restr"/>
<Item id="6313" name="Hizivaat hep trouz ebet"/>
<Item id="6318" name="Arventennoù al liammoù klikus"/>
@ -1225,6 +1233,7 @@ Klask en holl restroù paneve exe, obj &amp;&amp; log:
<finder-copy value="Eilañ"/>
<finder-select-all value="Diuzañ pep-tra"/>
<finder-clear-all value="Diverkañ pep-tra"/>
<finder-open-all value="Digeriñ pep-tra"/>
<common-ok value="Mat eo"/>
<common-cancel value="Nullañ"/>
<common-name value="Anv: "/>

View File

@ -3,7 +3,7 @@
|
| Translators:.....: 2014yyyy Rusi Dimitrov;
| 20072012 Milen Metev (Tragedy);
| Last revision:...: 02.08.2025 by Rusi Dimitrov <npp[at]rdd.anonaddy.com>
| Last revision:...: 06.02.2024 by Rusi Dimitrov <npp[at]rdd.anonaddy.com>
|
\========================================================================== -->
<NotepadPlus>
@ -115,7 +115,6 @@
<Item id="41004" name="Затваряне на в&amp;сички"/>
<!-- Подменю "Затваряне на разделите" -->
<Item id="41005" name="Всички, без текущия"/>
<Item id="41026" name="Всички, без закачените"/>
<Item id="41009" name="Всички отляво"/>
<Item id="41018" name="Всички отдясно"/>
<Item id="41024" name="Всички непроменени"/>
@ -179,13 +178,11 @@
<Item id="42078" name="Произволно подреждане на редове"/>
<Item id="42059" name="Подреждане по възходящ ред"/>
<Item id="42080" name="Подреждане по възходящ ред (без регистър)"/>
<Item id="42100" name="Подреждане по възходящ ред според езика"/>
<Item id="42061" name="Възходящо подреждане като цели числа"/>
<Item id="42063" name="Възходящо подреждане като десетични знаци (запетая)"/>
<Item id="42065" name="Възходящо подреждане като десетични знаци (точка)"/>
<Item id="42060" name="Подреждане по низходящ ред"/>
<Item id="42081" name="Подреждане по низходящ ред (без регистър)"/>
<Item id="42101" name="Подреждане по низходящ ред според езика"/>
<Item id="42062" name="Низходящо подреждане като цели числа"/>
<Item id="42064" name="Низходящо подреждане като десетични знаци (запетая)"/>
<Item id="42066" name="Низходящо подреждане като десетични знаци (точка)"/>
@ -243,8 +240,8 @@
<Item id="42034" name="Колонен редактор..."/>
<Item id="42051" name="Панел със знаци"/>
<Item id="42052" name="История на системния буфер"/>
<Item id="42028" name="Само за четене в Notepad++"/>
<Item id="42033" name="Атрибут &quot;само за четене&quot; в Windows"/>
<Item id="42028" name="Само за четене"/>
<Item id="42033" name="Премахване на &quot;Само за четене&quot;"/>
<!-- Меню "Търсене" -->
<Item id="43001" name="&amp;Търсене..."/>
<Item id="43013" name="Търсене във &amp;файлове..."/>
@ -261,7 +258,7 @@
<Item id="43047" name="Предходен резултат от търсене"/>
<Item id="43004" name="&amp;Отиване на..."/>
<Item id="43009" name="Отиване до съответстващата скоба"/>
<Item id="43053" name="Маркиране на всичко между {}, [] или ()"/>
<Item id="43053" name="Маркиране на всичко между скобите"/>
<Item id="43054" name="&amp;Маркиране..."/>
<!-- Подменю "История на промените" -->
<Item id="43067" name="Следваща промяна"/>
@ -413,7 +410,6 @@
<Item id="45053" name="OEM 860: Португалски"/>
<Item id="45056" name="OEM 863: Френски"/>
<!-- Меню "Синтаксис" -->
<Item id="46016" name="Няма (обикновен текст)"/>
<Item id="46250" name="Дефиниране на синтаксис..."/>
<Item id="46300" name="Отваряне на папката със синтаксиси..."/>
<Item id="46301" name="Notepad++ колекция със синтаксиси"/>
@ -466,8 +462,8 @@
<Item id="11005" name="Път Z-A"/>
<Item id="11006" name="Тип A-Z"/>
<Item id="11007" name="Тип Z-A"/>
<Item id="11008" name="Дължина на съдържанието във възходящ ред"/>
<Item id="11009" name="Дължина на съдържанието в низходящ ред"/>
<Item id="11008" name="Размер по-малък към по-голям"/>
<Item id="11009" name="Размер по-голям към по-малък"/>
<!-- Меню "?" -->
<Item id="47010" name="Параметри на командния ред..."/>
<Item id="47001" name="Notepad++ домашна страница"/>
@ -490,10 +486,8 @@
<TabBar>
<Item CMDID="41003" name="Затваряне"/>
<Item CMDID="0" name="Затваряне на раздели"/>
<Item CMDID="44048" name="Закачване на раздела" alternativeName="Откачване на раздела"/>
<!-- Подменю "Затваряне на раздели" -->
<Item CMDID="41005" name="Затваряне на всички без този"/>
<Item CMDID="41026" name="Затваряне на всички без закачените"/>
<Item CMDID="41009" name="Затваряне на всички отляво"/>
<Item CMDID="41018" name="Затваряне на всички отдясно"/>
<Item CMDID="41024" name="Затваряне на всички непроменени"/>
@ -511,8 +505,8 @@
<Item CMDID="41016" name="Преместване в кошчето"/>
<Item CMDID="41014" name="Презареждане"/>
<Item CMDID="41010" name="Печат..."/>
<Item CMDID="42028" name="Само за четене в Notepad++"/>
<Item CMDID="42033" name="Атрибут &quot;само за четене&quot; в Windows"/>
<Item CMDID="42028" name="Само за четене"/>
<Item CMDID="42033" name="Премахване на &quot;Само за четене&quot;"/>
<Item CMDID="2" name="Копиране в системния буфер"/>
<!-- Подменю "Копиране в системния буфер" -->
<Item CMDID="42029" name="Копиране пълния път на файла"/>
@ -607,6 +601,7 @@
<!-- "Търсене във файлове" -->
<Item id="1655" name="П&amp;апка:"/>
<Item id="1660" name="Замяна във файловете"/>
<Item id="1661" name="Според текущият файл"/>
<Item id="1658" name="Във всички по&amp;дпапки"/>
<Item id="1659" name="В &amp;скрити папки"/>
<!-- "Търсене в проекти" -->
@ -742,7 +737,6 @@
<!-- Настройки по подразбиране -->
<Folder title="Настройки по подразбиране">
<Item id="21105" name="Документация"/>
<Item id="21103" name="Онлайн помощ за дефиниране на езици"/>
<Item id="21101" name="Стил по подразбиране"/>
<Item id="21102" name="Настройки"/>
<Item id="21106" name="&amp;Компактно свиване (и на празни редове)"/>
@ -874,98 +868,67 @@
<!-- Основни -->
<Global title="Основни">
<Item id="6123" name="Език на интерфейса"/>
<Item id="6131" name="Меню"/>
<Item id="6122" name="Скриване (Alt или F10 за показване)"/>
<Item id="6132" name="Скриване на бутоните ▼ ✕"/>
<Item id="6133" name="Лента на състоянието"/>
<Item id="6134" name="Скриване"/>
</Global>
<!-- Лента с инструменти -->
<Toolbar title="Лента с инструменти">
<Item id="6101" name="Лента с инструменти"/>
<Item id="6102" name="Скриване"/>
<Item id="6103" name="Fluent UI: малки икони"/>
<Item id="6104" name="Fluent UI: големи икони"/>
<Item id="6129" name="Fluent UI: малки запълнени"/>
<Item id="6130" name="Fluent UI: големи запълнени"/>
<Item id="6105" name="Стандартни: малки икони"/>
<Item id="6011" name="Оцветяване"/>
<Item id="6012" name="Пълно"/>
<Item id="6013" name="Частично"/>
<Item id="6014" name="Избор на цвят"/>
<Item id="6016" name="Червен"/>
<Item id="6017" name="Зелен"/>
<Item id="6018" name="Син"/>
<Item id="6019" name="Пурпурен"/>
<Item id="6020" name="Синьо-зелен"/>
<Item id="6021" name="Маслинов"/>
<Item id="6022" name="Жълт"/>
<Item id="6015" name="По подразбиране"/>
<Item id="6023" name="Системен акцент"/>
<Item id="6024" name="Потребителски"/>
</Toolbar>
<!-- Лента с отворени раздели -->
<Tabbar title="Лента с отворени раздели">
<Item id="6106" name="Лента с отворени раздели"/>
<Item id="6118" name="Скриване"/>
<Item id="6125" name="Поведение"/>
<Item id="6120" name="Вертикално"/>
<Item id="6119" name="На повече редове"/>
<Item id="6108" name="Заключено (без влачене и пускане)"/>
<Item id="6113" name="Двойно щракване за затваряне"/>
<Item id="6121" name="Изход при затваряне на последният раздел"/>
<Item id="6126" name="Визия и усещане"/>
<Item id="6120" name="Вертикално"/>
<Item id="6107" name="Малък размер"/>
<Item id="6128" name="Алтернативни икони"/>
<Item id="6109" name="Промяна на цвета на неактивните"/>
<Item id="6108" name="Заключено (без влачене и пускане)"/>
<Item id="6109" name="Потъмняване на неактивните"/>
<Item id="6110" name="Цветна лента върху активния"/>
<Item id="6112" name="Бутон за затваряне"/>
<Item id="6115" name="Бутон за закачане"/>
<Item id="6135" name="Бутон само на закачените"/>
<Item id="6111" name="Показване на бутони в неактивните"/>
</Tabbar>
<!-- Редактиране 1 -->
<Scintillas title="Редактиране 1">
<Item id="6112" name="Бутони за затваряне"/>
<Item id="6113" name="Двойно щракане за затваряне"/>
<Item id="6121" name="Изход при затваряне на последният раздел"/>
<Item id="6131" name="Меню"/>
<Item id="6122" name="Скриване на менютата (Alt или F10 за показване)"/>
<Item id="6132" name="Скриване на бутоните ▼ ✕ от лентата с менюта (изисква се рестартиране на Notepad++)"/>
</Global>
<!-- Редактиране -->
<Scintillas title="Редактиране">
<Item id="6651" name="Индикация на текущият ред"/>
<Item id="6652" name="Няма"/>
<Item id="6653" name="Открояващ фон"/>
<Item id="6654" name="Рамка"/>
<Item id="6655" name="Ширина:"/>
<Item id="6252" name="Знаци, които не се печатат"/>
<Item id="6254" name="Съкращение"/>
<Item id="6255" name="Кодова точка"/>
<Item id="6256" name="Цвят по избор"/>
<Item id="6258" name="&amp;Прилагане за C0, C1 и Unicode край на ред"/>
<Item id="6227" name="Пренасяне на нов ред"/>
<Item id="6228" name="Стандартно"/>
<Item id="6229" name="Подравнено"/>
<Item id="6230" name="С отстъп"/>
<Item id="6247" name="Край на ред (CR LF)"/><!-- "(CR LF)" не се превежда -->
<Item id="6248" name="Стандартно"/>
<Item id="6249" name="Обикновен текст"/>
<Item id="6250" name="Цвят по избор"/>
<Item id="6216" name="Текстов курсор"/>
<Item id="6217" name="Ширина:"/>
<Item id="6219" name="Премигване:"/>
<Item id="6221" name="100"/>
<Item id="6222" name="0"/>
<Item id="6227" name="Пренасяне на нов ред"/>
<Item id="6228" name="Стандартно"/>
<Item id="6229" name="Подравнено"/>
<Item id="6230" name="С отстъп"/>
<Item id="6215" name="Заглаждане на шрифта"/>
<Item id="6245" name="Включване на виртуалното пространство"/>
<Item id="6246" name="Превключване на командите за свиване/разгъване на текущото ниво"/>
<Item id="6239" name="Запазване на селекцията при щракане с десен бутон извън нея"/>
<Item id="6214" name="Включване на копиране/изрязване на ред без избиране"/>
<Item id="6225" name="Прилагане на потребителски цвят за преден план на избрания текст"/>
<Item id="6236" name="Превъртане след последният ред"/>
<Item id="6234" name="Без разширени функции за превъртане"/>
<Item id="6214" name="Включване на копиране/изрязване на ред без избиране"/>
</Scintillas>
<!-- Редактиране 2 -->
<Scintillas2 title="Редактиране 2">
<Item id="6521" name="Множествено редактиране"/>
<Item id="6522" name="Включване на множествено редактиране (Ctrl + избор с мишката)"/>
<Item id="6523" name="Включване на избор на колона с множествено редактиране"/>
<Item id="6252" name="Знаци, които не се печатат"/>
<Item id="6260" name="Външен вид"/>
<Item id="6254" name="Съкращение"/>
<Item id="6255" name="Кодова точка"/>
<Item id="6256" name="Цвят по избор"/>
<Item id="6258" name="Прилагане на настройките за външния вид за C0, C1 и Unicode край на ред"/>
<Item id="6259" name="Предотвратяване въвеждането на контролен символ (код C0) в документа"/>
<Item id="6247" name="Край на ред (CR LF)"/><!-- "(CR LF)" не се превежда -->
<Item id="6248" name="Стандартно"/>
<Item id="6249" name="Обикновен текст"/>
<Item id="6250" name="Цвят по избор"/>
</Scintillas2>
<!-- Тъмен режим -->
<DarkMode title="Тъмен режим">
<Item id="7101" name="Включване на тъмен режим"/>
<Item id="7131" name="Светъл режим"/>
<Item id="7132" name="Тъмен режим"/>
<Item id="7133" name="Използване на системните настройки"/>
@ -978,10 +941,10 @@
<Item id="7108" name="Синьо-зелен"/>
<Item id="7109" name="Маслинов"/>
<Item id="7115" name="Цветове по избор"/>
<Item id="7116" name="Фон за съдържанието"/>
<Item id="7117" name="Избран елемент"/>
<Item id="7118" name="Фон за управлението"/>
<Item id="7119" name="Фон за диалозите"/>
<Item id="7116" name="Най-горе"/>
<Item id="7117" name="Избрано меню"/>
<Item id="7118" name="Активно"/>
<Item id="7119" name="Основа"/>
<Item id="7120" name="Грешка"/>
<Item id="7121" name="Текст"/>
<Item id="7122" name="По-тъмен текст"/>
@ -1003,10 +966,9 @@
<Item id="6231" name="Рамка на прозореца"/>
<Item id="6235" name="Без ръб"/>
<Item id="6211" name="Настройки на вертикална граница"/>
<Item id="6237" name="Добавяне на вертикална граница чрез задаване на броя колони с десетично число.
Може да се зададат няколко такива граници, като се използва интервал за разделител между различните числа."/>
<Item id="6213" name="Фонов режим"/>
<Item id="6295" name="История на промените"/>
<Item id="6223" name="Показване в полето"/>
<Item id="6296" name="Показване в текста"/>
<Item id="6291" name="Номера на редове"/>
<Item id="6206" name="Показване"/>
<Item id="6292" name="Динамична ширина"/>
@ -1015,6 +977,7 @@
<Item id="6209" name="Отляво"/>
<Item id="6210" name="Отдясно"/>
<Item id="6212" name="Без разсейване"/>
<Item id="6223" name="Показване история на промените"/>
<Item id="6207" name="Показване на отметки"/>
</MarginsBorderEdge>
<!-- Нов документ -->
@ -1033,7 +996,6 @@
<Item id="6410" name="UTF-16 Little Endian BOM"/>
<Item id="6411" name="Основен синтаксис:"/>
<Item id="6432" name="Винаги да се отваря нов документ в допълнение при стартиране"/>
<Item id="6433" name="Използване на първия ред на документа като име на неозаглавен раздел"/>
</NewDoc>
<!-- Път по подразбиране -->
<DefaultDir title="Път по подразбиране">
@ -1053,46 +1015,36 @@
<Item id="6426" name="Пълен път с името на файла"/>
<Item id="6427" name="Задаване на макс. дължина:"/>
</RecentFilesHistory>
<!-- Файлови асоциации -->
<!-- Асоцииране -->
<FileAssoc title="Файлови асоциации">
<Item id="4009" name="Поддържани"/>
<Item id="4010" name="Регистрирани"/>
<Item id="4008" name="За да използвате тази функция, рестартирайте Notepad++ с администраторски права"/>
</FileAssoc>
<!-- Синтаксис -->
<!-- Синтаксис и табулация-->
<Language title="Синтаксис">
<Item id="6508" name="Настройки на меню синтаксис"/>
<Item id="6507" name="Компактно меню"/>
<Item id="6505" name="Налични"/>
<Item id="6506" name="Изключени"/>
<Item id="6301" name="Настройки на табулация"/>
<Item id="6303" name="Размер: "/>
<Item id="6302" name="Замяна с интервали"/>
<Item id="6510" name="Стандартна стойност"/>
<Item id="6335" name="Обратно наклонена черта като превключващ знак за SQL"/>
</Language>
<!-- Отстъп -->
<Indentation title="Отстъп">
<Item id="6301" name="Настройки на отстъп"/>
<Item id="6510" name="Стандартна стойност"/>
<Item id="6303" name="Размер: "/>
<Item id="6310" name="Отстъп чрез:"/>
<Item id="6311" name="Знак за табулация"/>
<Item id="6302" name="Символ за интервали"/>
<Item id="6512" name="Клавишът Backspace премахва отстъп вместо единичен интервал"/>
<Item id="7161" name="Авто-отстъп"/>
<Item id="7162" name="Без"/>
<Item id="7163" name="Основен"/>
<Item id="7164" name="Разширен"/>
</Indentation>
<!-- Открояване -->
<Highlighting title="Открояване">
<Item id="6351" name="Открояване на всички избрани"/>
<Item id="6352" name="Главни / малки букви"/>
<Item id="6353" name="Само цели думи"/>
<Item id="6333" name="Интелигентно открояване"/>
<Item id="6326" name="Включено"/>
<Item id="6340" name="Открояване и в съседния изглед"/>
<Item id="6329" name="Открояване на съвпадащи маркирания"/>
<Item id="6327" name="Включено"/>
<Item id="6328" name="Открояване на маркирани атрибути"/>
<Item id="6330" name="Открояване на comment/php/asp зона"/>
<Item id="6333" name="Интелигентно открояване"/>
<Item id="6326" name="Включено"/>
<Item id="6340" name="Открояване и в съседния изглед"/>
<Item id="6354" name="Съвпадение"/>
<Item id="6332" name="Съвпадане с буквения регистър"/>
<Item id="6338" name="Само цели думи"/>
@ -1116,7 +1068,7 @@
<ComboBox id="6724">
<Element name="Пълен път на файла"/>
<Element name="Име на файла"/>
<Element name="Директория на файла"/>
<Element name="Дир. на файла"/>
<Element name="Страница"/>
<Element name="Кратка дата"/>
<Element name="Дълга дата"/>
@ -1141,7 +1093,6 @@
<Searching title="Търсене">
<Item id="6907" name="Когато прозорецът за &quot;Търсене&quot; е извикан"/>
<Item id="6910" name="Минимален размер за авто-проверка на &quot;В избраното&quot;"/>
<Item id="6913" name="Попълване на полето за папка при търсене във файлове, на базата на активния файл"/>
<Item id="6908" name="Попълване на полето за търсене с избрания текст"/>
<Item id="6909" name="Избиране на думата под курсора, когато не е избрано нищо"/>
<Item id="6902" name="Равноширок шрифт в диалога за търсене (изисква се рестартиране на Notepad++)"/>
@ -1155,7 +1106,7 @@
<Item id="6817" name="Снимка на сесията и периодично резервно копиране"/>
<Item id="6309" name="Запомняне на текущата сесия за следващо стартиране"/>
<Item id="6818" name="Включване на снимка на сесията и периодичното резервно копиране"/>
<Item id="6819" name="Създаване на резервно копие при промяна на всеки"/>
<Item id="6819" name="Копие на всеки"/>
<Item id="6821" name="секунди"/>
<Item id="6822" name="в папка:"/>
<Item id="6825" name="Запомняне на недостъпни файлове от предишна сесия"/>
@ -1167,7 +1118,7 @@
<Item id="6803" name="Папка:"/>
</Backup>
<!-- Автоматично завършване -->
<AutoCompletion title="Автоматично завършване">
<AutoCompletion title="Авто-завършване">
<Item id="6807" name="Автоматично завършване"/>
<Item id="6808" name="Включено"/>
<Item id="6809" name="Завършване на функции"/>
@ -1188,14 +1139,15 @@
<Item id="6860" name="Двойка #1:"/>
<Item id="6863" name="Двойка #2:"/>
<Item id="6866" name="Двойка #3:"/>
<Item id="6115" name="Автоматичен отстъп"/>
</AutoCompletion>
<!-- Прозорци и дата -->
<MultiInstance title="Прозорци и дата">
<!-- Прозорци -->
<Item id="6151" name="Настройки за отваряне *"/>
<Item id="6154" name="По подразбиране (един прозорец)"/>
<Item id="6153" name="Винаги в отделен прозорец"/>
<Item id="6152" name="Отваряне на сесия в нов прозорец (и автоматично запазване при изход)"/>
<Item id="6153" name="Винаги в отделен прозорец"/>
<Item id="6154" name="По подразбиране (един прозорец)"/>
<Item id="6155" name="* Изисква се рестартиране на Notepad++"/>
<!-- Дата -->
<Item id="6171" name="Персонализиране на вмъкване на дата и час"/>
@ -1215,14 +1167,14 @@
</MultiInstance>
<!-- Разделител -->
<Delimiter title="Разделител">
<Item id="6161" name="Списък със знаци"/>
<Item id="6162" name="Използване на стандартния списък със знаци както е"/>
<Item id="6163" name="Добавяне на знаци като част от дума
(не избирайте, освен ако не знаете какво правите)"/>
<Item id="6251" name="Настройки на разделител (Ctrl + двойно щракане с мишката)"/>
<Item id="6252" name="Отваряне"/>
<Item id="6255" name="Затваряне"/>
<Item id="6256" name="На няколко реда"/>
<Item id="6161" name="Списък със знаци"/>
<Item id="6162" name="Използване на стандартния списък със знаци както е"/>
<Item id="6163" name="Добавяне на знаци като част от дума
(не избирайте, освен ако не знаете какво правите)"/>
<Item id="6257" name="бла бла бла бла"/>
<Item id="6258" name="бла бла бла бла бла бла бла бла бла"/>
</Delimiter>
@ -1231,7 +1183,7 @@
<Item id="7141" name="Ограничение за големи файлове"/>
<Item id="7143" name="Включване на ограничението за големи файлове (без открояване на синтаксис)"/>
<Item id="7144" name="Задаване на размер за голям файл:"/>
<Item id="7146" name="MB (1 2046)"/>
<Item id="7146" name="MB (1 4096)"/>
<Item id="7150" name="Глобално деактивиране на &quot;На повече редове&quot;"/>
<Item id="7148" name="Разрешаване на &quot;Автоматично завършване&quot;"/>
<Item id="7149" name="Разрешаване на &quot;Интелигентно открояване&quot;"/>
@ -1265,36 +1217,18 @@
<MISC title="Разни">
<Item id="6312" name="Авто-проверка за състоянието на файла"/>
<ComboBox id="6347">
<Element name="Включено за текущия файл"/>
<Element name="Включено"/>
<Element name="Включено за всички раздели"/>
<Element name="Изключено"/>
</ComboBox>
<Item id="6313" name="Тихо обновяване"/>
<Item id="6325" name="Превъртане до последния ред"/>
<ComboBox id="6307">
<Element name="Без действие"/>
<Element name="Минимизиране"/>
<Element name="Затваряне"/>
<Element name="Минимизиране и затваряне"/>
</ComboBox>
<Item id="6308" name="в системната област"/>
<ComboBox id="6362">
<Element name="GDI (най-съвместим)"/>
<Element name="DirectWrite (по подразбиране)"/>
<Element name="DirectWrite (запазване на рамки)"/>
<Element name="DirectWrite (рисуване в GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<Item id="6363" name="режим на изобразяване"/>
<Item id="6365" name="Авто-обновяване:"/>
<ComboBox id="6364">
<Element name="Изключено"/>
<Element name="При стартиране на Notepad++"/>
<Element name="При изход от Notepad++"/>
</ComboBox>
<Item id="6323" name="Автоматично обновяване на Notepad++"/>
<Item id="6360" name="Изключване на всички звуци"/>
<Item id="6334" name="Автоматично определяне кодировката на знаците"/>
<Item id="6308" name="Намаляване в системната област"/>
<Item id="6331" name="Показване само името на файла в заглавната лента"/>
<Item id="6349" name="Използване на DirectWrite за изобразяване на текст (изисква се рестартиране на Notepad++)"/>
<Item id="6361" name="Диалогов прозорец за потвърждение при &quot;Запис на всички&quot;"/>
<Item id="6324" name="Превключване между раздели (Ctrl + Tab)"/>
<Item id="6114" name="Включено"/>
@ -1318,25 +1252,24 @@
<Item id="2212" name="Цвят на стила"/>
<Item id="2206" name="Цвят на шрифта"/>
<Item id="2207" name="Фон на шрифта"/>
<Item id="2226" name="Наложен цвят на текста за вс. стилове"/>
<Item id="2227" name="Наложен цвят на фона за вс. стилове"/>
<Item id="2226" name="Глобален цвят на текста"/>
<Item id="2227" name="Глобален цвят на фона"/>
<Item id="2213" name="Стил на шрифта"/>
<Item id="2208" name="Име:"/>
<Item id="2209" name="Размер:"/>
<Item id="2204" name="Получер"/>
<Item id="2205" name="Курсив"/>
<Item id="2218" name="Подчертан"/>
<Item id="2228" name="Наложен шрифт за всички стилове"/>
<Item id="2229" name="Наложен размер на шрифта за вс. стилове"/>
<Item id="2230" name="Наложен получер шрифт за вс. стилове"/>
<Item id="2231" name="Наложен курсив шрифт за вс. стилове"/>
<Item id="2232" name="Наложено подчертаване за вс. стилове"/>
<Item id="2228" name="Глобален шрифт"/>
<Item id="2229" name="Глобален размер на шрифта"/>
<Item id="2230" name="Глобален получер шрифт"/>
<Item id="2231" name="Глобален курсив шрифт"/>
<Item id="2232" name="Глобален подчертан шрифт"/>
<Item id="2214" name="По подразбиране"/>
<Item id="2216" name="Потребителско"/>
<Item id="2219" name="Ключови думи по подразбиране"/>
<Item id="2221" name="Потребителски ключови думи"/>
<Item id="2234" name="Отиване в настройките"/>
<Item id="2235" name="Какво е Global override?"/>
</SubDialog>
</StyleConfig>
<!-- "Бързи клавиши..." -->
@ -1473,8 +1406,8 @@
<Item id="11005" name="Подреждане по път Z-A"/>
<Item id="11006" name="Подреждане по тип A-Z"/>
<Item id="11007" name="Подреждане по тип Z-A"/>
<Item id="11008" name="Подреждане по дължина на съдържанието във възходящ ред"/>
<Item id="11009" name="Подреждане по дължина на съдържанието в низходящ ред"/>
<Item id="11008" name="Подреждане по размер по-малък към по-голям"/>
<Item id="11009" name="Подреждане по размер по-голям към по-малък"/>
</MainCommandNames>
</ShortcutMapper>
<!-- "Бързи клавиши" - "Промяна" -->
@ -1574,10 +1507,6 @@
<Item id="7004" name="&amp;Подреждане"/>
<Item id="2" name="&amp;Добре"/>
</Window>
<DebugInfo title="Инфо за отстраняване на грешки">
<Item id="1752" name="&amp;Копиране на инфото в сист. буфер"/>
<Item id="1" name="Добре"/>
</DebugInfo>
</Dialog>
<!-- Панели -->
<!-- Меню "Редактиране" - "Панел със знаци" -->
@ -1667,12 +1596,13 @@
<!-- Меню "Файл" прозорци за запазване-->
<session-save-folder-as-workspace value="&amp;Запис на &quot;Директория като работно място&quot;"/>
<file-save-assign-type value="&amp;Добавяне на разширение"/>
<file-rename-title value="Преименуване"/>
<!-- Меню "Търсене" -->
<!-- "Търсене", "Замяна", "Търсене във файлове", "Търсене в проекти", "Маркиране" -->
<shift-change-direction-tip value="Търсене в обратна посока чрез Shift+Enter"/>
<two-find-buttons-tip value="Режим за търсене с два бутона"/>
<find-status-top-reached value="Търсене: Достигнато е началото на документа, намерено е първото повторение от края."/>
<find-status-end-reached value="Търсене: Достигнат е краят на документа, намерено е първото повторение от началото."/>
<find-status-top-reached value="Търсене: Намерено е първото повторение от краят. Началото на документа е достигнато."/>
<find-status-end-reached value="Търсене: Намерено е първото повторение от началото. Краят на документа е достигнат."/>
<find-status-invalid-re value="Търсене: Неправилен регулярен израз"/>
<find-status-search-failed value="Търсене: Търсенето е неуспешно"/>
<find-status-cannot-find value="Търсене: Текстът &quot;$STR_REPLACE$&quot; не може да бъде намерен"/>
@ -1683,14 +1613,14 @@
<find-status-replaceinopenedfiles-nb-replaced value="Замяна в отворените файлове: Заменени са $INT_REPLACE$ повторения"/>
<find-status-replaceall-1-replaced value="Замяна на всичко: Заменено е 1 повторение"/>
<find-status-replaceall-nb-replaced value="Замяна на всичко: Заменени са $INT_REPLACE$ повторения"/>
<find-status-replaceall-readonly value="Замяна на всичко: Текстът не може да бъде заменен. Текущият документ е само за четене."/>
<find-status-replace-end-reached value="Замяна: Достигнат е краят на документа, започване от началото"/>
<find-status-replace-top-reached value="Замяна: Достигнато е началото на документа, започване от края"/>
<find-status-replaced-next-found value="Замяна: Заменено е 1 повторение. Намерено е следващото повторение."/>
<find-status-replaceall-readonly value="Замяна на всичко: Текстът не може да бъде заменен. Текущият документ е само за четене"/>
<find-status-replace-end-reached value="Замяна: Заменено е първото повторение от началото. Краят на документа е достигнат"/>
<find-status-replace-top-reached value="Замяна: Заменено е първото повторение от краят. Началото на документа е достигнато"/>
<find-status-replaced-next-found value="Замяна: Заменено е 1 повторение. Намерено е следващото повторение"/>
<find-status-replaced-without-continuing value="Замяна: Заменено е 1 повторение."/>
<find-status-replaced-next-not-found value="Замяна: Заменено е 1 повторение. Не бяха намерени повече повторения."/>
<find-status-replaced-next-not-found value="Замяна: Заменено е 1 повторение. Не бяха намерени повече повторения"/>
<find-status-replace-not-found value="Замяна: Не е намерено повторение"/>
<find-status-replace-readonly value="Замяна: Текстът не може да бъде заменен. Текущият документ е само за четене."/>
<find-status-replace-readonly value="Замяна: Текстът не може да бъде заменен. Текущият документ е само за четене"/>
<find-status-mark-1-match value="Маркиране: 1 повторение"/>
<find-status-mark-nb-matches value="Маркиране: $INT_REPLACE$ повторения"/>
<find-status-count-1-match value="Брой повторения: 1"/>
@ -1703,11 +1633,12 @@
<finder-close-this value="Затваряне на това търсене"/>
<finder-collapse-all value="Свиване на всички"/>
<finder-uncollapse-all value="Разгъване на всички"/>
<finder-copy-verbatim value="Копиране"/>
<finder-copy value="Копиране на избраните редове"/>
<finder-copy-selected-paths value="Копиране на избран(ите) път(ища)"/>
<finder-copy-paths value="Копиране пълния път на файловете"/>
<finder-select-all value="Избиране на всичко"/>
<finder-clear-all value="Изчистване на всичко"/>
<finder-open-selected-paths value="Отваряне на избран(ите) път(ища)"/>
<finder-open-all value="Отваряне на всички"/>
<finder-wrap-long-lines value="На повече редове"/>
<finder-purge-for-every-search value="Изчистване при всяко търсене"/>
<find-in-files-filter-tip value="Търсене в cpp, cxx, h, hxx и hpp:
@ -1723,7 +1654,6 @@
*.* !+\log*"/>
<!-- "Търсене във файлове" -->
<find-in-files-select-folder value="Избиране на папка, от която да се търси"/>
<find-in-files-dir-from-active-doc-tip value="Попълване на полето за папка на базата на активния документ"/>
<!-- "Намиране на всички" -->
<find-result-caption value="Намерени резултати"/>
<find-result-title value="Търсене на"/>
@ -1740,6 +1670,7 @@
<find-regex-zero-length-match value="повторение с нулева дължина"/>
<find-in-files-progress-title value="Намиране във файлове..."/>
<progress-hits-title value="Повторения:"/>
<progress-cancel-button value="Отказ"/>
<progress-cancel-info value="Отмяна на операцията, моля, изчакайте..."/>
<!-- "Замяна във файловете" -->
<replace-in-files-confirm-title value="Сигурни ли сте?"/>
@ -1770,7 +1701,8 @@
<userdefined-title-rename value="Преименуване на синтаксиса"/>
<common-name value="Име"/>
<!-- Меню "Настройки" - "Предпочитания..." -->
<!-- "Редактиране 2" -->
<!-- "Редактиране" -->
<!-- "(&quot;EOL custom color&quot;)" не се превежда -->
<!-- Знаци, които не се печатат -->
<npcAbbreviation-tip value="Съкращение : име
NBSP : пространство без прекъсване
@ -1800,22 +1732,12 @@ U+FEFF : пространство с нулева ширина без прекъ
Щракнете върху този бутон за да го отворите."/>
<npcCustomColor-tip value="Отиване в &quot;Конфигуриране на стилове&quot;, за избор на цвят по подразбиране за избрани бели и непечатни знаци (&quot;Non-printing characters custom color&quot;)..."/>
<npcIncludeCcUniEol-tip value="Прилагане на настройки за външния вид на непечатни знаци към контролните знаци C0, C1 и Unicode край на ред (следващ ред, разделител на редове и разделител на параграфи)."/>
<!-- Край на ред (CR LF); "(&quot;EOL custom color&quot;)" не се превежда -->
<!-- Край на ред (CR LF) -->
<eol-custom-color-tip value="Отиване в &quot;Конфигуриране на стилове&quot;, за избор на цвят по подразбиране за край на ред (&quot;EOL custom color&quot;)..."/>
<!-- Полета/Граница/Ръб -->
<verticalEdge-tip value="Добавяне на вертикална граница чрез задаване на броя колони с десетично число. Може да се зададат няколко такива граници, като се използва интервал за разделител между различните числа."/>
<!-- "Път по подразбиране" -->
<default-open-save-select-folder value="Избиране на папка като директория по подразбиране"/>
<!-- "Отстъп" -->
<autoIndentBasic-tip value="Гарантира, че отстъпът на текущия ред (т.е. новият ред, създаден с натискане на клавиша Enter) съвпада с отстъпът на предишния ред."/>
<autoIndentAdvanced-tip value="Включване на интелигентен отстъп за &quot;C-подобни&quot; езици и Python. Езиците подобни на &quot;C&quot; включват:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell и JSON.
Ако изберете разширен режим, но не редактирате файлове на гореспоменатите езици, отстъпът ще остане в основен режим."/>
<!-- "Търсене" -->
<searchingInSelThresh-tip value="Брой на избраните символи в зоната за редактиране за автоматично активиране на опцията &quot;В избраното&quot; когато диалога за търсене е активен. Максималната стойност е 1024. Стойност 0 деактивира автоматичната проверка."/>
<max-len-on-search-tip value="Дължината на текста за търсене/замяна е ограничена до $INT_REPLACE$ символа - въведеното може да бъде съкратено и да не бъде запазено за следващата сесия."/>
<max-len-on-save-tip value="Това търсене (> $INT_REPLACE$ символа) няма да бъде запазено за следващата сесия."/>
<!-- "Резервно копие" -->
<backup-select-folder value="Избиране на папка като директория за архивиране"/>
<!-- "Разделител" -->
@ -1850,24 +1772,11 @@ C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell
<contextMenu-styleOneToken value="Открояване само на еднo избранo"/>
<contextMenu-clearStyle value="Изчистване на открояването"/>
<contextMenu-PluginCommands value="Команди от добавки"/>
<!-- "Global override" и "Default Style" не се превеждат -->
<global-override-tip value="Активирането на &quot;Global override&quot; ще замени тези параметри във всички езикови стилове. Това, което вероятно искате, е да използвате настройките в &quot;Default Style&quot; вместо тези."/>
<!-- Други -->
<splitter-rotate-left value="Завъртане наляво"/>
<splitter-rotate-right value="Завъртане надясно"/>
<tab-untitled-string value="нов "/>
<close-panel-tip value="Затваряне"/>
<fileSaveAsCopySaveButton-tip value="Задръжте клавиша Shift, докато натискате Запис, за да отворите копието след запазване."/>
<scintillaRenderingTechnology-tip value="Може да се подобри изобразяването на специални символи или да се решат някои графични проблеми. Изисква се рестартиране на Notepad++."/>
<goto-setting-tip value="Намерете настройките си тук"/>
<!-- Лента на състоянието -->
<statusbar-length-lines value="дълж.: $STR_REPLACE1$ редове: $STR_REPLACE2$"/>
<statusbar-Ln-Col value="Ред: $STR_REPLACE1$ Кол: $STR_REPLACE2$"/>
<statusbar-Pos value="Поз: "/>
<statusbar-Sel value="Изб: "/>
<statusbar-Sel-number value="Изб"/>
<!-- Лента с инструменти -->
<toolbar-accent-tip value="Тази опция прави така, че иконите в лентата с инструменти да следват системния цвят на Windows. Цветът на акцента е цветът на подчертаване, използван в бутоните, границите и плочките на Start менюто в Windows. За да го промените, отидете в Settings &gt; Personalization &gt; Colors (Настройки &gt; Персонализиране &gt; Цветове), след което изберете предпочитания от вас цвят на акцента."/>
</MiscStrings>
<!-- Меню "Изглед" - "Карта на документа" -->
<DocumentMap>
@ -1937,9 +1846,6 @@ C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell
Преместете курсора до желаната позиция за край на блока на колоната и отново изпълнете командата &quot;Начало / Край на маркиране в колонен режим&quot;"/>
<SortingError title="Грешка при подреждане" message="Подреждането на числа не може да се изпълни заради ред $INT_REPLACE$"/>
<SortLocaleMultiple title="Подреждането не е извършено" message="Подреждането на множествен избор не се поддържа."/>
<SortLocaleUnknown title="Неуспешно подреждане" message="Причината за неуспешното подреждане не може да бъде установена."/>
<SortLocaleExcept title="Неуспешно подреждане" message="$STR_REPLACE$"/>
<BufferInvalidWarning title="Неуспешен запис" message="Не може да се запази: Невалиден буфер"/>
<OpenInAdminMode title="Неуспешен запис" message="Файлът може би е защитен и не може да се запази.
Искате ли Notepad++ да бъде стартиран с администраторски права?"/>
@ -2018,11 +1924,6 @@ C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell
Продължаване?"/>
<UDLNewNameError title="UDL грешка" message="Това име вече се използва, задайте друго."/>
<UDLRemoveCurrentLang title="Премахване на синтаксис" message="Сигурни ли сте?"/>
<UDL_importSuccessful title="Потребителски синтаксис" message="Внасянето е успешно."/>
<UDL_importFails title="Потребителски синтаксис" message="Внасянето е неуспешно."/>
<UDL_saveBeforeImport title="Потребителски синтаксис" message="Преди да изнесете, запазете дефинирания синтаксис като щракнете на бутона &quot;Запис като...&quot;."/>
<UDL_exportSuccessful title="Потребителски синтаксис" message="Изнасянето е успешно."/>
<UDL_exportFails title="Потребителски синтаксис" message="Изнасянето е неуспешно."/>
<FindCharRangeValueError title="Проблем със стойност на обхвата" message="Трябва да въведете между 0 и 255."/>
<SCMapperDoDeleteOrNot title="Сигурни ли сте?" message="Сигурни ли сте, че искате този бърз клавиш да бъде изтрит?"/>
<ViewInBrowser title="Преглед на текущия файл в браузър" message="Програмата не може да бъде намерена във вашата система."/>
@ -2066,16 +1967,6 @@ Notepad++ ще направи резервно копие на стария фа
Ако изберете да не създавате заместители или да ги затворите по-късно, сесията ЩЕ БЪДЕ МОДИФИЦИРАНА ПРИ ИЗХОД! Препоръчва се да направите резервно копие на &quot;session.xml&quot; сега."/>
<RTLvsDirectWrite title="Не може да се изпълни посока на текста отдясно наляво" message="Посоката на текста отдясно наляво не е съвместима с DirectWrite режима. Моля, изключете DirectWrite в раздел &quot;Разни&quot; от предпочитаните настройки и рестартирайте Notepad++."/>
<FileMemoryAllocationFailed title="Изключение: Неуспешно разпределение на паметта на файла" message="Вероятно няма достатъчно свободна съседна памет за файла, който се зарежда от Notepad++."/>
<FindRegexBackwardDisabled title="Изключено обратно търсене с регулярен израз" message="По подразбиране търсенето в обратна посока с регулярен израз е изключено поради потенциални неочаквани резултати. За да извършите търсене в обратна посока, отворете диалоговия прозорец &quot;Търсене&quot; и изберете нормален или разширен режим вместо регулярен израз.
Натиснете бутона OK, за да отворите диалоговия прозорец &quot;Търсене&quot; или да зададете фокус върху него.
Ако се нуждаете от функцията за търсене в обратна посока с регулярен израз, направете справка в ръководството на потребителя за инструкции за активирането ѝ."/>
<PrintError title="0" message="Не може да започне отпечатването на документа."/>
<FindAutoChangeOfInSelectionWarning title="Предупреждение при търсене" message="Състоянието на отметката &quot;В избраното&quot; е променено автоматично.
Проверете условието за търсене, преди да извършите действието."/>
<Need2Restart2ShowMenuShortcuts title="Рестартиране на Notepad++" message="Notepad++ трябва да се рестартира, за да се появят бутоните от дясното меню."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Неуспешна промяна на атрибута &quot;само за четене&quot;" message="Стартирайте Notepad++ с администраторски права, за да промените атрибутите на файла."/>
</MessageBox>
</Native-Langue>
</NotepadPlus>

View File

@ -175,6 +175,7 @@ By Hiro5 <groccat at gmail>
<Item id="42051" name="P&amp;anell d'inserció de caràcters"/>
<Item id="42052" name="&amp;Historial del porta-retalls"/>
<Item id="42028" name="M&amp;ode de Només-Lectura"/>
<Item id="42033" name="T&amp;reu marca de Només-Lectura"/>
<Item id="43001" name="&amp;Cerca..."/>
<Item id="43013" name="Cerca als &amp;fitxers..."/>
<Item id="43002" name="Cerca &amp;següent"/>
@ -387,6 +388,7 @@ By Hiro5 <groccat at gmail>
<Item id="1615" name="Marca'ls tots"/>
<Item id="1632" name="A la selecció"/>
<Item id="1633" name="Neteja"/>
<Item id="1661" name="Segueix fitxer actual"/>
<Item id="1658" name="Inclou subdirectoris"/>
<Item id="1659" name="Inclou carpetes ocultes"/>
<Item id="1603" name="Només la paraula sencera"/>
@ -693,6 +695,7 @@ By Hiro5 <groccat at gmail>
<Item id="6001" name="Tanca"/>
<Global title="Global">
<Item id="6123" name="Idioma"/>
<Item id="6101" name="Barra d'eines"/>
<Item id="6102" name="Amaga la barra d'eines"/>
<Item id="6103" name="Icones petites"/>
<Item id="6104" name="Icones grans"/>
@ -700,6 +703,8 @@ By Hiro5 <groccat at gmail>
<Item id="6125" name="Panell de documents"/>
<Item id="6126" name="Mostra"/>
<Item id="6127" name="Desactiva la columna d'extensions"/>
<Item id="6111" name="Mostra barra d'estat"/>
<Item id="6106" name="Barra de pestanyes"/>
<Item id="6118" name="Amaga la barra de pestanyes"/>
<Item id="6119" name="Multilínia"/>
<Item id="6120" name="Vertical"/>
@ -719,6 +724,7 @@ By Hiro5 <groccat at gmail>
<Item id="6221" name="R"/>
<Item id="6222" name="L"/>
<Item id="6224" name="Multi-edició"/>
<Item id="6225" name="Habilita (Ctrl+Ratolí)"/>
<Item id="6201" name="Estil d'agrupació"/>
<Item id="6202" name="Simple"/>
<Item id="6203" name="Triangle"/>
@ -846,6 +852,7 @@ By Hiro5 <groccat at gmail>
<Item id="6803" name="Directori:"/>
</Backup>
<AutoCompletion title="Autocompleció">
<Item id="6115" name="Sagnat automàtic"/>
<Item id="6807" name="Autocompleció"/>
<Item id="6808" name="Permetre Autocompleció a cada entrada"/>
<Item id="6809" name="Autocompleta funcions"/>
@ -899,6 +906,7 @@ By Hiro5 <groccat at gmail>
<Item id="6346" name="Previsualitza en el mapa del document"/>
<Item id="6334" name="Autodetecta codificació de caràcters"/>
<Item id="6314" name="Empra lletra monoespai al diàleg de cerca (demana reiniciar Notepad++)"/>
<Item id="6308" name="Minimitza a la safata del sistema"/>
<Item id="6331" name="Mostra només el nom de fitxer a la barra de títol"/>
<Item id="6323" name="Actualitza Notepad++ automàticament"/>
<Item id="6348" name="No omplis el camp del diàleg de cerca amb la paraula seleccionada"/>
@ -906,6 +914,7 @@ By Hiro5 <groccat at gmail>
<Item id="6319" name="Habilita"/>
<Item id="6320" name="No subratllis"/>
<Item id="6312" name="Autodetecció d'estat del fitxer"/>
<Item id="6307" name="Habilita"/>
<Item id="6313" name="Actualitza en silenci"/>
<Item id="6325" name="Vés a l'última línia després d'actualitzar"/>
<Item id="6322" name="Ext. del fitxer de sessió:"/>
@ -1169,6 +1178,7 @@ By Hiro5 <groccat at gmail>
<finder-copy value="Copia"/>
<finder-select-all value="Selecciona-ho tot"/>
<finder-clear-all value="Neteja-ho tot"/>
<finder-open-all value="Obre-ho tot"/>
<common-ok value="D'acord"/>
<common-cancel value="Cancel·la"/>
<common-name value="Nom: "/>

File diff suppressed because it is too large Load Diff

View File

@ -12,10 +12,7 @@ Additionnal information about Corsican localization:
2. History of Corsican translation for Notepad++:
- Updated in 2025 by Patriccollu di Santa Maria è Sichè: Jan. 15th (v8.7.6), Mar. 1st (v8.7.8), Apr. 20th (v8.8),
June 26th (v8.8.1+), July 24th (v8.8.3+)
- Updated in 2024 by Patriccollu di Santa Maria è Sichè: Feb. 5th (v8.6.3), Mar. 10th (v8.6.5), Apr. 30th (v8.6.6),
June 13th (v8.6.9), Sept. 8th (v8.7), Oct. 21st (v8.7.1), Nov. 20th (v8.7.2), Nov. 29th (v8.7.3)
- Updated in 2024 by Patriccollu di Santa Maria è Sichè: Feb. 5th (v8.6.3)
- Updated in 2023 by Patriccollu di Santa Maria è Sichè: Feb. 24th (v8.5), Mar. 12th (v8.5.1), Mar. 31st (v8.5.2),
May 7th (v8.5.3), June 9th (v8.5.4), Aug. 1st (v8.5.5), Aug. 7th (v8.5.6), Oct. 7th (v8.5.8),
Nov. 15th (v8.5.9), Nov. 22nd (v8.6), Dec. 19th (v8.6.1), Dec. 29th (v8.6.1)
@ -36,7 +33,7 @@ Additionnal information about Corsican localization:
https://github.com/Patriccollu/Lingua_Corsa-Infurmatica/blob/ceppu/Prughjetti/Notepad%2B%2B/Traduzzione.md
-->
<NotepadPlus>
<Native-Langue name="Corsu" filename="corsican.xml" version="8.8.3">
<Native-Langue name="Corsu" filename="corsican.xml" version="8.6.3">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -47,7 +44,7 @@ Additionnal information about Corsican localization:
<Item menuId="view" name="&amp;Affissera"/>
<Item menuId="encoding" name="&amp;Cudificazione"/>
<Item menuId="language" name="&amp;Linguaghju"/>
<Item menuId="settings" name="&amp;Parametri"/>
<Item menuId="settings" name="&amp;Preferenze"/>
<Item menuId="tools" name="A&amp;ttrezzi"/>
<Item menuId="macro" name="Pr&amp;ucedura"/>
<Item menuId="run" name="La&amp;ncià"/>
@ -124,7 +121,6 @@ Additionnal information about Corsican localization:
<Item id="41003" name="&amp;Chjode"/>
<Item id="41004" name="Chjodeli &amp;tutti"/>
<Item id="41005" name="Tuttu chjode FOR di u ducumentu attuale"/>
<Item id="41026" name="Tuttu chjode FOR di i ducumenti fissati"/>
<Item id="41009" name="Tuttu chjode ciò chì hè à manu manca"/>
<Item id="41018" name="Tuttu chjode ciò chì hè à manu diritta"/>
<Item id="41024" name="Tuttu chjode ciò chùn hè micca cambiatu"/>
@ -140,7 +136,7 @@ Additionnal information about Corsican localization:
<Item id="41015" name="Arregistrà una c&amp;opia cù u nome…"/>
<Item id="41016" name="Dispia&amp;zzà in a curbella"/>
<Item id="41017" name="&amp;Rinuminà…"/>
<Item id="41021" name="Risturà u schedariu chjosu pocu fà"/>
<Item id="41021" name="Apre u schedariu chjosu pocu fà"/>
<Item id="41022" name="Apre u cartulare cumè spaziu di tra&amp;vagliu…"/>
<Item id="41023" name="Apre in lappiecazione prede&amp;finita"/>
<Item id="42001" name="&amp;Taglià"/>
@ -168,8 +164,6 @@ Additionnal information about Corsican localization:
<Item id="42060" name="Ordinà e linee da manera lessicugrafica discendente"/>
<Item id="42080" name="Ordinà e linee da manera less. crescente è rispittendu MAIU/minu"/>
<Item id="42081" name="Ordinà e linee da manera less. discendente è rispittendu MAIU/minu"/>
<Item id="42100" name="Ordinà e linee da manera linguistica crescente"/>
<Item id="42101" name="Ordinà e linee da manera linguistica discendente"/>
<Item id="42061" name="Ordinà e linee cumè numeri interi crescente"/>
<Item id="42062" name="Ordinà e linee cumè numeri interi discendente"/>
<Item id="42063" name="Ordinà e linee cumè numeri decimali (virgula) crescente"/>
@ -227,14 +221,14 @@ Additionnal information about Corsican localization:
<Item id="42025" name="&amp;Arregistrà a prucedura arricurdata…"/>
<Item id="42026" name="Testu da diritta à manca"/>
<Item id="42027" name="Testu da manca à diritta"/>
<Item id="42028" name="Lettura sola in Notepad++"/>
<Item id="42028" name="&amp;Lettura sola per u schedariu attuale"/>
<Item id="42029" name="Cupià u chjassu cumpletu di u schedariu attuale"/>
<Item id="42030" name="Cupià u nome di schedariu di u schedariu attuale"/>
<Item id="42031" name="Cupià u chjassu cumpletu di u cartulare attuale"/>
<Item id="42087" name="Cupià tutti i nomi di schedariu"/>
<Item id="42088" name="Cupià tutti i chjassi di schedariu"/>
<Item id="42032" name="&amp;Lancià una prucedura parechje volte…"/>
<Item id="42033" name="Attributu di lettura sola in Windows"/>
<Item id="42033" name="Caccià a marca di lettura sola da u schedariu"/>
<Item id="42035" name="Mette in cummentu a linea sola"/>
<Item id="42036" name="Caccià u cummentu da a linea sola"/>
<Item id="42055" name="Caccià e linee viote"/>
@ -256,7 +250,7 @@ Additionnal information about Corsican localization:
<Item id="43051" name="Caccià e linee senza indetta"/>
<Item id="43050" name="Invertisce lindette"/>
<Item id="43052" name="Circà caratteri in &amp;una stesa…"/>
<Item id="43053" name="Tuttu selezziunà trà {} [] &amp;o ()"/>
<Item id="43053" name="Tuttu selezziunà trà e parentesi chì currisp&amp;ondenu"/>
<Item id="43009" name="A&amp;ndà à a parentesi chì currisponde"/>
<Item id="43010" name="Circà &amp;precedente"/>
<Item id="43011" name="Ricerca &amp;interattiva"/>
@ -389,7 +383,6 @@ Additionnal information about Corsican localization:
<Item id="10005" name="Dispiazzà à u principiu"/>
<Item id="10006" name="Dispiazzà à a fine"/>
<Item id="46001" name="&amp;Cunfiguratore di stilu…"/>
<Item id="46016" name="Nisunu (Testu nurmale)"/>
<Item id="46250" name="Definisce u vostru linguaghju…"/>
<Item id="46300" name="Apre u cartulare di i linguaghji definiti da lutilizatore…"/>
<Item id="46301" name="Cullezzione di i linguaghji Notepad++ definiti da lutilizatore"/>
@ -445,19 +438,17 @@ Additionnal information about Corsican localization:
<Item id="11005" name="Chjassu daccessu da Z à A"/>
<Item id="11006" name="Tipu da A à Z"/>
<Item id="11007" name="Tipu da Z à A"/>
<Item id="11008" name="Lunghezza di cuntenutu crescente"/>
<Item id="11009" name="Lunghezza di cuntenutu discendente"/>
<Item id="11008" name="Dimensione da chjuca à maiò"/>
<Item id="11009" name="Dimensione da maiò à chjuca"/>
</Commands>
</Main>
<TabBar>
<Item CMDID="41003" name="Chjode"/>
<Item CMDID="0" name="Chjode parechje unghjette"/>
<Item CMDID="41005" name="Tuttu chjode FOR di què"/>
<Item CMDID="41026" name="Tuttu chjode FOR di i ducumenti fissati"/>
<Item CMDID="41005" name="Tuttu chjode for di què"/>
<Item CMDID="41009" name="Tuttu chjode ciò chì hè à manu manca"/>
<Item CMDID="41018" name="Tuttu chjode ciò chì hè à manu diritta"/>
<Item CMDID="41024" name="Tuttu chjode ciò chùn hè micca cambiatu"/>
<Item CMDID="44048" name="Fissà lunghjetta" alternativeName="Liberà lunghjetta"/>
<Item CMDID="41006" name="Arregistrà"/>
<Item CMDID="41008" name="Arregistrà cù u nome…"/>
<Item CMDID="1" name="Apre in"/>
@ -469,8 +460,8 @@ Additionnal information about Corsican localization:
<Item CMDID="41016" name="Dispiazzà in a curbella"/>
<Item CMDID="41014" name="Ricaricà"/>
<Item CMDID="41010" name="Stampà…"/>
<Item CMDID="42028" name="Lettura sola in Notepad++"/>
<Item CMDID="42033" name="Attributu di lettura sola in Windows"/>
<Item CMDID="42028" name="Lettura sola"/>
<Item CMDID="42033" name="Caccià a marca di lettura sola da u ducumentu"/>
<Item CMDID="2" name="Cupià in u premepapei"/>
<Item CMDID="42029" name="Cupià u chjassu cumpletu di schedariu"/>
<Item CMDID="42030" name="Cupià u nome di schedariu"/>
@ -533,6 +524,7 @@ Additionnal information about Corsican localization:
<Item id="1626" name="Modu &amp;aumintatu (\n, \r, \t, \0, \x…)"/>
<Item id="1660" name="Rimpiazzà in schedarii"/>
<Item id="1665" name="Rimpiazzà in prughjetti"/>
<Item id="1661" name="Seguità ducum. attuale"/>
<Item id="1662" name="Pannellu di prughjettu 1"/>
<Item id="1663" name="Pannellu di prughjettu 2"/>
<Item id="1664" name="Pannellu di prughjettu 3"/>
@ -567,7 +559,7 @@ Additionnal information about Corsican localization:
<GoToLine title="Andà à…">
<Item id="2007" name="&amp;Linea"/>
<Item id="2008" name="&amp;Spustime"/>
<Item id="2008" name="&amp;Staccamentu"/>
<Item id="1" name="&amp;Andà"/>
<Item id="2" name="Ùn vocu inlocu"/>
<Item id="2004" name="Site quì :"/>
@ -664,16 +656,14 @@ Additionnal information about Corsican localization:
<Item id="2219" name="Parolle chjave predefinite"/>
<Item id="2221" name="Parolle chjave definite da lutilizatore"/>
<Item id="2225" name="Linguaghju :"/>
<Item id="2226" name="Sfurzà u primu pianu à tutti i stili"/>
<Item id="2227" name="Sfurzà u sfondulu à tutti i stili"/>
<Item id="2228" name="Sfurzà a grafia à tutti i stili"/>
<Item id="2229" name="Sfurzà a dimens. di grafia à tutti i stili"/>
<Item id="2230" name="Sfurzà a grafia grassa à tutti i stili"/>
<Item id="2231" name="Sfurzà a grafia cursiva à tutti i stili"/>
<Item id="2232" name="Sfurzà a grafia sottulin. à tutti i stili"/>
<Item id="2234" name="Accede à u parametru"/>
<!-- Don't translate "Global override" -->
<Item id="2235" name="Cosa serà a « Global override » ?"/>
<Item id="2226" name="Permette culore di primu pianu"/>
<Item id="2227" name="Permette culore di fondu"/>
<Item id="2228" name="Permette una grafia glubale"/>
<Item id="2229" name="Permette dimensione di grafia glubale"/>
<Item id="2230" name="Permette stilu di grafia glubale grassu"/>
<Item id="2231" name="Permette stilu di grafia glubale italicu"/>
<Item id="2232" name="Permette stilu di gra. glub. sottulineatu"/>
<Item id="2234" name="Andà à e preferenze"/>
</SubDialog>
</StyleConfig>
@ -701,7 +691,7 @@ Additionnal information about Corsican localization:
<MainCommandNames>
<Item id="41019" name="Apre cù lespluratore u cartulare cuntenendu u schedariu"/>
<Item id="41020" name="Apre cù linvitu di cumanda u cartulare cuntenendu u schedariu"/>
<Item id="41021" name="Risturà u schedariu chjosu pocu fà"/>
<Item id="41021" name="Apre u schedariu chjosu pocu fà"/>
<Item id="45001" name="Cunversione di fine di linea à u furmatu Windows (CR LF)"/>
<Item id="45002" name="Cunversione di fine di linea à u furmatu Unix (LF)"/>
<Item id="45003" name="Cunversione di fine di linea à u furmatu Macintosh (CR)"/>
@ -788,8 +778,8 @@ Additionnal information about Corsican localization:
<Item id="11005" name="Ordinà da chjassu daccessu da Z à A"/>
<Item id="11006" name="Ordinà da tipu da A à Z"/>
<Item id="11007" name="Ordinà da tipu da Z à A"/>
<Item id="11008" name="Ordinà da lunghezza di cuntenutu crescente"/>
<Item id="11009" name="Ordinà da lunghezza di cuntenutu discendente"/>
<Item id="11008" name="Ordinà da dimensione da chjuca à maiò"/>
<Item id="11009" name="Ordinà da dimensione da maiò à chjuca"/>
</MainCommandNames>
</ShortcutMapper>
<ShortcutMapperSubDialg title="Accurtatoghju">
@ -854,7 +844,6 @@ Additionnal information about Corsican localization:
<Folder title="Stilu di piegatura è predefinizione">
<Item id="21101" name="Stilu predefinitu"/>
<Item id="21102" name="Stilu"/>
<Item id="21103" name="Aiutu in linea di i linguaghji definiti da lutilizatore"/>
<Item id="21105" name="Documentazione"/>
<Item id="21106" name="Piegatura &amp;cumpatta (piegà linee viote dinù)"/>
<Item id="21220" name="Stilu 1 di piegatura di codice"/>
@ -978,58 +967,37 @@ Additionnal information about Corsican localization:
<Preference title="Preferenze">
<Item id="6001" name="Chjode"/>
<Global title="Generale">
<Item id="6123" name="Lingua di linterfaccia"/>
<Item id="6131" name="Listinu"/>
<Item id="6122" name="Piattà (impiegà u tastu Alt o F10 per attivà o disattivà)"/>
<Item id="6132" name="Piattà laccurtatoghji di diritta ▼ ✕"/>
<Item id="6133" name="Barra di statu"/>
<Item id="6134" name="Piattà"/>
</Global>
<Toolbar title="Barra dattrezzi">
<Item id="6101" name="Barra dattrezzi"/>
<Item id="6102" name="Piattà"/>
<Item id="6103" name="Fluent UI : icone chjuche"/>
<Item id="6104" name="Fluent UI : icone maiò"/>
<Item id="6129" name="Filled Fluent UI : icone chjuche"/>
<Item id="6130" name="Filled Fluent UI : icone maiò"/>
<Item id="6105" name="Classiche : icone chjuche"/>
<Item id="6011" name="Culurazione"/>
<Item id="6012" name="Sana"/>
<Item id="6013" name="Parziale"/>
<Item id="6014" name="Scelta di culore"/>
<Item id="6015" name="Predefinitu"/>
<Item id="6016" name="Rossu"/>
<Item id="6017" name="Verde"/>
<Item id="6018" name="Turchinu"/>
<Item id="6019" name="Purpura"/>
<Item id="6020" name="Cianu"/>
<Item id="6021" name="Verde aliva"/>
<Item id="6022" name="Ghjallu"/>
<Item id="6023" name="Culore daccentuazione"/>
<Item id="6024" name="Persunalizà"/>
</Toolbar>
<Tabbar title="Barra dunghjette">
<Item id="6106" name="Barra dunghjette"/>
<Item id="6107" name="Riduce"/>
<Item id="6108" name="Bluccà (senza sguillà é depone)"/>
<Item id="6109" name="Cambià u culore di lunghjette inattive"/>
<Item id="6109" name="Abbughjà lunghjette inattive"/>
<Item id="6110" name="Barra culurita nantà lunghjetta attiva"/>
<Item id="6111" name="Affissà i buttoni nantà lunghjette inattive"/>
<Item id="6112" name="Affissà u buttone di chjusura"/>
<Item id="6112" name="Buttonu di chjusura per ogni unghjetta"/>
<Item id="6113" name="Doppiu cliccu per chjode u ducumentu"/>
<Item id="6115" name="Attivà a funzione di fissazione di lunghjetta"/>
<Item id="6135" name="Affissà solu u buttone fissatu"/>
<Item id="6118" name="Piattà"/>
<Item id="6119" name="Multilinea"/>
<Item id="6120" name="Verticale"/>
<Item id="6121" name="Esce quandu lultima unghjetta si chjode"/>
<Item id="6128" name="Icone alternative"/>
<Item id="6125" name="Cumpurtamentu"/>
<Item id="6126" name="Aspettu"/>
</Tabbar>
<Item id="6133" name="Barra di statu"/>
<Item id="6134" name="Piattà"/>
<Scintillas title="Mudificazione 1">
<Item id="6216" name="Parametri di cursore"/>
<Item id="6131" name="Listinu"/>
<Item id="6122" name="Piattà a barra di listinu (impiegà Alt o F10 per attivà o disattivà)"/>
<Item id="6132" name="Piattà laccurtatoghji diritti ▼ ✕ da a barra di listinu (Richiede di rilancià Notepad++)"/>
<Item id="6123" name="Lingua"/>
</Global>
<Scintillas title="Mudificazione">
<Item id="6216" name="Preferenze di cursore"/>
<Item id="6217" name="Larghezza :"/>
<Item id="6219" name="Cinnulamentu :"/>
<Item id="6221" name="10"/><!-- Prestu (3 caratteri à u più) -->
@ -1045,30 +1013,21 @@ Additionnal information about Corsican localization:
<Item id="6239" name="Cunservà a selezzione in casu di cliccu dirittu fora di a selezzione"/>
<Item id="6245" name="Attivà u spaziu virtuale"/>
<Item id="6214" name="Attivà a copia o a tagliatura di linea senza selezzione"/>
<Item id="6225" name="Appiecà u culore persunalizatu à u primu pianu di u testu selezziunatu"/>
<Item id="6651" name="Indicadore di linea currente"/>
<Item id="6652" name="Nisunu"/>
<Item id="6653" name="Culurisce u sfondulu"/>
<Item id="6654" name="Quadru"/>
<Item id="6655" name="Larghezza :"/>
</Scintillas>
<Scintillas2 title="Mudificazione 2">
<Item id="6521" name="Mudificazione multiple"/>
<Item id="6522" name="Attivà a mudificazione multiple (Ctrl+cliccu/selez. cù topu)"/>
<Item id="6523" name="Attivà a selezzione di culonna versu a mudificazione multiple"/>
<Item id="6247" name="Fine di linea (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Predefinitu"/>
<Item id="6249" name="Testu in chjaru"/>
<Item id="6250" name="Culore persunalizatu"/>
<Item id="6252" name="Caratteri nonstampevule"/>
<Item id="6260" name="Apparenza"/>
<Item id="6254" name="Abbreviamentu"/>
<Item id="6255" name="Puntu di codice"/>
<Item id="6256" name="Culore persunalizatu"/>
<Item id="6258" name="Appiecà i parametri dApparenza à C0, C1 è e fine di linea Unicode"/>
<Item id="6259" name="Impedisce a stampittera di caratteru di cuntrollu (codice C0) in u ducumentu"/>
</Scintillas2>
<Item id="6258" name="Appiecà à C0, C1 è e fine di linea Unicode"/>
</Scintillas>
<DarkMode title="Modu scuru">
<Item id="7131" name="Modu chjaru"/>
@ -1082,10 +1041,10 @@ Additionnal information about Corsican localization:
<Item id="7108" name="Cianu"/>
<Item id="7109" name="Aliva"/>
<Item id="7115" name="Persunalizatu"/>
<Item id="7116" name="Sfondulu di cuntenutu"/>
<Item id="7117" name="Messa in evidenza"/>
<Item id="7118" name="Sfondulu di cuntrollu"/>
<Item id="7119" name="Sfondulu di dialogu"/>
<Item id="7116" name="Altu"/>
<Item id="7117" name="Listinu di messa in evidenza"/>
<Item id="7118" name="Attivu"/>
<Item id="7119" name="Principale"/>
<Item id="7120" name="Sbagliu"/>
<Item id="7121" name="Testu"/>
<Item id="7122" name="Testu più oscuru"/>
@ -1110,11 +1069,11 @@ Additionnal information about Corsican localization:
<Item id="6292" name="Larghezza dinamica"/>
<Item id="6293" name="Larghezza custante"/>
<Item id="6207" name="Affissà a margine di lindetta"/>
<Item id="6295" name="Cronolugia di i cambiamenti"/>
<Item id="6223" name="Affissà in a margine"/>
<Item id="6296" name="Affissà in u testu"/>
<Item id="6223" name="Affissà a cronolugia di i cambiamenti"/>
<Item id="6211" name="Marcatore di culonna"/>
<Item id="6213" name="Culurisce u fondu"/>
<Item id="6237" name="Aghjunghje u vostru marcatore di culonna indichendu a so pusizione cù un numeru sanu.
Pudete definisce parechji marcatori di culonna impieghendu un spaziu per staccà ogni numeru."/>
<Item id="6231" name="Larghezza di bordu"/>
<Item id="6235" name="Nisunu bordu"/>
<Item id="6208" name="Imburrera"/>
@ -1138,7 +1097,6 @@ Additionnal information about Corsican localization:
<Item id="6419" name="Ducumentu novu"/>
<Item id="6420" name="Appiecà à i schedarii ANSI aperti"/>
<Item id="6432" name="Sempre apre un ducumentu novu di più à u lanciu"/>
<Item id="6433" name="Impiegà a prima linea di u ducumentu cumè nome dunghjetta senza titulu"/>
</NewDoc>
<DefaultDir title="Cartulare predefinitu">
@ -1153,29 +1111,18 @@ Additionnal information about Corsican localization:
<Item id="4009" name="Estensioni accettate :"/>
<Item id="4010" name="Estensioni inscritte :"/>
</FileAssoc>
<Language title="Linguaghju">
<Item id="6505" name="Elementi dispunibule"/>
<Item id="6506" name="Elementi piattati"/>
<Item id="6507" name="Cumpattà laffissera di u listinu"/>
<Item id="6508" name="Listinu di i linguaghji affissati"/>
<Item id="6301" name="Definizione di a tabulazione"/>
<Item id="6302" name="Rimpiazzà cù spazii"/>
<Item id="6303" name="Dimensione : "/>
<Item id="6510" name="Impiegà valore predef."/>
<Item id="6335" name="« \ » hè u caratteru di scappamentu per SQL"/>
</Language>
<Indentation title="Indentazione">
<Item id="7161" name="Indentazione autumatica"/>
<Item id="7162" name="Nisuna"/>
<Item id="7163" name="Basica"/>
<Item id="7164" name="Esperta"/>
<Item id="6301" name="Parametri dindentazione"/>
<Item id="6302" name="Caratteru(i) di spaziu"/>
<Item id="6303" name="Dimensione dindentazione :"/>
<Item id="6310" name="Indentazione impieghendu :"/>
<Item id="6311" name="Caratteru di tabulazione"/>
<Item id="6510" name="Impiegà valore predef."/>
<Item id="6512" name="U tastu di ritornu in daretu caccia unindentazione invece di caccià un spaziu unicu"/>
</Indentation>
<Highlighting title="Sopralineamentu">
<Item id="6351" name="Stilizà tutte loccurenze di testu"/>
<Item id="6352" name="Rispettà a cassa (maiuscule è minuscule)"/>
@ -1185,7 +1132,7 @@ Additionnal information about Corsican localization:
<Item id="6354" name="Currispundenza"/>
<Item id="6332" name="Rispettà a cassa (maiuscule è minuscule)"/>
<Item id="6338" name="Parolla sana deve currisponde"/>
<Item id="6339" name="Impiegà i parametri di dialogu di ricerca"/>
<Item id="6339" name="Impiegà e preferenze di dialogu di ricerca"/>
<Item id="6340" name="Sopralineà dinù laltra vista"/>
<Item id="6329" name="Sopralineà letichette chì currispondenu"/>
<Item id="6327" name="Attivà"/>
@ -1200,7 +1147,7 @@ Additionnal information about Corsican localization:
<Item id="6604" name="In&amp;vertisce"/>
<Item id="6605" name="Neru nantà &amp;biancu"/>
<Item id="6606" name="Sen&amp;za culore di fondu"/>
<Item id="6607" name="Parametri di margine (Unita : mm)"/>
<Item id="6607" name="Preferenze di margine (Unita : mm)"/>
<Item id="6612" name="&amp;Manca"/>
<Item id="6613" name="In&amp;sù"/>
<Item id="6614" name="&amp;Diritta"/>
@ -1242,7 +1189,6 @@ Additionnal information about Corsican localization:
<Item id="6908" name="Riempie u campu di ricerca cù u testu selezziunatu"/>
<Item id="6909" name="Selezziunà a parolla sottu à u cursore sè nunda hè selezziunatu"/>
<Item id="6910" name="Dimensione minima per a verificazione autumatica di lozzione « In a selezzione »"/>
<Item id="6913" name="Riempie u campu Cartulare di a ricerca in schedarii secondu à u ducumentu attivu"/>
</Searching>
<RecentFilesHistory title="Schedarii recenti">
@ -1253,13 +1199,13 @@ Additionnal information about Corsican localization:
<Item id="6424" name="In sottulistinu"/>
<Item id="6425" name="Nome di schedariu solu"/>
<Item id="6426" name="Chjassu cumpletu di schedariu"/>
<Item id="6427" name="Persunalizà a lunghezza massima :"/>
<Item id="6427" name="Persunalizà a longhezza massima :"/>
</RecentFilesHistory>
<Backup title="Salvaguardia">
<Item id="6817" name="Fotò di sessione è salvaguardia periodica"/>
<Item id="6818" name="Permette a fotò di sessione è a salvaguardia periodica"/>
<Item id="6819" name="Scruchjà una salvaguardia, in casu di mudificazione, ogni"/>
<Item id="6819" name="Salvaguardia ogni :"/>
<Item id="6821" name="seconde"/>
<Item id="6822" name="Chjassu :"/>
<Item id="6309" name="Arricurdassi di a sessione currente per u prossimu lanciu"/>
@ -1273,6 +1219,7 @@ Additionnal information about Corsican localization:
</Backup>
<AutoCompletion title="Empiimentu autumaticu">
<Item id="6115" name="Indentazione autumatica"/>
<Item id="6807" name="Empiimentu autumaticu"/>
<Item id="6808" name="Attivà stempiimentu à ogni entrata"/>
<Item id="6809" name="Cumpiimentu di funzione"/>
@ -1296,11 +1243,11 @@ Additionnal information about Corsican localization:
</AutoCompletion>
<MultiInstance title="Finestre multiple è data">
<Item id="6151" name="Parametri di e finestre multiple *"/>
<Item id="6151" name="Preferenze di e finestre multiple *"/>
<Item id="6152" name="Apre una sessione in una finestra nova (è arregistralla autumaticamente à lesce)"/>
<Item id="6153" name="Sempre in modu à finestre multiple"/>
<Item id="6154" name="Modu predefinitu (finestra unica)"/>
<Item id="6155" name="* A mudificazione di stu parametru richiede di rilancià Notepad++"/>
<Item id="6155" name="* A mudificazione di sta preferenza richiede di rilancià Notepad++"/>
<Item id="6171" name="Persunalizazione dinserzione di a data è lora"/>
<Item id="6175" name="Invertisce lordine predefinitu di a data è lora (furmatu cortu è longu)"/>
<Item id="6172" name="Furmatu persunalizatu :"/>
@ -1317,7 +1264,7 @@ Additionnal information about Corsican localization:
</MultiInstance>
<Delimiter title="Delimitatore">
<Item id="6251" name="Parametri di selezzione di delimitatore (Ctrl+doppiu cliccu di topu)"/>
<Item id="6251" name="Preferenze di selezzione di delimitatore (Ctrl+doppiu cliccu di topu)"/>
<Item id="6252" name="Principiu"/>
<Item id="6255" name="Fine"/>
<Item id="6256" name="Permette nantà parechje linee"/>
@ -1333,7 +1280,7 @@ Additionnal information about Corsican localization:
<Item id="7141" name="Ristrizzione di i schedarii tamanti"/>
<Item id="7143" name="Attivà a ristrizzione di i schedarii tamanti (senza messa in evidenza di a sintassa)"/>
<Item id="7144" name="Definisce a dimensione dun schedariu tamantu :"/>
<Item id="7146" name="Mo (da 1 à 2046)"/>
<Item id="7146" name="Mo (da 1 à 4096)"/>
<Item id="7147" name="Permette dattivà a currispundenza trà e parentesi"/>
<Item id="7148" name="Permette dattivà di lempiimentu autumaticu"/>
<Item id="7149" name="Permette dattivà u sopralineamentu astutu"/>
@ -1343,10 +1290,10 @@ Additionnal information about Corsican localization:
</Performance>
<Cloud title="Nivulu è liame">
<Item id="6262" name="Parametri di u nivulu"/>
<Item id="6262" name="Preferenze di nivulu"/>
<Item id="6263" name="Senza nivulu"/>
<Item id="6267" name="Definisce quì u chjassu sanu di u vostru nivulu :"/>
<Item id="6318" name="Parametri di cliccu di liame"/>
<Item id="6318" name="Preferenze di cliccu di liame"/>
<Item id="6319" name="Attivà sta funzione"/>
<Item id="6320" name="Ùn micca sottulineà"/>
<Item id="6350" name="Attivà u modu di sopralineamentu sanu per un liame"/>
@ -1366,38 +1313,20 @@ Additionnal information about Corsican localization:
<MISC title="Diversi">
<ComboBox id="6347">
<Element name="Attivà per u schedariu attuale"/>
<Element name="Attivà"/>
<Element name="Attivà per tutti i schedarii aperti"/>
<Element name="Disattivà"/>
</ComboBox>
<ComboBox id="6307">
<Element name="Nisuna azzione in"/>
<Element name="Impuculisce in"/>
<Element name="Chjode in"/>
<Element name="Impuculisce o chjode in"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (u più cumpatibile)"/>
<Element name="DirectWrite (predefinitu)"/>
<Element name="DirectWrite (cunservà e sequenze)"/>
<Element name="DirectWrite (disegnà nantà GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Disattivà"/>
<Element name="Attivà à u lanciu di Notepad++"/>
<Element name="Attivà à lesce di Notepad++"/>
</ComboBox>
<Item id="6308" name="u spaziu di nutificazione di u sistema"/>
<Item id="6363" name="modu di restituzione"/>
<Item id="6365" name="Messa à livellu autumatica :"/>
<Item id="6308" name="Impuculì in u spaziu di nutificazione di u sistema"/>
<Item id="6312" name="Detezione autumatica di statu di schedariu"/>
<Item id="6313" name="Mudificazione senza avertimentu"/>
<Item id="6325" name="Andà à lultima linea dopu a mudificazione"/>
<Item id="6322" name="Estensione di sched. di sessione :"/>
<Item id="6323" name="Attivà u rinnovu autumaticu di Notepad++"/>
<Item id="6324" name="Cambiamentu di ducumentu (Ctrl+Tabul.)"/>
<Item id="6331" name="Affissà solu u nome di schedariu in a barra di titulu"/>
<Item id="6334" name="Detezione autumatica di cudificazione di caratteru"/>
<Item id="6349" name="Impiegà DirectWrite (Puderia amendà a trasfurmazione di i caratteri speziali ; richiede di rilancià Notepad++)"/>
<Item id="6337" name="Estensione di spaziu di travagliu :"/>
<Item id="6114" name="Attivà"/>
<Item id="6117" name="Impiegà a lista MRU recente di schedarii"/>
@ -1473,11 +1402,6 @@ Pudete attivà torna stozzione in u dialogu di e preferenze."/>
<Item id="7" name="&amp;Nò"/>
<Item id="4" name="S&amp;empre sì"/>
</DoSaveAll><!-- HowToReproduce: Check the "Enable Save All confirm dialog" checkbox in Preference->MISC, now click "Save all" -->
<DebugInfo title="Infurmazioni di spannatura">
<Item id="1752" name="&amp;Cupià linfurmazioni in u premepapei"/>
<Item id="1" name="Vai"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
@ -1501,17 +1425,14 @@ Cuntinuà ?"/><!-- HowToReproduce: when you opened file is modified and saved,
<NbFileToOpenImportantWarning title="A quantità di schedarii à apre hè troppu maiò" message="$INT_REPLACE$ schedarii stanu per esse aperti.
Da veru, vulete apreli ?"/><!-- HowToReproduce: Check "Open all files of folder instead of launching Folder as Workspace on folder dropping" in "Default Directory" of Preferences dialog, then drop a folder which contains more then 200 files into Notepad++. -->
<SettingsOnCloudError title="Parametri di u nivulu" message="Pare chì u chjassu di i parametri di u nivulu hè definitu nantà un lettore in
<SettingsOnCloudError title="Preferenze di nivulu" message="Pare chì u chjassu di e preferenze di nivulu hè definitu nantà un lettore in
lettura sola, o in un cartulare chì richiede diritti daccessu di scrittura.
I vostri parametri di u nivulu anu da esse abbandunati. Ci vole à rimette un valore accetevule via u dialogu di Preferenze."/>
E vostre preferenze di nivulu anu da esse abbandunate. Ci vole à rimette un valore accetevule via u dialogu di Preferenze."/>
<FilePathNotFoundWarning title="Apertura di schedariu" message="U schedariu chì voi pruvate dapre ùn esiste micca."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SessionFileInvalidError title="Ùn si pò micca caricà una sessione" message="U schedariu di sessione hè sia alteratu, sia inaccettevule."/><!-- HowToReproduce: Save current session via menu "File -> Save Session...", use another editor to modify the session you saved to make it an invalid xml file. Then load this invalid session via menu "File -> Load Session...". -->
<DroppingFolderAsProjectModeWarning title="Azzione inaccetevule" message="Pudete depone solu schedarii o cartulari ma micca tremindui, perchè site in u modu di dipositu Cartulare cumè spaziu di travagliu.
Ci vole à attivà lozzione « À u depone dun cartulare, apre tutti i schedarii invece dimpiegallu cumè spaziu di travagliu » in a sezzione « Cartulare predefinitu » di e Preferenze per fà què."/>
<SortingError title="Sbagliu di a messa in ordine" message="Impussibule di fà una messa in ordine numerica per via di a linea $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SortLocaleMultiple title="Messa in ordine micca realizata" message="A messa in ordine di parechje selezzioni ùn hè micca accettata."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Fiascu di a messa in ordine" message="Ùn si pò micca determinà a ragione di u fiascu di a messa in ordine."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Fiascu di a messa in ordine" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortingError title="Sbagliu di classificazione" message="Impussibule di fà una classificazione numerica per via di a linea $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<ColumnModeTip title="Minichichja di modu culonna" message="
Ci hè 3 manere di passà à u modu di selezzione da a culonna :
@ -1546,7 +1467,7 @@ Vulete ricaricallu è perde cusì i cambiamenti fatti cù Notepad++ ?"/>
<PrehistoricSystemDetected title="Sistema prestoricu identificatu" message="Pare chì voi impiegate sempre un sistema prestoricu. Per disgrazia, sta funzione funziuneghja solu cù un sistema mudernu."/><!-- HowToReproduce: Launch "Document Map" under Windows XP. -->
<XpUpdaterProblem title="Rinnovu di Notepad++" message="U rinnovu di Notepad++ ùn funziuneghja micca cù XP per via di u so livellu di sicurità à lanticogna.
Vulete andà nantà a pagina di Notepad++ per scaricà lultima versione ?"/><!-- HowToReproduce: Run menu "? -> Update Notepad++" under Windows XP. -->
<GUpProxyConfNeedAdminMode title="Parametri di Proxy" message="Ci vole à rilancià Notepad++ in modu Amministratore per cunfigurà u proxy."/>
<GUpProxyConfNeedAdminMode title="Preferenze di Proxy" message="Ci vole à rilancià Notepad++ in modu Amministratore per cunfigurà u proxy."/>
<DocTooDirtyToMonitor title="Penseru dappustamentu" message="U ducumentu hè brutu. Ci vole à arregistrà a mudificazione nanzu à appustallu."/>
<DocNoExistToMonitor title="Penseru dappustamentu" message="U schedariu deve esiste per esse appustatu."/>
<FileTooBigToOpen title="Penseru di dimensione di schedariu" message="U schedariu hè troppu maiò per esse apertu da Notepad++"/><!-- HowToReproduce: Try to open a 4GB file (it's not easy to reproduce, it depends on your system). -->
@ -1584,13 +1505,8 @@ Vulete cuntinuà ?"/>
<UDLNewNameError title="Sbagliu UDL" message="Stu nome hè impiegatu da un altru linguaghju,
ci vole à dà un altru."/>
<UDLRemoveCurrentLang title="Caccià u linguaghju attuale" message="Site sicuri ?"/>
<UDL_importSuccessful title="Linguaghju definitu da lutilizatore" message="Limpurtazione hè riesciuta."/>
<UDL_importFails title="Linguaghju definitu da lutilizatore" message="Fiascu à limpurtazione."/>
<UDL_saveBeforeImport title="Linguaghju definitu da lutilizatore" message="Prima despurtà, arregistrate a definizione di u vostru linguaghju via un cliccu nantà u buttone « Arregistrà cù u nome… »."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="Linguaghju definitu da lutilizatore" message="Lespurtazione hè riesciuta."/>
<UDL_exportFails title="Linguaghju definitu da lutilizatore" message="Fiascu à lespurtazione."/>
<SCMapperDoDeleteOrNot title="Cunfirmazione" message="Da veru, vulete squassà staccurtatoghju ?"/>
<FindCharRangeValueError title="Penseru di valore di stesa" message="Ci vole à stampittà trà 0 è 255."/> <!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Penseru di valore di stesa" message="Ci vole à stampittà trà 0 è 255."/>
<OpenInAdminMode title="Arregistramentu fiascatu" message="U schedariu ùn pò micca esse arregistratu, forse hè prutettu.
Vulete dimarrà Notepad++ in modu Amministratore ?"/>
<OpenInAdminModeWithoutCloseCurrent title="Arregistramentu fiascatu" message="U schedariu ùn pò micca esse arregistratu, forse hè prutettu.
@ -1626,15 +1542,6 @@ Vulete creà sti spazii riservati per elli ?
NOTA : Sè vo sciglite dùn micca creà i spazii riservati o di chjodeli dopu, u vostru schedariu di sessione serà mudificatu à lesce. Vi ricumandemu di fà subitu una salvaguardia di u vostru schedariu di sessione « session.xml »."/>
<RTLvsDirectWrite title="Ùn si pò lancià a cumanda « Testu da diritta à manca »" message= Testu da diritta à manca » ùn hè micca cumpatibile cù u modu « DirectWrite ». Ci vole à disattivà stu modu in a sezzione « Diversi » di e Preferenze eppò rilancià Notepad++."/>
<FileMemoryAllocationFailed title="Sbagliu : fiascu dattribuzione di memoria" message="Forse ùn ci hè abbastanza memoria quanciana libera per chì u schedariu sia caricatu da Notepad++."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Ricerca RegEx à larritrosa disattivata" message="Di regula, a ricerca RegEx à larritrosa hè disattivata per via di risultati imprevisti pussibule. Per effettuà una ricerca à larritrosa, aprite a finestra di dialogu di ricerca è selezziunate, sia u modu di ricerca nurmale, sia u modu espertu, invece chì lespressione regulare.
Appughjate nantà u buttone Vai per apre a finestra di dialogu di ricerca o piazzateci u puntu fucale.
Sè vo avete bisognu di a funzione di ricerca RegEx à larritrosa, lighjite listruzzioni per attivalla in u manuale di lutilizatore."/>
<PrintError title="0" message="Ùn si pò lancià u ducumentu di stampetta."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Avertimentu di ricerca" message="U statu di lozzione « In a selezzione » hè statu mudificatu autumaticamente.
Ci vole à verificà a cundizione di ricerca prima di fà lazzione."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Notepad++ richiede desse rilanciatu" message="Ci vole à rilancià Notepad++ per affissà laccurtatoghji di u listinu di diritta."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Fiascu di u cambiamentu dattributu di lettura sola di u schedariu" message="Ci vole à lancià Notepad++ in modu Amministratore per cambià lattributi di u schedariu."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Cronolugia di u premepapei"/>
@ -1754,10 +1661,11 @@ Ci vole à verificà a cundizione di ricerca prima di fà lazzione."/> <!-- H
<backup-select-folder value="Selezziunà u cartulare induve arregistrà a salvaguardia"/><!-- HowToReproduce: Settings > Preferences > Backup > [...] -->
<cloud-invalid-warning value="Chjassu inaccettevule."/>
<cloud-restart-warning value="Ci vole à rilancià Notepad++ per piglià in contu stu cambiamentu."/>
<cloud-select-folder value="Selezziunà un cartulare induve Notepad++ leghje è scrive i so parametri"/><!-- HowToReproduce: In "Cloud" section of Preferences dialog, check "Set your cloud location path here: ", then click the button "...". This message is displayed in the "Browse For Folder" dialog. -->
<cloud-select-folder value="Selezziunà un cartulare induve Notepad++ leghje è scrive e so preferenze"/><!-- HowToReproduce: In "Cloud" section of Preferences dialog, check "Set your cloud location path here: ", then click the button "...". This message is displayed in the "Browse For Folder" dialog. -->
<default-open-save-select-folder value="Selezziunà u cartulare chì serà quellu predefinitu"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Impiegà Maiusc+Entre per circà in a direzzione opposta."/>
<two-find-buttons-tip value="Modu di 2 buttoni per circà"/>
<file-rename-title value="Rinuminà"/>
<find-in-files-filter-tip value="Circà tramezu cpp, cxx, h, hxx è hpp :
*.cpp *.cxx *.h *.hxx *.hpp
@ -1770,9 +1678,8 @@ Circà in tutti i schedarii ma esclude i cartulari tests, bin è bin64 :
Circà in tutti i schedarii ma esclude tutti i cartulari è sottucartulari log o logs :
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Selezziunà u cartulare per facci a ricerca"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Riempie u campu Cartulare secondu à u ducumentu attivu"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Circà : U principiu di u ducumentu hè statu toccu, prima occurrenza trova da a fine."/>
<find-status-end-reached value="Circà : A fine di u ducumentu hè stata tocca, prima occurrenza trova da u principiu."/>
<find-status-top-reached value="Circà : 1ᵃ occurrenza trova da a fine. U principiu di u ducumentu hè statu toccu."/>
<find-status-end-reached value="Circà : 1ᵃ occurrenza trova da u principiu. A fine di u ducumentu hè stata tocca."/>
<find-status-replaceinfiles-1-replaced value="Rimpiazzà in schedarii : 1 occurrenza hè stata rimpiazzata"/>
<find-status-replaceinfiles-nb-replaced value="Rimpiazzà in schedarii : $INT_REPLACE$ occurrenze sò state rimpiazzate"/>
<find-status-replaceinopenedfiles-1-replaced value="Rimpiazzà in schedarii aperti : 1 occurrenza hè stata rimpiazzata"/>
@ -1786,8 +1693,8 @@ Circà in tutti i schedarii ma esclude tutti i cartulari è sottucartulari log o
<find-status-replaceall-1-replaced value="Rimpiazzalle tutte : 1 occurrenza hè stata rimpiazzata"/>
<find-status-replaceall-nb-replaced value="Rimpiazzalle tutte : $INT_REPLACE$ occurrenze sò state rimpiazzate"/>
<find-status-replaceall-readonly value="Rimpiazzalle tutte : Ùn si pò rimpiazzà u testu. U ducumentu attuale pò solu si leghje"/>
<find-status-replace-end-reached value="Rimpiazzà : A fine di u ducumentu hè stata tocca, principiatu da laltu."/>
<find-status-replace-top-reached value="Rimpiazzà : U principiu di u ducumentu hè statu toccu, principiatu da u bassu."/>
<find-status-replace-end-reached value="Rimpiazzà : 1ᵃ occurrenza rimpiazzata da u principiu. A fine di u ducumentu hè stata tocca"/>
<find-status-replace-top-reached value="Rimpiazzà : 1ᵃ occurrenza rimpiazzata da a fine. U principiu di u ducumentu hè statu toccu"/>
<find-status-replaced-next-found value="Rimpiazzà : 1 occurrenza hè stata rimpiazzata. A prossima occurrenza trova."/>
<find-status-replaced-without-continuing value="Rimpiazzà : 1 occurrenza hè stata rimpiazzata."/>
<find-status-replaced-next-not-found value="Rimpiazzà : 1 occurrenza hè stata rimpiazzata. Alcuna altra occurrenza trova."/>
@ -1804,9 +1711,11 @@ Circà in tutti i schedarii ma esclude tutti i cartulari è sottucartulari log o
<finder-collapse-all value="Tuttu ripiegà"/>
<finder-uncollapse-all value="Tuttu spiegà"/>
<finder-copy value="Cupià a(e) linea(e) selezziunata(e)"/>
<finder-copy-selected-paths value="Cupià i nomi di chjassu selezziunati"/>
<finder-copy-verbatim value="Cupià"/>
<finder-copy-paths value="Cupià u(i) nome(i) di chjassu"/>
<finder-select-all value="Tuttu selezziunà"/>
<finder-clear-all value="Tuttu viutà"/>
<finder-open-selected-paths value="Apre i nomi di chjassu selezziunati"/>
<finder-open-all value="Tuttu apre"/>
<finder-purge-for-every-search value="Spurgulà per ogni ricerca"/>
<finder-wrap-long-lines value="Ritornu autumaticu à a linea per e linee longhe"/>
<common-ok value="Vai"/>
@ -1831,10 +1740,11 @@ Circà in tutti i schedarii ma esclude tutti i cartulari è sottucartulari log o
<summary-nbsel2 value=" ottetti) in "/>
<summary-nbrange value=" selezzioni"/>
<progress-hits-title value="Occurrenze :"/>
<progress-cancel-button value="Abbandunà"/>
<progress-cancel-info value="Abbandonu di loperazione, aspittate per piacè…"/>
<find-in-files-progress-title value="Prugressione di a ricerca in i schedarii…"/>
<replace-in-files-confirm-title value="Cunfirmazione"/>
<replace-in-files-confirm-directory value="Da veru, vulete rimpiazzà tutte loccurrenze in :"/>
<replace-in-files-confirm-directory value="Vulete rimpiazzà tutte loccurrenze in :"/>
<replace-in-files-confirm-filetype value="Per u(i) tipu(i) di schedariu :"/>
<replace-in-files-progress-title value="Prugressione di u rimpiazzamentu in i schedarii…"/>
<replace-in-projects-confirm-title value="Cunfirmazione"/>
@ -1853,7 +1763,7 @@ Circà in tutti i schedarii ma esclude tutti i cartulari è sottucartulari log o
<find-result-title-info-extra value=" - Modu di filtru di linea : affisseghja solu i risultati filtrati"/>
<find-result-hits value="($INT_REPLACE$ risultati)"/>
<find-result-line-prefix value="Linea"/><!-- Must not begin with space or tab character -->
<find-regex-zero-length-match value="currispundenza di lunghezza à zeru"/>
<find-regex-zero-length-match value="currispundenza di longhezza à zeru"/>
<session-save-folder-as-workspace value="Arregistrà u cartulare cumè spaziu di travagliu"/>
<tab-untitled-string value="novu "/>
<file-save-assign-type value="&amp;Aghjunghje unestensione"/>
@ -1887,36 +1797,9 @@ U+200B : spaziu di larghezza nulla
U+FEFF : spaziu nonspezzevule di larghezza nulla
Per ottene a lista sana, fighjate u Manuale di lutilizatore.
Impiegà u buttone « ? » à diritta per apre u manuale di lutilizatore nantà u situ web."/>
<!-- Don't translate "(&quot;Non-printing characters custom color&quot;)" -->
<npcCustomColor-tip value="Accidite à u Cunfiguratore di stilu per persunalizà u culore predefinitu di i spazii bianchi selezziunati è di i caratteri nonstampevule (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Appiecate i parametri dapparenza di caratteri nonstampevule à i caratteri di cuntrollu C0, C1 è quelli di fine di linea Unicode (linea seguente, separadore di linea è separadore di paragrafu)."/>
<searchingInSelThresh-tip value="Numeru di caratteri selezziunati in larea di mudificazione per cuntrollà autumaticamente lozzione « In a selezzione » quandu u dialogu di ricerca hè attivatu. U valore massimu hè 1024. Definite u valore à 0 per disattivà a verificazione autumatica."/>
<verticalEdge-tip value="Aghjunghjite u vostru marcatore di culonna indichendu a so pusizione cù un numeru interu. Pudete definisce parechji marcatori di culonna impieghendu un spaziu per staccà ogni numeru."/>
<fileSaveAsCopySaveButton-tip value="Mantinite u tastu Maius quandu sappoghja nantà u buttone Arregistà per apre a copia dopu à larregistramentu."/>
<autoIndentBasic-tip value="Assicurassi chì lindentazione di a linea currente (i.e. a linea nova creata da u tastu ENTRÉE) currisponde à lindentazione di a linea precedente."/>
<autoIndentAdvanced-tip value="Attivà lindentazione astuta per i linguaghji di tipu C è Python. I linguaghji di tipu C includenu :
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell è JSON.
Sè vo selezziunate u modu espertu ma ùn mudificate micca i schedarii in i linguaghji mintulati insù, lindentazione sterà in modu basicu."/>
<!-- Don't translate "Global override" and "Default Style" -->
<global-override-tip value="Attivà quì lozzione « Global override » supranerà sti parametri à tutti i stili di tutti i linguaghji di prugrammazione. Preferiscerete di sicuru impiegà piuttostu i parametri « Default Style »"/>
<scintillaRenderingTechnology-tip value="Puderia amendà a trasfurmazione di i caratteri speziali o currege certi prublemi grafichi ; rilancià Notepad++ per piglià in contu i cambiamenti."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="longh : $STR_REPLACE1$ linee : $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Ln : $STR_REPLACE1$ Cul : $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Pus : "/>
<statusbar-Sel value="Sel : "/>
<statusbar-Sel-number value="Sel"/>
<toolbar-accent-tip value="Stozzione permette à licone di a vostra barra dattrezzi daduttà u culore daccentuazione di u sistema Windows. U culore daccentuazione hè u culore di messa in evidenza impiegatu da Windows per i buttoni, i bordi è e musaiche di u listinu « Démarrer ». Per mudificallu, accidite à Parametri &gt; Persunalizà &gt; Culori, eppò selezziunate u vostru culore daccentuazione preferitu."/>
<max-len-on-search-tip value="Solu $INT_REPLACE$ caratteri sò permessi per a lunghezza di u testu di ricerca è di rimpiazzamentu - a vostra stampittera puderia esse truncata è ùn seria micca arregistrata per a prossima sessione."/>
<max-len-on-save-tip value="Sta stampittera di ricerca (> $INT_REPLACE$ caratteri) ùn serà micca arregistrata per a prossima sessione."/>
<goto-setting-tip value="Mudificà u parametru quì"/>
<npcCustomColor-tip value="Accede à u Cunfiguratore di stilu per persunalizà u culore predefinitu di i spazii bianchi selezziunati è di i caratteri nonstampevule (&quot;Non-printing characters custom color&quot;)."/><!-- Don't translate "(&quot;Non-printing characters custom color&quot;)" -->
<npcIncludeCcUniEol-tip value="Appiecà e preferenze dapparenza di caratteri nonstampevule à i caratteri di cuntrollu C0, C1 è quelli di fine di linea Unicode (linea seguente, separadore di linea è separadore di paragrafu)."/>
<searchingInSelThresh-tip value="Numeru di caratteri selezziunati in larea di mudificazione per cuntrollà autumaticamente lozzione « In a selezzione » quandu u dialogu di ricerca hè attivatu. U valore massimu hè 1024. Definisce u valore à 0 per disattivà a verificazione autumatica."/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
- last change: Notepad++ 8.8.4 7/Aug/2025 by Ondřej Müller (mullero@email.cz)
- last change: Notepad++ 8.6.3 14/Feb/2024 by Ondřej Müller (mullero@email.cz)
- N++ Community QA: https://notepad-plus-plus.org/community/topic/87/czech-translations
- contributors: Ondřej Müller (mullero@email.cz), Tomáš Hrouda (gobbet@centrum.cz), Martin Darebný (darBis)
- the most recent version of this file can be downloaded from the project master-branch here: https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/installer/nativeLang/czech.xml
-->
<NotepadPlus>
<Native-Langue name="Čeština" filename="czech.xml" version="8.8.3">
<Native-Langue name="Čeština" filename="czech.xml" version="8.6.3">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -91,7 +91,7 @@
<Item id="41002" name="&amp;Otevřít..."/>
<Item id="41003" name="Zavřít &amp;aktuální"/>
<Item id="41004" name="Za&amp;vřít vše"/>
<Item id="41005" name="Zavřít vše KROMĚ aktuálního"/>
<Item id="41005" name="Zavřít vše KROMĚ aktuálního dokumentu"/>
<Item id="41006" name="&amp;Uložit"/>
<Item id="41007" name="Uložit v&amp;še"/>
<Item id="41008" name="Uložit &amp;jako..."/>
@ -113,7 +113,6 @@
<Item id="41023" name="Otevřít v &amp;implicitním prohlížeči"/>
<Item id="41024" name="Zavřít všechny nezměněné"/>
<Item id="41025" name="Složka jako Pracovní plocha"/>
<Item id="41026" name="Zavřít vše KROMĚ připnutých"/>
<Item id="42001" name="Vyjmou&amp;t"/>
<Item id="42002" name="&amp;Kopírovat"/>
<Item id="42003" name="&amp;Zpět"/>
@ -140,12 +139,12 @@
<Item id="42025" name="U&amp;ložit aktuálně zaznamenané makro"/>
<Item id="42026" name="Směr textu zprava doleva"/>
<Item id="42027" name="Směr textu zleva doprava"/>
<Item id="42028" name="Nastavit kartu dokumentu na 'Pouze pro &amp;čtení'"/>
<Item id="42028" name="Nastavit p&amp;říznak Pouze pro čtení"/>
<Item id="42029" name="Kopírovat název (i s cestou) aktuálního souboru"/>
<Item id="42030" name="Kopírovat název aktuálního souboru"/>
<Item id="42031" name="Kopírovat název (i s cestou) aktuálního adresáře souboru"/>
<Item id="42032" name="Spustit makro více&amp;krát..."/>
<Item id="42033" name="Nastavit soubor dokumentu na 'Pouze pro čtení' (atribut ve &amp;Windows)"/>
<Item id="42033" name="Zrušit p&amp;říznak Pouze pro čtení"/>
<Item id="42034" name="Editor s&amp;loupce..."/>
<Item id="42035" name="Zakomentovat blok"/>
<Item id="42036" name="Odkomentovat blok"/>
@ -212,8 +211,6 @@
<Item id="42097" name="Rozlišovat VELKÁ/malá &amp;&amp; Celá slova"/>
<Item id="42098" name="Vrátit naposledy přidaný vícenásobný výběr"/>
<Item id="42099" name="Přeskočit aktuální &amp;&amp; přejít na další vícenásobný výběr"/>
<Item id="42100" name="Setřídit řádky s přihlédnutím k národnímu prostředí vzestupně"/>
<Item id="42101" name="Setřídit řádky s přihlédnutím k národnímu prostředí sestupně"/>
<Item id="43001" name="&amp;Najít..."/>
<Item id="43002" name="Najít &amp;další"/>
<Item id="43003" name="Nah&amp;radit..."/>
@ -265,7 +262,7 @@
<Item id="43050" name="Inverze záložky"/>
<Item id="43051" name="Odstranit řádky neoznačené záložkami"/>
<Item id="43052" name="Najít znaky z rozsa&amp;hu..."/>
<Item id="43053" name="Vybrat vše &amp;mezi souvisejícími závorkami {}, [] nebo ()"/>
<Item id="43053" name="Vybrat vše &amp;mezi souvisejícími závorkami"/>
<Item id="43054" name="&amp;Označit..."/>
<Item id="43055" name="1. stylem"/>
<Item id="43056" name="2. stylem"/>
@ -424,19 +421,17 @@
<Item id="11005" name="Cesty - od Z do A"/>
<Item id="11006" name="Typu - od A do Z"/>
<Item id="11007" name="Typu - od Z do A"/>
<Item id="11008" name="Délky obsahu - vzestupně"/>
<Item id="11009" name="Délky obsahu - sestupně"/>
<Item id="11008" name="Velikosti - od menších k větším"/>
<Item id="11009" name="Velikosti - od větších k menším"/>
</Commands>
</Main>
<TabBar>
<Item CMDID="41003" name="Zavřít"/>
<Item CMDID="0" name="Zavřít vícero souborů/karet"/>
<Item CMDID="41005" name="Zavřít všechny KROMĚ aktuální"/>
<Item CMDID="41026" name="Zavřít všechny KROMĚ připnutých"/>
<Item CMDID="41009" name="Zavřít všechny nalevo"/>
<Item CMDID="41018" name="Zavřít všechny napravo"/>
<Item CMDID="41005" name="Zavřít vše kromě aktuálního"/>
<Item CMDID="41009" name="Zavřít vše nalevo"/>
<Item CMDID="41018" name="Zavřít vše napravo"/>
<Item CMDID="41024" name="Zavřít všechny nezměněné"/>
<Item CMDID="44048" name="Připnout kartu" alternativeName="Odepnout kartu"/>
<Item CMDID="41006" name="Uložit"/>
<Item CMDID="41008" name="Uložit jako..."/>
<Item CMDID="1" name="Otevřít v"/>
@ -448,8 +443,8 @@
<Item CMDID="41016" name="Přesunout do Koše"/>
<Item CMDID="41014" name="Znovu načíst"/>
<Item CMDID="41010" name="Tisk..."/>
<Item CMDID="42028" name="Dokument 'Pouze pro čtení'"/>
<Item CMDID="42033" name="Atribut souboru dokumentu 'Pouze pro čtení'"/>
<Item CMDID="42028" name="Pouze pro čtení"/>
<Item CMDID="42033" name="Vymazat příznak &quot;Pouze pro čtení&quot;"/>
<Item CMDID="2" name="Kopírovat do Schránky"/>
<Item CMDID="42029" name="Kopírovat název souboru i s cestou"/>
<Item CMDID="42030" name="Kopírovat název souboru"/>
@ -493,8 +488,8 @@
<Item id="1611" name="&amp;Nahradit:"/>
<Item id="1614" name="Počet"/>
<Item id="1615" name="Najít vše"/>
<Item id="1616" name="Označit příslušný řádek zálo&amp;žkou"/>
<Item id="1618" name="Zrušit stávající označ. při novém hledání"/>
<Item id="1616" name="Označit řádek"/>
<Item id="1618" name="Zrušit stávající označení při novém hledání"/>
<Item id="1620" name="Najít:"/>
<Item id="1624" name="Mód vyhledávání"/>
<Item id="1625" name="Normální"/>
@ -510,6 +505,7 @@
<Item id="1658" name="Ve všech podadresářích"/>
<Item id="1659" name="Ve skrytých adresářích"/>
<Item id="1660" name="Nahradit v souborech"/>
<Item id="1661" name="Podle aktuál. dokumentu"/>
<Item id="1662" name="Projektový panel 1"/>
<Item id="1663" name="Projektový panel 2"/>
<Item id="1664" name="Projektový panel 3"/>
@ -646,15 +642,14 @@
<Item id="2219" name="Standardní klíčová slova"/>
<Item id="2221" name="Vlastní klíčová slova"/>
<Item id="2225" name="Syntaxe:"/>
<Item id="2226" name="Vynutit barvu popředí pro všechny styly"/>
<Item id="2227" name="Vynutit barvu pozadí pro všechny styly"/>
<Item id="2228" name="Vynutit písmo pro všechny styly"/>
<Item id="2229" name="Vynutit velikost písma pro všechny styly"/>
<Item id="2230" name="Vynutit tučné písmo pro všechny styly"/>
<Item id="2231" name="Vynutit kurzívu pro všechny styly"/>
<Item id="2232" name="Vynutit podtržení pro všechny styly"/>
<Item id="2226" name="Povolit globálně barvu popředí"/>
<Item id="2227" name="Povolit globálně barvu pozadí"/>
<Item id="2228" name="Povolit globálně font"/>
<Item id="2229" name="Povolit globálně velikost písma"/>
<Item id="2230" name="Povolit globálně tučný styl písma"/>
<Item id="2231" name="Povolit globálně ležatý styl písma"/>
<Item id="2232" name="Povolit globálně podtržený styl písma"/>
<Item id="2234" name="Přejít do nastavení"/>
<Item id="2235" name="Co znamená &quot;Global override&quot;?"/>
</SubDialog>
</StyleConfig>
@ -763,8 +758,8 @@
<Item id="11005" name="Setřídit podle: Cesty - od Z do A"/>
<Item id="11006" name="Setřídit podle: Typu - od A do Z"/>
<Item id="11007" name="Setřídit podle: Typu - od Z do A"/>
<Item id="11008" name="Setřídit podle: Délky obsahu - vzestupně"/>
<Item id="11009" name="Setřídit podle: Délky obsahu - sestupně"/>
<Item id="11008" name="Setřídit podle: Velikosti - od menších k větším"/>
<Item id="11009" name="Setřídit podle: Velikosti - od větších k menším"/>
</MainCommandNames>
</ShortcutMapper>
@ -841,7 +836,6 @@
<Item id="21101" name="Výchozí nastavení návrhu"/>
<Item id="21105" name="Dokumentace"/>
<Item id="21102" name="Návrhář"/>
<Item id="21103" name="Online nápověda pro Uživatelsky definované syntaxe"/>
<Item id="21106" name="Sbalit do kompaktní formy (i prázdné řádky)"/>
<Item id="21201" name="Nastavení klíčových slov pro otevření složky"/>
<Item id="21301" name="Nastavení klíčových slov pro uzavření složky"/>
@ -987,54 +981,36 @@
<Preference title="Volby">
<Item id="6001" name="Zavřít"/>
<Global title="Obecné">
<Item id="6122" name="Skrýt (klávesa Alt nebo F10 slouží jako přepínač)"/>
<Item id="6123" name="Lokalizace"/>
<Item id="6131" name="Hlavní menu"/>
<Item id="6132" name="Skrýt ovládací prvky ▼ ✕"/>
<Item id="6133" name="Stavový řádek"/>
<Item id="6134" name="Skrýt"/>
</Global>
<Toolbar title="Lišta nástrojových ikon">
<Item id="6101" name="Nástrojová lišta"/>
<Item id="6102" name="Skrýt"/>
<Item id="6103" name="Fluent UI: malé ikony"/>
<Item id="6104" name="Fluent UI: velké ikony"/>
<Item id="6105" name="Standardní: malé ikony"/>
<Item id="6129" name="Fluent UI: malé ikony s výplní"/>
<Item id="6130" name="Fluent UI: velké ikony s výplní"/>
<Item id="6011" name="Zabarvení"/>
<Item id="6012" name="Kompletní"/>
<Item id="6013" name="Částečné"/>
<Item id="6014" name="Výběr barvy"/>
<Item id="6015" name="Výchozí"/>
<Item id="6016" name="Červená"/>
<Item id="6017" name="Zelená"/>
<Item id="6018" name="Modrá"/>
<Item id="6019" name="Fialová"/>
<Item id="6020" name="Modrozelená"/>
<Item id="6021" name="Olivová"/>
<Item id="6022" name="Žlutá"/>
<Item id="6023" name="Systémová zvýrazňovací barva"/>
<Item id="6024" name="Uživatelem definovaná"/>
</Toolbar>
<Tabbar title="Lišta karet (tabs)">
<Item id="6106" name="Lišta záložek"/>
<Item id="6107" name="Zmenšit"/>
<Item id="6108" name="Uzamknout (nelze přetahovat karty)"/>
<Item id="6109" name="Změnit barvu pozadí neaktivní karty"/>
<Item id="6110" name="Zobrazovat barevný pruh na aktivní kartě"/>
<Item id="6111" name="Zobrazovat tlačítka i na neaktivních kartách"/>
<Item id="6112" name="Přidat zavírací tlačítko každé kartě"/>
<Item id="6113" name="Dvojité kliknutí zavře kartu"/>
<Item id="6115" name="Povolit připínání karet"/>
<Item id="6108" name="Uzamknout (nelze přetahovat záložky)"/>
<Item id="6109" name="Znevýraznit neaktivní záložky"/>
<Item id="6110" name="Zobrazovat barevný pruh na aktivní záložce"/>
<Item id="6112" name="Přidat zavírací tlačítko každé záložce"/>
<Item id="6113" name="Dvojité kliknutí zavře záložku"/>
<Item id="6114" name="Povolit přepínání mezi dokumenty"/>
<Item id="6116" name="Zapamatovat si poslední používaný adresář"/>
<Item id="6117" name="Používat historii dokumentů"/>
<Item id="6118" name="Skrýt"/>
<Item id="6119" name="Více řad"/>
<Item id="6120" name="Vertikální"/>
<Item id="6121" name="Ukončit při uzavření poslední karty"/>
<Item id="6122" name="Skrýt menu (klávesa Alt nebo F10 slouží jako přepínač)"/>
<Item id="6123" name="Lokalizace"/>
<Item id="6128" name="Alternativní ikony"/>
<Item id="6135" name="Zobrazovat připínací tlačítko jen na připnutých"/>
<Item id="6125" name="Chování"/>
<Item id="6126" name="Vzhled a dojem"/>
</Tabbar>
<Scintillas title="Editace 1">
<Item id="6129" name="Fluent UI: malé ikony s výplní"/>
<Item id="6130" name="Fluent UI: velké ikony s výplní"/>
<Item id="6131" name="Hlavní menu"/>
<Item id="6132" name="Skrýt ovládací prvky ▼ ✕ menu vpravo nahoře (vyžaduje restart Notepadu++)"/>
<Item id="6133" name="Stavový řádek"/>
<Item id="6134" name="Skrýt"/>
</Global>
<Scintillas title="Editace">
<Item id="6214" name="Povolit Kopírování/Vyjmutí celého řádku bez výběru"/>
<Item id="6215" name="Povolit vyhlazování fontu"/>
<Item id="6216" name="Nastavení kurzoru"/>
@ -1042,7 +1018,6 @@
<Item id="6219" name="Rychlost blikání:"/>
<Item id="6221" name="R"/>
<Item id="6222" name="P"/>
<Item id="6225" name="Použít na vybraný text vlastní barvu popředí"/>
<Item id="6227" name="Zalomení řádky"/>
<Item id="6228" name="Implicitní"/>
<Item id="6229" name="Jen zarovnání"/>
@ -1057,9 +1032,7 @@
<Item id="6653" name="Zvýrazněné pozadí"/>
<Item id="6654" name="Orámování"/>
<Item id="6655" name="tloušťka:"/>
</Scintillas>
<Scintillas2 title="Editace 2">
<Item id="6247" name="EOL - konce řádků (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6247" name="Konce řádků (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Implicitní"/>
<Item id="6249" name="Barva prostého textu"/>
<Item id="6250" name="Vlastní barva"/>
@ -1067,13 +1040,8 @@
<Item id="6254" name="Zkratka"/>
<Item id="6255" name="Kód Unicode"/>
<Item id="6256" name="Vlastní barva"/>
<Item id="6258" name="Aplikovat nastavení vzhledu na C0, C1 a &amp;&amp; Unicode EOLy"/>
<Item id="6259" name="Zabránit vkládání řídících znaků (kódy C0) do dokumentu"/>
<Item id="6260" name="Vzhled"/>
<Item id="6521" name="Vícenásobná editace"/>
<Item id="6522" name="Povolit vícenásobnou editaci (Ctrl+Myš kliknutí/výběr)"/>
<Item id="6523" name="Povolit výběr sloupců pro vícenásobnou editaci"/>
</Scintillas2>
<Item id="6258" name="Aplikovat na C0, C1 a &amp;&amp; Unicode EOLy"/>
</Scintillas>
<DarkMode title="Tmavý režim">
<Item id="7102" name="Černý"/>
<Item id="7103" name="Červený"/>
@ -1083,10 +1051,10 @@
<Item id="7108" name="Modrozelený"/>
<Item id="7109" name="Olivový"/>
<Item id="7115" name="Vlastní"/>
<Item id="7116" name="Pozadí obsahu"/>
<Item id="7117" name="Zvýrazněná položka menu"/>
<Item id="7118" name="Pozadí ovládacích prvků"/>
<Item id="7119" name="Pozadí dialogového okna"/>
<Item id="7116" name="Horní panel"/>
<Item id="7117" name="Hot-track položka menu"/>
<Item id="7118" name="Aktivní položky"/>
<Item id="7119" name="Hlavní položky"/>
<Item id="7120" name="Chyby"/>
<Item id="7121" name="Text"/>
<Item id="7122" name="Tmavší text"/>
@ -1115,15 +1083,15 @@
<Item id="6211" name="Nastavení svislé vodící čáry"/>
<Item id="6212" name="Nerušivý mód"/>
<Item id="6213" name="Režim s pozadím"/>
<Item id="6223" name="Zobrazit na okraji"/>
<Item id="6223" name="Zobrazit historii změn"/>
<Item id="6226" name="Žádný"/>
<Item id="6231" name="Šířka okraje"/>
<Item id="6235" name="Bez okraje"/>
<Item id="6237" name="Přidejte Vaši sloupcovou značku poukázáním na její pozici (decimální číslo).
Můžete definovat více značek sloupců použitím více čísel oddělených prázdnými znaky."/>
<Item id="6291" name="Číslo řádku"/>
<Item id="6292" name="Dynamická šířka"/>
<Item id="6293" name="Konstantní šířka"/>
<Item id="6295" name="Historie změn"/>
<Item id="6296" name="Zobrazit v textu"/>
</MarginsBorderEdge>
<NewDoc title="Nový dokument">
<Item id="6401" name="Formát"/>
@ -1140,7 +1108,6 @@
<Item id="6419" name="Nový dokument"/>
<Item id="6420" name="Aplikovat při otevř. ANSI-souboru"/>
<Item id="6432" name="Vždy otevři při startu nový dokument navíc"/>
<Item id="6433" name="Používat první řádky dokumentů pro názvy nepojmenovaných karet"/>
<Item id="-1" name="Zobrazení"/>
</NewDoc>
<DefaultDir title="Implicitní adresář">
@ -1159,21 +1126,12 @@
<Item id="6506" name="Nepoužívané syntaxe"/>
<Item id="6507" name="Použít kompaktní menu pro syntaxe"/>
<Item id="6508" name="Nabídka syntaxí"/>
<Item id="6301" name="Nastavení tabulátoru"/>
<Item id="6302" name="Zaměnit za mezery"/>
<Item id="6303" name="Velikost tabulátoru:"/>
<Item id="6510" name="Použít implicitní"/>
<Item id="6335" name="Zpětné lomítko je escape znak pro SQL"/>
</Language>
<Indentation title="Odsazování">
<Item id="6301" name="Nastavení odsazení"/>
<Item id="6302" name="Mezerami"/>
<Item id="6303" name="Velikost:"/>
<Item id="6310" name="Odsazovat:"/>
<Item id="6311" name="Tabulátorem"/>
<Item id="6510" name="Použít implicitní"/>
<Item id="6512" name="Klávesou Backspace zmenšovat odsazení místo odstranění pouhé jedné mezery"/>
<Item id="7161" name="Automatické odsazování"/>
<Item id="7162" name="Žádné"/>
<Item id="7163" name="Základní"/>
<Item id="7164" name="Pokročilé"/>
</Indentation>
<Highlighting title="Zvýrazňování">
<Item id="6326" name="Povolit"/>
<Item id="6327" name="Povolit"/>
@ -1237,8 +1195,7 @@
<Item id="6907" name="Při vyvolání dialogového okna &quot;Najít&quot;"/>
<Item id="6908" name="Předvyplnit vyhledávací pole označeným textem"/>
<Item id="6909" name="Když není nic označeno, předvyplnit slovem na pozici kurzoru"/>
<Item id="6910" name="Minimální délka pro automatické zaškrtávaní &quot;Ve vybraném&quot;:"/>
<Item id="6913" name="Předvyplnit pole &quot;Adresář:&quot; v dialogu &quot;Najít v souborech&quot; podle aktivního dokumentu"/>
<Item id="6910" name="Minimální délka pro automatické zaškrtávaní &quot;Ve vybraném&quot;"/>
</Searching>
<RecentFilesHistory title="Historie posl. souborů">
<Item id="6304" name="Historie posledních souborů"/>
@ -1256,30 +1213,15 @@
<Element name="Povoleno pro všechny otevřené soubory"/>
<Element name="Zakázáno"/>
</ComboBox>
<ComboBox id="6307">
<Element name="Nepoužívat"/>
<Element name="Minimalizovat do"/>
<Element name="Zavírat do"/>
<Element name="Minimalizovat a Zavírat do"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (nejkompatibilnější)"/>
<Element name="DirectWrite (výchozí)"/>
<Element name="DirectWrite (zachovávat snímky)"/>
<Element name="DirectWrite (vykreslovat do GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Zakázat"/>
<Element name="Povolit při startu Notepadu++"/>
<Element name="Povolit při ukončení Notepadu++"/>
</ComboBox>
<Item id="6114" name="Povolit přepínání"/>
<Item id="6115" name="Automatické odsazování"/>
<Item id="6117" name="Povolit MRU (nedávno použité)"/>
<Item id="6308" name="oznamovací oblast"/>
<Item id="6307" name="Povolit pro všechny TABy"/>
<Item id="6308" name="Minimalizovat do oznamovací oblasti"/>
<Item id="6312" name="Automatická detekce stavu souboru"/>
<Item id="6313" name="Aktualizovat skrytě"/>
<Item id="6322" name="Přípona souboru relace:"/>
<Item id="6323" name="Povolit autom. aktualizaci Notepadu++"/>
<Item id="6324" name="Přepínač dokumentů (Ctrl+TAB)"/>
<Item id="6325" name="Přejít na poslední řádek po aktualizaci"/>
<Item id="6331" name="V záhlaví Notepadu++ zobrazovat pouze název souboru"/>
@ -1288,10 +1230,9 @@
<Item id="6344" name="Náhled na neaktivní dokument"/>
<Item id="6345" name="Na kartě (tab) dokumentu"/>
<Item id="6346" name="Na přehledné mapě dokumentu"/>
<Item id="6349" name="Používat DirectWrite (může zlepšit zobrazení speciálních znaků, vyžadován restart Notepadu++)"/>
<Item id="6360" name="Ztlumit všechny zvuky"/>
<Item id="6361" name="Povolit potvrzovací dialog &quot;Uložit všechny&quot;"/>
<Item id="6363" name="vykreslovací režim"/>
<Item id="6365" name="Automat. aktualizace:"/>
</MISC>
<Backup title="Zálohování">
<Item id="6219" name="Uživatelsky definovaný adresář pro zálohování"/>
@ -1304,12 +1245,13 @@
<Item id="6804" name="Uživatelský adresář pro zálohy"/>
<Item id="6817" name="Body obnovení a periodické zálohování"/>
<Item id="6818" name="Aktivovat ukládání bodů pro obnovení relace a periodické zálohování"/>
<Item id="6819" name="Zálohovat při změně každých"/>
<Item id="6821" name="sekund (při modif.)"/>
<Item id="6819" name="Zálohovat každých"/>
<Item id="6821" name="sekund"/>
<Item id="6822" name="Cesta k zálohám:"/>
<Item id="6825" name="Pamatovat si nedostupné soubory z poslední relace (zástupné dokumenty/karty)"/>
</Backup>
<AutoCompletion title="Automat. dokončování">
<Item id="6115" name="Automatické odsazování"/>
<Item id="6807" name="Automatické dokončování"/>
<Item id="6808" name="Povolit autom. dokončování každého vstupu"/>
<Item id="6809" name="Dokončování funkcí"/>
@ -1366,7 +1308,7 @@
<Item id="7141" name="Omezení funkcí pro velké soubory"/>
<Item id="7143" name="Povolit vypnutí zvýrazňování syntaxe pro velké soubory"/>
<Item id="7144" name="Velký soubor je >= "/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Povolit párování závorek"/>
<Item id="7148" name="Povolit automatické dokončování"/>
<Item id="7149" name="Povolit inteligentní zvýrazňování"/>
@ -1468,11 +1410,6 @@ Potvrzovací dialog můžete kdykoliv reaktivovat v &quot;Nastavení&quot;."/>
<Item id="4" name="&amp;Pokaždé ano"/>
</DoSaveAll><!-- HowToReproduce: Check the "Enable Save All confirm dialog" checkbox in Preference->MISC, now click "Save all" -->
<DebugInfo title="Informace k ladění">
<Item id="1752" name="&amp;Zkopírujte informace do Schránky"/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
@ -1493,9 +1430,6 @@ Potvrzovací dialog můžete kdykoliv reaktivovat v &quot;Nastavení&quot;."/>
<SessionFileInvalidError title="Relace nemohla být zavedena" message="Soubor relace je buďto poškozen nebo je neplatný."/>
<DroppingFolderAsProjectModeWarning title="Neplatná akce" message="Můžete přetahovat soubory nebo složky, ale ne obojí zároveň, jelikož máte zapnutý mód pro otevírání složek souborů jako projektů. Pro změnu nastavení musíte v Nastavení->Volby...->ImplicitníAdresář povolit &quot;Otevírat všechny soubory ve složce při přetažení myší (místo zdroje pro pracovní plochu)&quot;."/>
<SortingError title="Chyba třídění" message="Nebylo možné provést numerické setřídění kvůli řádku $INT_REPLACE$."/>
<SortLocaleMultiple title="Třídění nebylo provedeno" message="Setřídění více výběrů najednou není podporováno."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Třídění selhalo" message="Důvod selhání setřídění nelze určit."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Třídění selhalo" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Tip pro Sloupcový režim" message="
Existují 3 způsoby přepnutí do režimu výběru sloupce:
@ -1550,13 +1484,8 @@ Vaše pracovní plocha nebyla uložena."/><!-- HowToReproduce: this message prev
<ProjectPanelReloadDirty title="Znovuotevření pracovní plochy" message="Nyní používaná pracovní plocha byla modifikována. Opětovným načtením přijdete o všechny provedené změny. Chcete pokračovat?"/>
<UDLNewNameError title="Chyba UDL" message="Tento název je již využíván jiným jazykem/syntaxí, prosím zadejte jiný."/>
<UDLRemoveCurrentLang title="Odstranění aktuální syntaxe" message="Jste si jisti?"/>
<UDL_importSuccessful title="Uživatelsky definovaná syntaxe" message="Import proběhl úspěšně."/>
<UDL_importFails title="Uživatelsky definovaná syntaxe" message="Import se nezdařil."/>
<UDL_saveBeforeImport title="Uživatelsky definovaná syntaxe" message="Před vlastním exportem uložte definovanou syntaxi kliknutím na tlačítko &quot;Uložit jako...&quot;."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="Uživatelsky definovaná syntaxe" message="Export proběhl úspěšně."/>
<UDL_exportFails title="Uživatelsky definovaná syntaxe" message="Export se nezdařil."/>
<SCMapperDoDeleteOrNot title="Jste si jisti?" message="Jste si jisti, že chcete smazat tuto klávesovou zkratku / příkaz?"/>
<FindCharRangeValueError title="Problém s rozsahem hodnoty" message="Měli byste napsat hodnotu z rozsahu 0 až 255."/><!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Problém s rozsahem hodnoty" message="Měli byste napsat hodnotu z rozsahu 0 až 255."/>
<OpenInAdminMode title="Ukládání selhalo" message="Soubor nemůže být uložen a může být chráněn proti zápisu. Chcete zkusit spustit Notepad++ s právy administrátora?"/>
<OpenInAdminModeWithoutCloseCurrent title="Ukládání selhalo" message="Soubor nemůže být uložen a může být chráněn proti zápisu. Chcete zkusit spustit Notepad++ s právy administrátora?"/>
<OpenInAdminModeFailed title="Otevření s administrátorskými právy selhalo" message="Notepad++ nemůže být spuštěn s právy administrátora."/>
@ -1588,16 +1517,6 @@ POZNÁMKA: Jestliže se rozhodnete neotevírat zástupné dokumenty/karty anebo
Doporučujeme Vám, abyste si nyní zazálohovali Váš soubor &quot;session.xml&quot;."/>
<RTLvsDirectWrite title="Nelze použít směr textu RTL" message="RTL není v současnosti kompatibilní se zvoleným DirectWrite režimem. Prosím vypněte nejprve DirectWrite v sekci &quot;Různé&quot; v &quot;Nastavení&quot; a restartujte Notepad++."/>
<FileMemoryAllocationFailed title="Problém s alokací paměti pro soubor" message="Pravděpodobně není dostatek souvislé volné paměti pro soubor, který Notepad++ právě načítá."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Vypnuté zpětné vyhledávání při užívání regulárních výrazů" message="Ve výchozím nastavení je zpětné vyhledávání při užití regulárních výrazů zakázáno kvůli potenciálně neočekávaným výsledkům. Chcete-li provést zpětné vyhledávání, otevřete dialogové okno Najít a místo regulárních výrazů vyberte režim normálního nebo rozšířeného vyhledávání.
Stisknutím tlačítka OK otevřete dialogové okno Najít nebo ho přepnete do popředí.
Pokud opravdu potřebujete funkci zpětného vyhledávání při regulárních výrazech, pokyny pro její zapnutí najdete v uživatelské příručce."/>
<PrintError title="0" message="Nelze spustit tisk dokumentu."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Upozornění pro vyhledávání" message="Stav zaškrtávacího políčka &quot;Ve vybraném&quot; byl automaticky změněn (ovládáno položkou v Nastavení > Volby... > Vyhledávání).
Před provedením akce si prosím nejprve ověřte nastavené podmínky."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Restartujte Notepad++" message="Je zapotřebí restartovat Notepad++, aby se vpravo mohly zobrazit ovládací prvky hlavního menu."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Změna atributu souboru 'pouze pro čtení' se nezdařila." message="Pro změnu atributů souboru spusťte Notepad++ s právy administrátora."/>
</MessageBox>
<ClipboardHistory>
@ -1728,6 +1647,7 @@ Před provedením akce si prosím nejprve ověřte nastavené podmínky."/> <!--
<default-open-save-select-folder value="Vyberte výchozí složku"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Pro změnu směru vyhledávání použijte Shift + Enter."/>
<two-find-buttons-tip value="Mód se dvěma vyhledávacími tlačítky"/>
<file-rename-title value="Přejmenovat"/>
<find-in-files-filter-tip value="Hledat v cpp, cxx, h, hxx &amp;&amp; hpp souborech:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1740,9 +1660,8 @@ Hledat ve všech souborech, ale vynechat složky tests, bin &amp;&amp; bin64:
Hledat ve všech souborech, ale rekurzivně vynechat všechny složky log nebo logs:
*.* !\\log*+"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Vyberte složku, kde chcete vyhledávat"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Vyplní pole &quot;Adresář:&quot; podle aktivního dokumentu."/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Vyhledávání: Dosažen začátek dokumentu, nalezen první výskyt zdola."/>
<find-status-end-reached value="Vyhledávání: Dosažen konec dokumentu, nalezen první výskyt shora."/>
<find-status-top-reached value="Vyhledávání: Nalezen první výskyt od konce. Bylo dosaženo začátku tohoto dokumentu"/>
<find-status-end-reached value="Vyhledávání: Nalezen první výskyt od začátku. Bylo dosaženo konce tohoto dokumentu"/>
<find-status-replaceinfiles-1-replaced value="Nahrazování v souborech: 1 výskyt nahrazen"/>
<find-status-replaceinfiles-nb-replaced value="Nahrazování v souborech: $INT_REPLACE$ výskytů nahrazeno"/>
<find-status-replaceinopenedfiles-1-replaced value="Nahrazování v otevřených souborech: 1 výskyt nahrazen"/>
@ -1756,8 +1675,8 @@ Hledat ve všech souborech, ale rekurzivně vynechat všechny složky log nebo l
<find-status-replaceall-1-replaced value="Nahrazování všeho: 1 výskyt nahrazen"/>
<find-status-replaceall-nb-replaced value="Nahrazování všeho: $INT_REPLACE$ výskytů nahrazeno"/>
<find-status-replaceall-readonly value="Nahrazování všeho: Nemohu nahradit text. Současný dokument je pouze pro čtení"/>
<find-status-replace-end-reached value="Nahrazování: Dosažen konec dokumentu, nahrazen první výskyt shora."/>
<find-status-replace-top-reached value="Nahrazování: Dosažen začátek dokumentu, nahrazen první výskyt zdola."/>
<find-status-replace-end-reached value="Nahrazování: Nahrazen první výskyt od začátku. Bylo dosaženo konce dokumentu"/>
<find-status-replace-top-reached value="Nahrazování: Nahrazen první výskyt od konce. Bylo dosaženo začátku dokumentu"/>
<find-status-replaced-next-found value="Nahrazování: 1 výskyt byl nahrazen. Další výskyt nalezen."/>
<find-status-replaced-without-continuing value="Nahrazování: 1 výskyt byl nahrazen."/>
<find-status-replaced-next-not-found value="Nahrazování: 1 výskyt byl nahrazen. Další výskyt nenalezen."/>
@ -1774,15 +1693,17 @@ Hledat ve všech souborech, ale rekurzivně vynechat všechny složky log nebo l
<finder-collapse-all value="Sbalit vše"/>
<finder-uncollapse-all value="Rozbalit vše"/>
<finder-copy value="Kopírovat vybrané řádky"/>
<finder-copy-selected-paths value="Kopírovat cesty u vybraných souborů"/>
<finder-copy-verbatim value="Kopírovat"/>
<finder-copy-paths value="Kopírovat souborovou cestu(y)"/>
<finder-select-all value="Vybrat vše"/>
<finder-clear-all value="Smazat vše"/>
<finder-open-selected-paths value="Otevřít vybrané soubory"/>
<finder-open-all value="Otevřít vše"/>
<finder-purge-for-every-search value="Vymazat před každým vyhledáváním"/>
<finder-wrap-long-lines value="Zalomit dlouhé řádky"/>
<common-ok value="OK"/>
<common-cancel value="Storno"/>
<common-name value="Název"/>
<tabrename-title value="Přejmenovat aktuální kartu (tab)"/>
<tabrename-title value="Přejmenovat aktuální záložku (Tab)"/>
<tabrename-newname value="Nový název"/>
<splitter-rotate-left value="Otočit doleva"/>
<splitter-rotate-right value="Otočit doprava"/>
@ -1801,6 +1722,7 @@ Hledat ve všech souborech, ale rekurzivně vynechat všechny složky log nebo l
<summary-nbsel2 value=" bytů) v "/>
<summary-nbrange value=" oblastech"/>
<progress-hits-title value="Výskytů:"/>
<progress-cancel-button value="Storno"/>
<progress-cancel-info value="Ruším operaci, počkejte prosím ..."/>
<find-in-files-progress-title value="Průběh hledání v souborech ..."/>
<replace-in-files-confirm-title value="Jste si jistí?"/>
@ -1830,8 +1752,8 @@ Hledat ve všech souborech, ale rekurzivně vynechat všechny složky log nebo l
<close-panel-tip value="Zavřít"/>
<IncrementalFind-FSFound value="výskytů: $INT_REPLACE$"/>
<IncrementalFind-FSNotFound value="Výraz nenalezen."/>
<IncrementalFind-FSTopReached value="Dosažen začátek stránky, pokračování odspodu."/>
<IncrementalFind-FSEndReached value="Dosažen konec stránky, pokračování odshora."/>
<IncrementalFind-FSTopReached value="Bylo dosaženo začátku stránky, pokračování odspodu"/>
<IncrementalFind-FSEndReached value="Bylo dosaženo konce stránky, pokračování odshora"/>
<contextMenu-styleAlloccurrencesOfToken value="Označit všechny výskyty tokenu stylem"/>
<contextMenu-styleOneToken value="Označit token (jeden) stylem"/>
<contextMenu-clearStyle value="Odstranit označení stylem u tokenů"/>
@ -1871,28 +1793,6 @@ Kliknutím na &quot;?&quot; tlačítko vpravo otevřete webovou stránku s Uživ
<npcCustomColor-tip value="Přejděte do Úpravy stylu a změňte výchozí vlastní barvu pro vybrané prázdné a netisknutelné znaky. (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Použije nastavení vzhledu netisknutelných znaků pro řídící znaky C0, C1 (reprezentují další informace o textu jako jsou další řádek, oddělovač řádků, oddělovač odstavců) a pro Unicode EOL znaky." />
<searchingInSelThresh-tip value="Minimální počet vybraných znaků editační zóny, aby došlo k automatickému zaškrtnutí políčka &quot;Ve vybraném&quot; při aktivaci dialogu &quot;Najít&quot;. Nejvyšší možná hodnota je 1024. Pokud chcete toto automatické zaškrtávání zcela vypnout, nastavte hodnotu na 0."/>
<verticalEdge-tip value="Přidejte Vaši sloupcovou značku poukázáním na její pozici (decimální číslo). Můžete definovat více značek sloupců použitím více čísel oddělených prázdnými znaky."/>
<fileSaveAsCopySaveButton-tip value="Chcete-li po uložení kopii i otevřít, přidržte Shift při stisknutí tlačítka."/>
<autoIndentBasic-tip value="Zajistí, aby odsazení aktuálního řádku (tj. nového řádku vytvořeného stisknutím klávesy ENTER) odpovídalo odsazení předchozího řádku."/>
<autoIndentAdvanced-tip value="Dovolí inteligentní odsazování pro jazyky &quot;podobné C&quot; a Python. Mezi jazyky &quot;podobné C&quot; zde patří:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell and JSON.
Pokud zvolíte Pokročilý režim, ale nebudete upravovat soubory výše zmíněných jazyků, zůstane odsazení v Základním režimu."/>
<!-- Don't translate "&quot;Global override&quot; and &quot;Default Style&quot; -->
<global-override-tip value="Použitím &quot;Global override&quot; přepíšete nastavení ve všech stylech pro všechny syntaxe. Nejspíše chcete namísto toho použít nastavení &quot;Default Style&quot;."/>
<scintillaRenderingTechnology-tip value="Může zlepšit vykreslování speciálních znaků nebo vyřešit některé problémy s grafikou. Restartujte Notepad++, aby se změny projevily."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="délka: $STR_REPLACE1$ řádků: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Řd: $STR_REPLACE1$ Sl: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Poz: "/>
<statusbar-Sel value="Ozn: "/>
<statusbar-Sel-number value="Ozn"/>
<toolbar-accent-tip value="Touto volbou vynutíte u ikon nástrojové lišty Notepadu++ použití systémové barvy Windows určené pro zvýrazňování. Tato barva je součástí zvýraznění interaktivních prvků uživatelského rozhraní jako jsou tlačítka, okraje nebo dlaždice Startovní nabídky Windows. Pro její případnou změnu přejděte do systémového Nastavení &gt; Přizpůsobení &gt; Barvy, poté vyberte preferovanou barvu pro zvýrazňování."/>
<max-len-on-search-tip value="Povolená délka textu pro pole Najít/Nahradit je pouze $INT_REPLACE$ znaků - Vámi zadaný text může být zkrácen a neuložen pro další relaci."/>
<max-len-on-save-tip value="Tento vstup (> $INT_REPLACE$ znaků) nebude uložen pro další relaci."/>
<goto-setting-tip value="Nastavení najdete zde"/>
</MiscStrings>
</Native-Langue>

View File

@ -183,6 +183,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="42087" name="Alle filnavne til udklipsholder"/>
<Item id="42088" name="Alle filstier til udklipsholder"/>
<Item id="42032" name="&amp;Kør en makro flere gange..."/>
<Item id="42033" name="Fjern skrivebeskyttelse"/>
<Item id="42035" name="Liniekommentar til"/>
<Item id="42036" name="Liniekommentar fra"/>
<Item id="42055" name="Fjern tomme linier"/>
@ -403,6 +404,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item CMDID="41014" name="Genindlæs"/>
<Item CMDID="41010" name="Udskriv.."/>
<Item CMDID="42028" name="Skrivebeskyttet"/>
<Item CMDID="42033" name="Fjern skrivebeskyttelse"/>
<Item CMDID="2" name="Kopiér"/>
<Item CMDID="42029" name="Fuld fiisti"/>
<Item CMDID="42030" name="Filnavn"/>
@ -463,6 +465,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="1626" name="&amp;Udvidet (\n, \r, \t, \0, \u, \x...)"/>
<Item id="1660" name="Erstat i filer"/>
<Item id="1665" name="Erstat i projekter"/>
<Item id="1661" name="Følg aktuelt dokument"/>
<Item id="1662" name="Projektpanel 1"/>
<Item id="1663" name="Projektpanel 2"/>
<Item id="1664" name="Projektpanel 3"/>
@ -894,6 +897,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Preference title="Programindstillinger">
<Item id="6001" name="Luk"/>
<Global title="Generelt">
<Item id="6101" name="Værktøjslinie"/>
<Item id="6102" name="Skjul"/>
<Item id="6103" name="Små ikoner"/>
<Item id="6104" name="Store ikoner"/>
@ -901,11 +905,13 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6130" name="Store udfyldte ikoner"/>
<Item id="6105" name="Standardikoner"/>
<Item id="6106" name="Fanelinie"/>
<Item id="6107" name="Lille"/>
<Item id="6108" name="Lås (deaktivér træk/slip)"/>
<Item id="6109" name="Nedton inaktive faner"/>
<Item id="6110" name="Vis farvet linie over aktiv fane"/>
<Item id="6111" name="Vis statuslinie"/>
<Item id="6112" name="Vis luk på hver fane"/>
<Item id="6113" name="Dobbeltklik lukker dokument"/>
<Item id="6118" name="Skjul"/>
@ -927,6 +933,7 @@ The comments are here for explanation, it's not necessary to translate them.
<Item id="6221" name="H"/>
<Item id="6222" name="L"/>
<Item id="6246" name="Tillad kommando at folde/udfolde aktuelt niveau"/>
<Item id="6225" name="Multiredigering (Ctrl+klik for at markere flere)"/>
<Item id="6227" name="Ombryd"/>
<Item id="6228" name="Standard"/>
<Item id="6229" name="Justeret"/>
@ -1138,6 +1145,7 @@ Brug mellemrum til at angive flere markører."/>
</Backup>
<AutoCompletion title="Automatik">
<Item id="6115" name="Automatisk indrykning"/>
<Item id="6807" name="Automatisk fuldførelse"/>
<Item id="6808" name="Aktivér automatisk fuldførelse"/>
<Item id="6809" name="Fuldfør funktioner"/>
@ -1196,7 +1204,7 @@ Brug mellemrum til at angive flere markører."/>
<Item id="7141" name="Begræns store filer"/>
<Item id="7143" name="Aktivér begrænsning (ingen syntaks fremhævning)"/>
<Item id="7144" name="Definér filstørrelse:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Tillad parantesmatch"/>
<Item id="7148" name="Tillad autofuldførelse"/>
<Item id="7149" name="Tillad smart fremhævning"/>
@ -1232,6 +1240,7 @@ Brug mellemrum til at angive flere markører."/>
<Element name="Aktivér for alle åbne filer"/>
<Element name="Deaktivér"/>
</ComboBox>
<Item id="6308" name="Minimér til ikon ved uret"/>
<Item id="6312" name="Registrér filstatus automatisk"/>
<Item id="6313" name="Opdater i baggrunden"/>
<Item id="6325" name="Rul til sidste linie efter opdatering"/>
@ -1240,6 +1249,7 @@ Brug mellemrum til at angive flere markører."/>
<Item id="6324" name="Dokumentskifter (Ctrl+tabulator)"/>
<Item id="6331" name="Vis kun filnavn i titellinien"/>
<Item id="6334" name="Registrér tegnsæt automatisk"/>
<Item id="6349" name="Brug DirectWrite (kan forbedre gengivelse af specialtegn. Notepad++ skal genstartes)"/>
<Item id="6337" name="Arbejdsrum filtype:"/>
<Item id="6114" name="Aktivér"/>
<Item id="6117" name="Skift mellem senest brugte"/>
@ -1605,8 +1615,10 @@ Find i alle filer, undtagen i mapperne log med undermapper:
<finder-uncollapse-all value="Udvid alle"/>
<finder-copy value="Kopiér valgte linie(r)"/>
<finder-copy value="Kopier"/>
<finder-copy-paths value="Kopiér stinavn(e)"/>
<finder-select-all value="Markér alle"/>
<finder-clear-all value="Ryd alle"/>
<finder-open-all value="Åbn alle"/>
<finder-purge-for-every-search value="Ryd ved ny søgning"/>
<finder-wrap-long-lines value="Ombryd lange linier"/>
<common-ok value="OK"/>

View File

@ -9,10 +9,10 @@ Modifications until 2018-03-26 by Klaas Nekeman (knekeman(at)gmail.com).
Modifications until 2020-05-26 by xylographe <wr86420@gmail.com>.
Modifications from 2021-01-28 and onwards by Thomas De Rocker (RockyTDR, notepadplusplus(at)rockytdr.33mail.com)
Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
Last modified on 2023-12-20 by Thomas De Rocker (RockyTDR).
-->
<NotepadPlus>
<Native-Langue name="Nederlands" filename="dutch.xml" version="8.8.1">
<Native-Langue name="Nederlands" filename="dutch.xml" version="8.6">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -24,7 +24,7 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item menuId="encoding" name="&amp;Tekenset"/>
<Item menuId="language" name="&amp;Syntaxis"/>
<Item menuId="settings" name="&amp;Instellingen"/>
<Item menuId="tools" name="&amp;Gereedschap"/>
<Item menuId="tools" name="&amp;Gereedschappen"/>
<Item menuId="macro" name="&amp;Macro"/>
<Item menuId="run" name="&amp;Uitvoeren"/>
<Item menuId="Plugins" name="&amp;Plugins"/>
@ -100,7 +100,6 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="41003" name="&amp;Sluiten"/>
<Item id="41004" name="&amp;Alles sluiten"/>
<Item id="41005" name="Overige documenten sluiten"/>
<Item id="41026" name="Alle documenten sluiten, behalve vastgemaakte"/>
<Item id="41009" name="Documenten aan de linkerkant sluiten"/>
<Item id="41018" name="Documenten aan de rechterkant sluiten"/>
<Item id="41024" name="Ongewijzigde documenten sluiten"/>
@ -144,8 +143,6 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="42060" name="Regels lexicografisch aflopend sorteren"/>
<Item id="42080" name="Regels lexicografisch oplopend hoofdletterongevoelig sorteren"/>
<Item id="42081" name="Regels lexicografisch aflopend hoofdletterongevoelig sorteren"/>
<Item id="42100" name="Regels op basis van lokale taalinstellingen oplopend sorteren"/>
<Item id="42101" name="Regels op basis van lokale taalinstellingen aflopend sorteren"/>
<Item id="42061" name="Regels als gehele getallen oplopend sorteren"/>
<Item id="42062" name="Regels als gehele getallen aflopend sorteren"/>
<Item id="42063" name="Regels als decimalen (komma) oplopend sorteren"/>
@ -203,14 +200,14 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="42025" name="Momenteel opgenomen macro ops&amp;laan..."/>
<Item id="42026" name="Tekstrichting rechts-links"/>
<Item id="42027" name="Tekstrichting links-rechts"/>
<Item id="42028" name="Alleen-lezen in Notepad++"/>
<Item id="42028" name="Instellen als alleen-&amp;lezen"/>
<Item id="42029" name="Huidig bestandspad kopiëren"/>
<Item id="42030" name="Huidige bestandsnaam kopiëren"/>
<Item id="42031" name="Pad naar huidige map kopiëren"/>
<Item id="42087" name="Alle bestandsnamen kopiëren"/>
<Item id="42088" name="Alle bestandspaden kopiëren"/>
<Item id="42032" name="Macro meerdere keren uitvoeren..."/>
<Item id="42033" name="Alleen-lezen-attribuut in Windows"/>
<Item id="42033" name="Alleen-lezen opheffen"/>
<Item id="42035" name="Regelcommentaar aan"/>
<Item id="42036" name="Regelcommentaar uit"/>
<Item id="42055" name="Lege regels verwijderen"/>
@ -232,7 +229,7 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="43051" name="Regels zonder bladwijzer wissen"/>
<Item id="43050" name="Bladwijzers omkeren"/>
<Item id="43052" name="Zoeken naar tekens in &amp;bereik..."/>
<Item id="43053" name="Alles s&amp;electeren tussen {} [] of ()"/>
<Item id="43053" name="Alles selecteren tussen bij elkaar horende &amp;haakjes"/>
<Item id="43009" name="Ga naar overeenkomend &amp;haakje"/>
<Item id="43010" name="Vorig&amp;e zoeken"/>
<Item id="43011" name="&amp;Snel zoeken..."/>
@ -365,7 +362,6 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="10005" name="Naar begin verplaatsen"/>
<Item id="10006" name="Naar einde verplaatsen"/>
<Item id="46001" name="Stijlconfigurator..."/>
<Item id="46016" name="Geen (normale tekst)"/>
<Item id="46250" name="Aangepaste syntaxismarkering ontwerpen..."/>
<Item id="46300" name="Map met aangepaste syntaxissen openen..."/>
<Item id="46301" name="Notepad++-collectie van aangepaste syntaxissen"/>
@ -421,19 +417,17 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="11005" name="Pad van Z naar A"/>
<Item id="11006" name="Type van A naar Z"/>
<Item id="11007" name="Type van Z naar A"/>
<Item id="11008" name="Inhoudlengte oplopend"/>
<Item id="11009" name="Inhoudlengte aflopend"/>
<Item id="11008" name="Grootte van klein naar groot"/>
<Item id="11009" name="Grootte van groot naar klein"/>
</Commands>
</Main>
<TabBar>
<Item CMDID="41003" name="Sluiten"/>
<Item CMDID="0" name="Meerdere tabs sluiten"/>
<Item CMDID="41005" name="Overige documenten sluiten"/>
<Item CMDID="41026" name="Alles sluiten, behalve vastgemaakte"/>
<Item CMDID="41009" name="Documenten aan de linkerkant sluiten"/>
<Item CMDID="41018" name="Documenten aan de rechterkant sluiten"/>
<Item CMDID="41024" name="Ongewijzigde documenten sluiten"/>
<Item CMDID="44048" name="Tab vastmaken" alternativeName="Tab losmaken"/>
<Item CMDID="41006" name="Opslaan"/>
<Item CMDID="41008" name="Opslaan als..."/>
<Item CMDID="1" name="Openen in"/>
@ -445,15 +439,13 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item CMDID="41016" name="Naar prullenbak verplaatsen"/>
<Item CMDID="41014" name="Opnieuw laden"/>
<Item CMDID="41010" name="Afdrukken..."/>
<Item CMDID="42028" name="Alleen-lezen in Notepad++"/>
<Item CMDID="42033" name="Alleen-lezen-attribuut in Windows"/>
<Item CMDID="42028" name="Alleen-lezen"/>
<Item CMDID="42033" name="Alleen-lezen opheffen"/>
<Item CMDID="2" name="Naar klembord kopiëren"/>
<Item CMDID="42029" name="Volledig bestandspad kopiëren"/>
<Item CMDID="42030" name="Bestandsnaam kopiëren"/>
<Item CMDID="42031" name="Pad naar huidige map kopiëren"/>
<Item CMDID="3" name="Document verplaatsen"/>
<Item CMDID="10005" name="Naar begin verplaatsen"/>
<Item CMDID="10006" name="Naar einde verplaatsen"/>
<Item CMDID="10001" name="Naar deelvenster verplaatsen"/>
<Item CMDID="10002" name="Naar deelvenster kopiëren"/>
<Item CMDID="10003" name="Naar een nieuw venster verplaatsen"/>
@ -509,6 +501,7 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="1626" name="&amp;Uitgebreid (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Vervangen in bestanden"/>
<Item id="1665" name="Vervangen in projecten"/>
<Item id="1661" name="Huidige bestandsmap"/>
<Item id="1662" name="Projectpaneel 1"/>
<Item id="1663" name="Projectpaneel 2"/>
<Item id="1664" name="Projectpaneel 3"/>
@ -641,16 +634,14 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="2219" name="Standaard trefwoorden"/>
<Item id="2221" name="Aangepaste trefwoorden"/>
<Item id="2225" name="Syntaxis:"/>
<Item id="2226" name="Voorgrondkleur forceren voor alle stijlen"/>
<Item id="2227" name="Achtergrondkleur forceren voor alle stijlen"/>
<Item id="2228" name="Keuze voor lettertype forceren voor alle stijlen"/>
<Item id="2229" name="Keuze voor lettertype-grootte forceren voor alle stijlen"/>
<Item id="2230" name="Keuze voor vet forceren voor alle stijlen"/>
<Item id="2231" name="Keuze voor cursief forceren voor alle stijlen"/>
<Item id="2232" name="Keuze voor onderstrepen forceren voor alle stijlen"/>
<Item id="2226" name="Voorgrondkleur vervangen"/>
<Item id="2227" name="Achtergrondkleur vervangen"/>
<Item id="2228" name="Normaal lettertype vervangen"/>
<Item id="2229" name="Lettergrootte vervangen"/>
<Item id="2230" name="Vet lettertype vervangen"/>
<Item id="2231" name="Cursief lettertype vervangen"/>
<Item id="2232" name="Onderstreept lettertype vervangen"/>
<Item id="2234" name="Naar instellingen gaan"/>
<!-- Don't translate "Global override" -->
<Item id="2235" name="Wat is Global override?"/>
</SubDialog>
</StyleConfig>
@ -765,8 +756,8 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="11005" name="Sorteren op pad van Z naar A"/>
<Item id="11006" name="Sorteren op type van A naar Z"/>
<Item id="11007" name="Sorteren op type van Z naar A"/>
<Item id="11008" name="Sorteren op inhoudlengte oplopend"/>
<Item id="11009" name="Sorteren op inhoudlengte aflopend"/>
<Item id="11008" name="Sorteren op grootte, van klein naar groot"/>
<Item id="11009" name="Sorteren op grootte, van groot naar klein"/>
</MainCommandNames>
</ShortcutMapper>
<ShortcutMapperSubDialg title="Sneltoets">
@ -831,7 +822,6 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Folder title="Algemeen">
<Item id="21101" name="Standaardstijl"/>
<Item id="21102" name="Opmaak"/>
<Item id="21103" name="Online hulp voor aangepaste syntaxis"/>
<Item id="21105" name="Documentatie"/>
<Item id="21106" name="Lege regels samenvouwen"/>
<Item id="21220" name="Code samenvouwen (type 1)"/>
@ -955,62 +945,42 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Preference title="Voorkeuren">
<Item id="6001" name="Sluiten"/>
<Global title="Algemeen">
<Item id="6123" name="Lokalisatie"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Menubalk verbergen (tonen met Alt of F10)"/>
<Item id="6132" name="Snelkoppelingen ▼ ✕ rechts verbergen"/>
<Item id="6133" name="Statusbalk"/>
<Item id="6134" name="Verbergen"/>
</Global>
<Toolbar title="Werkbalk">
<Item id="6101" name="Werkbalk"/>
<Item id="6102" name="Verbergen"/>
<Item id="6103" name="Fluent UI: klein"/>
<Item id="6104" name="Fluent UI: groot"/>
<Item id="6129" name="Gevulde fluent UI: klein"/>
<Item id="6130" name="Gevulde fluent UI: groot"/>
<Item id="6105" name="Standaardpictogrammen: klein"/>
<Item id="6011" name="Kleuren"/>
<Item id="6012" name="Volledig"/>
<Item id="6013" name="Gedeeltelijk"/>
<Item id="6014" name="Kleurkeuze"/>
<Item id="6015" name="Standaard"/>
<Item id="6016" name="Rood"/>
<Item id="6017" name="Groen"/>
<Item id="6018" name="Blauw"/>
<Item id="6019" name="Paars"/>
<Item id="6020" name="Cyaan"/>
<Item id="6021" name="Olijf"/>
<Item id="6022" name="Geel"/>
<Item id="6023" name="Systeemkleur"/>
<Item id="6024" name="Aangepast"/>
</Toolbar>
<Tabbar title="Tabblad-balk">
<Item id="6106" name="Tabblad-balk"/>
<Item id="6107" name="Kleine tabs"/>
<Item id="6108" name="Vergrendelen (slepen en neerzetten uitschakelen)"/>
<Item id="6109" name="Kleur van inactieve tab wijzigen"/>
<Item id="6108" name="Slepen en neerzetten uitschakelen"/>
<Item id="6109" name="Inactieve tabbladen camoufleren"/>
<Item id="6110" name="Actieve tabbladen accentueren"/>
<Item id="6111" name="Knoppen weergeven op niet-actieve tabbladen"/>
<Item id="6112" name="Knop sluiten weergeven"/>
<Item id="6112" name="Knop sluiten op elke tab weergeven"/>
<Item id="6113" name="Document sluiten door dubbelklikken"/>
<Item id="6115" name="Functie voor tab vastzetten inschakelen"/>
<Item id="6135" name="Alleen vastgezette knop weergeven"/>
<Item id="6118" name="Verbergen"/>
<Item id="6119" name="Tabs in meerdere rijen weergeven"/>
<Item id="6120" name="Verticale tabs"/>
<Item id="6121" name="Afsluiten bij sluiten van laatste tab"/>
<Item id="6128" name="Alternatieve pictogrammen"/>
<Item id="6125" name="Gedrag"/>
<Item id="6126" name="Gedrag en uiterlijk"/>
</Tabbar>
<Scintillas title="Bewerken 1">
<Item id="6133" name="Statusbalk"/>
<Item id="6134" name="Verbergen"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Menubalk verbergen (tonen met Alt of F10)"/>
<Item id="6132" name="Snelkoppelingen ▼ ✕ rechts in menubalk verbergen (Notepad++ moet opnieuw worden gestart)"/>
<Item id="6123" name="Taal"/>
</Global>
<Scintillas title="Bewerken">
<Item id="6216" name="Cursor-instellingen"/>
<Item id="6217" name="Breedte:"/>
<Item id="6219" name="Knippersnelheid:"/>
<Item id="6221" name="Snel"/>
<Item id="6222" name="Traag"/>
<Item id="6221" name="100"/>
<Item id="6222" name="0"/>
<Item id="6246" name="Opdrachten voor in-/uitvouwen van huidig niveau omschakelbaar maken"/>
<Item id="6227" name="Automatische terugloop"/>
<Item id="6228" name="Standaard"/>
@ -1021,31 +991,21 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="6236" name="Scrollen voorbij laatste regel inschakelen"/>
<Item id="6239" name="Selectie behouden bij rechtsklikken buiten selectie"/>
<Item id="6245" name="Virtuele ruimte inschakelen"/>
<Item id="6214" name="Kopiëren/knippen van regel zonder te selecteren inschakelen"/>
<Item id="6225" name="Aangepaste kleur toepassen op voorgrond van geselecteerde tekst"/>
<Item id="6651" name="Indicator voor huidige regel"/>
<Item id="6652" name="Geen"/>
<Item id="6653" name="Achtergrond markeren"/>
<Item id="6654" name="Frame"/>
<Item id="6655" name="Breedte:"/>
</Scintillas>
<Scintillas2 title="Editing 2">
<Item id="6521" name="Meervoudig bewerken"/>
<Item id="6522" name="Meervoudig bewerken inschakelen (Ctrl+Muis klikken/selectie)"/>
<Item id="6523" name="Kolomselectie naar meervoudig bewerken inschakelen"/>
<Item id="6247" name="Regeleinde (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Standaard"/>
<Item id="6249" name="Platte tekst"/>
<Item id="6250" name="Aangepaste kleur"/>
<Item id="6252" name="Niet-afdrukbare tekens"/>
<Item id="6260" name="Uiterlijk"/>
<Item id="6254" name="Afkorting"/>
<Item id="6255" name="Codepoint"/>
<Item id="6256" name="Aangepaste kleur"/>
<Item id="6258" name="Instellingen voor uiterlijk toepassen op C0, C1 en Unicode-regeleindes"/>
<Item id="6259" name="Typen van stuurtekens (C0-code) in het document voorkomen"/>
</Scintillas2>
<Item id="6258" name="Toepassen op C0, C1 en Unicode-regeleindes"/>
</Scintillas>
<DarkMode title="Donkere modus">
<Item id="7131" name="Lichte modus"/>
@ -1059,10 +1019,10 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="7108" name="Cyaan"/>
<Item id="7109" name="Olijf"/>
<Item id="7115" name="Aangepast"/>
<Item id="7116" name="Inhoud-achtergrond"/>
<Item id="7117" name="Hot-track item"/>
<Item id="7118" name="Bedieningsachtergrond"/>
<Item id="7119" name="Venster-achtergrond"/>
<Item id="7116" name="Bovenkant"/>
<Item id="7117" name="Opgelicht menu (hot-track)"/>
<Item id="7118" name="Actief"/>
<Item id="7119" name="Hoofd"/>
<Item id="7120" name="Fout"/>
<Item id="7121" name="Tekst"/>
<Item id="7122" name="Donkerdere tekst"/>
@ -1087,11 +1047,11 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="6292" name="Dynamische breedte"/>
<Item id="6293" name="Constante breedte"/>
<Item id="6207" name="Bladwijzers weergeven"/>
<Item id="6223" name="Geschiedenis van wijzigingen"/>
<Item id="6223" name="In de marge weergeven"/>
<Item id="6296" name="In de tekst weergeven"/>
<Item id="6223" name="Geschiedenis van wijzigingen weergeven"/>
<Item id="6211" name="Instellingen verticale rand"/>
<Item id="6213" name="Achtergrondmodus"/>
<Item id="6237" name="Voeg uw kolommarkering toe door de positie aan te geven met een decimaal getal.
U kunt verschillende kolommarkeringen vastleggen door gebruik te maken van spaties om de verschillende getallen van elkaar te scheiden."/>
<Item id="6231" name="Breedte rand"/>
<Item id="6235" name="Geen rand"/>
<Item id="6208" name="Vulling"/>
@ -1115,7 +1075,6 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="6419" name="Nieuw document"/>
<Item id="6420" name="Toepassen op geopende ANSI-bestanden"/>
<Item id="6432" name="Steeds een extra nieuw document openen bij opstarten"/>
<Item id="6433" name="Eerste regel van document gebruiken als naam voor naamloos tabblad"/>
</NewDoc>
<DefaultDir title="Standaardmap">
@ -1130,29 +1089,17 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="4009" name="Ondersteund:"/>
<Item id="4010" name="Geregistreerd:"/>
</FileAssoc>
<Language title="Syntaxismarkering">
<Item id="6505" name="Beschikbare items"/>
<Item id="6506" name="Uitgeschakelde items"/>
<Item id="6507" name="Compacte indeling inschakelen"/>
<Item id="6508" name="Syntaxis-menu"/>
<Item id="6335" name="Backslash als escape-teken behandelen voor SQL"/>
</Language>
<Indentation title="Inspringing">
<Item id="7161" name="Auto-inspringing"/>
<Item id="7162" name="Geen"/>
<Item id="7163" name="Basis"/>
<Item id="7164" name="Geavanceerd"/>
<Item id="6301" name="Inspringing-instellingen"/>
<Item id="6302" name="Spatieteken(s)"/>
<Item id="6303" name="Grootte inspringing:"/>
<Item id="6310" name="Inspringing met:"/>
<Item id="6311" name="Tab-teken"/>
<Item id="6301" name="Tab-instellingen"/>
<Item id="6302" name="Vervangen door spaties"/>
<Item id="6303" name="Tabgrootte: "/>
<Item id="6510" name="Standaardwaarde gebruiken"/>
<Item id="6512" name="Backspace-toets verwijdert inspringing in plaats van een spatie"/>
</Indentation>
<Item id="6335" name="Backslash als SQL escape-teken behandelen"/>
</Language>
<Highlighting title="Markeren">
<Item id="6351" name="Alle overeenkomsten van token stileren"/>
@ -1215,12 +1162,11 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="6903" name="Zoekvenster blijft open na zoekopdracht die naar het resultaatvenster uitvoert"/>
<Item id="6904" name="Alles vervangen in alle geopende documenten bevestigen"/>
<Item id="6905" name="Vervangen: niet naar de volgende overeenkomst gaan"/>
<Item id="6906" name="Zoekresultaatvenster: slechts een item per gevonden regel weergeven indien mogelijk"/>
<Item id="6906" name="Zoekresultaatvenster: slechts een item per gevonden regel weergeven"/>
<Item id="6907" name="Wanneer het zoekvenster opgeroepen is"/>
<Item id="6908" name="Zoekveld vullen met geselecteerde tekst"/>
<Item id="6909" name="Woord onder 'dakje' selecteren wanneer niets geselecteerd is"/>
<Item id="6910" name="Minimale grootte voor automatisch controleren &quot;in selectie&quot;:"/>
<Item id="6913" name="Mapveld voor zoeken in bestanden opvullen gebaseerd op actief document"/>
</Searching>
<RecentFilesHistory title="Recente bestanden">
@ -1237,9 +1183,9 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Backup title="Back-up">
<Item id="6817" name="Sessie-momentopname en regelmatige back-up"/>
<Item id="6818" name="Sessie-momentopname en regelmatige back-up inschakelen"/>
<Item id="6819" name="Back-up triggeren bij wijziging elke"/>
<Item id="6821" name="seconden"/>
<Item id="6822" name="Backup-map:"/>
<Item id="6819" name="Back-up elke"/>
<Item id="6821" name="seconden bijwerken"/>
<Item id="6822" name="Map:"/>
<Item id="6309" name="Huidige sessie onthouden voor volgende start"/>
<Item id="6825" name="Niet-toegankelijke bestanden van vorige sessie onthouden"/>
<Item id="6801" name="Back-up bij opslaan"/>
@ -1251,6 +1197,7 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
</Backup>
<AutoCompletion title="Automatisch aanvullen">
<Item id="6115" name="Automatisch inspringen"/>
<Item id="6807" name="Automatisch aanvullen"/>
<Item id="6808" name="Inschakelen"/>
<Item id="6809" name="Functies aanvullen"/>
@ -1309,7 +1256,7 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<Item id="7141" name="Beperking grote bestanden"/>
<Item id="7143" name="Beperking grote bestanden inschakelen (geen syntaxismarkering)"/>
<Item id="7144" name="Grootte van groot bestand opgeven:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Overeenkomende haakjes toestaan"/>
<Item id="7148" name="Automatisch aanvullen toestaan"/>
<Item id="7149" name="Slim markeren toestaan"/>
@ -1342,38 +1289,20 @@ Last modified on 2025-07-25 by Thomas De Rocker (RockyTDR).
<MISC title="Overig">
<ComboBox id="6347">
<Element name="Inschakelen voor huidig bestand"/>
<Element name="Inschakelen"/>
<Element name="Inschakelen voor alle geopende documenten"/>
<Element name="Uitschakelen"/>
</ComboBox>
<ComboBox id="6307">
<Element name="Geen actie op"/>
<Element name="Minimaliseren naar"/>
<Element name="Sluiten naar"/>
<Element name="Minimaliseren/sluiten naar"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (meest compatibel)"/>
<Element name="DirectWrite (standaard)"/>
<Element name="DirectWrite (frames behouden)"/>
<Element name="DirectWrite (tekenen naar GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Uitschakelen"/>
<Element name="Inschakelen bij opstarten van Notepad++"/>
<Element name="Inschakelen bij afsluiten van Notepad++"/>
</ComboBox>
<Item id="6308" name="Naar systeemvak minimaliseren"/>
<Item id="6363" name="rendermodus"/>
<Item id="6365" name="Auto-updater:"/>
<Item id="6312" name="Bestandswijziging detecteren"/>
<Item id="6313" name="In stilte bijwerken"/>
<Item id="6325" name="Na bijwerken naar de laatste regel gaan"/>
<Item id="6322" name="Bestandsextensie sessie:"/>
<Item id="6323" name="Notepad++ automatisch bijwerken"/>
<Item id="6324" name="Wisselen tussen documenten (Ctrl+Tab)"/>
<Item id="6331" name="Alleen de bestandsnaam in de titelbalk weergeven"/>
<Item id="6334" name="Tekenset automatisch detecteren"/>
<Item id="6349" name="DirectWrite gebruiken (kan weergave van speciale tekens verbeteren. Notepad++ moet opnieuw gestart worden)"/>
<Item id="6337" name="Bestandsextensie werkruimte:"/>
<Item id="6114" name="Inschakelen"/>
<Item id="6117" name="Volgorde van wisselen onthouden"/>
@ -1449,11 +1378,6 @@ U kunt dit dialoogvenster later terug inschakelen via voorkeuren."/>
<Item id="7" name="&amp;Nee"/>
<Item id="4" name="&amp;Altijd ja"/>
</DoSaveAll><!-- HowToReproduce: Check the "Enable Save All confirm dialog" checkbox in Preference->MISC, now click "Save all" -->
<DebugInfo title="Debug-info">
<Item id="1752" name="&amp;Debug-info naar klembord kopiëren"/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
@ -1485,9 +1409,6 @@ Uw online instellingen zullen geannuleerd worden. Stel een coherente waarde in v
<DroppingFolderAsProjectModeWarning title="Ongeldige actie" message="U kunt alleen bestanden of mappen neerzetten, maar niet allebei tegelijk, omdat u in projectmodus map neerzetten zit.
U moet &quot;vij neerzetten van een map alle bestanden openen in plaats van de map als werkruimte te starten&quot; inschakelen in de sectie &quot;standaardmap&quot; van het voorkeurenvenster om deze handeling te laten werken."/>
<SortingError title="Sorteerfout" message="Kan numerieke sortering niet uitvoeren vanwege regel $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SortLocaleMultiple title="Sorteren niet uitgevoerd" message="Het sorteren van meerdere selecties wordt niet ondersteund."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Sorteren mislukt" message="De reden waarom het sorteren mislukte, kan niet worden vastgesteld."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Sorteren mislukt" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Tip voor kolommodus" message="
Er zijn 3 manieren om over te schakelen naar de kolomselectie-modus:
@ -1558,13 +1479,8 @@ Wilt u doorgaan?"/>
<UDLNewNameError title="UDL-fout" message="Deze naam wordt gebruikt door een andere taal.
Geef een andere naam op."/>
<UDLRemoveCurrentLang title="Huidige taal verwijderen" message="Weet u het zeker?"/>
<UDL_importSuccessful title="Aangepaste syntaxis" message="Importeren gelukt."/>
<UDL_importFails title="Aangepaste syntaxis" message="Importeren mislukt."/>
<UDL_saveBeforeImport title="Aangepaste syntaxis" message="Sla uw syntaxis-definitie op door op de knop &quot;Opslaan Als...&quot; te klikken voordat u exporteert."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="Aangepaste syntaxis" message="Exporteren gelukt."/>
<UDL_exportFails title="Aangepaste syntaxis" message="Exporteren mislukt."/>
<SCMapperDoDeleteOrNot title="Weet u het zeker?" message="Weet u zeker dat u deze snelkoppeling wilt verwijderen?"/>
<FindCharRangeValueError title="Probleem met bereik van waarde" message="U moet een waarde opgeven tussen 0 en 255."/> <!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Probleem met bereik van waarde" message="U moet een waarde opgeven tussen 0 en 255."/>
<OpenInAdminMode title="Opslaan mislukt" message="Het bestand kan niet opgeslagen worden en kan beveiligd zijn.
Wilt u Notepad++ starten in beheerdersmodus?"/>
<OpenInAdminModeWithoutCloseCurrent title="Opslaan mislukt" message="Het bestand kan niet opgeslagen worden en kan beveiligd zijn.
@ -1600,15 +1516,6 @@ Wilt u deze plaatshouders aanmaken?
Opmerking: als u ervoor kiest om de plaatshouders niet aan te maken of ze later te sluiten, zal uw sessie worden GEWIJZIGD BIJ HET AFSLUITEN! We raden u aan nu een back-up te maken van uw &quot;session.xml&quot;."/>
<RTLvsDirectWrite title="Kan tekstrichting rechts-links niet uitvoeren" message="Tekstrichting rechts-links is niet compatibel met de modus DirectWrite. Schakel de DirectWrite-modus uit in de overige-sectie van het voorkeurenvenster en start Notepad++ opnieuw."/>
<FileMemoryAllocationFailed title="Uitzondering: toewijzing van bestandsgeheugen mislukt" message="Er is vermoedelijk onvoldoende aaneensluitend vrij geheugen voor het bestand om geladen te worden door Notepad++."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Regex achterwaarts zoeken uitgeschakeld" message="Achterwaarts regex zoeken is standaard uitgeschakeld omwille van potentieel onverwachte resultaten. Om een achterwaartse zoekopdracht uit te voeren, opent u het zoekvenster en selecteert u ofwel normale of uitgebreide zoekmodus in plaats van reguliere expressie.
Druk op OK om het zoekvenster te openen en de focus erop te zetten.
Als u de functie voor achterwaarts regex-zoeken nodig hebt, raadpleegt u de gebruikershandleiding voor instructies om ze in te schakelen."/>
<PrintError title="0" message="Kan printer-document niet starten."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Zoeken-waarschuwing" message="De status van het vakje &quot;in selectie&quot; is automatisch gewijzigd.
Verifieer de zoekvoorwaarde voordat u de handeling uitvoert."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Notepad++ moet opnieuw gestart worden" message="Notepad++ nmoet opnieuw gestart worden om snelkoppelingen in het rechter menu weer te geven."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Wijzigen van alleen-lezen-attribuut van bestand is mislukt" message="Start Notepad++ als administrator om de bestandsattributen te wijzigen."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Geschiedenis van klembord"/>
@ -1732,6 +1639,7 @@ Verifieer de zoekvoorwaarde voordat u de handeling uitvoert."/> <!-- HowToReprod
<default-open-save-select-folder value="Een map selecteren als standaardmap"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Gebruik Shift + Enter om in omgekeerde richting te zoeken"/>
<two-find-buttons-tip value="modus met 2-zoekknoppen"/>
<file-rename-title value="Naam wijzigen"/>
<find-in-files-filter-tip value="In cpp, cxx, h, hxx en hpp- bestanden zoeken:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1744,9 +1652,8 @@ Zoeken in alle bestanden maar de mappen tests, bin en bin64 uitsluiten:
Zoeken in alle bestanden maar alle log- of logs-mappen recursief uitsluiten:
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Een map selecteren om in te zoeken"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Mapveld vullen gebaseerd op actief document"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Zoeken: begin van document bereikt. Eerste overeenkomst vanaf einde van document gevonden."/>
<find-status-end-reached value="Zoeken: einde van document bereikt. Eerste overeenkomst vanaf begin van document gevonden."/>
<find-status-top-reached value="Zoeken: eerste overeenkomst vanaf einde van document gevonden. Het begin van het document is bereikt."/>
<find-status-end-reached value="Zoeken: eerste overeenkomst vanaf begin van document gevonden. Het einde van het document is bereikt."/>
<find-status-replaceinfiles-1-replaced value="Vervangen in bestanden: 1 overeenkomst vervangen"/>
<find-status-replaceinfiles-nb-replaced value="Vervangen in bestanden: $INT_REPLACE$ overeenkomsten vervangen"/>
<find-status-replaceinopenedfiles-1-replaced value="Vervangen in geopende bestanden: 1 overeenkomst vervangen"/>
@ -1760,8 +1667,8 @@ Zoeken in alle bestanden maar alle log- of logs-mappen recursief uitsluiten:
<find-status-replaceall-1-replaced value="Alles vervangen: 1 overeenkomst vervangen"/>
<find-status-replaceall-nb-replaced value="Alles vervangen: $INT_REPLACE$ overeenkomsten vervangen"/>
<find-status-replaceall-readonly value="Alles vervangen: kan tekst niet vervangen. Huidig document is alleen-lezen"/>
<find-status-replace-end-reached value="Vervangen: einde van document bereikt. Begonnen vanaf begin."/>
<find-status-replace-top-reached value="Vervangen: begin van document bereikt. Begonnen vanaf einde."/>
<find-status-replace-end-reached value="Vervangen: eerste overeenkomst vanaf begin van document vervangen. Het einde van het document is bereikt"/>
<find-status-replace-top-reached value="Vervangen: eerste overeenkomst vanaf einde van document vervangen. Het begin van het document is bereikt"/>
<find-status-replaced-next-found value="Vervangen: 1 overeenkomst vervangen. Volgende overeenkomst gevonden"/>
<find-status-replaced-without-continuing value="Vervangen: 1 overeenkomst vervangen."/>
<find-status-replaced-next-not-found value="Vervangen: 1 overeenkomst vervangen. Geen nieuwe overeenkomsten gevonden"/>
@ -1778,9 +1685,11 @@ Zoeken in alle bestanden maar alle log- of logs-mappen recursief uitsluiten:
<finder-collapse-all value="Alles samenvouwen"/>
<finder-uncollapse-all value="Alles uitvouwen"/>
<finder-copy value="Geselecteerde regel(s) kopiëren"/>
<finder-copy-selected-paths value="Geselecteerde padnaam/-namen kopiëren"/>
<finder-copy-verbatim value="Kopiëren"/>
<finder-copy-paths value="Padnaam/-namen kopiëren"/>
<finder-select-all value="Alles selecteren"/>
<finder-clear-all value="Alles wissen"/>
<finder-open-selected-paths value="Geselecteerde padnamen openen"/>
<finder-open-all value="Alles openen"/>
<finder-purge-for-every-search value="Leegmaken voor elke zoekopdracht"/>
<finder-wrap-long-lines value="Lange regels laten teruglopen"/>
<common-ok value="Ok"/>
@ -1805,10 +1714,11 @@ Zoeken in alle bestanden maar alle log- of logs-mappen recursief uitsluiten:
<summary-nbsel2 value=" bytes) in "/>
<summary-nbrange value=" selecties"/>
<progress-hits-title value="Treffers:"/>
<progress-cancel-button value="Annuleren"/>
<progress-cancel-info value="Bewerking annuleren. Even geduld..."/>
<find-in-files-progress-title value="Voortgang van zoeken in bestanden..."/>
<replace-in-files-confirm-title value="Weet u het zeker?"/>
<replace-in-files-confirm-directory value="Wilt u alle overeenkomsten vervangen in:"/>
<replace-in-files-confirm-directory value="Wilt u alle overeenkomsten vervangen in: "/>
<replace-in-files-confirm-filetype value="Voor bestandstype:"/>
<replace-in-files-progress-title value="Voortgang van vervangen in bestanden..."/>
<replace-in-projects-confirm-title value="Weet u het zeker?"/>
@ -1846,7 +1756,7 @@ OPMERKING:
1. Aanpassen van deze opties vereist dat u grote bestanden opnieuw opent om juist gedrag te verkrijgen.
2. Als &quot;Automatische terugloop globaal uitschakelen&quot; aangevinkt is en u een groot bestand opent, zal &quot;automatische terugloop&quot; voor alle bestanden uitgeschakeld worden. U kunt het opnieuw inschakelen via het menu &quot;Beeld-&gt;Automatische terugloop&quot;."/>
<npcNote-tip value="Weergave van geselecteerde &quot;niet-ASCII&quot; witruimte en niet-afdrukbare (stuur)tekens.
<npcNote-tip value="Weergave van geselecteerde &quot;niet-ASCII&quot; witruimte en niet-afdrukbare (controle)tekens.
OPMERKING:
Door representatie te gebruiken worden tekeneffecten op tekst uitgeschakeld.
@ -1873,32 +1783,7 @@ Klik op de knop &quot;?&quot; rechts om de website met gebruikershandleiding te
<npcCustomColor-tip value="Ga naar de stijlconfigurator om de standaard aangepaste kleur voor geselecteerde witruimte en niet-afdrukbare tekens te wijzigen (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Instellingen voor weergave van niet-afdrukbare tekens toepassen op C0, C1 stuurtekens and Unicode-regeleindes (nieuwe regel, regelscheidingsteken en alinea-scheidingsteken)."/>
<searchingInSelThresh-tip value="Aantal geselecteerde tekens in de bewerkingszone zodat het selectievakje &quot;In selectie&quot; automatisch wordt ingeschakeld wanneer het dialoogvenster Zoeken wordt geactiveerd. De maximale waarde is 1024. Stel de waarde in op 0 om automatisch aanvinken uit te schakelen."/>
<verticalEdge-tip value="Voeg uw kolommarkering toe door de positie ervan aan te geven met een decimaal getal. U kunt meerdere kolommarkeringen definiëren door witruimte te gebruiken om de verschillende getallen van elkaar te scheiden.."/>
<fileSaveAsCopySaveButton-tip value="Houd Shift ingedrukt terwijl u op Opslaan drukt om de kopie te openen na het opslaan."/>
<autoIndentBasic-tip value="Zorg ervoor dat de inspringing van de huidige regel (dus de nieuwe regel die is gemaakt door op de ENTER-toets te drukken) overeenkomt met de inspringing van de vorige regel."/>
<autoIndentAdvanced-tip value="Slim inspringen inschakelen voor &quot;C-achtige&quot; talen en Python. De &quot;C-achtige&quot; talen zijn onder andere:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell en JSON.
Als u de geavanceerde modus selecteert maar geen bestanden in de bovengenoemde talen bewerkt, blijft de inspringing in de basismodus staan."/>
<!-- Don't translate "Global override" and "Default Style" -->
<global-override-tip value="Als u hier &quot;Global override&quot; inschakelt, wordt die parameter in alle taalstijlen overschreven. Wat u waarschijnlijk echt wilt, is de &quot;Default Style&quot;-instellingen gebruiken"/>
<scintillaRenderingTechnology-tip value="Kan het rendere nvan speciale tekens verbeteren of sommige grafische problemen oplossen. Start Notepad++ opnieuw om de wijzigingen toe te passen."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="lengte: $STR_REPLACE1$ regels: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Reg: $STR_REPLACE1$ Kol: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Pos: "/>
<statusbar-Sel value="Sel: "/>
<statusbar-Sel-number value="Sel"/>
<toolbar-accent-tip value="Met deze optie volgen de pictogrammen op uw werkbalk de accentkleur van het Windows-systeem. De accentkleur is de kleur die wordt gebruikt voor knoppen, randen en tegels in het Startmenu in Windows. Om deze kleur te wijzigen, gaat u naar Instellingen > Personalisatie > Kleuren en selecteert u de gewenste accentkleur."/>
<max-len-on-search-tip value="Slechts $INT_REPLACE$ tekens zijn toegelaten als tekstlengte voor het zoeken/vervangen - uw invoer kan afgekapt worden en zal niet opgeslagen worden voor de volgende sessie."/>
<max-len-on-save-tip value="Deze zoek-invoer (> $INT_REPLACE$ tekens) wordt niet opgeslagen voor de volgende sessie."/>
<goto-setting-tip value="Zoek hier uw instelling"/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

View File

@ -5,7 +5,7 @@ Translation note:
2. All the comments are for explanation, they are not for translation.
-->
<NotepadPlus>
<Native-Langue name="English" filename="english.xml" version="8.8.1">
<Native-Langue name="English" filename="english.xml" version="8.6.3">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -93,7 +93,6 @@ Translation note:
<Item id="41003" name="&amp;Close"/>
<Item id="41004" name="Clos&amp;e All"/>
<Item id="41005" name="Close All BUT Current Document"/>
<Item id="41026" name="Close All BUT Pinned Documents"/>
<Item id="41009" name="Close All to the Left"/>
<Item id="41018" name="Close All to the Right"/>
<Item id="41024" name="Close All Unchanged"/>
@ -137,8 +136,6 @@ Translation note:
<Item id="42060" name="Sort Lines Lexicographically Descending"/>
<Item id="42080" name="Sort Lines Lex. Ascending Ignoring Case"/>
<Item id="42081" name="Sort Lines Lex. Descending Ignoring Case"/>
<Item id="42100" name="Sort Lines In Locale Order Ascending"/>
<Item id="42101" name="Sort Lines In Locale Order Descending"/>
<Item id="42061" name="Sort Lines As Integers Ascending"/>
<Item id="42062" name="Sort Lines As Integers Descending"/>
<Item id="42063" name="Sort Lines As Decimals (Comma) Ascending"/>
@ -196,14 +193,14 @@ Translation note:
<Item id="42025" name="&amp;Save Currently Recorded Macro..."/>
<Item id="42026" name="Text Direction RTL"/>
<Item id="42027" name="Text Direction LTR"/>
<Item id="42028" name="Read-Only in Notepad++"/>
<Item id="42028" name="&amp;Set Read-Only"/>
<Item id="42029" name="Copy Current File Path"/>
<Item id="42030" name="Copy Current Filename"/>
<Item id="42031" name="Copy Current Dir. Path"/>
<Item id="42087" name="Copy All Filenames"/>
<Item id="42088" name="Copy All File Paths"/>
<Item id="42032" name="&amp;Run a Macro Multiple Times..."/>
<Item id="42033" name="Read-Only Attribute in Windows"/>
<Item id="42033" name="Clear Read-Only Flag"/>
<Item id="42035" name="Single Line Comment"/>
<Item id="42036" name="Single Line Uncomment"/>
<Item id="42055" name="Remove Empty Lines"/>
@ -225,7 +222,7 @@ Translation note:
<Item id="43051" name="Remove Non-Bookmarked Lines"/>
<Item id="43050" name="Inverse Bookmark"/>
<Item id="43052" name="Find characters in rang&amp;e..."/>
<Item id="43053" name="Select All In-betw&amp;een {} [] or ()"/>
<Item id="43053" name="Select All Between &amp;Matching Braces"/>
<Item id="43009" name="Go to &amp;Matching Brace"/>
<Item id="43010" name="Find &amp;Previous"/>
<Item id="43011" name="&amp;Incremental Search"/>
@ -358,7 +355,6 @@ Translation note:
<Item id="10005" name="Move to Start"/>
<Item id="10006" name="Move to End"/>
<Item id="46001" name="Style Configurator..."/>
<Item id="46016" name="None (Normal Text)"/>
<Item id="46250" name="Define your language..."/>
<Item id="46300" name="Open User Defined Language folder..."/>
<Item id="46301" name="Notepad++ User Defined Languages Collection"/>
@ -414,19 +410,17 @@ Translation note:
<Item id="11005" name="Path Z to A"/>
<Item id="11006" name="Type A to Z"/>
<Item id="11007" name="Type Z to A"/>
<Item id="11008" name="Content Length Ascending"/>
<Item id="11009" name="Content Length Descending"/>
<Item id="11008" name="Size Smaller to Larger"/>
<Item id="11009" name="Size Larger to Smaller"/>
</Commands>
</Main>
<TabBar>
<Item CMDID="41003" name="Close"/>
<Item CMDID="0" name="Close Multiple Tabs"/>
<Item CMDID="41005" name="Close All BUT This"/>
<Item CMDID="41026" name="Close All BUT Pinned"/>
<Item CMDID="41009" name="Close All to the Left"/>
<Item CMDID="41018" name="Close All to the Right"/>
<Item CMDID="41024" name="Close All Unchanged"/>
<Item CMDID="44048" name="Pin Tab" alternativeName="Unpin Tab"/>
<Item CMDID="41006" name="Save"/>
<Item CMDID="41008" name="Save As..."/>
<Item CMDID="1" name="Open into"/>
@ -438,8 +432,8 @@ Translation note:
<Item CMDID="41016" name="Move to Recycle Bin"/>
<Item CMDID="41014" name="Reload"/>
<Item CMDID="41010" name="Print..."/>
<Item CMDID="42028" name="Read-Only in Notepad++"/>
<Item CMDID="42033" name="Read-Only Attribute in Windows"/>
<Item CMDID="42028" name="Read-Only"/>
<Item CMDID="42033" name="Clear Read-Only Flag"/>
<Item CMDID="2" name="Copy to Clipboard"/>
<Item CMDID="42029" name="Copy Full File Path"/>
<Item CMDID="42030" name="Copy Filename"/>
@ -474,7 +468,7 @@ Translation note:
<Item id="1" name="Find Next"/>
<Item id="1722" name="Backward direction"/>
<Item id="2" name="Close"/>
<Item id="1620" name="&amp;Find what:"/>
<Item id="1620" name="&amp;Find what :"/>
<Item id="1603" name="Match &amp;whole word only"/>
<Item id="1604" name="Match &amp;case"/>
<Item id="1605" name="Re&amp;gular expression"/>
@ -483,7 +477,7 @@ Translation note:
<Item id="1615" name="Mark All"/>
<Item id="1616" name="Book&amp;mark line"/>
<Item id="1618" name="Purge for each search"/>
<Item id="1611" name="Rep&amp;lace with:"/>
<Item id="1611" name="Rep&amp;lace with :"/>
<Item id="1608" name="&amp;Replace"/>
<Item id="1609" name="Replace &amp;All"/>
<Item id="1687" name="On losing focus"/>
@ -492,8 +486,8 @@ Translation note:
<Item id="1633" name="Clear all marks"/>
<Item id="1635" name="Replace All in All &amp;Opened Documents"/>
<Item id="1636" name="Find All in All &amp;Opened Documents"/>
<Item id="1654" name="Filter&amp;s:"/>
<Item id="1655" name="Dir&amp;ectory:"/>
<Item id="1654" name="Filter&amp;s :"/>
<Item id="1655" name="Dir&amp;ectory :"/>
<Item id="1656" name="Find All"/>
<Item id="1658" name="In all su&amp;b-folders"/>
<Item id="1659" name="In &amp;hidden folders"/>
@ -502,6 +496,7 @@ Translation note:
<Item id="1626" name="E&amp;xtended (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Replace in Files"/>
<Item id="1665" name="Replace in Projects"/>
<Item id="1661" name="Follow current doc."/>
<Item id="1662" name="Project Panel 1"/>
<Item id="1663" name="Project Panel 2"/>
<Item id="1664" name="Project Panel 3"/>
@ -634,16 +629,14 @@ Translation note:
<Item id="2219" name="Default keywords"/>
<Item id="2221" name="User-defined keywords"/>
<Item id="2225" name="Language:"/>
<Item id="2226" name="Force foreground color for all styles"/>
<Item id="2227" name="Force background color for all styles"/>
<Item id="2228" name="Force font choice for all styles"/>
<Item id="2229" name="Force font size choice for all styles"/>
<Item id="2230" name="Force bold choice for all styles"/>
<Item id="2231" name="Force italic choice for all styles"/>
<Item id="2232" name="Force underline choice for all styles"/>
<Item id="2226" name="Enable global foreground color"/>
<Item id="2227" name="Enable global background color"/>
<Item id="2228" name="Enable global font"/>
<Item id="2229" name="Enable global font size"/>
<Item id="2230" name="Enable global bold font style"/>
<Item id="2231" name="Enable global italic font style"/>
<Item id="2232" name="Enable global underline font style"/>
<Item id="2234" name="Go to settings"/>
<!-- Don't translate "Global override" -->
<Item id="2235" name="What is Global override?"/>
</SubDialog>
</StyleConfig>
@ -752,14 +745,14 @@ Translation note:
<Item id="44113" name="Apply Tab Color 3"/>
<Item id="44114" name="Apply Tab Color 4"/>
<Item id="44115" name="Apply Tab Color 5"/>
<Item id="11002" name="Sort by Name A to Z"/>
<Item id="11003" name="Sort by Name Z to A"/>
<Item id="11004" name="Sort by Path A to Z"/>
<Item id="11005" name="Sort by Path Z to A"/>
<Item id="11006" name="Sort by Type A to Z"/>
<Item id="11007" name="Sort by Type Z to A"/>
<Item id="11008" name="Sort by Content Length Ascending"/>
<Item id="11009" name="Sort by Content Length Descending"/>
<Item id="11002" name="Sort By Name A to Z"/>
<Item id="11003" name="Sort By Name Z to A"/>
<Item id="11004" name="Sort By Path A to Z"/>
<Item id="11005" name="Sort By Path Z to A"/>
<Item id="11006" name="Sort By Type A to Z"/>
<Item id="11007" name="Sort By Type Z to A"/>
<Item id="11008" name="Sort By Size Smaller to Larger"/>
<Item id="11009" name="Sort By Size Larger to Smaller"/>
</MainCommandNames>
</ShortcutMapper>
<ShortcutMapperSubDialg title="Shortcut">
@ -824,7 +817,6 @@ Translation note:
<Folder title="Folder &amp;&amp; Default">
<Item id="21101" name="Default style"/>
<Item id="21102" name="Styler"/>
<Item id="21103" name="User Defined Languages online help"/>
<Item id="21105" name="Documentation"/>
<Item id="21106" name="Fold &amp;compact (fold empty lines too)"/>
<Item id="21220" name="Folding in code 1 style"/>
@ -948,57 +940,37 @@ Translation note:
<Preference title="Preferences">
<Item id="6001" name="Close"/>
<Global title="General">
<Item id="6123" name="Localization"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Hide (use Alt or F10 key to toggle)"/>
<Item id="6132" name="Hide right shortcuts ▼ ✕"/>
<Item id="6133" name="Status Bar"/>
<Item id="6134" name="Hide"/>
</Global>
<Toolbar title="Toolbar">
<Item id="6101" name="Toolbar"/>
<Item id="6102" name="Hide"/>
<Item id="6103" name="Fluent UI: small"/>
<Item id="6104" name="Fluent UI: large"/>
<Item id="6129" name="Filled Fluent UI: small"/>
<Item id="6130" name="Filled Fluent UI: large"/>
<Item id="6105" name="Standard icons: small"/>
<Item id="6011" name="Colorization"/>
<Item id="6012" name="Complete"/>
<Item id="6013" name="Partial"/>
<Item id="6014" name="Color choice"/>
<Item id="6015" name="Default"/>
<Item id="6016" name="Red"/>
<Item id="6017" name="Green"/>
<Item id="6018" name="Blue"/>
<Item id="6019" name="Purple"/>
<Item id="6020" name="Cyan"/>
<Item id="6021" name="Olive"/>
<Item id="6022" name="Yellow"/>
<Item id="6023" name="System Accent"/>
<Item id="6024" name="Custom"/>
</Toolbar>
<Tabbar title="Tab Bar">
<Item id="6106" name="Tab Bar"/>
<Item id="6107" name="Reduce"/>
<Item id="6108" name="Lock (no drag and drop)"/>
<Item id="6109" name="Change inactive tab color"/>
<Item id="6109" name="Darken inactive tabs"/>
<Item id="6110" name="Draw a colored bar on active tab"/>
<Item id="6111" name="Show buttons on inactive tabs"/>
<Item id="6112" name="Show close button"/>
<Item id="6112" name="Show close button on each tab"/>
<Item id="6113" name="Double click to close document"/>
<Item id="6115" name="Enable pin tab feature"/>
<Item id="6135" name="Show only pinned button"/>
<Item id="6118" name="Hide"/>
<Item id="6119" name="Multi-line"/>
<Item id="6120" name="Vertical"/>
<Item id="6121" name="Exit on close the last tab"/>
<Item id="6128" name="Alternate icons"/>
<Item id="6125" name="Behavior"/>
<Item id="6126" name="Look &amp;&amp; feel"/>
</Tabbar>
<Scintillas title="Editing 1">
<Item id="6133" name="Status Bar"/>
<Item id="6134" name="Hide"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Hide menu bar (use Alt or F10 key to toggle)"/>
<Item id="6132" name="Hide right shortcuts ▼ ✕ from the menu bar (Need to restart Notepad++)"/>
<Item id="6123" name="Localization"/>
</Global>
<Scintillas title="Editing">
<Item id="6216" name="Caret Settings"/>
<Item id="6217" name="Width:"/>
<Item id="6219" name="Blink rate:"/>
@ -1015,30 +987,21 @@ Translation note:
<Item id="6239" name="Keep selection when right-click outside of selection"/>
<Item id="6245" name="Enable virtual space"/>
<Item id="6214" name="Enable Copy/Cut Line without selection"/>
<Item id="6225" name="Apply custom color to selected text foreground"/>
<Item id="6651" name="Current Line Indicator"/>
<Item id="6652" name="None"/>
<Item id="6653" name="Highlight Background"/>
<Item id="6654" name="Frame"/>
<Item id="6655" name="Width:"/>
</Scintillas>
<Scintillas2 title="Editing 2">
<Item id="6521" name="Multi-Editing"/>
<Item id="6522" name="Enable Multi-Editing (Ctrl+Mouse click/selection)"/>
<Item id="6523" name="Enable Column Selection to Multi-Editing"/>
<Item id="6247" name="EOL (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Default"/>
<Item id="6249" name="Plain Text"/>
<Item id="6250" name="Custom Color"/>
<Item id="6252" name="Non-Printing Characters"/>
<Item id="6260" name="Appearance"/>
<Item id="6254" name="Abbreviation"/>
<Item id="6255" name="Codepoint"/>
<Item id="6256" name="Custom Color"/>
<Item id="6258" name="Apply Appearance settings to C0, C1 &amp;&amp; Unicode EOL"/>
<Item id="6259" name="Prevent control character (C0 code) typing into document"/>
</Scintillas2>
<Item id="6258" name="Apply to C0, C1 &amp;&amp; Unicode EOL"/>
</Scintillas>
<DarkMode title="Dark Mode">
<Item id="7131" name="Light mode"/>
@ -1052,10 +1015,10 @@ Translation note:
<Item id="7108" name="Cyan"/>
<Item id="7109" name="Olive"/>
<Item id="7115" name="Customized"/>
<Item id="7116" name="Content background"/>
<Item id="7117" name="Hot track item"/>
<Item id="7118" name="Control background"/>
<Item id="7119" name="Dialog background"/>
<Item id="7116" name="Top"/>
<Item id="7117" name="Menu hot track"/>
<Item id="7118" name="Active"/>
<Item id="7119" name="Main"/>
<Item id="7120" name="Error"/>
<Item id="7121" name="Text"/>
<Item id="7122" name="Darker text"/>
@ -1080,11 +1043,11 @@ Translation note:
<Item id="6292" name="Dynamic width"/>
<Item id="6293" name="Constant width"/>
<Item id="6207" name="Display bookmark"/>
<Item id="6295" name="Change History"/>
<Item id="6223" name="Show in the margin"/>
<Item id="6296" name="Show in the text"/>
<Item id="6223" name="Display Change History"/>
<Item id="6211" name="Vertical Edge Settings"/>
<Item id="6213" name="Background mode"/>
<Item id="6237" name="Add your column marker by indicating its position with a decimal number.
You can define several column markers by using white space to separate the different numbers."/>
<Item id="6231" name="Border Width"/>
<Item id="6235" name="No edge"/>
<Item id="6208" name="Padding"/>
@ -1104,11 +1067,10 @@ Translation note:
<Item id="6408" name="UTF-8 with BOM"/>
<Item id="6409" name="UTF-16 Big Endian with BOM"/>
<Item id="6410" name="UTF-16 Little Endian with BOM"/>
<Item id="6411" name="Default language:"/>
<Item id="6411" name="Default language :"/>
<Item id="6419" name="New Document"/>
<Item id="6420" name="Apply to opened ANSI files"/>
<Item id="6432" name="Always open a new document in addition at startup"/>
<Item id="6433" name="Use the first line of document as untitled tab name"/>
</NewDoc>
<DefaultDir title="Default Directory">
@ -1123,30 +1085,18 @@ Translation note:
<Item id="4009" name="Supported extensions:"/>
<Item id="4010" name="Registered extensions:"/>
</FileAssoc>
<Language title="Language">
<Item id="6505" name="Available items"/>
<Item id="6506" name="Disabled items"/>
<Item id="6507" name="Make language menu compact"/>
<Item id="6508" name="Language Menu"/>
<Item id="6301" name="Tab Settings"/>
<Item id="6302" name="Replace by space"/>
<Item id="6303" name="Tab size: "/>
<Item id="6510" name="Use default value"/>
<Item id="6335" name="Treat backslash as escape character for SQL"/>
</Language>
<Indentation title="Indentation">
<Item id="7161" name="Auto-indent"/>
<Item id="7162" name="None"/>
<Item id="7163" name="Basic"/>
<Item id="7164" name="Advanced"/>
<Item id="6301" name="Indent Settings"/>
<Item id="6302" name="Space character(s)"/>
<Item id="6303" name="Indent size:"/>
<Item id="6310" name="Indent using:"/>
<Item id="6311" name="Tab character"/>
<Item id="6510" name="Use default value"/>
<Item id="6512" name="Backspace key unindents instead of removing single space"/>
</Indentation>
<Highlighting title="Highlighting">
<Item id="6351" name="Style All Occurrences of Token"/>
<Item id="6352" name="Match case"/>
@ -1213,8 +1163,6 @@ Translation note:
<Item id="6908" name="Fill Find Field with Selected Text"/>
<Item id="6909" name="Select Word Under Caret when Nothing Selected"/>
<Item id="6910" name="Minimum Size for Auto-Checking &quot;In selection&quot;:"/>
<Item id="6913" name="Fill Find in Files Directory Field Based On Active Document"/>
<Item id="6916" name=": Max Characters to Auto-Fill Find Field from Selection"/>
</Searching>
<RecentFilesHistory title="Recent Files History">
@ -1231,7 +1179,7 @@ Translation note:
<Backup title="Backup">
<Item id="6817" name="Session snapshot and periodic backup"/>
<Item id="6818" name="Enable session snapshot and periodic backup"/>
<Item id="6819" name="Trigger backup on modification in every"/>
<Item id="6819" name="Backup in every"/>
<Item id="6821" name="seconds"/>
<Item id="6822" name="Backup path:"/>
<Item id="6309" name="Remember current session for next launch"/>
@ -1241,10 +1189,11 @@ Translation note:
<Item id="6316" name="Simple backup"/>
<Item id="6317" name="Verbose backup"/>
<Item id="6804" name="Custom Backup Directory"/>
<Item id="6803" name="Directory:"/>
<Item id="6803" name="Directory :"/>
</Backup>
<AutoCompletion title="Auto-Completion">
<Item id="6115" name="Auto-indent"/>
<Item id="6807" name="Auto-Completion"/>
<Item id="6808" name="Enable auto-completion on each input"/>
<Item id="6809" name="Function completion"/>
@ -1303,7 +1252,7 @@ Translation note:
<Item id="7141" name="Large File Restriction"/>
<Item id="7143" name="Enable Large File Restriction (no syntax highlighting)"/>
<Item id="7144" name="Define Large File Size:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Allow Brace Match"/>
<Item id="7148" name="Allow Auto-Completion"/>
<Item id="7149" name="Allow Smart Highlighting"/>
@ -1336,38 +1285,20 @@ Translation note:
<MISC title="MISC.">
<ComboBox id="6347">
<Element name="Enable for current file"/>
<Element name="Enable"/>
<Element name="Enable for all opened files"/>
<Element name="Disable"/>
</ComboBox>
<ComboBox id="6307">
<Element name="No action on"/>
<Element name="Minimize to"/>
<Element name="Close to"/>
<Element name="Minimize / Close to"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (most compatible)"/>
<Element name="DirectWrite (default)"/>
<Element name="DirectWrite (retain frames)"/>
<Element name="DirectWrite (draw to GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Disable"/>
<Element name="Enable on Notepad++ startup"/>
<Element name="Enable on Notepad++ exit"/>
</ComboBox>
<Item id="6308" name="system tray"/>
<Item id="6363" name="rendering mode"/>
<Item id="6365" name="Auto-updater:"/>
<Item id="6308" name="Minimize to system tray"/>
<Item id="6312" name="File Status Auto-Detection"/>
<Item id="6313" name="Update silently"/>
<Item id="6325" name="Scroll to the last line after update"/>
<Item id="6322" name="Session file ext.:"/>
<Item id="6323" name="Enable Notepad++ auto-updater"/>
<Item id="6324" name="Document Switcher (Ctrl+TAB)"/>
<Item id="6331" name="Show only filename in title bar"/>
<Item id="6334" name="Autodetect character encoding"/>
<Item id="6349" name="Use DirectWrite (May improve rendering special characters, need to restart Notepad++)"/>
<Item id="6337" name="Workspace file ext.:"/>
<Item id="6114" name="Enable"/>
<Item id="6117" name="Enable MRU behaviour"/>
@ -1443,22 +1374,17 @@ You can re-activate this dialog in Preferences later."/>
<Item id="7" name="&amp;No"/>
<Item id="4" name="&amp;Always yes"/>
</DoSaveAll><!-- HowToReproduce: Check the "Enable Save All confirm dialog" checkbox in Preference->MISC, now click "Save all" -->
<DebugInfo title="Debug Info">
<Item id="1752" name="&amp;Copy debug info to clipboard"/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
<ContextMenuXmlEditWarning title="Editing contextMenu" message="Editing contextMenu.xml allows you to modify your Notepad++ popup context menu.
You have to restart your Notepad++ to take effect after modifying contextMenu.xml."/>
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.
All the saved modifications cannot be undone.
All the saved modifications can not be undone.
Continue?"/><!-- HowToReproduce: when you openned file is modified but unsaved yet, and you are changing file encoding. -->
<LoseUndoAbilityWarning title="Lose Undo Ability Warning" message="You should save the current modification.
All the saved modifications cannot be undone.
All the saved modifications can not be undone.
Continue?"/><!-- HowToReproduce: when you openned file is modified and saved, then you are changing file encoding. -->
<CannotMoveDoc title="Move to new Notepad++ Instance" message="Document is modified, save it then try again."/><!-- HowToReproduce: From your Notepad++ drag & drop a clean (not dirty) file to outside of Notepad++, another instance of Notepad++ will be created. Then from your first Notepad++ drag & drop an unsaved file to the new instance. -->
@ -1477,11 +1403,8 @@ Your settings on cloud will be canceled. Please reset a coherent value via Prefe
<FilePathNotFoundWarning title="File Open" message="The file you're trying to open doesn't exist."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SessionFileInvalidError title="Could not Load Session" message="Session file is either corrupted or not valid."/><!-- HowToReproduce: Save current session via menu "File -> Save Session...", use another editor to modify the session you saved to make it an invalid xml file. Then load this invalid session via menu "File -> Load Session...". -->
<DroppingFolderAsProjectModeWarning title="Invalid action" message="You can only drop files or folders but not both, because you're in dropping Folder as Project mode.
You have to enable &quot;Open all files of folder instead of launching Folder as Workspace on folder dropping&quot; in &quot;Default Directory&quot; section of Preferences dialog to make this operation work."/>
you have to enable &quot;Open all files of folder instead of launching Folder as Workspace on folder dropping&quot; in &quot;Default Directory&quot; section of Preferences dialog to make this operation work."/>
<SortingError title="Sorting Error" message="Unable to perform numeric sorting due to line $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SortLocaleMultiple title="Sort not performed" message="Sorting multiple selections is not supported."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Sort Failed" message="The reason the sort failed cannot be determined."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Sort Failed" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Column Mode Tip" message="
There are 3 ways to switch to column-select mode:
@ -1523,12 +1446,12 @@ Do you want to go to Notepad++ page to download the latest version?"/><!-- HowTo
Do you want to open it?"/>
<CreateNewFileOrNot title="Create new file" message="&quot;$STR_REPLACE$&quot; doesn't exist. Create it?"/>
<CreateNewFileError title="Create new file" message="Cannot create the file &quot;$STR_REPLACE$&quot;."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<OpenFileError title="ERROR" message="Cannot open file &quot;$STR_REPLACE$&quot;."/>
<OpenFileError title="ERROR" message="Can not open file &quot;$STR_REPLACE$&quot;."/>
<OpenFileNoFolderError title="Cannot open file" message="&quot;$STR_REPLACE1$&quot; cannot be opened:
Folder &quot;$STR_REPLACE2$&quot; doesn't exist."/>
<FileBackupFailed title="File Backup Failed" message="The previous version of the file could not be saved into the backup directory at &quot;$STR_REPLACE$&quot;.
Do you want to save the current file anyway?"/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
Do you want to save the current file anyways?"/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<LoadStylersFailed title="Load stylers.xml failed" message="Load &quot;$STR_REPLACE$&quot; failed!"/>
<LoadLangsFailed title="Configurator" message="Load langs.xml failed!
Do you want to recover your langs.xml?"/><!-- HowToReproduce: Close Notepad++. Use another editor to remove all content of "langs.xml" (0 length) then save it. Open Notepad++. -->
@ -1552,13 +1475,8 @@ Do you want to continue?"/>
<UDLNewNameError title="UDL Error" message="This name is used by another language,
please give another one."/>
<UDLRemoveCurrentLang title="Remove the current language" message="Are you sure?"/>
<UDL_importSuccessful title="User Defined Language" message="Import successful."/>
<UDL_importFails title="User Defined Language" message="Failed to import."/>
<UDL_saveBeforeImport title="User Defined Language" message="Before exporting, save your language definition by clicking &quot;Save As...&quot; button."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="User Defined Language" message="Export successful."/>
<UDL_exportFails title="User Defined Language" message="Failed to export."/>
<SCMapperDoDeleteOrNot title="Are you sure?" message="Are you sure you want to delete this shortcut?"/>
<FindCharRangeValueError title="Range Value problem" message="You should type between 0 and 255."/> <!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Range Value problem" message="You should type between 0 and 255."/>
<OpenInAdminMode title="Save failed" message="The file cannot be saved and it may be protected.
Do you want to launch Notepad++ in Administrator mode?"/>
<OpenInAdminModeWithoutCloseCurrent title="Save failed" message="The file cannot be saved and it may be protected.
@ -1568,8 +1486,8 @@ Do you want to launch Notepad++ in Administrator mode?"/>
<ExitToUpdatePlugins title="Notepad++ is about to exit" message="If you click YES, you will quit Notepad++ to continue the operations.
Notepad++ will be restarted after all the operations are terminated.
Continue?"/>
<NeedToRestartToLoadPlugins title="Notepad++ needs to be relaunched" message="You have to restart Notepad++ to load plugins you installed."/><!-- HowToReproduce: Import a plugin via menu "Settings->Import->Import Plugin(s)...". -->
<ChangeHistoryEnabledWarning title="Notepad++ needs to be relaunched" message="You have to restart Notepad++ to enable Change History."/><!-- HowToReproduce: uncheck "Display Change History" via Preferences dialog "Marges/Border/Edge. -->
<NeedToRestartToLoadPlugins title="Notepad++ need to be relaunched" message="You have to restart Notepad++ to load plugins you installed."/><!-- HowToReproduce: Import a plugin via menu "Settings->Import->Import Plugin(s)...". -->
<ChangeHistoryEnabledWarning title="Notepad++ need to be relaunched" message="You have to restart Notepad++ to enable Change History."/><!-- HowToReproduce: uncheck "Display Change History" via Preferences dialog "Marges/Border/Edge. -->
<WindowsSessionExit title="Notepad++ - Windows session exit" message="Windows session is about to be terminated but you have some data unsaved. Do you want to exit Notepad++ now?"/>
<LanguageMenuCompactWarning title="Compact Language Menu" message="This option will be changed on the next launch."/><!-- HowToReproduce: toggle "Make language menu compact" via Preferences dialog "Language/Language Menu. -->
<SwitchUnsavedThemeWarning title="$STR_REPLACE$" message="Unsaved changes are about to be discarded!
@ -1594,15 +1512,6 @@ Would you like to create those placeholders?
NOTE: Choosing not to create the placeholders or closing them later, your session WILL BE MODIFIED ON EXIT! We suggest you backup your &quot;session.xml&quot; now."/>
<RTLvsDirectWrite title="Cannot run RTL" message="RTL is not compatible with DirectWrite mode. Please disable DirectWrite mode in MISC. section of Preferences dialog, and restart Notepad++."/>
<FileMemoryAllocationFailed title="Exception: File memory allocation failed" message="There is probably not enough contiguous free memory for the file being loaded by Notepad++."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Regex backward search disabled" message="By default, backward regex searching is disabled due to potentially unexpected results. To perform a backward search, open the Find dialog and select either normal or extended search mode instead of regular expression.
Press the OK button to open the Find dialog or set focus on it.
If you require the backward regex searching feature, consult the user manual for instructions on enabling it."/>
<PrintError title="0" message="Cannot start printer document."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Search warning" message="The &quot;In selection&quot; checkbox state has been automatically modified.
Please verify the search condition before performing the action."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Notepad++ needs to be restarted" message="Notepad++ needs to be restarted to show right menu shortcuts."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Changing file read-only attribute failed" message="Please run Notepad++ as administrator to change the file attributes."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Clipboard History"/>
@ -1726,6 +1635,7 @@ Please verify the search condition before performing the action."/> <!-- HowToRe
<default-open-save-select-folder value="Select a folder as default directory"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Use Shift+Enter to search in the opposite direction"/>
<two-find-buttons-tip value="2 find buttons mode"/>
<file-rename-title value="Rename"/>
<find-in-files-filter-tip value="Find in cpp, cxx, h, hxx &amp;&amp; hpp:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1738,9 +1648,8 @@ Find in all files but exclude folders tests, bin &amp;&amp; bin64:
Find in all files but exclude all folders log or logs recursively:
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Select a folder to search from"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Fill Directory field based on active document"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Find: Reached document beginning, first occurrence from the bottom found."/>
<find-status-end-reached value="Find: Reached document end, first occurrence from the top found."/>
<find-status-top-reached value="Find: Found the 1st occurrence from the bottom. The beginning of the document has been reached."/>
<find-status-end-reached value="Find: Found the 1st occurrence from the top. The end of the document has been reached."/>
<find-status-replaceinfiles-1-replaced value="Replace in Files: 1 occurrence was replaced"/>
<find-status-replaceinfiles-nb-replaced value="Replace in Files: $INT_REPLACE$ occurrences were replaced"/>
<find-status-replaceinopenedfiles-1-replaced value="Replace in Opened Files: 1 occurrence was replaced"/>
@ -1754,8 +1663,8 @@ Find in all files but exclude all folders log or logs recursively:
<find-status-replaceall-1-replaced value="Replace All: 1 occurrence was replaced"/>
<find-status-replaceall-nb-replaced value="Replace All: $INT_REPLACE$ occurrences were replaced"/>
<find-status-replaceall-readonly value="Replace All: Cannot replace text. The current document is read only"/>
<find-status-replace-end-reached value="Replace: Reached document end, started from top."/>
<find-status-replace-top-reached value="Replace: Reached document beginning, started from bottom."/>
<find-status-replace-end-reached value="Replace: Replaced the 1st occurrence from the top. The end of document has been reached"/>
<find-status-replace-top-reached value="Replace: Replaced the 1st occurrence from the bottom. The begin of document has been reached"/>
<find-status-replaced-next-found value="Replace: 1 occurrence was replaced. The next occurrence found."/>
<find-status-replaced-without-continuing value="Replace: 1 occurrence was replaced."/>
<find-status-replaced-next-not-found value="Replace: 1 occurrence was replaced. No more occurrences were found."/>
@ -1772,9 +1681,11 @@ Find in all files but exclude all folders log or logs recursively:
<finder-collapse-all value="Fold all"/>
<finder-uncollapse-all value="Unfold all"/>
<finder-copy value="Copy Selected Line(s)"/>
<finder-copy-selected-paths value="Copy Selected Pathname(s)"/>
<finder-copy-verbatim value="Copy"/>
<finder-copy-paths value="Copy Pathname(s)"/>
<finder-select-all value="Select all"/>
<finder-clear-all value="Clear all"/>
<finder-open-selected-paths value="Open Selected Pathname(s)"/>
<finder-open-all value="Open all"/>
<finder-purge-for-every-search value="Purge for every search"/>
<finder-wrap-long-lines value="Word wrap long lines"/>
<common-ok value="OK"/>
@ -1799,11 +1710,12 @@ Find in all files but exclude all folders log or logs recursively:
<summary-nbsel2 value=" bytes) in "/>
<summary-nbrange value=" ranges"/>
<progress-hits-title value="Hits:"/>
<progress-cancel-button value="Cancel"/>
<progress-cancel-info value="Cancelling operation, please wait..."/>
<find-in-files-progress-title value="Find In Files progress..."/>
<replace-in-files-confirm-title value="Are you sure?"/>
<replace-in-files-confirm-directory value="Are you sure you want to replace all occurrences in:"/>
<replace-in-files-confirm-filetype value="For file type:"/>
<replace-in-files-confirm-directory value="Are you sure you want to replace all occurrences in :"/>
<replace-in-files-confirm-filetype value="For file type :"/>
<replace-in-files-progress-title value="Replace In Files progress..."/>
<replace-in-projects-confirm-title value="Are you sure?"/>
<replace-in-projects-confirm-message value="Do you want to replace all occurrences in all documents in the selected Project Panel(s)?"/>
@ -1866,34 +1778,8 @@ Click on &quot;?&quot; button on right to open website with User Manual."/>
<!-- Don't translate "(&quot;Non-printing characters custom color&quot;)" -->
<npcCustomColor-tip value="Go to Style Configurator to change the default custom color for selected whitespace and non-printing characters (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Apply non-printing characters appearance settings to C0, C1 control and Unicode EOL (next line, line separator and paragraph separator) characters."/>
<searchingInSelThresh-tip value="Minimum number of selected characters in edit zone to automatically check the &quot;In selection&quot; checkbox when the Find dialog is activated. The maximum value is $INT_REPLACE$. Set the value to 0 to disable auto-checking."/>
<searchingFillFindWhat-tip value="Maximun number of selected characters in edit zone to fill automatically the &quot;Find what&quot; field when the Ctrl-F is triggered. The maximum value is $INT_REPLACE$, which is the maximum size of &quot;Find what&quot; field, limited by the system."/>
<verticalEdge-tip value="Add your column marker by indicating its position with a decimal number. You can define several column markers by using white space to separate the different numbers."/>
<fileSaveAsCopySaveButton-tip value="Hold Shift while pressing Save to open the copy after saving."/>
<autoIndentBasic-tip value="Ensure that the indentation of the current line (i.e. the new line created by pressing the ENTER key) matches the indentation of the previous line."/>
<autoIndentAdvanced-tip value="Enable smart indentation for &quot;C-like&quot; languages and Python. The &quot;C-like&quot; languages include:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell and JSON.
If you select advanced mode but do not edit files in the aforementioned languages, the indentation will remain in basic mode."/>
<!-- Don't translate "Global override" and "Default Style" -->
<global-override-tip value="Enabling &quot;Global override&quot; here will override that parameter in all language styles. What you probably really want is to use the &quot;Default Style&quot; settings instead"/>
<scintillaRenderingTechnology-tip value="May improve rendering of special characters or resolve some graphics issues, restart Notepad++ to apply the changes."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="length: $STR_REPLACE1$ lines: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Ln: $STR_REPLACE1$ Col: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Pos: "/>
<statusbar-Sel value="Sel: "/>
<statusbar-Sel-number value="Sel"/>
<toolbar-accent-tip value="This option makes your toolbar icons follow Windows system accent color. Accent color is the highlight color used in buttons, borders, and Start menu tiles in Windows. To change it, go to Settings &gt; Personalization &gt; Colors, then select your preferred accent color."/>
<max-len-on-search-tip value="Only $INT_REPLACE$ characters are allowed for the find/replace text length - your input could be truncated, and it won't be saved for the next session."/>
<max-len-on-save-tip value="This search input (> $INT_REPLACE$ characters) won't be saved for the next session."/>
<goto-setting-tip value="Find your setting here"/>
<searchingInSelThresh-tip value="Number of selected characters in edit zone to automatically check the &quot;In selection&quot; checkbox when the Find dialog is activated. The maximum value is 1024. Set the value to 0 to disable auto-checking."/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

View File

@ -5,7 +5,7 @@ Translation note:
2. All the comments are for explanation, they are not for translation.
-->
<NotepadPlus>
<Native-Langue name="English" filename="english_customizable.xml" version="8.8.1">
<Native-Langue name="English" filename="english_customizable.xml" version="8.6.3">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -93,7 +93,6 @@ Translation note:
<Item id="41003" name="&amp;Close"/>
<Item id="41004" name="Clos&amp;e All"/>
<Item id="41005" name="Close All BUT Current Document"/>
<Item id="41026" name="Close All BUT Pinned Documents"/>
<Item id="41009" name="Close All to the Left"/>
<Item id="41018" name="Close All to the Right"/>
<Item id="41024" name="Close All Unchanged"/>
@ -121,6 +120,16 @@ Translation note:
<Item id="42007" name="&amp;Select All"/>
<Item id="42020" name="Begin/End &amp;Select"/>
<Item id="42089" name="Begin/End Select in Column Mode"/>
<Item id="42090" name="Ignore Case &amp;&amp; Whole Word"/>
<Item id="42091" name="Match Case Only"/>
<Item id="42092" name="Match Whole Word Only"/>
<Item id="42093" name="Match Case &amp;&amp; Whole Word"/>
<Item id="42094" name="Ignore Case &amp;&amp; Whole Word"/>
<Item id="42095" name="Match Case Only"/>
<Item id="42096" name="Match Whole Word Only"/>
<Item id="42097" name="Match Case &amp;&amp; Whole Word"/>
<Item id="42098" name="Undo the Latest Added Multi-Select"/>
<Item id="42099" name="Skip Current &amp;&amp; Go to Next Multi-select"/>
<Item id="42084" name="Date Time (short)"/>
<Item id="42085" name="Date Time (long)"/>
<Item id="42086" name="Date Time (customized)"/>
@ -137,8 +146,6 @@ Translation note:
<Item id="42060" name="Sort Lines Lexicographically Descending"/>
<Item id="42080" name="Sort Lines Lex. Ascending Ignoring Case"/>
<Item id="42081" name="Sort Lines Lex. Descending Ignoring Case"/>
<Item id="42100" name="Sort Lines In Locale Order Ascending"/>
<Item id="42101" name="Sort Lines In Locale Order Descending"/>
<Item id="42061" name="Sort Lines As Integers Ascending"/>
<Item id="42062" name="Sort Lines As Integers Descending"/>
<Item id="42063" name="Sort Lines As Decimals (Comma) Ascending"/>
@ -159,16 +166,6 @@ Translation note:
<Item id="42074" name="Open Containing Folder in Explorer"/>
<Item id="42075" name="Search on Internet"/>
<Item id="42076" name="Change Search Engine..."/>
<Item id="42090" name="Ignore Case &amp;&amp; Whole Word"/>
<Item id="42091" name="Match Case Only"/>
<Item id="42092" name="Match Whole Word Only"/>
<Item id="42093" name="Match Case &amp;&amp; Whole Word"/>
<Item id="42094" name="Ignore Case &amp;&amp; Whole Word"/>
<Item id="42095" name="Match Case Only"/>
<Item id="42096" name="Match Whole Word Only"/>
<Item id="42097" name="Match Case &amp;&amp; Whole Word"/>
<Item id="42098" name="Undo the Latest Added Multi-Select"/>
<Item id="42099" name="Skip Current &amp;&amp; Go to Next Multi-select"/>
<Item id="42018" name="Start Re&amp;cording"/>
<Item id="42019" name="S&amp;top Recording"/>
<Item id="42021" name="&amp;Playback"/>
@ -196,14 +193,14 @@ Translation note:
<Item id="42025" name="&amp;Save Currently Recorded Macro..."/>
<Item id="42026" name="Text Direction RTL"/>
<Item id="42027" name="Text Direction LTR"/>
<Item id="42028" name="Read-Only in Notepad++"/>
<Item id="42028" name="&amp;Set Read-Only"/>
<Item id="42029" name="Copy Current File Path"/>
<Item id="42030" name="Copy Current Filename"/>
<Item id="42031" name="Copy Current Dir. Path"/>
<Item id="42087" name="Copy All Filenames"/>
<Item id="42088" name="Copy All File Paths"/>
<Item id="42032" name="&amp;Run a Macro Multiple Times..."/>
<Item id="42033" name="Read-Only Attribute in Windows"/>
<Item id="42033" name="Clear Read-Only Flag"/>
<Item id="42035" name="Single Line Comment"/>
<Item id="42036" name="Single Line Uncomment"/>
<Item id="42055" name="Remove Empty Lines"/>
@ -225,7 +222,7 @@ Translation note:
<Item id="43051" name="Remove Non-Bookmarked Lines"/>
<Item id="43050" name="Inverse Bookmark"/>
<Item id="43052" name="Find characters in rang&amp;e..."/>
<Item id="43053" name="Select All In-betw&amp;een {} [] or ()"/>
<Item id="43053" name="Select All Between &amp;Matching Braces"/>
<Item id="43009" name="Go to &amp;Matching Brace"/>
<Item id="43010" name="Find &amp;Previous"/>
<Item id="43011" name="&amp;Incremental Search"/>
@ -358,7 +355,6 @@ Translation note:
<Item id="10005" name="Move to Start"/>
<Item id="10006" name="Move to End"/>
<Item id="46001" name="Style Configurator..."/>
<Item id="46016" name="None (Normal Text)"/>
<Item id="46250" name="Define your language..."/>
<Item id="46300" name="Open User Defined Language folder..."/>
<Item id="46301" name="Notepad++ User Defined Languages Collection"/>
@ -414,19 +410,17 @@ Translation note:
<Item id="11005" name="Path Z to A"/>
<Item id="11006" name="Type A to Z"/>
<Item id="11007" name="Type Z to A"/>
<Item id="11008" name="Content Length Ascending"/>
<Item id="11009" name="Content Length Descending"/>
<Item id="11008" name="Size Smaller to Larger"/>
<Item id="11009" name="Size Larger to Smaller"/>
</Commands>
</Main>
<TabBar>
<Item CMDID="41003" name="Close"/>
<Item CMDID="0" name="Close Multiple Tabs"/>
<Item CMDID="41005" name="Close All BUT This"/>
<Item CMDID="41026" name="Close All BUT Pinned"/>
<Item CMDID="41009" name="Close All to the Left"/>
<Item CMDID="41018" name="Close All to the Right"/>
<Item CMDID="41024" name="Close All Unchanged"/>
<Item CMDID="44048" name="Pin Tab" alternativeName="Unpin Tab"/>
<Item CMDID="41006" name="Save"/>
<Item CMDID="41008" name="Save As..."/>
<Item CMDID="1" name="Open into"/>
@ -438,8 +432,8 @@ Translation note:
<Item CMDID="41016" name="Move to Recycle Bin"/>
<Item CMDID="41014" name="Reload"/>
<Item CMDID="41010" name="Print..."/>
<Item CMDID="42028" name="Read-Only in Notepad++"/>
<Item CMDID="42033" name="Read-Only Attribute in Windows"/>
<Item CMDID="42028" name="Read-Only"/>
<Item CMDID="42033" name="Clear Read-Only Flag"/>
<Item CMDID="2" name="Copy to Clipboard"/>
<Item CMDID="42029" name="Copy Full File Path"/>
<Item CMDID="42030" name="Copy Filename"/>
@ -474,7 +468,7 @@ Translation note:
<Item id="1" name="Find Next"/>
<Item id="1722" name="Backward direction"/>
<Item id="2" name="Close"/>
<Item id="1620" name="&amp;Find what:"/>
<Item id="1620" name="&amp;Find what :"/>
<Item id="1603" name="Match &amp;whole word only"/>
<Item id="1604" name="Match &amp;case"/>
<Item id="1605" name="Re&amp;gular expression"/>
@ -483,7 +477,7 @@ Translation note:
<Item id="1615" name="Mark All"/>
<Item id="1616" name="Book&amp;mark line"/>
<Item id="1618" name="Purge for each search"/>
<Item id="1611" name="Rep&amp;lace with:"/>
<Item id="1611" name="Rep&amp;lace with :"/>
<Item id="1608" name="&amp;Replace"/>
<Item id="1609" name="Replace &amp;All"/>
<Item id="1687" name="On losing focus"/>
@ -492,8 +486,8 @@ Translation note:
<Item id="1633" name="Clear all marks"/>
<Item id="1635" name="Replace All in All &amp;Opened Documents"/>
<Item id="1636" name="Find All in All &amp;Opened Documents"/>
<Item id="1654" name="Filter&amp;s:"/>
<Item id="1655" name="Dir&amp;ectory:"/>
<Item id="1654" name="Filter&amp;s :"/>
<Item id="1655" name="Dir&amp;ectory :"/>
<Item id="1656" name="Find All"/>
<Item id="1658" name="In all su&amp;b-folders"/>
<Item id="1659" name="In &amp;hidden folders"/>
@ -502,6 +496,7 @@ Translation note:
<Item id="1626" name="E&amp;xtended (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Replace in Files"/>
<Item id="1665" name="Replace in Projects"/>
<Item id="1661" name="Follow current doc."/>
<Item id="1662" name="Project Panel 1"/>
<Item id="1663" name="Project Panel 2"/>
<Item id="1664" name="Project Panel 3"/>
@ -519,9 +514,9 @@ Translation note:
</Find>
<IncrementalFind title="">
<Item id="1681" name="Find:"/>
<Item id="1685" name="Match &amp;case"/>
<Item id="1690" name="&amp;Highlight all"/>
<Item id="1681" name="Find"/>
<Item id="1685" name="Match case"/>
<Item id="1690" name="Highlight all"/>
</IncrementalFind>
<FindCharsInRange title="Find Characters in Range...">
@ -634,16 +629,14 @@ Translation note:
<Item id="2219" name="Default keywords"/>
<Item id="2221" name="User-defined keywords"/>
<Item id="2225" name="Language:"/>
<Item id="2226" name="Force foreground color for all styles"/>
<Item id="2227" name="Force background color for all styles"/>
<Item id="2228" name="Force font choice for all styles"/>
<Item id="2229" name="Force font size choice for all styles"/>
<Item id="2230" name="Force bold choice for all styles"/>
<Item id="2231" name="Force italic choice for all styles"/>
<Item id="2232" name="Force underline choice for all styles"/>
<Item id="2226" name="Enable global foreground color"/>
<Item id="2227" name="Enable global background color"/>
<Item id="2228" name="Enable global font"/>
<Item id="2229" name="Enable global font size"/>
<Item id="2230" name="Enable global bold font style"/>
<Item id="2231" name="Enable global italic font style"/>
<Item id="2232" name="Enable global underline font style"/>
<Item id="2234" name="Go to settings"/>
<!-- Don't translate "Global override" -->
<Item id="2235" name="What is Global override?"/>
</SubDialog>
</StyleConfig>
@ -752,14 +745,14 @@ Translation note:
<Item id="44113" name="Apply Tab Color 3"/>
<Item id="44114" name="Apply Tab Color 4"/>
<Item id="44115" name="Apply Tab Color 5"/>
<Item id="11002" name="Sort by Name A to Z"/>
<Item id="11003" name="Sort by Name Z to A"/>
<Item id="11004" name="Sort by Path A to Z"/>
<Item id="11005" name="Sort by Path Z to A"/>
<Item id="11006" name="Sort by Type A to Z"/>
<Item id="11007" name="Sort by Type Z to A"/>
<Item id="11008" name="Sort by Content Length Ascending"/>
<Item id="11009" name="Sort by Content Length Descending"/>
<Item id="11002" name="Sort By Name A to Z"/>
<Item id="11003" name="Sort By Name Z to A"/>
<Item id="11004" name="Sort By Path A to Z"/>
<Item id="11005" name="Sort By Path Z to A"/>
<Item id="11006" name="Sort By Type A to Z"/>
<Item id="11007" name="Sort By Type Z to A"/>
<Item id="11008" name="Sort By Size Smaller to Larger"/>
<Item id="11009" name="Sort By Size Larger to Smaller"/>
</MainCommandNames>
</ShortcutMapper>
<ShortcutMapperSubDialg title="Shortcut">
@ -824,7 +817,6 @@ Translation note:
<Folder title="Folder &amp;&amp; Default">
<Item id="21101" name="Default style"/>
<Item id="21102" name="Styler"/>
<Item id="21103" name="User Defined Languages online help"/>
<Item id="21105" name="Documentation"/>
<Item id="21106" name="Fold &amp;compact (fold empty lines too)"/>
<Item id="21220" name="Folding in code 1 style"/>
@ -948,57 +940,37 @@ Translation note:
<Preference title="Preferences">
<Item id="6001" name="Close"/>
<Global title="General">
<Item id="6123" name="Localization"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Hide (use Alt or F10 key to toggle)"/>
<Item id="6132" name="Hide right shortcuts ▼ ✕"/>
<Item id="6133" name="Status Bar"/>
<Item id="6134" name="Hide"/>
</Global>
<Toolbar title="Toolbar">
<Item id="6101" name="Toolbar"/>
<Item id="6102" name="Hide"/>
<Item id="6103" name="Fluent UI: small"/>
<Item id="6104" name="Fluent UI: large"/>
<Item id="6129" name="Filled Fluent UI: small"/>
<Item id="6130" name="Filled Fluent UI: large"/>
<Item id="6105" name="Standard icons: small"/>
<Item id="6011" name="Colorization"/>
<Item id="6012" name="Complete"/>
<Item id="6013" name="Partial"/>
<Item id="6014" name="Color choice"/>
<Item id="6015" name="Default"/>
<Item id="6016" name="Red"/>
<Item id="6017" name="Green"/>
<Item id="6018" name="Blue"/>
<Item id="6019" name="Purple"/>
<Item id="6020" name="Cyan"/>
<Item id="6021" name="Olive"/>
<Item id="6022" name="Yellow"/>
<Item id="6023" name="System Accent"/>
<Item id="6024" name="Custom"/>
</Toolbar>
<Tabbar title="Tab Bar">
<Item id="6106" name="Tab Bar"/>
<Item id="6107" name="Reduce"/>
<Item id="6108" name="Lock (no drag and drop)"/>
<Item id="6109" name="Change inactive tab color"/>
<Item id="6109" name="Darken inactive tabs"/>
<Item id="6110" name="Draw a colored bar on active tab"/>
<Item id="6111" name="Show buttons on inactive tabs"/>
<Item id="6112" name="Show close button"/>
<Item id="6112" name="Show close button on each tab"/>
<Item id="6113" name="Double click to close document"/>
<Item id="6115" name="Enable pin tab feature"/>
<Item id="6135" name="Show only pinned button"/>
<Item id="6118" name="Hide"/>
<Item id="6119" name="Multi-line"/>
<Item id="6120" name="Vertical"/>
<Item id="6121" name="Exit on close the last tab"/>
<Item id="6128" name="Alternate icons"/>
<Item id="6125" name="Behavior"/>
<Item id="6126" name="Look &amp;&amp; feel"/>
</Tabbar>
<Scintillas title="Editing 1">
<Item id="6133" name="Status Bar"/>
<Item id="6134" name="Hide"/>
<Item id="6131" name="Menu"/>
<Item id="6122" name="Hide menu bar (use Alt or F10 key to toggle)"/>
<Item id="6132" name="Hide right shortcuts ▼ ✕ from the menu bar (Need to restart Notepad++)"/>
<Item id="6123" name="Localization"/>
</Global>
<Scintillas title="Editing">
<Item id="6216" name="Caret Settings"/>
<Item id="6217" name="Width:"/>
<Item id="6219" name="Blink rate:"/>
@ -1015,30 +987,21 @@ Translation note:
<Item id="6239" name="Keep selection when right-click outside of selection"/>
<Item id="6245" name="Enable virtual space"/>
<Item id="6214" name="Enable Copy/Cut Line without selection"/>
<Item id="6225" name="Apply custom color to selected text foreground"/>
<Item id="6651" name="Current Line Indicator"/>
<Item id="6652" name="None"/>
<Item id="6653" name="Highlight Background"/>
<Item id="6654" name="Frame"/>
<Item id="6655" name="Width:"/>
</Scintillas>
<Scintillas2 title="Editing 2">
<Item id="6521" name="Multi-Editing"/>
<Item id="6522" name="Enable Multi-Editing (Ctrl+Mouse click/selection)"/>
<Item id="6523" name="Enable Column Selection to Multi-Editing"/>
<Item id="6247" name="EOL (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Default"/>
<Item id="6249" name="Plain Text"/>
<Item id="6250" name="Custom Color"/>
<Item id="6252" name="Non-Printing Characters"/>
<Item id="6260" name="Appearance"/>
<Item id="6254" name="Abbreviation"/>
<Item id="6255" name="Codepoint"/>
<Item id="6256" name="Custom Color"/>
<Item id="6258" name="Apply Appearance settings to C0, C1 &amp;&amp; Unicode EOL"/>
<Item id="6259" name="Prevent control character (C0 code) typing into document"/>
</Scintillas2>
<Item id="6258" name="Apply to C0, C1 &amp;&amp; Unicode EOL"/>
</Scintillas>
<DarkMode title="Dark Mode">
<Item id="7131" name="Light mode"/>
@ -1052,10 +1015,10 @@ Translation note:
<Item id="7108" name="Cyan"/>
<Item id="7109" name="Olive"/>
<Item id="7115" name="Customized"/>
<Item id="7116" name="Content background"/>
<Item id="7117" name="Hot track item"/>
<Item id="7118" name="Control background"/>
<Item id="7119" name="Dialog background"/>
<Item id="7116" name="Top"/>
<Item id="7117" name="Menu hot track"/>
<Item id="7118" name="Active"/>
<Item id="7119" name="Main"/>
<Item id="7120" name="Error"/>
<Item id="7121" name="Text"/>
<Item id="7122" name="Darker text"/>
@ -1080,11 +1043,11 @@ Translation note:
<Item id="6292" name="Dynamic width"/>
<Item id="6293" name="Constant width"/>
<Item id="6207" name="Display bookmark"/>
<Item id="6295" name="Change History"/>
<Item id="6223" name="Show in the margin"/>
<Item id="6296" name="Show in the text"/>
<Item id="6223" name="Display Change History"/>
<Item id="6211" name="Vertical Edge Settings"/>
<Item id="6213" name="Background mode"/>
<Item id="6237" name="Add your column marker by indicating its position with a decimal number.
You can define several column markers by using white space to separate the different numbers."/>
<Item id="6231" name="Border Width"/>
<Item id="6235" name="No edge"/>
<Item id="6208" name="Padding"/>
@ -1104,11 +1067,10 @@ Translation note:
<Item id="6408" name="UTF-8 with BOM"/>
<Item id="6409" name="UTF-16 Big Endian with BOM"/>
<Item id="6410" name="UTF-16 Little Endian with BOM"/>
<Item id="6411" name="Default language:"/>
<Item id="6411" name="Default language :"/>
<Item id="6419" name="New Document"/>
<Item id="6420" name="Apply to opened ANSI files"/>
<Item id="6432" name="Always open a new document in addition at startup"/>
<Item id="6433" name="Use the first line of document as untitled tab name"/>
</NewDoc>
<DefaultDir title="Default Directory">
@ -1123,30 +1085,18 @@ Translation note:
<Item id="4009" name="Supported extensions:"/>
<Item id="4010" name="Registered extensions:"/>
</FileAssoc>
<Language title="Language">
<Item id="6505" name="Available items"/>
<Item id="6506" name="Disabled items"/>
<Item id="6507" name="Make language menu compact"/>
<Item id="6508" name="Language Menu"/>
<Item id="6301" name="Tab Settings"/>
<Item id="6302" name="Replace by space"/>
<Item id="6303" name="Tab size: "/>
<Item id="6510" name="Use default value"/>
<Item id="6335" name="Treat backslash as escape character for SQL"/>
</Language>
<Indentation title="Indentation">
<Item id="7161" name="Auto-indent"/>
<Item id="7162" name="None"/>
<Item id="7163" name="Basic"/>
<Item id="7164" name="Advanced"/>
<Item id="6301" name="Indent Settings"/>
<Item id="6302" name="Space character(s)"/>
<Item id="6303" name="Indent size:"/>
<Item id="6310" name="Indent using:"/>
<Item id="6311" name="Tab character"/>
<Item id="6510" name="Use default value"/>
<Item id="6512" name="Backspace key unindents instead of removing single space"/>
</Indentation>
<Highlighting title="Highlighting">
<Item id="6351" name="Style All Occurrences of Token"/>
<Item id="6352" name="Match case"/>
@ -1213,8 +1163,6 @@ Translation note:
<Item id="6908" name="Fill Find Field with Selected Text"/>
<Item id="6909" name="Select Word Under Caret when Nothing Selected"/>
<Item id="6910" name="Minimum Size for Auto-Checking &quot;In selection&quot;:"/>
<Item id="6913" name="Fill Find in Files Directory Field Based On Active Document"/>
<Item id="6916" name=": Max Characters to Auto-Fill Find Field from Selection"/>
</Searching>
<RecentFilesHistory title="Recent Files History">
@ -1231,7 +1179,7 @@ Translation note:
<Backup title="Backup">
<Item id="6817" name="Session snapshot and periodic backup"/>
<Item id="6818" name="Enable session snapshot and periodic backup"/>
<Item id="6819" name="Trigger backup on modification in every"/>
<Item id="6819" name="Backup in every"/>
<Item id="6821" name="seconds"/>
<Item id="6822" name="Backup path:"/>
<Item id="6309" name="Remember current session for next launch"/>
@ -1241,10 +1189,11 @@ Translation note:
<Item id="6316" name="Simple backup"/>
<Item id="6317" name="Verbose backup"/>
<Item id="6804" name="Custom Backup Directory"/>
<Item id="6803" name="Directory:"/>
<Item id="6803" name="Directory :"/>
</Backup>
<AutoCompletion title="Auto-Completion">
<Item id="6115" name="Auto-indent"/>
<Item id="6807" name="Auto-Completion"/>
<Item id="6808" name="Enable auto-completion on each input"/>
<Item id="6809" name="Function completion"/>
@ -1303,7 +1252,7 @@ Translation note:
<Item id="7141" name="Large File Restriction"/>
<Item id="7143" name="Enable Large File Restriction (no syntax highlighting)"/>
<Item id="7144" name="Define Large File Size:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Allow Brace Match"/>
<Item id="7148" name="Allow Auto-Completion"/>
<Item id="7149" name="Allow Smart Highlighting"/>
@ -1336,38 +1285,20 @@ Translation note:
<MISC title="MISC.">
<ComboBox id="6347">
<Element name="Enable for current file"/>
<Element name="Enable"/>
<Element name="Enable for all opened files"/>
<Element name="Disable"/>
</ComboBox>
<ComboBox id="6307">
<Element name="No action on"/>
<Element name="Minimize to"/>
<Element name="Close to"/>
<Element name="Minimize / Close to"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (most compatible)"/>
<Element name="DirectWrite (default)"/>
<Element name="DirectWrite (retain frames)"/>
<Element name="DirectWrite (draw to GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Disable"/>
<Element name="Enable on Notepad++ startup"/>
<Element name="Enable on Notepad++ exit"/>
</ComboBox>
<Item id="6308" name="system tray"/>
<Item id="6363" name="rendering mode"/>
<Item id="6365" name="Auto-updater:"/>
<Item id="6308" name="Minimize to system tray"/>
<Item id="6312" name="File Status Auto-Detection"/>
<Item id="6313" name="Update silently"/>
<Item id="6325" name="Scroll to the last line after update"/>
<Item id="6322" name="Session file ext.:"/>
<Item id="6323" name="Enable Notepad++ auto-updater"/>
<Item id="6324" name="Document Switcher (Ctrl+TAB)"/>
<Item id="6331" name="Show only filename in title bar"/>
<Item id="6334" name="Autodetect character encoding"/>
<Item id="6349" name="Use DirectWrite (May improve rendering special characters, need to restart Notepad++)"/>
<Item id="6337" name="Workspace file ext.:"/>
<Item id="6114" name="Enable"/>
<Item id="6117" name="Enable MRU behaviour"/>
@ -1443,22 +1374,17 @@ You can re-activate this dialog in Preferences later."/>
<Item id="7" name="&amp;No"/>
<Item id="4" name="&amp;Always yes"/>
</DoSaveAll><!-- HowToReproduce: Check the "Enable Save All confirm dialog" checkbox in Preference->MISC, now click "Save all" -->
<DebugInfo title="Debug Info">
<Item id="1752" name="&amp;Copy debug info to clipboard"/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
<ContextMenuXmlEditWarning title="Editing contextMenu" message="Editing contextMenu.xml allows you to modify your Notepad++ popup context menu.
You have to restart your Notepad++ to take effect after modifying contextMenu.xml."/>
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.
All the saved modifications cannot be undone.
All the saved modifications can not be undone.
Continue?"/><!-- HowToReproduce: when you openned file is modified but unsaved yet, and you are changing file encoding. -->
<LoseUndoAbilityWarning title="Lose Undo Ability Warning" message="You should save the current modification.
All the saved modifications cannot be undone.
All the saved modifications can not be undone.
Continue?"/><!-- HowToReproduce: when you openned file is modified and saved, then you are changing file encoding. -->
<CannotMoveDoc title="Move to new Notepad++ Instance" message="Document is modified, save it then try again."/><!-- HowToReproduce: From your Notepad++ drag & drop a clean (not dirty) file to outside of Notepad++, another instance of Notepad++ will be created. Then from your first Notepad++ drag & drop an unsaved file to the new instance. -->
@ -1477,11 +1403,8 @@ Your settings on cloud will be canceled. Please reset a coherent value via Prefe
<FilePathNotFoundWarning title="File Open" message="The file you're trying to open doesn't exist."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SessionFileInvalidError title="Could not Load Session" message="Session file is either corrupted or not valid."/><!-- HowToReproduce: Save current session via menu "File -> Save Session...", use another editor to modify the session you saved to make it an invalid xml file. Then load this invalid session via menu "File -> Load Session...". -->
<DroppingFolderAsProjectModeWarning title="Invalid action" message="You can only drop files or folders but not both, because you're in dropping Folder as Project mode.
You have to enable &quot;Open all files of folder instead of launching Folder as Workspace on folder dropping&quot; in &quot;Default Directory&quot; section of Preferences dialog to make this operation work."/>
you have to enable &quot;Open all files of folder instead of launching Folder as Workspace on folder dropping&quot; in &quot;Default Directory&quot; section of Preferences dialog to make this operation work."/>
<SortingError title="Sorting Error" message="Unable to perform numeric sorting due to line $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SortLocaleMultiple title="Sort not performed" message="Sorting multiple selections is not supported."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Sort Failed" message="The reason the sort failed cannot be determined."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Sort Failed" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Column Mode Tip" message="
There are 3 ways to switch to column-select mode:
@ -1523,12 +1446,12 @@ Do you want to go to Notepad++ page to download the latest version?"/><!-- HowTo
Do you want to open it?"/>
<CreateNewFileOrNot title="Create new file" message="&quot;$STR_REPLACE$&quot; doesn't exist. Create it?"/>
<CreateNewFileError title="Create new file" message="Cannot create the file &quot;$STR_REPLACE$&quot;."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<OpenFileError title="ERROR" message="Cannot open file &quot;$STR_REPLACE$&quot;."/>
<OpenFileError title="ERROR" message="Can not open file &quot;$STR_REPLACE$&quot;."/>
<OpenFileNoFolderError title="Cannot open file" message="&quot;$STR_REPLACE1$&quot; cannot be opened:
Folder &quot;$STR_REPLACE2$&quot; doesn't exist."/>
<FileBackupFailed title="File Backup Failed" message="The previous version of the file could not be saved into the backup directory at &quot;$STR_REPLACE$&quot;.
Do you want to save the current file anyway?"/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
Do you want to save the current file anyways?"/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<LoadStylersFailed title="Load stylers.xml failed" message="Load &quot;$STR_REPLACE$&quot; failed!"/>
<LoadLangsFailed title="Configurator" message="Load langs.xml failed!
Do you want to recover your langs.xml?"/><!-- HowToReproduce: Close Notepad++. Use another editor to remove all content of "langs.xml" (0 length) then save it. Open Notepad++. -->
@ -1552,13 +1475,8 @@ Do you want to continue?"/>
<UDLNewNameError title="UDL Error" message="This name is used by another language,
please give another one."/>
<UDLRemoveCurrentLang title="Remove the current language" message="Are you sure?"/>
<UDL_importSuccessful title="User Defined Language" message="Import successful."/>
<UDL_importFails title="User Defined Language" message="Failed to import."/>
<UDL_saveBeforeImport title="User Defined Language" message="Before exporting, save your language definition by clicking &quot;Save As...&quot; button."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="User Defined Language" message="Export successful."/>
<UDL_exportFails title="User Defined Language" message="Failed to export."/>
<SCMapperDoDeleteOrNot title="Are you sure?" message="Are you sure you want to delete this shortcut?"/>
<FindCharRangeValueError title="Range Value problem" message="You should type between 0 and 255."/> <!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Range Value problem" message="You should type between 0 and 255."/>
<OpenInAdminMode title="Save failed" message="The file cannot be saved and it may be protected.
Do you want to launch Notepad++ in Administrator mode?"/>
<OpenInAdminModeWithoutCloseCurrent title="Save failed" message="The file cannot be saved and it may be protected.
@ -1568,8 +1486,8 @@ Do you want to launch Notepad++ in Administrator mode?"/>
<ExitToUpdatePlugins title="Notepad++ is about to exit" message="If you click YES, you will quit Notepad++ to continue the operations.
Notepad++ will be restarted after all the operations are terminated.
Continue?"/>
<NeedToRestartToLoadPlugins title="Notepad++ needs to be relaunched" message="You have to restart Notepad++ to load plugins you installed."/><!-- HowToReproduce: Import a plugin via menu "Settings->Import->Import Plugin(s)...". -->
<ChangeHistoryEnabledWarning title="Notepad++ needs to be relaunched" message="You have to restart Notepad++ to enable Change History."/><!-- HowToReproduce: uncheck "Display Change History" via Preferences dialog "Marges/Border/Edge. -->
<NeedToRestartToLoadPlugins title="Notepad++ need to be relaunched" message="You have to restart Notepad++ to load plugins you installed."/><!-- HowToReproduce: Import a plugin via menu "Settings->Import->Import Plugin(s)...". -->
<ChangeHistoryEnabledWarning title="Notepad++ need to be relaunched" message="You have to restart Notepad++ to enable Change History."/><!-- HowToReproduce: uncheck "Display Change History" via Preferences dialog "Marges/Border/Edge. -->
<WindowsSessionExit title="Notepad++ - Windows session exit" message="Windows session is about to be terminated but you have some data unsaved. Do you want to exit Notepad++ now?"/>
<LanguageMenuCompactWarning title="Compact Language Menu" message="This option will be changed on the next launch."/><!-- HowToReproduce: toggle "Make language menu compact" via Preferences dialog "Language/Language Menu. -->
<SwitchUnsavedThemeWarning title="$STR_REPLACE$" message="Unsaved changes are about to be discarded!
@ -1594,15 +1512,6 @@ Would you like to create those placeholders?
NOTE: Choosing not to create the placeholders or closing them later, your session WILL BE MODIFIED ON EXIT! We suggest you backup your &quot;session.xml&quot; now."/>
<RTLvsDirectWrite title="Cannot run RTL" message="RTL is not compatible with DirectWrite mode. Please disable DirectWrite mode in MISC. section of Preferences dialog, and restart Notepad++."/>
<FileMemoryAllocationFailed title="Exception: File memory allocation failed" message="There is probably not enough contiguous free memory for the file being loaded by Notepad++."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Regex backward search disabled" message="By default, backward regex searching is disabled due to potentially unexpected results. To perform a backward search, open the Find dialog and select either normal or extended search mode instead of regular expression.
Press the OK button to open the Find dialog or set focus on it.
If you require the backward regex searching feature, consult the user manual for instructions on enabling it."/>
<PrintError title="0" message="Cannot start printer document."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Search warning" message="The &quot;In selection&quot; checkbox state has been automatically modified.
Please verify the search condition before performing the action."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Notepad++ needs to be restarted" message="Notepad++ needs to be restarted to show right menu shortcuts."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Changing file read-only attribute failed" message="Please run Notepad++ as administrator to change the file attributes."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Clipboard History"/>
@ -1726,6 +1635,7 @@ Please verify the search condition before performing the action."/> <!-- HowToRe
<default-open-save-select-folder value="Select a folder as default directory"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Use Shift+Enter to search in the opposite direction"/>
<two-find-buttons-tip value="2 find buttons mode"/>
<file-rename-title value="Rename"/>
<find-in-files-filter-tip value="Find in cpp, cxx, h, hxx &amp;&amp; hpp:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1738,9 +1648,8 @@ Find in all files but exclude folders tests, bin &amp;&amp; bin64:
Find in all files but exclude all folders log or logs recursively:
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Select a folder to search from"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Fill Directory field based on active document"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Find: Reached document beginning, first occurrence from the bottom found."/>
<find-status-end-reached value="Find: Reached document end, first occurrence from the top found."/>
<find-status-top-reached value="Find: Found the 1st occurrence from the bottom. The beginning of the document has been reached."/>
<find-status-end-reached value="Find: Found the 1st occurrence from the top. The end of the document has been reached."/>
<find-status-replaceinfiles-1-replaced value="Replace in Files: 1 occurrence was replaced"/>
<find-status-replaceinfiles-nb-replaced value="Replace in Files: $INT_REPLACE$ occurrences were replaced"/>
<find-status-replaceinopenedfiles-1-replaced value="Replace in Opened Files: 1 occurrence was replaced"/>
@ -1754,8 +1663,8 @@ Find in all files but exclude all folders log or logs recursively:
<find-status-replaceall-1-replaced value="Replace All: 1 occurrence was replaced"/>
<find-status-replaceall-nb-replaced value="Replace All: $INT_REPLACE$ occurrences were replaced"/>
<find-status-replaceall-readonly value="Replace All: Cannot replace text. The current document is read only"/>
<find-status-replace-end-reached value="Replace: Reached document end, started from top."/>
<find-status-replace-top-reached value="Replace: Reached document beginning, started from bottom."/>
<find-status-replace-end-reached value="Replace: Replaced the 1st occurrence from the top. The end of document has been reached"/>
<find-status-replace-top-reached value="Replace: Replaced the 1st occurrence from the bottom. The begin of document has been reached"/>
<find-status-replaced-next-found value="Replace: 1 occurrence was replaced. The next occurrence found."/>
<find-status-replaced-without-continuing value="Replace: 1 occurrence was replaced."/>
<find-status-replaced-next-not-found value="Replace: 1 occurrence was replaced. No more occurrences were found."/>
@ -1772,9 +1681,11 @@ Find in all files but exclude all folders log or logs recursively:
<finder-collapse-all value="Fold all"/>
<finder-uncollapse-all value="Unfold all"/>
<finder-copy value="Copy Selected Line(s)"/>
<finder-copy-selected-paths value="Copy Selected Pathname(s)"/>
<finder-copy-verbatim value="Copy"/>
<finder-copy-paths value="Copy Pathname(s)"/>
<finder-select-all value="Select all"/>
<finder-clear-all value="Clear all"/>
<finder-open-selected-paths value="Open Selected Pathname(s)"/>
<finder-open-all value="Open all"/>
<finder-purge-for-every-search value="Purge for every search"/>
<finder-wrap-long-lines value="Word wrap long lines"/>
<common-ok value="OK"/>
@ -1799,11 +1710,12 @@ Find in all files but exclude all folders log or logs recursively:
<summary-nbsel2 value=" bytes) in "/>
<summary-nbrange value=" ranges"/>
<progress-hits-title value="Hits:"/>
<progress-cancel-button value="Cancel"/>
<progress-cancel-info value="Cancelling operation, please wait..."/>
<find-in-files-progress-title value="Find In Files progress..."/>
<replace-in-files-confirm-title value="Are you sure?"/>
<replace-in-files-confirm-directory value="Are you sure you want to replace all occurrences in:"/>
<replace-in-files-confirm-filetype value="For file type:"/>
<replace-in-files-confirm-directory value="Are you sure you want to replace all occurrences in :"/>
<replace-in-files-confirm-filetype value="For file type :"/>
<replace-in-files-progress-title value="Replace In Files progress..."/>
<replace-in-projects-confirm-title value="Are you sure?"/>
<replace-in-projects-confirm-message value="Do you want to replace all occurrences in all documents in the selected Project Panel(s)?"/>
@ -1813,11 +1725,6 @@ Find in all files but exclude all folders log or logs recursively:
<find-result-title value="Search"/><!-- Must not begin with space or tab character -->
<find-result-title-info value="($INT_REPLACE1$ hits in $INT_REPLACE2$ files of $INT_REPLACE3$ searched)"/>
<find-result-title-info-selections value="($INT_REPLACE1$ hits in $INT_REPLACE2$ selections of $INT_REPLACE3$ searched)"/>
<find-result-title-info-options-searchmode-normal value="Normal"/>
<find-result-title-info-options-searchmode-extended value="Extended"/>
<find-result-title-info-options-searchmode-regexp value="RegEx"/>
<find-result-title-info-options-case value="Case"/>
<find-result-title-info-options-word value="Word"/>
<find-result-title-info-extra value=" - Line Filter Mode: only display the filtered results"/>
<find-result-hits value="($INT_REPLACE$ hits)"/>
<find-result-line-prefix value="Line"/><!-- Must not begin with space or tab character -->
@ -1866,34 +1773,8 @@ Click on &quot;?&quot; button on right to open website with User Manual."/>
<!-- Don't translate "(&quot;Non-printing characters custom color&quot;)" -->
<npcCustomColor-tip value="Go to Style Configurator to change the default custom color for selected whitespace and non-printing characters (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Apply non-printing characters appearance settings to C0, C1 control and Unicode EOL (next line, line separator and paragraph separator) characters."/>
<searchingInSelThresh-tip value="Minimum number of selected characters in edit zone to automatically check the &quot;In selection&quot; checkbox when the Find dialog is activated. The maximum value is $INT_REPLACE$. Set the value to 0 to disable auto-checking."/>
<searchingFillFindWhat-tip value="Maximun number of selected characters in edit zone to fill automatically the &quot;Find what&quot; field when the Ctrl-F is triggered. The maximum value is $INT_REPLACE$, which is the maximum size of &quot;Find what&quot; field, limited by the system."/>
<verticalEdge-tip value="Add your column marker by indicating its position with a decimal number. You can define several column markers by using white space to separate the different numbers."/>
<fileSaveAsCopySaveButton-tip value="Hold Shift while pressing Save to open the copy after saving."/>
<autoIndentBasic-tip value="Ensure that the indentation of the current line (i.e. the new line created by pressing the ENTER key) matches the indentation of the previous line."/>
<autoIndentAdvanced-tip value="Enable smart indentation for &quot;C-like&quot; languages and Python. The &quot;C-like&quot; languages include:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell and JSON.
If you select advanced mode but do not edit files in the aforementioned languages, the indentation will remain in basic mode."/>
<!-- Don't translate "Global override" and "Default Style" -->
<global-override-tip value="Enabling &quot;Global override&quot; here will override that parameter in all language styles. What you probably really want is to use the &quot;Default Style&quot; settings instead"/>
<scintillaRenderingTechnology-tip value="May improve rendering of special characters or resolve some graphics issues, restart Notepad++ to apply the changes."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="length: $STR_REPLACE1$ lines: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Ln: $STR_REPLACE1$ Col: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Pos: "/>
<statusbar-Sel value="Sel: "/>
<statusbar-Sel-number value="Sel"/>
<toolbar-accent-tip value="This option makes your toolbar icons follow Windows system accent color. Accent color is the highlight color used in buttons, borders, and Start menu tiles in Windows. To change it, go to Settings &gt; Personalization &gt; Colors, then select your preferred accent color."/>
<max-len-on-search-tip value="Only $INT_REPLACE$ characters are allowed for the find/replace text length - your input could be truncated, and it won't be saved for the next session."/>
<max-len-on-save-tip value="This search input (> $INT_REPLACE$ characters) won't be saved for the next session."/>
<goto-setting-tip value="Find your setting here"/>
<searchingInSelThresh-tip value="Number of selected characters in edit zone to automatically check the &quot;In selection&quot; checkbox when the Find dialog is activated. The maximum value is 1024. Set the value to 0 to disable auto-checking."/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

View File

@ -146,6 +146,7 @@
<Item id="42030" name="... la nomon de la aktiva dosiero"/>
<Item id="42031" name="... la vojon de la dosierujo de la aktiva dosiero"/>
<Item id="42032" name="Lanĉu makroon plurfoje..."/>
<Item id="42033" name="Purigu la indikilon de nurlego"/><!-- Indikilo kontraŭ flago: flago estas rekonata per la angla, alie necesas lerni novan signifon de la fundamenta radiko "flago"; indiko estas el la 3a "Baza Radikaro Oficiala", tamen estas memdesplikanta (do pli bonlingva)-->
<Item id="42035" name="Komentigu blokon"/>
<Item id="42036" name="Malkomentigu blokon"/>
<Item id="42055" name="Forigu maplenajn liniojn"/>
@ -359,6 +360,7 @@
<Item id="1625" name="Normala"/>
<Item id="1626" name="Speciala (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Anstataŭigu en la dosieroj"/>
<Item id="1661" name="Ujo de la aktiva dosiero"/>
<Item id="1641" name="Serĉu ĉiujn en la aktiva dosiero"/>
<Item id="1686" name="Travidebla"/>
<Item id="1703" name="&amp;. kaptas linifinon"/>
@ -598,16 +600,19 @@
<Preference title="Agordoj">
<Item id="6001" name="Bone"/>
<Global title="Ĝeneralaĵoj">
<Item id="6101" name="Ilobreto"/>
<Item id="6102" name="Kaŝu"/>
<Item id="6103" name="Malgrandaj bildsimboloj"/>
<Item id="6104" name="Grandaj bildsimboloj"/>
<Item id="6105" name="Klasikaj bildsimboloj"/>
<Item id="6106" name="Langetobreto"/>
<Item id="6107" name="Malprigrandigu"/>
<Item id="6108" name="Bloku (sen ŝovado)"/>
<Item id="6109" name="Malheligu neaktivajn langetojn"/>
<Item id="6110" name="Kolora strio ĉe la aktiva langeto"/>
<Item id="6111" name="Montru statan breton"/>
<Item id="6112" name="Montru fermobutonon ĉe ĉiu langeto"/>
<Item id="6113" name="Duobla klako fermas dokumenton"/>
<Item id="6118" name="Kaŝu"/>
@ -629,6 +634,7 @@
<Item id="6221" name="R"/>
<Item id="6222" name="M"/>
<Item id="6224" name="Agordoj pri plurredaktado"/>
<Item id="6225" name="Ŝaltu (Ctrl+Musklako/Elektado)"/>
<Item id="6201" name="Simbolo de blokgrupoj"/>
<Item id="6202" name="Simpla"/>
<Item id="6203" name="Sagforma"/>
@ -737,6 +743,8 @@
</RecentFilesHistory>
<MISC title="Diversaĵoj">
<Item id="6307" name="Ŝaltu"/>
<Item id="6308" name="Minimumigu en taskopleton"/>
<Item id="6309" name="Memoru la seancdosierojn por estonta lanĉo"/>
<Item id="6312" name="Aŭtomata rekono de dosierstato"/>
<Item id="6313" name="Ĝisdatigu sen rimarkigo"/>
@ -780,6 +788,7 @@
</Backup>
<AutoCompletion title="Vortkompletigo">
<Item id="6115" name="Aŭtomata krommarĝeno"/>
<Item id="6807" name="Aŭtomata vortkompletiĝo"/>
<Item id="6808" name="Ŝaltu vortkompletiĝon por ĉiu enigo"/>
<Item id="6809" name="Kompletigu funkciojn"/>

View File

@ -163,6 +163,7 @@ https://github.com/AndresTraks/
<Item id="42030" name="Kopeeri faili nimi lõikepuhvrisse"/>
<Item id="42031" name="Kopeeri faili kausta rada lõikepuhvrisse"/>
<Item id="42032" name="Taasesita makro mitu korda..."/>
<Item id="42033" name="Eemalda faililt kirjutuskaitse atribuut"/>
<Item id="42035" name="Ühe rea kommentaar"/>
<Item id="42036" name="Eemalda ühe rea kommentaar"/>
<Item id="42055" name="Kustuta tühjad read"/>
@ -371,6 +372,7 @@ https://github.com/AndresTraks/
<Item id="1625" name="Tavaline"/>
<Item id="1626" name="Laiendatud (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Asenda failides"/>
<Item id="1661" name="Järgi praegust dokumenti"/>
<Item id="1641" name="Leia kõik praeguses dokumendis"/>
<Item id="1686" name="Läbipaistvus"/>
<Item id="1703" name="&amp;. vastab realõpule"/>
@ -622,16 +624,19 @@ https://github.com/AndresTraks/
<Preference title="Eelistused">
<Item id="6001" name="Sule"/>
<Global title="Üldine">
<Item id="6101" name="Tööriistariba"/>
<Item id="6102" name="Peida"/>
<Item id="6103" name="Väikesed ikoonid"/>
<Item id="6104" name="Suured ikoonid"/>
<Item id="6105" name="Tavasuuruses ikoonid"/>
<Item id="6106" name="Sakkide riba"/>
<Item id="6107" name="Vähenda"/>
<Item id="6108" name="Lukusta (keela pukseerimine)"/>
<Item id="6109" name="Tumenda mitte-aktiivsed sakid"/>
<Item id="6110" name="Värviline riba aktiivse saki kohal"/>
<Item id="6111" name="Näita olekuriba"/>
<Item id="6112" name="Näita iga saki juures sulgemisnuppu"/>
<Item id="6113" name="Topeltklõps faili sulgemiseks"/>
<Item id="6118" name="Peida"/>
@ -653,6 +658,7 @@ https://github.com/AndresTraks/
<Item id="6221" name="+"/>
<Item id="6222" name="-"/>
<Item id="6224" name="Mitmik-redigeerimise sätted"/>
<Item id="6225" name="Võimalda (Ctrl+hiireklikk/valik)"/>
<Item id="6201" name="Voltimisnuppude stiil"/>
<Item id="6202" name="Lihtne"/>
<Item id="6203" name="Nooled"/>
@ -791,6 +797,7 @@ https://github.com/AndresTraks/
</Backup>
<AutoCompletion title="Automaattäitmine">
<Item id="6115" name="Automaatne taane"/>
<Item id="6807" name="Automaattäitmine"/>
<Item id="6808" name="Luba automaattäitmine iga sisendi puhul"/>
<Item id="6809" name="Funktsioonide lõpetamine"/>
@ -847,6 +854,8 @@ https://github.com/AndresTraks/
</SearchEngine>
<MISC title="Muu">
<Item id="6307" name="Võimalda"/>
<Item id="6308" name="Minimeeri süsteemisalve"/>
<Item id="6312" name="Faili oleku automaatne tuvastamine"/>
<Item id="6313" name="Värskenda vaikselt"/>
<Item id="6318" name="Hüperlinkide avamise sätted"/>

View File

@ -71,6 +71,7 @@
<Item id="42030" name="Copial nombri el ficheru al portapapelis"/>
<Item id="42031" name="Copial ruta el ficheru al portapapelis"/>
<Item id="42032" name="Ehecutal un macru varias vezis..."/>
<Item id="42033" name="Quital etiqueta e sólu lehtura"/>
<Item id="42035" name="Comental selezión"/>
<Item id="42036" name="Descomental selezión"/>
@ -297,16 +298,19 @@
<Preference title="Ozionis">
<Item id="6001" name="Fechal"/>
<Global title="Global">
<Item id="6101" name="Barra e herramientas"/>
<Item id="6102" name="Escuendel"/>
<Item id="6103" name="Iconus caquerus"/>
<Item id="6104" name="Iconus grandis"/>
<Item id="6105" name="Iconus caquerus pol defeutu"/>
<Item id="6106" name="Barra e pestañas"/>
<Item id="6107" name="Reuzil"/>
<Item id="6108" name="Bloqueal (impíl horreal i soltal)"/>
<Item id="6109" name="Muestral pestañas inahtivas"/>
<Item id="6110" name="Muestra barra naranha ena pestaña ahtiva"/>
<Item id="6111" name="Muestral barra estáu"/>
<Item id="6112" name="Botón de fechaúra huntu a cá pestaña"/>
<Item id="6113" name="Hadel dobli 'click' pa fechal documentu"/>
<Item id="6118" name="Escuendel"/>
@ -385,6 +389,8 @@
<Item id="6304" name="Cunfiguración del historial d'archivus"/>
<Item id="6305" name="Nu comprebal al comincial"/>
<Item id="6306" name="Másimu d'archivus nel historial :"/>
<Item id="6307" name="Ahtival"/>
<Item id="6308" name="Minimizal a bandeha e sistema"/>
<Item id="6309" name="Recuerdal sesión ahtual pa la prózima vezi"/>
<Item id="6312" name="Auto-comprebal el estáu el archivu"/>
<Item id="6313" name="Ahtualizal automáticamenti"/>
@ -395,6 +401,7 @@
<Item id="6324" name="Escambiaol de documentus (Ctrl+TAB)"/>
<Item id="6114" name="Ahtival escambiaol de documentus (Ctrl+Tab)"/>
<Item id="6115" name="Autu-sangría"/>
<Item id="6116" name="Recuerdal el direhtoriu e la úrtima operazión"/>
<Item id="6117" name="Ahtival mó MRU pal escambiaol de documentus"/>
</MISC>

View File

@ -163,6 +163,7 @@
<Item id="42030" name="نام فایل فعلی به کلیپ برد"/>
<Item id="42031" name="مسیر دایرکتوری فعلی به کلیپ برد"/>
<Item id="42032" name="ماکرو را در چندین زمان اجراکن.."/>
<Item id="42033" name="پاکسازی نشانه فقط-خواندنی"/>
<Item id="42035" name="خط توضیح تکی"/>
<Item id="42036" name="خط بی توضیح تکی"/>
<Item id="42055" name="حذف خطوط خالی"/>
@ -368,6 +369,7 @@
<Item id="1625" name="عادی"/>
<Item id="1626" name="تمدید شده (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="جایگزینی در فایل ها"/>
<Item id="1661" name="پیگیری سند فعلی"/>
<Item id="1641" name="یافتن همه در سند فعلی"/>
<Item id="1686" name="پشت نمایی"/>
<Item id="1703" name="&amp;. تطبیق با خط جدید"/>
@ -607,16 +609,19 @@
<Preference title="مزیت ها">
<Item id="6001" name="بستن"/>
<Global title="عمومی">
<Item id="6101" name="نوارابزار"/>
<Item id="6102" name="مخفی کن"/>
<Item id="6103" name="آیکون کوچک"/>
<Item id="6104" name="آیکون بزرگ"/>
<Item id="6105" name="آیکون استاندارد"/>
<Item id="6106" name="نوار تب"/>
<Item id="6107" name="کاهش"/>
<Item id="6108" name="(قفل (بدون کشیدن و رهاکردن"/>
<Item id="6109" name="تیرگی تب های غیرفعال"/>
<Item id="6110" name="رسم نواررنگی در تب فعال"/>
<Item id="6111" name="نمایش نواروضعیت"/>
<Item id="6112" name="نمایش دکمه بستن در هر تب"/>
<Item id="6113" name="دابل کلیک برای بستن سند"/>
<Item id="6118" name="مخفی کن"/>
@ -638,6 +643,7 @@
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6224" name="تنظیمات چند-ویرایشی"/>
<Item id="6225" name="فعال کردن (Ctrl+کلیک ماوس/انتخاب)"/>
<Item id="6201" name="سبک حاشیه تاکننده"/>
<Item id="6202" name="ساده"/>
<Item id="6203" name="پیکان"/>
@ -775,6 +781,7 @@
</Backup>
<AutoCompletion title="تکمیل-خودکار">
<Item id="6115" name="لبه دادن خودکار"/>
<Item id="6807" name="تکمیل-خودکار"/>
<Item id="6808" name="فعال کردن تکمیل خودکار در هر ورودی"/>
<Item id="6809" name="تکمیل تابع"/>
@ -827,6 +834,8 @@
</SearchEngine>
<MISC title="متفرقه">
<Item id="6307" name="فعال کردن"/>
<Item id="6308" name="کمینه کنار ساعت"/>
<Item id="6312" name="تشخیص خودکار وضعیت فایل"/>
<Item id="6313" name="بروزرسانی در پس زمینه"/>
<Item id="6318" name="تنظیمات لینک قابل کلیک"/>

View File

@ -36,7 +36,6 @@ Updated to v8.6 fixed version
<Item subMenuId="edit-blankOperations" name="Välilyöntien käsittely"/>
<Item subMenuId="edit-pasteSpecial" name="Liitä erikoistekstiä"/>
<Item subMenuId="edit-onSelection" name="Valinnassa"/>
<Item subMenuId="search-changeHistory" name="Muutoshistoria"/>
<Item subMenuId="search-markAll" name="Samanlaisten korostaminen"/>
<Item subMenuId="search-markOne" name="Korosta yksi"/>
<Item subMenuId="search-unmarkAll" name="Korostusten poistaminen"/>
@ -85,8 +84,6 @@ Updated to v8.6 fixed version
<Item id="10002" name="Kahdenna näkymä"/>
<Item id="10003" name="Siirrä uuteen istuntoon"/>
<Item id="10004" name="Avaa uudessa istunnossa"/>
<Item id="10005" name="Siirrä alkuun"/>
<Item id="10006" name="Siirrä loppuun"/>
<Item id="41001" name="&amp;Uusi"/>
<Item id="41002" name="&amp;Avaa"/>
<Item id="41003" name="&amp;Sulje"/>
@ -143,6 +140,7 @@ Updated to v8.6 fixed version
<Item id="42030" name="Nykyinen tiedostonimi leikepöydälle"/>
<Item id="42031" name="Nykyinen hakemistopolku leikepöydälle"/>
<Item id="42032" name="&amp;Suorita makro useita kertoja"/>
<Item id="42033" name="Poista kirjoitussuojaus"/>
<Item id="42034" name="Sarake-editori..."/>
<Item id="42035" name="Kommentoi (rivimoodi)"/>
<Item id="42036" name="Poista kommentointi (rivimoodi)"/>
@ -155,15 +153,16 @@ Updated to v8.6 fixed version
<Item id="42043" name="Poista välilyönnit rivien aluista ja lopuista"/>
<Item id="42044" name="Loppumerkki (EOL) välilyönniksi"/>
<Item id="42045" name="Poista tarpeettomat välilyönnit ja loppumerkit"/>
<Item id="42046" name="Sarkaimet välilyönneiksi"/>
<Item id="42046" name="Tabuloinnit välilyönneiksi"/>
<Item id="42047" name="Poista lohkon kommentti"/>
<Item id="42048" name="Kopioi binäärisisältö"/>
<Item id="42049" name="Leikkaa binäärisisältö"/>
<Item id="42050" name="Liitä binäärisisältö"/>
<Item id="42051" name="Merkkipaneeli"/>
<Item id="42052" name="Leikepöytähistoria"/>
<Item id="42053" name="Korvaa rivin alun välilyönnit sarkaimilla"/>
<Item id="42054" name="Korvaa kaikki välilyönnit sarkaimilla"/>
<Item id="42053" name="Korvaa rivin alun välilyönnit tabuloinneilla"/>
<Item id="42054" name="Korvaa kaikki välilyönnit tabuloinneilla"/>
<Item id="42054" name="Välilyönnit tabuloinneiksi (kaikki)"/>
<Item id="42055" name="Poista tyhjät rivit"/>
<Item id="42056" name="Poista tyhjät rivit (myös välilyöntejä sisältävät)"/>
<Item id="42057" name="Lisää tyhjä rivi nykyisen yläpuolelle"/>
@ -312,8 +311,6 @@ Updated to v8.6 fixed version
<Item id="44092" name="7. välilehti"/>
<Item id="44093" name="8. välilehti"/>
<Item id="44094" name="9. välilehti"/>
<Item id="44116" name="Ensimmäinen välilehti"/>
<Item id="44117" name="Viimeinen välilehti"/>
<Item id="44095" name="Seuraava välilehti"/>
<Item id="44096" name="Edellinen välilehti"/>
<Item id="44097" name="Seuranta (tail -f)"/>
@ -442,6 +439,7 @@ Updated to v8.6 fixed version
<Item id="1658" name="Kaikissa al&amp;ikansioissa"/>
<Item id="1659" name="&amp;Piilotetuissa kansioissa"/>
<Item id="1660" name="&amp;Korvaa tiedostoissa"/>
<Item id="1661" name="Seuraa nykyistä dokumenttia"/>
<Item id="1662" name="Projektipaneeli 1"/>
<Item id="1663" name="Projektipaneeli 2"/>
<Item id="1664" name="Projektipaneeli 3"/>
@ -843,14 +841,17 @@ Updated to v8.6 fixed version
<Preference title="Asetukset">
<Item id="6001" name="&amp;Sulje"/>
<Global title="Yleiset">
<Item id="6101" name="Työkalurivi"/>
<Item id="6102" name="Piilota"/>
<Item id="6103" name="Pienet kuvakkeet"/>
<Item id="6104" name="Isot kuvakkeet"/>
<Item id="6105" name="Normaalikuvakkeet"/>
<Item id="6106" name="Välilehtipalkki"/>
<Item id="6107" name="Pienennä"/>
<Item id="6108" name="Lukitut (ei raahausmahdollisuutta)"/>
<Item id="6109" name="Tummenna passiiviset välilehdet"/>
<Item id="6110" name="Värillinen palkki aktiiviselle välilehdelle"/>
<Item id="6111" name="Näytä tilarivi"/>
<Item id="6112" name="Näytä sulkemispainike"/>
<Item id="6113" name="Suljettavissa kaksoisnapsautuksella"/>
<Item id="6118" name="Piilotettu"/>
@ -880,6 +881,7 @@ Updated to v8.6 fixed version
<Item id="6221" name="+"/>
<Item id="6222" name="-"/>
<Item id="6224" name="Monimuokkaus"/>
<Item id="6225" name="Käytä (Ctrl+Napsaus/valinta)"/>
<Item id="6227" name="Rivitys"/>
<Item id="6228" name="Oletus"/>
<Item id="6229" name="Tasattu"/>
@ -992,9 +994,9 @@ Updated to v8.6 fixed version
<Item id="4010" name="Kytketyt päätteet:"/>
</FileAssoc>
<Language title="Kieli">
<Item id="6301" name="Sarkainasetukset"/>
<Item id="6302" name="Korvaa välilyönneillä"/>
<Item id="6303" name="Sarkaimen leveys: "/>
<Item id="6301" name="Välilehtiasetukset"/>
<Item id="6302" name="Korvaa välilyönnillä"/>
<Item id="6303" name="Välilehden koko: "/>
<Item id="6505" name="Käytettävissä olevat"/>
<Item id="6506" name="Käytöstä poistetut"/>
<Item id="6507" name="Tiivistä"/>
@ -1056,7 +1058,7 @@ Updated to v8.6 fixed version
<Item id="6903" name="Hakuikkuna jää avoimeksi näytettäessä tulosikkuna"/>
<Item id="6904" name="Vahvista korvaaminen kaikissa avoimissa tiedostoissa"/>
<Item id="6905" name="Korvattaessa älä siirry seuraaviin esiintymiin"/>
<Item id="6906" name="Hakutuloksissa vain yksi löydös riviltä, jos mahdollista"/>
<Item id="6906" name="Hakutuloksissa vain yksi löydös rivittäin"/>
<Item id="6907" name="Käynnistettäessä hakuikkuna"/>
<Item id="6908" name="Täytä hakukenttä valitulla tekstillä"/>
<Item id="6909" name="Jos mitään ei ole valittuna käytetään kursorin kohdalla olevaa sanaa"/>
@ -1093,6 +1095,7 @@ Updated to v8.6 fixed version
</Backup>
<AutoCompletion title="Automaattitäydennys">
<Item id="6115" name="Automaattinen sisennys"/>
<Item id="6807" name="Automaattinen täydennys"/>
<Item id="6808" name="Automaattinen täydennys kullekin syötteelle"/>
<Item id="6809" name="Funktion täydennys"/>
@ -1193,6 +1196,7 @@ Updated to v8.6 fixed version
</ComboBox>
<Item id="6114" name="Käytössä"/>
<Item id="6117" name="Ota käyttöön MRU-käyttäytyminen"/>
<Item id="6308" name="Pienennä ilmoitusalueelle"/>
<Item id="6312" name="Tiedostotilan automaattinen tunnistus"/>
<Item id="6313" name="Äänetön päivitys"/>
<Item id="6314" name="Käytä hakuikkunassa tasalevyistä fonttia (sovellus on käynnistettävä uudelleen)"/>
@ -1209,6 +1213,7 @@ Updated to v8.6 fixed version
<Item id="6344" name="Asiakirjan kurkkija"/>
<Item id="6345" name="Kurkista välilehteen"/>
<Item id="6346" name="Kurkista asiakirjakarttaan"/>
<Item id="6349" name="DirectWrite käytössä (Saattaa parantaa erikoismerkkien ulkoasua, sovellus on käynnistettävä uudelleen)"/>
<Item id="6360" name="Vaimenna kaikki äänet"/>
<Item id="6361" name="Käytä vahvistusikkunaa tallennettaessa kaikki"/>
</MISC>
@ -1480,8 +1485,10 @@ Updated to v8.6 fixed version
<finder-uncollapse-all value="Laajenna kaikki"/>
<finder-copy value="Kopioi valitut rivit"/>
<finder-copy-verbatim value="Kopioi"/>
<finder-copy-paths value="Kopioi polut"/>
<finder-select-all value="Valitse kaikki"/>
<finder-clear-all value="Tyhjennä kaikki"/>
<finder-open-all value="Avaa kaikki"/>
<finder-purge-for-every-search value="Tyhjennä kutakin hakua varten"/>
<finder-wrap-long-lines value="Rivitä pitkät rivit"/>
<common-ok value="OK"/>
@ -1492,7 +1499,7 @@ Updated to v8.6 fixed version
<splitter-rotate-left value="Kierrä vasemmalle"/>
<splitter-rotate-right value="Kierrä oikealle"/>
<recent-file-history-maxfile value="Tiedostoja enintään: "/>
<language-tabsize value="Sarkaimen leveys: "/>
<language-tabsize value="Välilehden koko: "/>
<userdefined-title-new value="Luo uusi kieli..."/>
<userdefined-title-save value="Tallenna nykyinen kieli nimellä..."/>
<userdefined-title-rename value="Nimeä nykyinen kieli uudelleen"/>

File diff suppressed because it is too large Load Diff

View File

@ -114,6 +114,7 @@
<Item id="42030" name="Non dal file atuâl tai Aponts"/>
<Item id="42031" name="Cartele dal percors atuâl tai Aponts"/>
<Item id="42032" name="Riprodûs une macro plui voltis..."/>
<Item id="42033" name="Nete l'atribût dome in leture"/>
<Item id="42035" name="Comente bloc"/>
<Item id="42036" name="Gjave coment al bloc"/>
@ -290,6 +291,7 @@
<Item id="1625" name="Normâl"/>
<Item id="1626" name="Estindût (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Sostituìs tai files"/>
<Item id="1661" name="Seguìs doc. atuâl"/>
<Item id="1641" name="Cjate dut tal document atuâl"/>
<Item id="1686" name="Trasparence"/>
</Find>
@ -401,16 +403,19 @@
<Preference title="Preferencis">
<Item id="6001" name="Siere"/>
<Global title="Globâl">
<Item id="6101" name="Sbare dai imprescj"/>
<Item id="6102" name="Plate"/>
<Item id="6103" name="Iconis piçulis"/>
<Item id="6104" name="Iconis grandis"/>
<Item id="6105" name="Iconis standard piçulis"/>
<Item id="6106" name="Sbare des lengutis"/>
<Item id="6107" name="Dimensions piçulis"/>
<Item id="6108" name="Bloche (No Drag &amp;&amp; Drop)"/>
<Item id="6109" name="Scurìs lis lengutis no ativis"/>
<Item id="6110" name="Piture une sbare colorade su lis lengutis ativis"/>
<Item id="6111" name="Mostre sbare di stât"/>
<Item id="6112" name="Ative boton par sierâ su ogni lengute"/>
<Item id="6113" name="Dopli clic par sierâ il document"/>
<Item id="6118" name="Plate"/>
@ -428,6 +433,7 @@
<Item id="6221" name="V"/>
<Item id="6222" name="P"/>
<Item id="6224" name="Impostazions multi editing"/>
<Item id="6225" name="Ative (Ctrl+Clic dal mouse/selezion)"/>
<Item id="6201" name="Stîl margjin cartele"/>
<Item id="6202" name="Sempliç"/>
<Item id="6203" name="Frece"/>
@ -514,6 +520,8 @@
<Item id="6304" name="Impostazions file cronologjie"/>
<Item id="6305" name="No stâ controlâ al inviament"/>
<Item id="6306" name="Numar massim files te cronologjie:"/>
<Item id="6307" name="Ative"/>
<Item id="6308" name="Minimize te tray di sisteme"/>
<Item id="6309" name="Visiti la session atuâl al prossim inviament"/>
<Item id="6312" name="Rilevament automatic stât file"/>
<Item id="6313" name="Inzorne cidin"/>
@ -532,6 +540,7 @@
<Item id="6331" name="Mostre dome il non dal file te sbare dal titul"/>
<Item id="6114" name="Ative"/>
<Item id="6115" name="Rientri automatic"/>
<Item id="6117" name="Ative compuartament MRU"/>
</MISC>

View File

@ -5,7 +5,7 @@ Translation note:
2. All the comments are for explanation, they are not for translation.
-->
<NotepadPlus>
<Native-Langue name="Galego" filename="galician.xml" version="8.8.1">
<Native-Langue name="Galego" filename="galician.xml" version="8.6.3">
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -93,7 +93,6 @@ Translation note:
<Item id="41003" name="&amp;Pechar pestana activa"/>
<Item id="41004" name="P&amp;echar tódalas pestanas"/>
<Item id="41005" name="Pechar as outras pestanas"/>
<Item id="41026" name="Pechar todo excepto os documentos fixados"/>
<Item id="41009" name="Pechar todo á esquerda"/>
<Item id="41018" name="Pechar todo á dereita"/>
<Item id="41024" name="Pechar todo sen cambios"/>
@ -137,8 +136,6 @@ Translation note:
<Item id="42060" name="Ordenar liñas en sentido descendente"/>
<Item id="42080" name="Ordenar liñas en ascendente ignorando maiúsculas e minúsculas"/>
<Item id="42081" name="Ordenar liñas en descendente ignorando maiúsculas e minúsculas"/>
<Item id="42100" name="Ordenar liñas en orden ascendente"/>
<Item id="42101" name="Ordenar liñas en orden descendente"/>
<Item id="42061" name="Orden de liñas numérico ascendente"/>
<Item id="42062" name="Orden de liñas numérico descendente"/>
<Item id="42063" name="Ordenar liñas como decimais (coma) ascendente"/>
@ -196,14 +193,14 @@ Translation note:
<Item id="42025" name="&amp;Gardar macro actualmente gravada"/>
<Item id="42026" name="Texto dereita-esquerda"/>
<Item id="42027" name="Texto esquerda-dereita"/>
<Item id="42028" name="Só lectura en Notepad++"/>
<Item id="42028" name="&amp;Só lectura"/>
<Item id="42029" name="Copiar a ruta actual do arquivo"/>
<Item id="42030" name="Copiar o nome actual do arquivo"/>
<Item id="42031" name="Copiar o nome actual da carpeta"/>
<Item id="42087" name="Copiar tódolos nomes dos arquivos"/>
<Item id="42088" name="Copiar tódalas rutas dos arquivos"/>
<Item id="42032" name="&amp;Executar macro múltiples veces..."/>
<Item id="42033" name="Atributo de só lectura en Windows"/>
<Item id="42033" name="Desactivar só lectura"/>
<Item id="42035" name="Comentar unha liña"/>
<Item id="42036" name="Descomentar unha liña"/>
<Item id="42055" name="Eliminar liñas baleiras"/>
@ -225,8 +222,8 @@ Translation note:
<Item id="43051" name="Quitar liñas non marcadas"/>
<Item id="43050" name="Invertir marcas"/>
<Item id="43052" name="Buscar caract&amp;eres por tipo..."/>
<Item id="43053" name="Seleccionar todo o que ha&amp;xa entre {} [] ou ()"/>
<Item id="43009" name="Ir ao corc&amp;hete"/>
<Item id="43053" name="Selecci&amp;onar todo o coincidente"/>
<Item id="43009" name="Ir ao delimi&amp;tador simétrico"/>
<Item id="43010" name="Buscar a&amp;nterior"/>
<Item id="43011" name="Busca &amp;incremental"/>
<Item id="43013" name="Buscar en ar&amp;quivos"/>
@ -358,7 +355,6 @@ Translation note:
<Item id="10005" name="Ir ao inicio"/>
<Item id="10006" name="Ir ao final"/>
<Item id="46001" name="Configurador de estilos..."/>
<Item id="46016" name="Ningún (texto normal)"/>
<Item id="46250" name="Defina a súa linguaxe..."/>
<Item id="46300" name="Abrir carpeta da linguaxe definida polo usuario..."/>
<Item id="46301" name="Colección de linguaxes definidas para o usuario (online)"/>
@ -422,11 +418,9 @@ Translation note:
<Item CMDID="41003" name="Pechar"/>
<Item CMDID="0" name="Pechar múltiples pestanas"/>
<Item CMDID="41005" name="Pechar todo MENOS esto"/>
<Item CMDID="41026" name="Pechar todo excepto os documentos fixados"/>
<Item CMDID="41009" name="Pechar todo á esquerda"/>
<Item CMDID="41018" name="Pechar todo á dereita"/>
<Item CMDID="41024" name="Pechar todo sin cambios"/>
<Item CMDID="44048" name="Fixar pestana" alternativeName="Liberar pestana"/>
<Item CMDID="41006" name="Gardar"/>
<Item CMDID="41008" name="Gardar como..."/>
<Item CMDID="1" name="Abrir en"/>
@ -438,8 +432,8 @@ Translation note:
<Item CMDID="41016" name="Mover á Papeleira de reciclaxe"/>
<Item CMDID="41014" name="Recargar"/>
<Item CMDID="41010" name="Imprimir..."/>
<Item CMDID="42028" name="Só lectura en Notepad++"/>
<Item CMDID="42033" name="Atributo de só lectura en Windows"/>
<Item CMDID="42028" name="Só lectura"/>
<Item CMDID="42033" name="Quitar marca de só lectura"/>
<Item CMDID="2" name="Copiar ao portapapeis"/>
<Item CMDID="42029" name="Copiar ruta completa do arquivo"/>
<Item CMDID="42030" name="Copiar nome do arquivo"/>
@ -502,6 +496,7 @@ Translation note:
<Item id="1626" name="E&amp;xtendido (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Substituír en arquivos"/>
<Item id="1665" name="Substituír en proxectos"/>
<Item id="1661" name="Seguir documento actual"/>
<Item id="1662" name="Panel de proxecto 1"/>
<Item id="1663" name="Panel de proxecto 2"/>
<Item id="1664" name="Panel de proxecto 3"/>
@ -600,8 +595,8 @@ Translation note:
<Item id="1934" name="Co&amp;piar ao portapapeis"/>
<Item id="2" name="Pe&amp;char"/>
</SHA512FromTextDlg>
<PluginsAdminDlg title="Administrar complementos" titleAvailable="Dispoñibles" titleUpdates="Actualizar" titleInstalled="Instalados" titleIncompatible="Incompatibles">
<ColumnPlugin name="Complementos"/>
<PluginsAdminDlg title="Administrar complementos" titleAvailable="Dispoñible" titleUpdates="Actualizar" titleInstalled="Instalado" titleIncompatible="Incompatible">
<ColumnPlugin name="Complemento"/>
<ColumnVersion name="Versión"/>
<Item id="5501" name="&amp;Buscar:"/>
<Item id="5503" name="&amp;Instalar"/>
@ -634,16 +629,14 @@ Translation note:
<Item id="2219" name="Palabras clave predeterminadas"/>
<Item id="2221" name="Palabras clave definidas polo usuario"/>
<Item id="2225" name="Linguaxe:"/>
<Item id="2226" name="Forzar cor para primeiro plano"/>
<Item id="2227" name="Forzar cor de fondo"/>
<Item id="2228" name="Forzar a elección do tipo de letra"/>
<Item id="2229" name="Forzar tamaño de fonte"/>
<Item id="2230" name="Forzar fonte grosa"/>
<Item id="2231" name="Forzar fonte en cursiva"/>
<Item id="2232" name="Forzar fonte subliñada"/>
<Item id="2234" name="Ir á Configuración"/>
<Item id="2235" name="Que é &quot;Global override&quot;?"/>
<!-- Don't translate "Global override" -->
<Item id="2226" name="Habilitar cor global das fontes"/>
<Item id="2227" name="Habilitar cor global do fondo"/>
<Item id="2228" name="Habilitar tipo global de fonte"/>
<Item id="2229" name="Habilitar tamaño global de fonte"/>
<Item id="2230" name="Habilitar estilo global en grosa"/>
<Item id="2231" name="Habilitar estilo global en cursiva"/>
<Item id="2232" name="Habilitar estilo global en suliñado"/>
<Item id="2234" name="Ir á configuración"/>
</SubDialog>
</StyleConfig>
@ -824,7 +817,6 @@ Translation note:
<Folder title="Carpeta &amp;&amp; Predeterminado">
<Item id="21101" name="Estilo por defecto"/>
<Item id="21102" name="Estilo"/>
<Item id="21103" name="Axuda en liña sobre linguaxes definidos polo usuario"/>
<Item id="21105" name="Documentación:"/>
<Item id="21106" name="Pregado &amp;compacto (liñas baleiras tamén)"/>
<Item id="21220" name="Pregado en estilo código 1:"/>
@ -948,57 +940,37 @@ Translation note:
<Preference title="Preferencias">
<Item id="6001" name="Pechar"/>
<Global title="Xerais">
<Item id="6123" name="Idioma"/>
<Item id="6131" name="Menú"/>
<Item id="6122" name="Ocultar (use Alt ou F10 para alternalo)"/>
<Item id="6132" name="Ocultar atallos ▼ ✕ "/>
<Item id="6133" name="Barra de estado"/>
<Item id="6134" name="Ocultar"/>
</Global>
<Toolbar title="Barra de ferramentas">
<Item id="6101" name="Barra de ferramentas"/>
<Item id="6102" name="Ocultar"/>
<Item id="6103" name="Iconas pequenas sin recheo"/>
<Item id="6104" name="Iconas grandes sin recheo"/>
<Item id="6129" name="Iconas pequenas con recheo"/>
<Item id="6130" name="Iconas grandes con recheo"/>
<Item id="6105" name="Iconas pequenas predeterminadas"/>
<Item id="6011" name="Coreado"/>
<Item id="6012" name="Completo"/>
<Item id="6013" name="Parcial"/>
<Item id="6014" name="Cores"/>
<Item id="6015" name="Predeterminado"/>
<Item id="6016" name="Vermello"/>
<Item id="6017" name="Verde"/>
<Item id="6018" name="Azul"/>
<Item id="6019" name="Violeta"/>
<Item id="6020" name="Cian"/>
<Item id="6021" name="Verde oliva"/>
<Item id="6022" name="Amarelo"/>
<Item id="6023" name="Cor de realce"/>
<Item id="6024" name="Personalizado"/>
</Toolbar>
<Tabbar title="Barra de estado">
<Item id="6106" name="Barra de pestanas"/>
<Item id="6107" name="Reducir texto"/>
<Item id="6108" name="Bloquear (impedir arrastrar e soltar)"/>
<Item id="6109" name="Oscurecer pestanas inactivas"/>
<Item id="6110" name="Barra de cor na pestana activa"/>
<Item id="6111" name="Mostrar botóns nas pestanas inactivas"/>
<Item id="6112" name="Botón de peche"/>
<Item id="6112" name="Botón de peche en cada pestana"/>
<Item id="6113" name="Dobre clic para pechar pestana"/>
<Item id="6115" name="Activar a opción de fixar pestanas"/>
<Item id="6135" name="Mostrar só o botón de fixado"/>
<Item id="6118" name="Oculta"/>
<Item id="6119" name="Multiliña"/>
<Item id="6120" name="Vertical"/>
<Item id="6121" name="Saír ao pechar a derradeira"/>
<Item id="6128" name="Iconas alternativas"/>
<Item id="6125" name="Comportamento"/>
<Item id="6126" name="Aspecto &amp;&amp; Estilo"/>
</Tabbar>
<Scintillas title="Edición 1">
<Item id="6133" name="Barra de estado"/>
<Item id="6134" name="Ocultar"/>
<Item id="6131" name="Menú"/>
<Item id="6122" name="Ocultar barra de opcións (Alt ou F10 para activar/desactivar)"/>
<Item id="6132" name="Ocultar atallos ▼ ✕ na dereita da barra de menús (é necesario reiniciar Notepad++)"/>
<Item id="6123" name="Idioma"/>
</Global>
<Scintillas title="Edición">
<Item id="6216" name="Configuración do cursor"/>
<Item id="6217" name="Anchura:"/>
<Item id="6219" name="Intermitencia:"/>
@ -1012,50 +984,41 @@ Translation note:
<Item id="6234" name="Desactivar desprazamento avanzado (se ten problemas coa pantalla táctil)"/>
<Item id="6215" name="Suavizar a fonte"/>
<Item id="6236" name="Permitir desprazamento despois da última liña"/>
<Item id="6239" name="Manter a selección se preme o botón dereito fóra da selección"/>
<Item id="6239" name="Manter a selección si preme o botón dereito fóra da selección"/>
<Item id="6245" name="Habilitar espazo virtual"/>
<Item id="6214" name="Permitir copiar/cortar liña sin selección"/>
<Item id="6225" name="Aplicar a cor personalizada ao primeiro plano do texto seleccionado"/>
<Item id="6651" name="Indicador de liña actual"/>
<Item id="6652" name="Ningún"/>
<Item id="6653" name="Fondo resaltado"/>
<Item id="6654" name="Marco"/>
<Item id="6655" name="Anchura"/>
</Scintillas>
<Scintillas2 title="Edición 2">
<Item id="6521" name="Edición múltiple"/>
<Item id="6522" name="Activar a edición múltiple (Ctrl + clic do rato/selección)"/>
<Item id="6523" name="Habilitar a selección de columnas para a edición múltiple"/>
<Item id="6247" name="EOL (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Predeterminado"/>
<Item id="6249" name="Texto sin formato"/>
<Item id="6250" name="Cor personalizada"/>
<Item id="6252" name="Caracteres non imprimibles"/>
<Item id="6260" name="Apariencia"/>
<Item id="6254" name="Abreviatura"/>
<Item id="6255" name="Punto de código"/>
<Item id="6256" name="Cor personalizada"/>
<Item id="6258" name="Aplicar axustes de apariencia a C0, C1 &amp;&amp; EOL de Unicode"/>
<Item id="6259" name="Impedir a introducción de caracteres de control (código C0) no documento"/>
</Scintillas2>
<Item id="6258" name="Aplicar a C0, C1 &amp;&amp; EOL de Unicode"/>
</Scintillas>
<DarkMode title="Modo escuro">
<Item id="7131" name="Modo claro"/>
<Item id="7132" name="Modo escuro"/>
<Item id="7133" name="Según Windows"/>
<Item id="7102" name="Ton negro"/>
<Item id="7103" name="Ton vermello"/>
<Item id="7104" name="Ton verde"/>
<Item id="7105" name="Ton azul"/>
<Item id="7107" name="Ton violeta"/>
<Item id="7108" name="Ton cian"/>
<Item id="7109" name="Ton oliva"/>
<Item id="7115" name="Ton personalizado"/>
<Item id="7102" name="Tono negro"/>
<Item id="7103" name="Tono vermello"/>
<Item id="7104" name="Tono verde"/>
<Item id="7105" name="Tono azul"/>
<Item id="7107" name="Tono violeta"/>
<Item id="7108" name="Tono cian"/>
<Item id="7109" name="Tono oliva"/>
<Item id="7115" name="Tono personalizado"/>
<Item id="7116" name="Fondo da interfaz"/>
<Item id="7117" name="Pestanas de opcións"/>
<Item id="7118" name="Control do fondo"/>
<Item id="7119" name="Diálogo de fondo"/>
<Item id="7118" name="Ventá activa"/>
<Item id="7119" name="Principal"/>
<Item id="7120" name="Erro"/>
<Item id="7121" name="Texto"/>
<Item id="7122" name="Texto máis escuro"/>
@ -1065,7 +1028,7 @@ Translation note:
<Item id="7126" name="Bordos de opcións"/>
<Item id="7127" name="Bordos desactivados"/>
<Item id="7130" name="Resetear"/>
<Item id="7135" name="Tons"/>
<Item id="7135" name="Tonos"/>
</DarkMode>
<MarginsBorderEdge title="Marxe, bordo e liñas">
@ -1080,11 +1043,11 @@ Translation note:
<Item id="6292" name="Ancho dinámico"/>
<Item id="6293" name="Ancho fixo"/>
<Item id="6207" name="Mostrar marcador"/>
<Item id="6295" name="Historial de cambios"/>
<Item id="6223" name="Mostralos na marxen"/>
<Item id="6296" name="Mostralos no texto"/>
<Item id="6223" name="Mostrar marcas de cambios"/>
<Item id="6211" name="Configuración do bordo vertical"/>
<Item id="6213" name="Resaltar fondo de liñas"/>
<Item id="6237" name="Engada o seu marcador de columna indicando a súa posición cun número decimal.
Pode definir varios marcadores de columna utilizando espazos en branco para separar os diferentes números."/>
<Item id="6231" name="Ancho do bordo"/>
<Item id="6235" name="Sen recadro"/>
<Item id="6208" name="Recheo"/>
@ -1108,7 +1071,6 @@ Translation note:
<Item id="6419" name="Novo documento"/>
<Item id="6420" name="Aplicar aos arquivos ANSI abertos"/>
<Item id="6432" name="Abrir sempre un novo documento adicional ao inicio"/>
<Item id="6433" name="Usar a primeira liña do documento como nome da pestana"/>
</NewDoc>
<DefaultDir title="Carpeta predeterminada">
@ -1123,44 +1085,33 @@ Translation note:
<Item id="4009" name="Extensións soportadas:"/>
<Item id="4010" name="Extensións rexistradas:"/>
</FileAssoc>
<Language title="Linguaxes">
<Item id="6505" name="Dispoñibles"/>
<Item id="6506" name="Desactivadas"/>
<Item id="6507" name="Compactar o menú de linguaxes"/>
<Item id="6508" name="Menú de linguaxes"/>
<Item id="6301" name="Tabuladores"/>
<Item id="6302" name="Substituír por espazos"/>
<Item id="6303" name="Tamaño:"/>
<Item id="6510" name="Usar valor por defecto"/>
<Item id="6335" name="Tratar barra invertida como carácter de escape para SQL"/>
</Language>
<Indentation title="Sangrías">
<Item id="7161" name="Automática"/>
<Item id="7162" name="Ningunha"/>
<Item id="7163" name="Básica"/>
<Item id="7164" name="Avanzada"/>
<Item id="6301" name="Configuración de sangrías"/>
<Item id="6302" name="Espazos"/>
<Item id="6303" name="Tamaño:"/>
<Item id="6310" name="Sangría como:"/>
<Item id="6311" name="Tabulacións"/>
<Item id="6510" name="Usar valor por defecto"/>
<Item id="6512" name="Borrar sangrías e non espazos coa tecla de retroceso."/>
</Indentation>
<Highlighting title="Resaltado">
<Item id="6351" name="Aplicar estilo a tódalas coincidencias"/>
<Item id="6352" name="Coincidir MAIÚSCULAS/minúsculas"/>
<Item id="6353" name="Coincidir só palabra completa"/>
<Item id="6333" name="Seleccionar e mostrar todo"/>
<Item id="6333" name="Resaltado intelixente"/>
<Item id="6326" name="Habilitar"/>
<Item id="6354" name="Coincidencias"/>
<Item id="6332" name="Coincidir MAIÚSCULAS/minúsculas"/>
<Item id="6338" name="Só palabras completas"/>
<Item id="6339" name="Usar configuración de busca"/>
<Item id="6340" name="Tamén na outra vista"/>
<Item id="6329" name="Resaltar etiquetas de apertura/peche"/>
<Item id="6340" name="Resaltar outra vista"/>
<Item id="6329" name="Resaltar etiquetas coincidentes"/>
<Item id="6327" name="Habilitar"/>
<Item id="6328" name="Resaltar atributos de etiquetas"/>
<Item id="6330" name="Resaltar a zona comentario/php/asp"/>
<Item id="6330" name="Resaltar zona comentario/php/asp"/>
</Highlighting>
<Print title="Impresión">
@ -1198,7 +1149,7 @@ Translation note:
<Element name="Hora"/>
</ComboBox>
<Item id="6725" name="&amp;Opcións:"/>
<Item id="6727" name="Aquí móstranse os axustes das variables"/>
<Item id="6727" name="Móstranse os seus axustes variables"/>
<Item id="6728" name="Cabeceira e pé de páxina"/>
</Print>
@ -1207,12 +1158,11 @@ Translation note:
<Item id="6903" name="O cadro de diálogo permanece aberto despois da busca que mostra a ventá de resultados"/>
<Item id="6904" name="Confirmar &quot;Substituír todo&quot; en tódolos documentos abertos"/>
<Item id="6905" name="Substituír: non moverse á seguinte coincidencia"/>
<Item id="6906" name="Ventá de resultados de busca: mostrar, se é posible, só unha entrada por liña encontrada"/>
<Item id="6906" name="Ventá de resultados de busca: mostrar, si é posible, só unha entrada por liña encontrada"/>
<Item id="6907" name="Ao abrir o cadro de busca"/>
<Item id="6908" name="Encher o campo de busca co texto seleccionado"/>
<Item id="6909" name="Seleccionar a palabra baixo o cursor se non hai nada seleccionado"/>
<Item id="6910" name="Tamaño para a comprobación automática en &quot;Selección&quot;"/>
<Item id="6913" name="Completar o campo de busca na ruta dos arquivos en función do documento activo"/>
</Searching>
<RecentFilesHistory title="Arquivos recentes">
@ -1227,9 +1177,9 @@ Translation note:
</RecentFilesHistory>
<Backup title="Copias de seguridade">
<Item id="6817" name="Copias de seguridade e de sesións"/>
<Item id="6818" name="Automatizar copias de seguridade e de sesións"/>
<Item id="6819" name="Activar copia de seguridade no caso de modificación cada"/>
<Item id="6817" name="Copias de seguridade e sesións"/>
<Item id="6818" name="Automatizar copias de seguridade e sesións"/>
<Item id="6819" name="Realizar copias cada"/>
<Item id="6821" name="segundos"/>
<Item id="6822" name="Gardar en:"/>
<Item id="6309" name="Recordar a sesión actual no próximo inicio"/>
@ -1243,6 +1193,7 @@ Translation note:
</Backup>
<AutoCompletion title="Autocompletado">
<Item id="6115" name="Autotabulación"/>
<Item id="6807" name="Autocompletado"/>
<Item id="6808" name="Activar o autocompletado en cada entrada"/>
<Item id="6809" name="Autocompletar función"/>
@ -1280,7 +1231,7 @@ Translation note:
<Item id="6184" name="Lista de documentos"/>
<Item id="6185" name="Panel de caracteres"/>
<Item id="6186" name="Carpeta como espazo de traballo"/>
<Item id="6187" name="Paneis de proxectos"/>
<Item id="6187" name="Paneis de proxecto"/>
<Item id="6188" name="Mapa do documento"/>
<Item id="6189" name="Lista de funcións"/>
<Item id="6190" name="Paneis de complementos"/>
@ -1301,7 +1252,7 @@ Translation note:
<Item id="7141" name="Restriccións para arquivos de gran tamaño"/>
<Item id="7143" name="Activar restriccións para arquivos grandes (sin resaltado de sintaxe)"/>
<Item id="7144" name="Defina o tamaño de arquivo grande:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Permitir a coincidencia de corchetes"/>
<Item id="7148" name="Permitir o autocompletado"/>
<Item id="7149" name="Permitir o resaltado intelixente"/>
@ -1313,7 +1264,7 @@ Translation note:
<Cloud title="Nube &amp; Ligazóns">
<Item id="6262" name="Axustes da nube"/>
<Item id="6263" name="Sen nube"/>
<Item id="6267" name="Especifique a ruta da ubicación na nube:"/>
<Item id="6267" name="Indique abaixo a ruta da ubicación da nube:"/>
<Item id="6318" name="Configuración das ligazóns"/>
<Item id="6319" name="Habilitar"/>
<Item id="6320" name="Sen subliñado"/>
@ -1327,45 +1278,27 @@ Translation note:
<Item id="6273" name="Google"/>
<Item id="6274" name="Bing"/>
<Item id="6275" name="Yahoo!"/>
<Item id="6276" name="Especifique o seu motor de busca:"/>
<Item id="6276" name="Escriba abaixo o seu motor de busca:"/>
<!-- Don't change anything after Example: -->
<Item id="6278" name="Exemplo: https://www.google.com/search?q=$(CURRENT_WORD)"/>
</SearchEngine>
<MISC title="Varios">
<ComboBox id="6347">
<Element name="Habilitar para o arquivo actual"/>
<Element name="Habilitar"/>
<Element name="Habilitar para tódolos arquivos abertos"/>
<Element name="Deshabilitar"/>
</ComboBox>
<ComboBox id="6307">
<Element name="Ningunha acción na"/>
<Element name="Minimizar na"/>
<Element name="Pechar na"/>
<Element name="Minimizar / Pechar na"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (máis compatible)"/>
<Element name="DirectWrite (por defecto)"/>
<Element name="DirectWrite(conservar cadros)"/>
<Element name="DirectWrite (debuxar a GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="Desactivar"/>
<Element name="Activar ao iniciar Notepad++"/>
<Element name="Activar ao saír de Notepad++"/>
</ComboBox>
<Item id="6308" name="barra de notificacións"/>
<Item id="6363" name="modo de representación"/>
<Item id="6365" name="Actualizador:"/>
<Item id="6308" name="Minimizar na bandexa do sistema"/>
<Item id="6312" name="Autodetectar estado do arquivo"/>
<Item id="6313" name="Actualizar sen notificar"/>
<Item id="6325" name="Ir á última liña tras actualizar"/>
<Item id="6322" name="Extensión do arquivo de sesión:"/>
<Item id="6323" name="Actualizar automaticamente Notepad++"/>
<Item id="6324" name="Cambiar de documento (Ctrl+TAB)"/>
<Item id="6331" name="Mostrar só o nome do arquivo no título da ventá"/>
<Item id="6334" name="Autodetectar codificación"/>
<Item id="6349" name="Usar DirectWrite (pode mellorar a representación de caracteres especiais, é necesario reiniciar Notepad++)"/>
<Item id="6337" name="Ext. do arquivo área de traballo:"/>
<Item id="6114" name="Permitir"/>
<Item id="6117" name="Ordenar polo usado máis recente"/>
@ -1441,11 +1374,6 @@ Pode reactivalo en Preferencias se o desexa."/>
<Item id="7" name="&amp;Non"/>
<Item id="4" name="Sem&amp;pre si"/>
</DoSaveAll><!-- HowToReproduce: Check the &quot;Enable Save All confirm dialog&quot; checkbox in Preference->MISC, now click &quot;Save all&quot; -->
<DebugInfo title="Información de depuración">
<Item id="1752" name="&amp;Copiar información ao portapapeis"/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
@ -1477,15 +1405,12 @@ A súa configuración na nube cancelarase. Reinicie cun valor coherente usando o
<DroppingFolderAsProjectModeWarning title="Acción non válida" message="Só pode soltar arquivos ou carpetas, pero non ambos, porque está soltando Carpeta como modo Proxecto.
Debe habilitar &quot;Abrir tódolos arquivos da carpeta&quot; en vez de iniciar &quot;Carpeta como espazo de traballo&quot; na carpeta que se solta en &quot;Carpeta por defecto&quot; no cadro de diálogo de Preferencias para que esta operación funcione."/>
<SortingError title="Erro de clasificación" message="Non se pode realizar a ordenación numérica debido á liña $INT_REPLACE$."/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<SortLocaleMultiple title="Ordenación non realizada" message="Non é posible ordenar seleccións múltiples."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Ordenación fallida" message="Non se pode determinar a causa pola que fallou a ordenación."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Ordenación fallida" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Suxerencia do modo de columna" message="
Hai 3 formas de cambiar ao modo de selección de columnas:
1- Co teclado e o rato
Manter pulsado Alt mentras arrastra co botón esquerdo do rato.
2- So co teclado
Manter pulsado Alt+Maiúsculas mentras se usan as teclas de frechas.
@ -1503,7 +1428,7 @@ Hai 3 formas de cambiar ao modo de selección de columnas:
moverase á Papeleira de reciclaxe e este documento pecharase.
¿Continuar?"/>
<NoBackupDoSaveFile title="Gardar" message="Non se pode encontrar o seu arquivo de copia de seguridade (eliminado desde fóra).
Gárdeo ou perderá os seus datos.
Gárdeo ou os seus datos perderanse.
¿Desexa gardar o arquivo &quot;$STR_REPLACE$&quot;?"/>
<DoReloadOrNot title="Recargar" message="&quot;$STR_REPLACE$&quot;
@ -1554,30 +1479,25 @@ Parece que o arquivo para abrir no é un arquivo de proxecto válido."/>
<UDLNewNameError title="Erro UDL" message="Este nome é usado por outra linguaxe.
É necesario darlle outro."/>
<UDLRemoveCurrentLang title="Eliminar a linguaxe actual" message="¿Está seguro?"/>
<UDL_importSuccessful title="Lenguaje definido por el usuario" message="Importación correcta."/>
<UDL_importFails title="Lenguaje definido por el usuario" message="Erro de importación."/>
<UDL_saveBeforeImport title="Lenguaje definido por el usuario" message="Antes de exportar, garde a súa definición de linguaxe usando &quot;Gardar como...&quot;."/><!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="Lenguaje definido por el usuario" message="Exportación correcta."/>
<UDL_exportFails title="Lenguaje definido por el usuario" message="Erro de exportación."/>
<SCMapperDoDeleteOrNot title="Confirmación" message="¿Está seguro de que desexa eliminar este acceso directo?"/>
<FindCharRangeValueError title="Problema de valor de rango" message="Debe escribir entre 0 e 255."/><!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Problema de valor de rango" message="Debe escribir entre 0 e 255."/>
<OpenInAdminMode title="Erro ao gardar" message="O arquivo non se pode gardar e pode estar protexido.
¿Desexa iniciar Notepad++ en modo Administrador?"/>
<OpenInAdminModeWithoutCloseCurrent title="Erro ao gardar" message="O arquivo non se pode gardar e pode estar protexido.
¿Desexa iniciar Notepad++ en modo Administrador?"/>
<OpenInAdminModeFailed title="Erro ao abrir en modo Administrador" message="Notepad++ non se pode abrir no modo Administrador."/><!-- HowToReproduce: When you have no Admin privilege and you try to save a modified file in a protected location (for example: any file in sub-folder of "C:\Program Files\". This message will appear after replying "Yes" to "Open in Admin mode" dialog. -->
<ViewInBrowser title="Ver arquivo actual no navegador" message="Non se pode encontrar a aplicación no seu sistema."/>
<ExitToUpdatePlugins title="Está a punto de saír de Notepad++" message="Se fai clic en SI, salirá de Notepad++ para continuar coas operacións.
<ExitToUpdatePlugins title="Está a punto de saír de Notepad++" message="Si fai clic en SI, salirá de Notepad++ para continuar coas operacións.
Notepad++ reiniciarase despois de que rematen todas.
¿Continuar?"/>
<NeedToRestartToLoadPlugins title="É necesario reiniciar Notepad++" message="Debe reiniciar Notepad++ para cargar os complementos que instalou."/><!-- HowToReproduce: Import a plugin via menu "Settings->Import->Import Plugin(s)...". -->
<NeedToRestartToLoadPlugins title="Necesita reiniciar Notepad++" message="Debe reiniciar Notepad++ para cargar os complementos que instalou."/><!-- HowToReproduce: Import a plugin via menu "Settings->Import->Import Plugin(s)...". -->
<ChangeHistoryEnabledWarning title="É necesario reiniciar Notepad++" message="Ten que reiniciar Notepad++ para activar o historial de cambios."/><!-- HowToReproduce: uncheck "Display Change History" via Preferences dialog "Marges/Border/Edge. -->
<WindowsSessionExit title="Notepad++ - Saír da sesión de Windows" message="Está a punto de rematar a sesión de Windows, pero hai algúns datos sin gardar. ¿Desexa saír agora de Notepad++?"/>
<LanguageMenuCompactWarning title="Menú compacto de linguaxes" message="Esta opción cambiarase no seguinte inicio."/><!-- HowToReproduce: toggle "Make language menu compact" via Preferences dialog "Language/Language Menu. -->
<SwitchUnsavedThemeWarning title="$STR_REPLACE$" message="¡Os cambios non gardados serán descartados!
¿Quere gardar os cambios antes de cambiar de tema?"/><!-- HowToReproduce: In the Style Configurator dialog change some theme and switch to other theme without saving. -->
<MacroAndRunCmdlWarning title="Compatibilidade de Macro e Executar" message="Os comandos Macro e Executar gardados en Notepad++ v.8.5.2 (ou anterior) poden non ser compatibles coa versión actual de Notepad++.
Probe estes comandos e, se é necesario, volva a editalos.
Probe estes comandos e, si é necesario, volva a editalos.
Alternativamente, pode reinstalar Notepad++ v8.5.2 e restaurar os seus datos anteriores.
Notepad++ fará unha copia de seguridade do seu antigo &quot;shortcuts.xml&quot; e gardarao como &quot;shortcuts.xml.v8.5.2.backup&quot;.
@ -1596,15 +1516,6 @@ NOTA: Se elixe non crear os marcadores de posición ou cerrarlos máis tarde, a
NOTA: ¡Se elixe non crear os marcadores de posición ou cerrarlos máis tarde, a súa sesión SERÁ MODIFICADA AO SAÍR! Suxerímoslle que faga unha copia de seguridade do seu &quot;session.xml&quot; agora."/>
<RTLvsDirectWrite title="Non se pode executar RTL" message="RTL non é compatible co modo DirectWrite. Desactíveo en Configuración -> Preferencias -> Varios e reinicie Notepad++."/>
<FileMemoryAllocationFailed title="Excepción: fallo na asignación de memoria para os arquivos" message="É posible que non haxa memoria suficiente dispoñible para os arquivos que quere abrir con Notepad++."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Busca regex cara atrás desactivada" message="Por defecto, a busca regex cara atrás está desactivada debido aos resultados potencialmente inesperados. Para realizar unha busca cara atrás, abra o cadro de diálogo Buscar e seleccione o modo de busca normal ou ampliado en lugar da expresión regular.
Pulse o botón Aceptar para abrir o cadro de diálogo Buscar ou fixar o foco nel.
Se necesita a función de busca regex cara atrás, consulte o manual do usuario para obter instruccións sobre como activala."/>
<PrintError title="0" message="Non se pode iniciar a impresión do documento."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Advertencia da busca" message="O estado do recadro &quot;Na selección&quot; modificouse automáticamente.
Por favor, comprobe a condición da busca antes de realizar a acción."/><!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="É necesario reiniciar Notepad++" message="Debe reiniciar Notepad++ para mostrar os accesos directos da dereita no menú."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Non se pode cambiar o atributo de só lectura do arquivo" message="Reinicie Notepad++ como administrador para poder cambialo."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Historial do portapapeis"/>
@ -1715,7 +1626,7 @@ Por favor, comprobe a condición da busca antes de realizar a acción."/><!-- Ho
<word-chars-list-tip value="Isto permítelle incluir caracteres adicionais nos caracteres da palabra actual ao facer dobre clic para seleccionar ou buscar coa opción &quot;Só palabras completas&quot; marcada."/><!-- HowToReproduce: In "Delimiter" section of Preferences dialog, hover your mouse on the "?" button. -->
<!-- Don't translate "(&quot;EOL custom color&quot;)" -->
<eol-custom-color-tip value="Abre o &quot;Configurador de estilos&quot; para cambiar a cor personalizada EOL por defecto (&quot;EOL custom color&quot;)."/>
<eol-custom-color-tip value="Ir ao &quot;Configurador de estilos&quot; para cambiar a cor personalizada EOL por defecto (&quot;EOL custom color&quot;)."/>
<word-chars-list-warning-begin value="Cuidado: "/>
<word-chars-list-space-warning value="$INT_REPLACE$ espazo(s)"/>
@ -1728,6 +1639,7 @@ Por favor, comprobe a condición da busca antes de realizar a acción."/><!-- Ho
<default-open-save-select-folder value="Seleccionar unha carpeta como directorio predeterminado"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Use Maiús+Enter para buscar na dirección contraria"/>
<two-find-buttons-tip value="Modo de busca de 2 botóns"/>
<file-rename-title value="Renomear"/>
<find-in-files-filter-tip value="Buscar cpp, cxx, h, hxx &amp;&amp; hpp:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1740,9 +1652,8 @@ Buscar en tódolos arquivos pero excluir as carpetas de probas, bin &amp;&amp; b
Buscar en tódolos arquivos pero excluir tódalas carpetas de rexistro ou rexistros de forma recursiva:
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Seleccione a carpeta na que desexa buscar"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Completar o campo Directorio según o documento activo"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Chegouse ao inicio do documento, encontrada a primeira coincidencia empezando desde o final."/>
<find-status-end-reached value="Chegouse ao final do documento, encontrada a primeira coincidencia empezando desde o inicio."/>
<find-status-top-reached value="Encontrada a primera coincidencia empezando polo final. Chegouse ao inicio do documento."/>
<find-status-end-reached value="Encontrada a primera coincidencia empezando polo inicio. Chegouse ao final do documento."/>
<find-status-replaceinfiles-1-replaced value="Substituír en arquivos: cambiado 1 elemento."/>
<find-status-replaceinfiles-nb-replaced value="Substituír en arquivos: $INT_REPLACE$ coincidencias cambiadas."/>
<find-status-replaceinopenedfiles-1-replaced value="Substituír en arquivos abertos: cambiada 1 coincidencia."/>
@ -1756,8 +1667,8 @@ Buscar en tódolos arquivos pero excluir tódalas carpetas de rexistro ou rexist
<find-status-replaceall-1-replaced value="1 coincidencia cambiada"/>
<find-status-replaceall-nb-replaced value=" $INT_REPLACE$ coincidencias cambiadas."/>
<find-status-replaceall-readonly value="Atención: non se pode substituír o texto. O documento actual é de só lectura."/>
<find-status-replace-end-reached value="Chegouse ao final do documento, cambiada a primeira coincidencia desde o inicio."/>
<find-status-replace-top-reached value="Chegouse ao inicio do documento, cambiada a primeira coincidencia desde o final."/>
<find-status-replace-end-reached value="Cambiada a primera coincidencia desde o inicio. Chegouse ao final do documento."/>
<find-status-replace-top-reached value="Cambiada a primera coincidencia desde o final. Chegouse ao inicio do documento."/>
<find-status-replaced-next-found value="Cambiada 1 coincidencia. Encontrada a seguinte."/>
<find-status-replaced-without-continuing value="Cambiada 1 coincidencia"/>
<find-status-replaced-next-not-found value="Cambiada 1 coincidencia. Non se encontraron máis."/>
@ -1774,9 +1685,11 @@ Buscar en tódolos arquivos pero excluir tódalas carpetas de rexistro ou rexist
<finder-collapse-all value="Contraer todo"/>
<finder-uncollapse-all value="Expandir todo"/>
<finder-copy value="Copiar liña(s) seleccionada(s)"/>
<finder-copy-selected-paths value="Copiar nome(s) de ruta(s) seleccionada(s)"/>
<finder-copy-verbatim value="Copiar"/>
<finder-copy-paths value="Copiar nome(s) de ruta(s)"/>
<finder-select-all value="Seleccionar todo"/>
<finder-clear-all value="Limpar todo"/>
<finder-open-selected-paths value="Abrir ruta(s) seleccionada(s)"/>
<finder-open-all value="Abrir todo"/>
<finder-purge-for-every-search value="Depurar para cada busca"/>
<finder-wrap-long-lines value="Axustar lonxitude do texto"/>
<common-ok value="OK"/>
@ -1801,6 +1714,7 @@ Buscar en tódolos arquivos pero excluir tódalas carpetas de rexistro ou rexist
<summary-nbsel2 value=" bytes) en "/>
<summary-nbrange value=" rangos"/>
<progress-hits-title value="Coincidencias: "/>
<progress-cancel-button value="Cancelar"/>
<progress-cancel-info value="Cancelando operación, por favor espere..."/>
<find-in-files-progress-title value="Progreso da busca en arquivos..."/>
<replace-in-files-confirm-title value="¿Está seguro?"/>
@ -1836,12 +1750,12 @@ Buscar en tódolos arquivos pero excluir tódalas carpetas de rexistro ou rexist
<contextMenu-styleOneToken value="Dar estilo a unha coincidencia"/>
<contextMenu-clearStyle value="Borrar estilo"/>
<contextMenu-PluginCommands value="Comandos de complementos"/>
<largeFileRestriction-tip value="Algunhas funcións poden diminuír o rendemento en arquivos grandes. Poden desactivarse de forma automática ao abrir arquivos deste tamaño. Pode personalizar aquí ditas funcións.
<largeFileRestriction-tip value="Algunhas funcións poden diminuír o rendemento con arquivos grandes. Estas funcións pódense desactivar automaticamente ao abrir un arquivo grande. Pode personalizalas aquí.
NOTA:
1. A modificación das opcións implica reabrir os arquivos grandes que teña abertos para obter un comportamento adecuado.
2. Se &quot;Desactivar globalmente o axuste do texto&quot; está marcado e abre un arquivo grande, &quot;Axuste do texto&quot; desactivarase para tódolos arquivos. Pode volver a activalo no menú Vista, opción &quot;Axuste do texto&quot;."/>
2. Si &quot;Desactivar globalmente o axuste do texto&quot; está marcado e abre un arquivo grande, &quot;Axuste do texto&quot; desactivarase para tódolos arquivos. Pode volver a activalo a través do menú Vista en &quot;Axuste do texto&quot;."/>
<npcNote-tip value="Representación de espazos en branco seleccionados &quot;non ASCII&quot; e caracteres non imprimibles (de control).
NOTA:
@ -1866,32 +1780,9 @@ Para ver a lista completa, consulte o manual do usuario.
Faga clic no botón dereito &quot;?&quot; para abrir o sitio web do manual do usuario."/>
<!-- Don't translate "(&quot;Non-printing characters custom color&quot;)" -->
<npcCustomColor-tip value="Vaia a &quot;Configurador de estilos&quot; para cambiar a cor personalizada por defecto dos espazos en branco e caracteres non imprimibles seleccionados. (&quot;Non-printing characters custom color&quot;)."/>
<npcCustomColor-tip value="Vaia ao Configurador de estilos para cambiar a cor personalizada por defecto dos espazos en branco e caracteres non imprimibles seleccionados. (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Aplicar axustes de apariencia de caracteres non imprimibles aos caracteres de control C0, C1 e Unicode EOL (liña seguinte, separador de liña e separador de párrafo)."/>
<searchingInSelThresh-tip value="Número de caracteres seleccionados na zona de edición para marcar automáticamente o recadro &quot;Selección&quot; cando se activa o diálogo Buscar. O valor máximo é 1024. Estableza o valor en 0 para desactivar a comprobación automática."/>
<verticalEdge-tip value="Engada o seu marcador de columna indicando a súa posición cun número decimal. Pode definir varios marcadores utilizando espazos en branco para separar os distintos números."/>
<fileSaveAsCopySaveButton-tip value="Manteña pulsada a tecla Maiús mentras pulsa Gardar para abrir a copia despois de gardala."/>
<autoIndentBasic-tip value="Asegúrese de que a sangría da liña actual (é dicir, a nova liña creada ao pulsar a tecla ENTER) coincide coa sangría da liña anterior."/>
<autoIndentAdvanced-tip value="Habilitar a sangría intelixente para linguaxes &quot;C-like&quot; e Python. As linguaxes &quot;C-like&quot; inclúen:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell e JSON.
Se selecciona o modo avanzado pero non edita arquivos nas linguaxes mencionadas, a sangría permanecerá no modo básico."/>
<!-- Don't translate "Global override" and "Default Style" -->
<global-override-tip value="Activando &quot;Global override&quot; aquí, anulará esa opción en tódolos estilos de linguaxe. É posible que desexe usar a configuración &quot;Default Style&quot;."/>
<scintillaRenderingTechnology-tip value="Pode mellorar a representación de caracteres especiais ou resolver algúns problemas gráficos. Reinicie Notepad++ para aplicar os cambios."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="lonx.: $STR_REPLACE1$ liñ.: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Liña: $STR_REPLACE1$ Col.: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Pos.: "/>
<statusbar-Sel value="Sel.: "/>
<statusbar-Sel-number value="Sel."/>
<toolbar-accent-tip value="Esta opción fai que as iconas da barra de ferramentas sigan a cor de realce do sistema Windows. É a cor usada nos botóns, bordos e mosaicos do menú Inicio de Windows. Para cambiala, vaia a Configuración &gt; Personalización &gt; Cores e, a continuación, seleccione a cor de realce que desexe."/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

View File

@ -121,6 +121,7 @@
<Item id="42030" name="მიმდინარე ფაილის სახელის კოპირება"/>
<Item id="42031" name="მიმდინარე საქაღალდის მისამართის კოპირება"/>
<Item id="42032" name="მაკროს რამდენჯერმე გაშვება..."/>
<Item id="42033" name="ატრიბუტის 'მხოლოდ წაკითხვა' მოცილება"/>
<Item id="42035" name="კომენტარის ბლოკი ხაზზე"/>
<Item id="42036" name="ხაზზე კომენტარის ბლოკის მოცილება"/>
@ -299,6 +300,7 @@
<Item id="1625" name="ჩვეულებრივი"/>
<Item id="1626" name="გაფართოებული (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="ფაილებში ჩანაცვლება"/>
<Item id="1661" name="მიმდ. დოკ-ში "/>
<Item id="1641" name="მიმდინარე დოკუმენტში ყველა დამთხვევის ძებნა"/>
<Item id="1686" name="გამჭვირვალობა"/>
</Find>
@ -433,16 +435,19 @@
<Preference title="პარამეტრები">
<Item id="6001" name="დახურვა"/>
<Global title="ზოგადი">
<Item id="6101" name="ხელსაწყოთა პანელი"/>
<Item id="6102" name="დამალვა"/>
<Item id="6103" name="პატარა ხატულები"/>
<Item id="6104" name="დიდი ხატულები"/>
<Item id="6105" name="სტანდარტული ხატულები"/>
<Item id="6106" name="ჩანართების პანელი"/>
<Item id="6107" name="შემცირება"/>
<Item id="6108" name="ჩაკეტვა (გადაადგილების შეზღუდვა)"/>
<Item id="6109" name="უმოქმედო ჩანართების ჩაბნელება"/>
<Item id="6110" name="აქტიურ ჩანართზე ფერადი ზოლის ჩვენება"/>
<Item id="6111" name="სტატუსის პანელის ჩვენება"/>
<Item id="6112" name="ჩანართებზე დახურვის ღილაკის ჩვენება"/>
<Item id="6113" name="დაწკაპებისას ჩანართის დახურვა"/>
<Item id="6118" name="დამალვა"/>
@ -460,6 +465,7 @@
<Item id="6221" name="+"/>
<Item id="6222" name="-"/>
<Item id="6224" name="მრავალი ჩასწორების რეჟიმი"/>
<Item id="6225" name="ჩართვა (Ctrl+მარც. ღილაკი/მონიშვნა)"/>
<Item id="6201" name="ასაკეცის სტილი"/>
<Item id="6202" name="მარტივი"/>
<Item id="6203" name="ისარი"/>
@ -546,6 +552,8 @@
<Item id="6304" name="ბოლო ფაილების ისტორია"/>
<Item id="6305" name="გაშვებისას არ შეამოწმო"/>
<Item id="6306" name="მაქს. რაოდენობა:"/>
<Item id="6307" name="ჩართვა"/>
<Item id="6308" name="სისტემურ თრეიში ჩაკეცვა"/>
<Item id="6309" name="შემდეგი გაშვებისთვის მიმდინარე სესიის დამახსოვრება"/>
<Item id="6312" name="ფაილის სტატუსის ავტ.დადგენა"/>
<Item id="6313" name="ჩუმი განახლება"/>
@ -564,6 +572,7 @@
<Item id="6331" name="სათაურის ზოლში მხოლოდ ფაილის სახელის ჩვენება"/>
<Item id="6114" name="ჩართვა"/>
<Item id="6115" name="ავტ.აბზაცი"/>
<Item id="6117" name="MRU-ს ჩართვა"/>
</MISC>

View File

@ -14,7 +14,7 @@ Translation note:
or a copy at: http://www.should.keepfree.de/N++/german.xml.txt (rename to german.xml)
-->
<NotepadPlus>
<Native-Langue name="Deutsch" filename="german.xml" version="8.8.1"><!-- Datum: 30.07.2025, basiert auf english.xml 8.8.1 vom 23.07.2025 -->
<Native-Langue name="Deutsch" filename="german.xml" version="2024.02.05"><!-- basiert auf english.xml 8.6.3 vom 05.02.2024 -->
<Menu>
<Main>
<!-- Main Menu Entries -->
@ -51,8 +51,8 @@ Translation note:
<Item subMenuId="edit-multiSelectALL" name="Mehrfachauswahl ALLE"/>
<Item subMenuId="edit-multiSelectNext" name="Mehrfachauswahl Nächstes"/>
<Item subMenuId="search-changeHistory" name="Änderungs-Historie"/>
<Item subMenuId="search-markAll" name="&amp;Alle Treffer hervorheben"/>
<Item subMenuId="search-markOne" name="Di&amp;esen Treffer hervorheben"/>
<Item subMenuId="search-markAll" name="&amp;Alle Vorkommen hervorheben"/>
<Item subMenuId="search-markOne" name="Di&amp;eses Vorkommen hervorheben"/>
<Item subMenuId="search-unmarkAll" name="Alle Hervorhe&amp;bungen löschen"/>
<Item subMenuId="search-jumpUp" name="Zur vorherigen Hervorhebung s&amp;pringen"/>
<Item subMenuId="search-jumpDown" name="Zur &amp;nächsten Hervorhebung springen"/>
@ -66,7 +66,7 @@ Translation note:
<Item subMenuId="view-collapseLevel" name="T&amp;extblöcke schließen"/>
<Item subMenuId="view-uncollapseLevel" name="Te&amp;xtblöcke öffnen"/>
<Item subMenuId="view-project" name="Projektver&amp;waltung"/>
<Item subMenuId="encoding-characterSets" name="&amp;Weitere Codepages"/>
<Item subMenuId="encoding-characterSets" name="&amp;Weitere"/>
<Item subMenuId="encoding-arabic" name="&amp;Arabisch"/>
<Item subMenuId="encoding-baltic" name="&amp;Baltisch"/>
<Item subMenuId="encoding-celtic" name="&amp;Keltisch"/>
@ -102,7 +102,6 @@ Translation note:
<Item id="41003" name="S&amp;chließen"/>
<Item id="41004" name="All&amp;e schließen"/>
<Item id="41005" name="&amp;Alle Dateien bis auf die aktuelle schließen"/>
<Item id="41026" name="Alle Dateien bis auf &amp;angeheftete schließen"/>
<Item id="41009" name="Dateien &amp;links von aktueller Datei schließen"/>
<Item id="41018" name="Dateien &amp;rechts von aktueller Datei schließen"/>
<Item id="41024" name="Alle unveränderten Dateien schließen"/>
@ -146,8 +145,6 @@ Translation note:
<Item id="42060" name="Zeilen alphabetisch a&amp;bsteigend sortieren"/>
<Item id="42080" name="Zeilen alph. aufsteigend sortieren, Schreibung ignorieren"/>
<Item id="42081" name="Zeilen alph. absteigend sortieren, Schreibung ignorieren"/>
<Item id="42100" name="Zeilen in lokaler Reihenfolge aufsteigend sortieren"/>
<Item id="42101" name="Zeilen in lokaler Reihenfolge absteigend sortieren"/>
<Item id="42061" name="Zeilen als Ganzzahlen aufsteigend sortieren"/>
<Item id="42062" name="Zeilen als Ganzzahlen absteigend sortieren"/>
<Item id="42063" name="Zeilen als Dezimalzahlen (Komma) aufsteigend sortieren"/>
@ -205,14 +202,14 @@ Translation note:
<Item id="42025" name="Aufgenommenes Makro s&amp;peichern …"/>
<Item id="42026" name="Schreib&amp;richtung von rechts nach links"/>
<Item id="42027" name="Schreibrichtung von lin&amp;ks nach rechts"/>
<Item id="42028" name="Schreibsch&amp;utz in Notepad++"/>
<Item id="42028" name="Schreibsch&amp;utz"/>
<Item id="42029" name="Vollständigen Datei&amp;pfad kopieren"/>
<Item id="42030" name="Nur Datei&amp;namen kopieren"/>
<Item id="42031" name="Nur &amp;Verzeichnispfad kopieren"/>
<Item id="42087" name="Alle Dateinamen kopieren"/>
<Item id="42088" name="Alle vollständigen Dateipfade kopieren"/>
<Item id="42032" name="Makro &amp;mehrfach ausführen …"/>
<Item id="42033" name="Schreibschutz-Attribut in Windows"/>
<Item id="42033" name="Schreibschutz-Attribut l&amp;öschen"/>
<Item id="42035" name="Zeilen aus&amp;kommentieren"/>
<Item id="42036" name="Auskommentierung der Zeilen a&amp;ufheben"/>
<Item id="42055" name="&amp;Leerzeilen (nur völlig leere) löschen"/>
@ -234,9 +231,9 @@ Translation note:
<Item id="43051" name="Zeilen &amp;ohne Lesezeichen löschen"/>
<Item id="43050" name="Lesezeichen inver&amp;tieren"/>
<Item id="43052" name="Nach &amp;Zeichencodes suchen …"/>
<Item id="43053" name="&amp;Alles zwischen {}, [] oder () auswählen"/>
<Item id="43053" name="&amp;Alles zwischen Klammern auswählen"/>
<Item id="43009" name="Zugehörige &amp;Klammer suchen"/>
<Item id="43010" name="&amp;Finde vorherige"/>
<Item id="43010" name="&amp;Rückwärts suchen"/>
<Item id="43011" name="&amp;Inkrementelle Suche"/>
<Item id="43013" name="In &amp;Dateien suchen …"/>
<Item id="43014" name="Wort am Cursor suchen (&amp;ohne Verlauf)"/>
@ -275,10 +272,10 @@ Translation note:
<Item id="43063" name="Markierung &amp;2"/>
<Item id="43064" name="Markierung &amp;3"/>
<Item id="43065" name="Markierung &amp;4"/>
<Item id="43066" name="Markierung &amp;5"/>
<Item id="43067" name="Gehe zur nächsten Änderung"/>
<Item id="43068" name="Gehe zur vorherigen Änderung"/>
<Item id="43069" name="Änderungs-Historie löschen"/>
<Item id="43066" name="Markierung &amp;5"/>
<Item id="43045" name="Suchergebnis-&amp;Fenster"/>
<Item id="43046" name="Zum n&amp;ächsten Suchergebnis springen"/>
<Item id="43047" name="Zum vorherigen S&amp;uchergebnis springen"/>
@ -367,7 +364,6 @@ Translation note:
<Item id="10005" name="Zum Anfang verschieben"/>
<Item id="10006" name="Ans Ende verschieben"/>
<Item id="46001" name="&amp;Stile konfigurieren …"/>
<Item id="46016" name="Keine (Normaler Text)"/>
<Item id="46250" name="Eigene Sprache &amp;definieren …"/>
<Item id="46300" name="Verzeichnis mit benutzerdefinierten Sprachen öffnen …"/>
<Item id="46301" name="Sammlung benutzerdefinierter Sprachen für Notepad++"/>
@ -386,7 +382,7 @@ Translation note:
<Item id="48006" name="Stil-&amp;Themen importieren …"/>
<Item id="48018" name="Popup-&amp;Kontextmenü bearbeiten …"/>
<Item id="48009" name="&amp;Tastenkombinationen verwalten …"/>
<Item id="48011" name="&amp;Optionen …"/>
<Item id="48011" name="&amp;Einstellungen …"/>
<Item id="48014" name="Plugin-Verzeichnis öffnen …"/>
<Item id="48015" name="Plugin-Verwaltung …"/>
<Item id="48501" name="Erstellen …"/>
@ -423,19 +419,17 @@ Translation note:
<Item id="11005" name="Pfad Z bis A"/>
<Item id="11006" name="Typ A bis Z"/>
<Item id="11007" name="Typ Z bis A"/>
<Item id="11008" name="Inhaltslänge aufsteigend"/>
<Item id="11009" name="Inhaltslänge absteigend"/>
<Item id="11008" name="Größe klein bis groß"/>
<Item id="11009" name="Größe groß bis klein"/>
</Commands>
</Main>
<TabBar>
<Item CMDID="41003" name="S&amp;chließen"/>
<Item CMDID="0" name="Mehrere Tabs schließen"/>
<Item CMDID="41005" name="&amp;Alle Dateien bis auf die aktuelle schließen"/>
<Item CMDID="41026" name="Alle Dateien bis auf &amp;angeheftete schließen"/>
<Item CMDID="41009" name="Dateien links von aktueller Datei schlie&amp;ßen"/>
<Item CMDID="41018" name="Dateien rech&amp;ts von aktueller Datei schließen"/>
<Item CMDID="41024" name="Alle unveränderten Dateien schließen"/>
<Item CMDID="44048" name="Tab anheften" alternativeName="Tab loslösen"/>
<Item CMDID="41006" name="&amp;Speichern"/>
<Item CMDID="41008" name="Speichern &amp;unter …"/>
<Item CMDID="1" name="Öffne in"/>
@ -447,8 +441,8 @@ Translation note:
<Item CMDID="41016" name="L&amp;öschen"/>
<Item CMDID="41014" name="Neu &amp;laden"/>
<Item CMDID="41010" name="&amp;Drucken …"/>
<Item CMDID="42028" name="Schreibsch&amp;utz in Notepad++"/>
<Item CMDID="42033" name="Schreibschutz-Attribut in Windows"/>
<Item CMDID="42028" name="Sch&amp;reibschutz"/>
<Item CMDID="42033" name="Schreibschutz au&amp;fheben"/>
<Item CMDID="2" name="In Zwischenablage kopieren"/>
<Item CMDID="42029" name="Vollständigen Dateipfad &amp;kopieren"/>
<Item CMDID="42030" name="Nur Datei&amp;namen kopieren"/>
@ -484,13 +478,13 @@ Translation note:
<Item id="1722" name="&amp;Rückwärts suchen"/>
<Item id="2" name="S&amp;chließen"/>
<Item id="1620" name="Suchen &amp;nach:"/>
<Item id="1603" name="Nur ganze &amp;Wörter suchen"/>
<Item id="1603" name="Nur &amp;ganze Wörter suchen"/>
<Item id="1604" name="Groß-/&amp;Kleinschreibung beachten"/>
<Item id="1605" name="Re&amp;guläre Ausdrücke"/>
<Item id="1605" name="&amp;Reguläre Ausdrücke"/>
<Item id="1606" name="Am Ende von vorne &amp;beginnen"/>
<Item id="1614" name="Z&amp;ählen"/>
<Item id="1615" name="&amp;Alle markieren"/>
<Item id="1616" name="Lesezei&amp;chen setzen"/>
<Item id="1616" name="&amp;Lesezeichen setzen"/>
<Item id="1618" name="Für &amp;jede Suche löschen"/>
<Item id="1611" name="Erset&amp;zen durch:"/>
<Item id="1608" name="&amp;Ersetzen"/>
@ -511,6 +505,7 @@ Translation note:
<Item id="1626" name="Erwe&amp;itert (\n, \r, \t, \0, \x…)"/>
<Item id="1660" name="Ersetzen in Dateien"/>
<Item id="1665" name="Ersetzen in Projekten"/>
<Item id="1661" name="&amp;Ordner aktueller Datei"/>
<Item id="1662" name="Projekt Tafel 1"/>
<Item id="1663" name="Projekt Tafel 2"/>
<Item id="1664" name="Projekt Tafel 3"/>
@ -564,49 +559,49 @@ Translation note:
<MD5FromFilesDlg title="MD5-Hashwert aus Dateien erstellen">
<Item id="1922" name="Dateien für &amp;MD5-Hashes wählen …"/>
<Item id="1924" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1924" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</MD5FromFilesDlg>
<MD5FromTextDlg title="MD5-Hashwert erstellen">
<Item id="1932" name="Jede &amp;Zeile als eigene Zeichenkette behandeln"/>
<Item id="1934" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1934" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</MD5FromTextDlg>
<SHA256FromFilesDlg title="SHA-256-Hashwert aus Dateien erstellen">
<Item id="1922" name="Dateien für &amp;SHA-256-Hashes wählen …"/>
<Item id="1924" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1924" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</SHA256FromFilesDlg>
<SHA256FromTextDlg title="SHA-256-Hashwert erstellen">
<Item id="1932" name="Jede &amp;Zeile als eigene Zeichenkette behandeln"/>
<Item id="1934" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1934" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</SHA256FromTextDlg>
<SHA1FromFilesDlg title="Erstelle SHA-1-Auszug aus Dateien">
<Item id="1922" name="Wähle Dateien zum &amp;Generieren …"/>
<Item id="1924" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1922" name="Wähle Dateien um SHA-1 zu &amp;generieren …"/>
<Item id="1924" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</SHA1FromFilesDlg>
<SHA1FromTextDlg title="Erstelle SHA-1-Auszug">
<Item id="1932" name="Jede &amp;Zeile als eigene Zeichenkette behandeln"/>
<Item id="1934" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1934" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</SHA1FromTextDlg>
<SHA512FromFilesDlg title="Erstelle SHA-512-Auszug aus Dateien">
<Item id="1922" name="Wähle Dateien zum &amp;Generieren …"/>
<Item id="1924" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1922" name="Wähle Dateien um SHA-512 zu &amp;generieren …"/>
<Item id="1924" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</SHA512FromFilesDlg>
<SHA512FromTextDlg title="Erstelle SHA-512-Auszug">
<Item id="1932" name="Jede &amp;Zeile als eigene Zeichenkette behandeln"/>
<Item id="1934" name="&amp;Kopiere in Zwischenablage"/>
<Item id="1934" name="In die Zwischenablage &amp;kopieren"/>
<Item id="2" name="S&amp;chließen"/>
</SHA512FromTextDlg>
<PluginsAdminDlg title="Plugin-Verwaltung" titleAvailable="Verfügbar" titleUpdates="Aktualisierungen" titleInstalled="Installiert" titleIncompatible="Inkompatibel">
@ -643,16 +638,14 @@ Translation note:
<Item id="2219" name="Standard-Schlüsselwörter:"/>
<Item id="2221" name="Benutzerdefinierte Schlüsselwörter:"/>
<Item id="2225" name="Sprache:"/>
<Item id="2226" name="Vordergrundfarbe erzw. f. alle Stile"/>
<Item id="2227" name="Hintergrundfarbe erzw. f. alle Stile"/>
<Item id="2228" name="Erzwinge Schriftart für alle Stile"/>
<Item id="2229" name="Erzwinge Schriftgröße für alle Stile"/>
<Item id="2230" name="Erzwinge Fettschrift für alle Stile"/>
<Item id="2231" name="Erzwinge Kursivschrift für alle Stile"/>
<Item id="2232" name="Erzwinge Unterstrichen für alle Stile"/>
<Item id="2226" name="Standardfarbe Vordergrund"/>
<Item id="2227" name="Standardfarbe Hintergrund"/>
<Item id="2228" name="Schriftart als Standard setzen"/>
<Item id="2229" name="Schriftgröße als Standard setzen"/>
<Item id="2230" name="Fettschrift als Standard setzen"/>
<Item id="2231" name="Kursivschrift als Standard setzen"/>
<Item id="2232" name="Unterstrichen als Standard setzen"/>
<Item id="2234" name="Zu den Einstellungen"/>
<!-- Don't translate "Global override" -->
<Item id="2235" name="Was bedeutet 'Global override'?"/>
</SubDialog>
</StyleConfig>
@ -684,16 +677,16 @@ Translation note:
<Item id="45001" name="Zeilenende umwandeln zu Windows (CR LF)"/>
<Item id="45002" name="Zeilenende umwandeln zu Unix (LF)"/>
<Item id="45003" name="Zeilenende umwandeln zu Macintosh (CR)"/>
<Item id="43022" name="Alle Treffer im 1. Stil markieren"/>
<Item id="43024" name="Alle Treffer im 2. Stil markieren"/>
<Item id="43026" name="Alle Treffer im 3. Stil markieren"/>
<Item id="43028" name="Alle Treffer im 4. Stil markieren"/>
<Item id="43030" name="Alle Treffer im 5. Stil markieren"/>
<Item id="43062" name="Diesen Treffer im 1. Stil markieren"/>
<Item id="43063" name="Diesen Treffer im 2. Stil markieren"/>
<Item id="43064" name="Diesen Treffer im 3. Stil markieren"/>
<Item id="43065" name="Diesen Treffer im 4. Stil markieren"/>
<Item id="43066" name="Diesen Treffer im 5. Stil markieren"/>
<Item id="43022" name="Alle Vorkommen im 1. Stil markieren"/>
<Item id="43024" name="Alle Vorkommen im 2. Stil markieren"/>
<Item id="43026" name="Alle Vorkommen im 3. Stil markieren"/>
<Item id="43028" name="Alle Vorkommen im 4. Stil markieren"/>
<Item id="43030" name="Alle Vorkommen im 5. Stil markieren"/>
<Item id="43062" name="Dieses Vorkommen im 1. Stil markieren"/>
<Item id="43063" name="Dieses Vorkommen im 2. Stil markieren"/>
<Item id="43064" name="Dieses Vorkommen im 3. Stil markieren"/>
<Item id="43065" name="Dieses Vorkommen im 4. Stil markieren"/>
<Item id="43066" name="Dieses Vorkommen im 5. Stil markieren"/>
<Item id="43023" name="Entferne die Markierung im Stil 1"/>
<Item id="43025" name="Entferne die Markierung im Stil 2"/>
<Item id="43027" name="Entferne die Markierung im Stil 3"/>
@ -767,8 +760,8 @@ Translation note:
<Item id="11005" name="Sortieren nach Pfad Z bis A"/>
<Item id="11006" name="Sortieren nach Typ A bis Z"/>
<Item id="11007" name="Sortieren nach Typ Z bis A"/>
<Item id="11008" name="Sortieren nach Inhaltslänge aufsteigend"/>
<Item id="11009" name="Sortieren nach Inhaltslänge absteigend"/>
<Item id="11008" name="Sortieren nach Größe klein bis groß"/>
<Item id="11009" name="Sortieren nach Größe groß bis klein"/>
</MainCommandNames>
</ShortcutMapper>
<ShortcutMapperSubDialg title="Tastenkombination">
@ -794,7 +787,7 @@ Translation note:
<Item id="20015" name="Importieren …"/>
<Item id="20016" name="Exportieren …"/>
<Item id="20017" name="Abdocken"/>
<StylerDialog title="Stiloptionen für benutzerdefinierte Sprache">
<StylerDialog title="Stiloptionen für benutzerdefinierte Sprachen">
<Item id="25030" name="Schriftoptionen:"/>
<Item id="25006" name="Vordergrundfarbe:"/>
<Item id="25007" name="Hintergrundfarbe:"/>
@ -833,7 +826,6 @@ Translation note:
<Folder title="Textblöcke &amp;&amp; Voreinstellung">
<Item id="21101" name="Standardschrift"/>
<Item id="21102" name="Stil …"/>
<Item id="21103" name="Online Hilfe für benutzerdefinierte Sprache"/>
<Item id="21105" name="Dokumentation:"/>
<Item id="21106" name="Leerzeilen mit einfalten (kompakte Faltung)"/>
<Item id="21220" name="Textblöcke im Code 1:"/>
@ -957,100 +949,71 @@ Translation note:
<Preference title="Optionen">
<Item id="6001" name="S&amp;chließen"/>
<Global title="Allgemein">
<Item id="6123" name="Menüsprache"/>
<Item id="6131" name="Menü"/>
<Item id="6122" name="Ausblenden (Umschalten mit Alt oder F10)"/>
<Item id="6132" name="Schaltflächen ' ▼ ✕' ausblenden"/>
<Item id="6133" name="Statusleiste"/>
<Item id="6134" name="Ausblenden"/>
</Global>
<Toolbar title="Symbolleiste">
<Item id="6101" name="Symbolleiste"/>
<Item id="6102" name="Ausblenden"/>
<Item id="6103" name="Fluent UI: klein"/>
<Item id="6104" name="Fluent UI: groß"/>
<Item id="6103" name="Fluent UI: kleine Symbole"/>
<Item id="6104" name="Fluent UI: große Symbole"/>
<Item id="6129" name="Ausgefüllte Fluent UI: klein"/>
<Item id="6130" name="Ausgefüllte Fluent UI: groß"/>
<Item id="6105" name="Standard-Symbole: klein"/>
<Item id="6011" name="Farben"/>
<Item id="6012" name="Alle"/>
<Item id="6013" name="Teilweise"/>
<Item id="6014" name="Farbwahl"/>
<Item id="6015" name="Standard"/>
<Item id="6016" name="Rot"/>
<Item id="6017" name="Grün"/>
<Item id="6018" name="Blau"/>
<Item id="6019" name="Lila"/>
<Item id="6020" name="Türkis"/>
<Item id="6021" name="Olivgrün"/>
<Item id="6022" name="Gelb"/>
<Item id="6023" name="System-Akzent"/>
<Item id="6024" name="Benutzerdefiniert"/>
</Toolbar>
<Item id="6105" name="Kleine Standard-Symbole"/>
<Tabbar title="Dateireiter (Tabs)">
<Item id="6106" name="Dateireiter (Tabs)"/>
<Item id="6107" name="Verkleinern"/>
<Item id="6108" name="Tabs nicht mit der Maus verschiebbar"/>
<Item id="6109" name="Farbe inaktiver Tabs ändern"/>
<Item id="6109" name="Inaktive Tabs dunkler darstellen"/>
<Item id="6110" name="Aktiven Tab farbig hervorheben"/>
<Item id="6111" name="Tasten auf inaktiven Tabs anzeigen"/>
<Item id="6112" name="Schließen-Kreuz anzeigen"/>
<Item id="6112" name="Schließen-Kreuz auf jedem Tab"/>
<Item id="6113" name="Tabs per Doppelklick schließen"/>
<Item id="6115" name="Pin-Tab-Funktion aktivieren (anheften/loslösen)"/>
<Item id="6135" name="Nur angeheftete Schaltfläche anzeigen"/>
<Item id="6118" name="Ausblenden"/>
<Item id="6119" name="Mehrzeilig"/>
<Item id="6120" name="Vertikal"/>
<Item id="6121" name="Beim Schließen des letzten Tabs beenden"/>
<Item id="6128" name="Alternative Symbole"/>
<Item id="6125" name="Verhalten"/>
<Item id="6126" name="Aussehen &amp;&amp; Wirkung (Look &amp;&amp; feel)"/>
</Tabbar>
<Scintillas title="Bearbeiten 1">
<Item id="6133" name="Statusleiste"/>
<Item id="6134" name="Ausblenden"/>
<Item id="6131" name="Menü"/>
<Item id="6122" name="Menüleiste ausblenden (Umschalten mit Alt oder F10)"/>
<Item id="6132" name="Schaltflächen ' ▼ ✕' der Menüleiste verbergen (Neustart von Notepad++ erforderlich)"/>
<Item id="6123" name="Sprache:"/>
</Global>
<Scintillas title="Bearbeiten">
<Item id="6216" name="Cursoreinstellungen"/>
<Item id="6217" name="Breite:"/>
<Item id="6219" name="Blinkfrequenz:"/>
<Item id="6219" name="Geschwindigkeit:"/>
<Item id="6221" name="S"/>
<Item id="6222" name="L"/>
<Item id="6246" name="Befehl zum Ein- und Ausfalten der aktuellen Ebene umschaltbar machen"/>
<Item id="6227" name="Zeilenumbruch"/>
<Item id="6228" name="Standard"/>
<Item id="6229" name="Ausgerichtet"/>
<Item id="6230" name="Eingerückt"/>
<Item id="6234" name="Erweiterte Bildlauffunktion aufgrund von Touchpad-Problemen deaktivieren"/>
<Item id="6215" name="Kantenglättung der Schriftarten aktivieren"/>
<Item id="6230" name="Einrücken"/>
<Item id="6234" name="Erweiterte Bildlauffunktion aufgrund eines Touchpad-Problems deaktivieren"/>
<Item id="6215" name="Kantenglättung der Schriftarten"/>
<Item id="6236" name="Scrollen über die letzte Zeile hinaus aktivieren"/>
<Item id="6239" name="Auswahl bei Rechtsklick außerhalb der Auswahl beibehalten"/>
<Item id="6239" name="Auswahl beibehalten bei Rechtsklick außerhalb der Auswahl"/>
<Item id="6245" name="Virtuellen Raum aktivieren"/>
<Item id="6214" name="Zeile Kopieren/Ausschneiden ohne Auswahl aktivieren"/>
<Item id="6225" name="Benutzerdefinierte Farbe auf den gewählten Text im Vordergrund anwenden"/>
<Item id="6651" name="Anzeige der aktuellen Zeile"/>
<Item id="6652" name="Keine"/>
<Item id="6653" name="Hintergrund hervorheben"/>
<Item id="6654" name="Rahmen"/>
<Item id="6655" name="Breite:"/>
</Scintillas>
<Scintillas2 title="Bearbeiten 2">
<Item id="6521" name="Mehrfach-Bearbeitung"/>
<Item id="6522" name="Mehrfach-Bearbeitung aktivieren (Strg+Maus-Klick/Auswahl)"/>
<Item id="6523" name="Spalten-Modus für Mehrfach-Bearbeitung aktivieren"/>
<Item id="6247" name="Zeilenende EOL (CRLF)"/><!-- Don't translate "(CRLF)" -->
<Item id="6248" name="Standard"/>
<Item id="6249" name="Klartext"/>
<Item id="6250" name="Benutzerdefinierte Farbe"/>
<Item id="6252" name="Nicht druckbare Zeichen"/>
<Item id="6260" name="Erscheinungsbild"/>
<Item id="6254" name="Abkürzung"/>
<Item id="6255" name="Codepoint"/>
<Item id="6256" name="Benutzerdefinierte Farbe"/>
<Item id="6258" name="Erscheinungsbild-Einstellungen auf C0, C1 &amp;&amp; Unicode EOL anwenden"/>
<Item id="6259" name="Schreiben von Steuerzeichen (C0-Codes) ins Dokument verhindern"/>
</Scintillas2>
<Item id="6258" name="Anwenden auf C0, C1 &amp;&amp; Unicode EOL"/>
</Scintillas>
<DarkMode title="Dunkler Modus">
<Item id="7131" name="Heller Modus"/>
<Item id="7131" name="Hellen Modus aktivieren"/>
<Item id="7132" name="Dunkler Modus"/>
<Item id="7133" name="Folge Windows"/>
<Item id="7102" name="Schwarz"/>
@ -1061,10 +1024,10 @@ Translation note:
<Item id="7108" name="Cyan"/>
<Item id="7109" name="Oliv"/>
<Item id="7115" name="Benutzerdefiniert"/>
<Item id="7116" name="Inhaltshintergrund"/>
<Item id="7117" name="Hervorhebung"/>
<Item id="7118" name="Kontrollhintergrund"/>
<Item id="7119" name="Dialoghintergrund"/>
<Item id="7116" name="Menü/Oberste Ebene"/>
<Item id="7117" name="Menü Hottrack"/>
<Item id="7118" name="Aktiv"/>
<Item id="7119" name="Inaktiv/Statusleiste"/>
<Item id="7120" name="Fehler"/>
<Item id="7121" name="Text"/>
<Item id="7122" name="Dunklerer Text"/>
@ -1077,26 +1040,26 @@ Translation note:
<Item id="7135" name="Farbtöne"/>
</DarkMode>
<MarginsBorderEdge title="Ränder/Rahmen/Umrandung">
<Item id="6201" name="Faltungsstil am Rand"/>
<MarginsBorderEdge title="Ränder/Rahmen/Umrandungen">
<Item id="6201" name="Ordnerrandstil"/>
<Item id="6202" name="Einfach"/>
<Item id="6203" name="Pfeile"/>
<Item id="6204" name="Kreise"/>
<Item id="6205" name="Kästchen"/>
<Item id="6226" name="Kein"/>
<Item id="6291" name="Zeilennummern"/>
<Item id="6206" name="Anzeigen"/>
<Item id="6203" name="Pfeil"/>
<Item id="6204" name="Kreisstruktur"/>
<Item id="6205" name="Baumstruktur"/>
<Item id="6226" name="Keine"/>
<Item id="6291" name="Zeilennummer"/>
<Item id="6206" name="Anzeige"/>
<Item id="6292" name="Dynamische Breite"/>
<Item id="6293" name="Konstante Breite"/>
<Item id="6207" name="Lesezeichen anzeigen"/>
<Item id="6295" name="Änderungshistorie"/>
<Item id="6223" name="Am Rand anzeigen"/>
<Item id="6296" name="Im Text anzeigen"/>
<Item id="6211" name="Einstellungen für vertikale Kanten"/>
<Item id="6223" name="Zeige Änderungshistorie"/>
<Item id="6211" name="Vertikale Randeinstellungen"/>
<Item id="6213" name="Hintergrundmodus"/>
<Item id="6231" name="Breite der Umrandung"/>
<Item id="6237" name="Es können Spaltenmarkierung hinzugefügt werden, indem ihre Position mit einer Dezimalzahl angeben wird.
Mehrere Spaltenmarkierungen können definiert werden, indem die Zahlen durch Leerzeichen getrennt werden."/>
<Item id="6231" name="Rahmenbreite"/>
<Item id="6235" name="Kein Rand"/>
<Item id="6208" name="Freiraum/Einrückung"/>
<Item id="6208" name="Seitenrand"/>
<Item id="6209" name="Links"/>
<Item id="6210" name="Rechts"/>
<Item id="6212" name="Ablenkungsfrei"/>
@ -1113,18 +1076,17 @@ Translation note:
<Item id="6408" name="UTF-8 mit BOM"/>
<Item id="6409" name="UTF-16 Big Endian mit BOM"/>
<Item id="6410" name="UTF-16 Little Endian mit BOM"/>
<Item id="6411" name="Standardsprache:"/>
<Item id="6411" name="Standardsprache"/>
<Item id="6419" name="Neues Dokument"/>
<Item id="6420" name="Auch beim Öffnen von ANSI-Dateien"/>
<Item id="6432" name="Öffne beim Starten immer zusätzlich ein neues Dokument"/>
<Item id="6433" name="Die erste Zeile des Dokuments als Tab-Name verwenden"/>
</NewDoc>
<DefaultDir title="Standardverzeichnis">
<Item id="6413" name="Verzeichnis beim Öffnen/Speichern"/>
<Item id="6414" name="Wie aktuelle Datei"/>
<Item id="6415" name="Letztes Verzeichnis merken"/>
<Item id="6431" name="Verzeichnis-Drag&amp;&amp;Drop öffnet alle Dateien darin statt &quot;Verzeichnis als Arbeitsbereich&quot; zu starten"/>
<Item id="6431" name="Verzeichnis-Drag&amp;&amp;Drop öffnet alle enthaltenen Dateien statt &quot;Verzeichnis als Arbeitsbereich&quot; zu starten"/>
</DefaultDir>
<FileAssoc title="Dateiverknüpfungen">
@ -1132,29 +1094,17 @@ Translation note:
<Item id="4009" name="Unterstützte Erw.:"/>
<Item id="4010" name="Registrierte Erw.:"/>
</FileAssoc>
<Language title="Sprache">
<Item id="6505" name="Verfügbar:"/>
<Item id="6506" name="Deaktiviert:"/>
<Item id="6507" name="Sprachmenü verschachtelt darstellen"/>
<Item id="6508" name="Sprachmenü"/>
<Item id="6301" name="Tabulatoren"/>
<Item id="6302" name="Ersetzt durch Leerzeichen"/>
<Item id="6303" name="Tabulatorbreite:"/>
<Item id="6510" name="Standard verwenden"/>
<Item id="6335" name="Backslash ist Escapezeichen für SQL"/>
</Language>
<Indentation title="Einrückungen">
<Item id="7161" name="Autom. Einrückung"/>
<Item id="7162" name="Keine"/>
<Item id="7163" name="Normale"/>
<Item id="7164" name="Erweiterte"/>
<Item id="6301" name="Einstellung Einrückungen"/>
<Item id="6302" name="Leerzeichen"/>
<Item id="6303" name="Einrückungsbreite:"/>
<Item id="6310" name="Einrückung verwendet:"/>
<Item id="6311" name="Tab Zeichen"/>
<Item id="6510" name="Standard verwenden"/>
<Item id="6512" name="Rücktaste entfernt Einrückungen anstatt einzelner Leerzeichen"/>
</Indentation>
<Highlighting title="Hervorhebung">
<Item id="6351" name="Alle markieren"/>
@ -1174,12 +1124,12 @@ Translation note:
</Highlighting>
<Print title="Drucken">
<Item id="6601" name="Zeilennu&amp;mmern mitdrucken"/>
<Item id="6601" name="Zeilennu&amp;mmern drucken"/>
<Item id="6602" name="Farbo&amp;ptionen"/>
<Item id="6603" name="Wie angezeigt (W&amp;YSIWYG)"/>
<Item id="6603" name="Wie angezeigt (W&amp;YSIWYG"/>
<Item id="6604" name="I&amp;nvertieren"/>
<Item id="6605" name="Schwarz auf &amp;weiß"/>
<Item id="6606" name="Ohne &amp;Hintergrundfarbe"/>
<Item id="6606" name="Keine &amp;Hintergrundfarbe"/>
<Item id="6607" name="Seitenrän&amp;der (mm)"/>
<Item id="6612" name="&amp;Links"/>
<Item id="6613" name="&amp;Oben"/>
@ -1216,13 +1166,12 @@ Translation note:
<Item id="6902" name="Festbreitenschrift im Dialogfeld 'Suchen' verwenden (Neustart von Notepad++ erforderlich)."/>
<Item id="6903" name="Der Suchdialog bleibt nach der Suche geöffnet, die im Ergebnisfenster ausgegeben wird"/>
<Item id="6904" name="Bestätigung für 'Alle Ersetzen' in allen offenen Dokumenten"/>
<Item id="6905" name="Ersetzen: Nach Ersetzung nicht zum nächsten Treffer springen"/>
<Item id="6905" name="Ersetzen: Nach Ersetzung nicht zum nächsten Vorkommen springen"/>
<Item id="6906" name="Suchergebnisfenster: Zeige wenn möglich nur einen Eintrag pro gefundener Zeile"/>
<Item id="6907" name="Wenn der Suchdialog aufgerufen wird"/>
<Item id="6908" name="Im Suchfeld gewählten Text einsetzen"/>
<Item id="6909" name="Das Wort unter dem Cursor verwenden wenn nichts gewählt ist"/>
<Item id="6910" name="Mindestgröße für die automatische Aktivierung von 'In Auswahl'"/>
<Item id="6913" name="Suche im Dateiverzeichnisfeld basierend auf dem aktiven Dokument ausfüllen"/>
</Searching>
<RecentFilesHistory title="Zuletzt geöffn. Dateien">
@ -1239,20 +1188,21 @@ Translation note:
<Backup title="Sicherheitskopien">
<Item id="6817" name="Sitzungen automatisch speichern"/>
<Item id="6818" name="Sitzungen zeitgesteuert speichern"/>
<Item id="6819" name="Backup bei jeder Änderung auslösen alle"/>
<Item id="6819" name="Alle Sitzungen speichern"/>
<Item id="6821" name="Sekunden"/>
<Item id="6822" name="Verzeichnis:"/>
<Item id="6309" name="Aktuelle Sitzung für den nächsten Start merken"/>
<Item id="6825" name="Nicht zugängliche Dateien aus der letzten Sitzung merken"/>
<Item id="6801" name="Sicherheitskopie beim Speichern von Dateien"/>
<Item id="6315" name="Keine"/>
<Item id="6316" name="Einfache"/>
<Item id="6317" name="Erweiterte"/>
<Item id="6316" name="Einfach"/>
<Item id="6317" name="Erweitert"/>
<Item id="6804" name="Verzeichnisangabe für die Sicherheitskopien"/>
<Item id="6803" name="Verzeichnis:"/>
</Backup>
<AutoCompletion title="Autovervollständigung">
<Item id="6115" name="Automatische Einrückung"/>
<Item id="6807" name="Autovervollständigung"/>
<Item id="6808" name="Autovervollständigung aktivieren"/>
<Item id="6809" name="Funktionsvervollständigung"/>
@ -1285,7 +1235,7 @@ Translation note:
<Item id="6175" name="Datum vor Zeit ausgeben (kurzes &amp;&amp; langes Format)"/>
<Item id="6172" name="Eigenes Format:"/>
<Item id="6181" name="Status Bedienfeld und [-nosession] *"/>
<Item id="6182" name="Merke Bedienfeld-Status (Bedienfeld ist geöffnet) in anderen Instanzen (Mehr- Instanzen-Modus) oder beim Verwenden von Kommandozeilenparameter [-nosession]"/>
<Item id="6182" name="Merke Bedienfeld-Status (Bedienfeld ist geöffnet) in anderen Instanzen (Mehrinstanzen-Modus) oder beim Verwenden von Kommandozeilenparameter [-nosession]"/>
<Item id="6183" name="Verlauf der Zwischenablage"/>
<Item id="6184" name="Dokumentenliste"/>
<Item id="6185" name="Zeichen-Tabelle"/>
@ -1310,8 +1260,8 @@ Translation note:
<Performance title="Leistung">
<Item id="7141" name="Einschränkung für große Dateien"/>
<Item id="7143" name="Aktivieren der Einschränkung für große Dateien (keine Syntaxhervorhebung)"/>
<Item id="7144" name="Große Datei definieren:"/>
<Item id="7146" name="MB (1 - 2046)"/>
<Item id="7144" name="Große Dateigröße definieren:"/>
<Item id="7146" name="MB (1 - 4096)"/>
<Item id="7147" name="Klammerübereinstimmung zulassen"/>
<Item id="7148" name="Auto-Vervollständigung zulassen"/>
<Item id="7149" name="Intelligente Hervorhebung zulassen"/>
@ -1344,38 +1294,20 @@ Translation note:
<MISC title="Diverses">
<ComboBox id="6347">
<Element name="Für aktuelle Datei aktivieren"/>
<Element name="Aktivieren"/>
<Element name="Für alle offenen Dateien aktivieren"/>
<Element name="Deaktivieren"/>
</ComboBox>
<ComboBox id="6307">
<Element name="Keine Aktion bei"/>
<Element name="Minimieren in den"/>
<Element name="Schließen in den"/>
<Element name="Minimieren / Schließen in den"/>
</ComboBox>
<ComboBox id="6362">
<Element name="GDI (am kompatibelsten)"/>
<Element name="DirectWrite (Standard)"/>
<Element name="DirectWrite (Frames beibehalten)"/>
<Element name="DirectWrite (zeichnen in GDI DC)"/>
<Element name="DirectWrite (DirectX 11)"/>
</ComboBox>
<ComboBox id="6364">
<Element name="deaktivieren"/>
<Element name="beim Start von Notepad++"/>
<Element name="beim Beenden von Notepad++"/>
</ComboBox>
<Item id="6308" name="Infobereich (Tray)"/>
<Item id="6363" name="Darstellungsmodus"/>
<Item id="6365" name="Autom. Aktualisierung"/>
<Item id="6308" name="In den Infobereich (Tray) minimieren"/>
<Item id="6312" name="Automatische Änderungserkennung"/>
<Item id="6313" name="Ohne Rückfrage aktualisieren"/>
<Item id="6325" name="Nach Aktualisierung zum Ende scrollen"/>
<Item id="6322" name="Sitzungsdatei-Erw.:"/>
<Item id="6323" name="Automatische Updates aktivieren"/>
<Item id="6324" name="Dokumentenumschalter (Strg+Tab)"/>
<Item id="6331" name="Nur Dateinamen in der Titelleiste anzeigen"/>
<Item id="6334" name="Kodierung automatisch erkennen"/>
<Item id="6349" name="Verwende DirectWrite (kann die Darstellung von Sonderzeichen verbessern - erfordert Neustart von Notepad++)"/>
<Item id="6337" name="Arbeitsbereichdatei-Erw.:"/>
<Item id="6114" name="Aktivieren"/>
<Item id="6117" name="In Reihenfolge der Benutzung"/>
@ -1451,11 +1383,6 @@ Diese Wahl kann jederzeit in den Einstellungen angepasst werden."/>
<Item id="7" name="&amp;Nein"/>
<Item id="4" name="&amp;Immer Ja"/>
</DoSaveAll><!-- HowToReproduce: Check the 'Enable Save All confirm dialog' checkbox in Preference->MISC, now click 'Save all' -->
<DebugInfo title="Debug-Info">
<Item id="1752" name="&amp;Kopiere Debug-Info in Zwischenabl."/>
<Item id="1" name="OK"/>
</DebugInfo>
</Dialog>
<MessageBox>
<!-- $INT_REPLACE$ and $STR_REPLACE$ are place holders, don't translate these place holders. -->
@ -1487,9 +1414,6 @@ Ihre Einstellungen konnten nicht gespeichert werden. Bitte passen Sie die Einste
<DroppingFolderAsProjectModeWarning title="Ungültige Aktion" message="Es können entweder Dateien oder Verzeichnisse abgelegt werden, aber nicht beides zugleich, da das Programm im 'Verzeichnis als Projekt'-Modus ist.
Um dies zu ändern aktivieren Sie die Option &quot;Alle Dateien im jeweiligen Verzeichnis öffnen anstelle des Start-Verzeichnisses&quot; im &quot;Standardverzeichnis&quot; Bereich des Optionen-Dialogs."/>
<SortingError title="Sortier-Fehler" message="Konnte nicht nummerisch sortieren wegen Zeile $INT_REPLACE$."/>
<SortLocaleMultiple title="Sortierung nicht durchgeführt" message="Sortierung bei Mehrfachauswahl wird nicht unterstützt."/><!-- HowToReproduce: Make a multiple selection and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<SortLocaleUnknown title="Sortier-Fehler" message="Der Grund für das Fehlschlagen der Sortierung kann nicht festgestellt werden."/><!-- HowToReproduce: This condition is theoretical; it is unknown what could cause it. -->
<SortLocaleExcept title="Sortier-Fehler" message="$STR_REPLACE$"/><!-- HowToReproduce: Open a large file, e.g. 500MB / 90k lines, in 32-bit Notepad++ and choose Edit | Line Operations | Sort Lines In Locale Order. -->
<ColumnModeTip title="Tipp zum Spalten-Modus" message="
Es gibt 3 Möglichkeiten um in den Spaltenmodus zu wechseln:
@ -1541,8 +1465,8 @@ Soll die Datei trotzdem gespeichert werden?"/>
<LoadLangsFailed title="Konfigurator" message="Laden der Datei 'langs.xml' ist fehlgeschlagen!
Soll die Datei 'langs.xml' wiederhergestellt werden?"/>
<LoadLangsFailedFinal title="Konfigurator" message="Laden der Datei 'langs.xml' ist fehlgeschlagen!"/>
<FolderAsWorspaceSubfolderExists title="'Verzeichnis als Arbeitsbereich'-Problem" message="Ein Unterverzeichnis existiert im Verzeichnis, das hinzugefügt werden soll.
Bitte das Unterverzeichnis aus dem Arbeitsbereich entfernen, bevor das Verzeichnis &quot;$STR_REPLACE$&quot; hinzugefügt wird."/>
<FolderAsWorspaceSubfolderExists title="'Verzeichnis als Arbeitsbereich'-Problem" message="Ein Unterverzeichnis existiert im Verzeichnis das hinzugefügt werden soll.
Bitte dieses Verzeichnis vorher entfernen bevor das Verzeichnis &quot;$STR_REPLACE$&quot; hinzugefügt wird."/>
<ProjectPanelChanged title="$STR_REPLACE$" message="Der Arbeitsbereich wurde geändert. Soll er jetzt gespeichert werden?"/>
<ProjectPanelSaveError title="$STR_REPLACE$" message="Ein Fehler ist beim Speichern der Arbeitsbereichsdatei aufgetreten.
@ -1560,13 +1484,8 @@ Soll fortgefahren werden?"/>
<UDLNewNameError title="UDL-Fehler" message="Dieser Name wird bereits von einer anderen Sprache verwendet.
Bitte wählen Sie einen anderen Namen."/>
<UDLRemoveCurrentLang title="Aktuelle Sprache löschen" message="Wirklich löschen?"/>
<UDL_importSuccessful title="Benutzerdefinierte Sprache" message="Erfolgreich importiert."/>
<UDL_importFails title="Benutzerdefinierte Sprache" message="Importieren fehlgeschlagen."/>
<UDL_saveBeforeImport title="Benutzerdefinierte Sprache" message="Vor dem Exportieren die benutzerdefinierte Sprache mit &quot;Speichern unter …&quot; sichern."/> <!-- HowToReproduce: Choose "User Defined Language" in User Language combobox, then click on "Export... button". -->
<UDL_exportSuccessful title="Benutzerdefinierte Sprache" message="Erfolgreich exportiert."/>
<UDL_exportFails title="Benutzerdefinierte Sprache" message="Exportieren fehlgeschlagen."/>
<SCMapperDoDeleteOrNot title="Bestätigung" message="Soll die Tastenkombination wirklich gelöscht werden?"/>
<FindCharRangeValueError title="Problem mit Wertebereich" message="Der Wert muss zwischen 0 und 255 liegen."/> <!-- HowToReproduce: Search menu, then Find characters in range, select Custom range, enter 999 in either edit box, press Find. -->
<FindCharRangeValueError title="Problem mit Wertebereich" message="Der Wert muss zwischen 0 und 255 liegen."/>
<OpenInAdminMode title="Speichern fehlgeschlagen" message="Die Datei konnte nicht gespeichert werden, eventuell wegen vorhandenem Schreibschutz.
Soll dazu Notepad++ im Administrator-Modus gestartet werden?"/>
<OpenInAdminModeWithoutCloseCurrent title="Speichern fehlgeschlagen" message="Die Datei konnte nicht gespeichert werden, eventuell wegen vorhandenem Schreibschutz.
@ -1602,15 +1521,6 @@ Sollen diese Dateil-Platzhalter erstellt werden?
HINWEIS: Wenn die Platzhalter nicht erstellt oder später geschlossen werden, wird die Sitzung beim Beenden MODIFIZIERT! Es wird empfohlen jetzt eine Sicherung der Sitzung &quot;session.xml&quot; zu machen."/>
<RTLvsDirectWrite title="Kann nicht auf 'Schreibrichtung von rechts nach links' (RTL) schalten" message="'RTL' ist nicht kompatibel mit dem 'DirectWrite' Modus. Bitte dazu 'DirectWrite' unter 'Diverses' in den Einstellungen deaktivieren und danach Notepad++ neu starten."/>
<FileMemoryAllocationFailed title="Ausnahmefehler: Dateispeicherzuweisung fehlgeschlagen" message="Eventuell gibt es nicht genügend zusammenhängenden freien Speicher für die von Notepad++ geladene Datei."/><!-- HowToReproduce: Try to open multiple files with total size > ~700MB in the x86 Notepad++ (it will depend on the PC memory configuration and the current system memory usage...). -->
<FindRegexBackwardDisabled title="Regex-Rückwärtssuche nicht aktiv" message="Standardmäßig ist die Regex-Rückwärtssuche deaktiviert da möglicherweise unerwartete Ergebnisse auftreten. Um dennoch eine Regex-Rückwärtssuche durchzuführen, ist in der Suche entweder die normale oder erweiterte Suche statt regulärer Ausdrucke auszuwählen.
OK auswählen um die Suche zu öffnen oder in den Vordergrund zu bringen.
Falls die Regex-Rückwärtssuche dennoch benötigt wird, kann deren Aktivierung im Benutzerhandbuch nachgeschlagen werden."/>
<PrintError title="0" message="Druckerdokument kann nicht gestartet werden."/><!-- Use title="0" to use Windows OS default translated "Error" title. -->
<FindAutoChangeOfInSelectionWarning title="Suchwarnung" message="Der Status des Kontrollkästchens 'In Auswahl' wurde automatisch geändert.
Bitte die Suchbedingungen überprüfen, bevor die Aktion ausgeführt wird."/> <!-- HowToReproduce: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14897#issuecomment-2564316224 -->
<Need2Restart2ShowMenuShortcuts title="Neustart von Notepad++ erforderlich" message="Notepad++ muss zur Anzeige der Tastenkürzel neu gestartet werden."/>
<NoAdminRight2ChangeReadOnlyFileAttribute title="Das Ändern des schreibgeschützten Attributs der Datei ist fehlgeschlagen" message="Bitte Notepad++ als Administrator ausführen, um Dateiattribute zu ändern."/>
</MessageBox>
<ClipboardHistory>
<PanelTitle name="Zwischenablage"/>
@ -1734,6 +1644,7 @@ Bitte die Suchbedingungen überprüfen, bevor die Aktion ausgeführt wird."/> <!
<default-open-save-select-folder value="Wählen Sie ein Standardverzeichnis"/><!-- HowToReproduce: Settings > Preferences > Default Directory > [...] -->
<shift-change-direction-tip value="Shift+Enter verwenden um die Suchrichtung umzudrehen."/>
<two-find-buttons-tip value="Modus mit 2 Suchknöpfen"/>
<file-rename-title value="Umbenennen"/>
<find-in-files-filter-tip value="Suche in cpp, cxx, h, hxx &amp;&amp; hpp:
*.cpp *.cxx *.h *.hxx *.hpp
@ -1746,33 +1657,32 @@ Suche in allen Dateien, exkludiere die Verzeichnisse test, bin &amp;&amp; bin64:
Suche in allen Dateien, exkludiere alle Verzeichnisse log oder logs rekursiv:
*.* !+\log*"/><!-- HowToReproduce: Tip of mouse hovered on "Filters" label in "Find in Files" section of Find dialog. -->
<find-in-files-select-folder value="Wählen Sie ein Verzeichnis zum Durchsuchen"/><!-- HowToReproduce: Search > Find in Files > [...] -->
<find-in-files-dir-from-active-doc-tip value="Verzeichnisfeld auf Basis des aktiven Dokuments ausfüllen"/><!-- HowToReproduce: Search > Find in Files > [<<] -->
<find-status-top-reached value="Suche: Dokumentenanfang wurde erreicht - erster Treffer von unten gefunden."/>
<find-status-end-reached value="Suche: Dokumentenende wurde erreicht - erster Treffer von oben gefunden."/>
<find-status-replaceinfiles-1-replaced value="Ersetzen in Dateien: 1 Treffer wurde ersetzt"/>
<find-status-replaceinfiles-nb-replaced value="Ersetzen in Dateien: $INT_REPLACE$ Treffer wurden ersetzt"/>
<find-status-replaceinopenedfiles-1-replaced value="Ersetzen in geöffneten Dateien: 1 Treffer wurde ersetzt"/>
<find-status-replaceinopenedfiles-nb-replaced value="Ersetzen in geöffneten Dateien: $INT_REPLACE$ Treffer wurden ersetzt"/>
<find-status-top-reached value="Suche: Erster Treffer von unten. Der Anfang des Dokumentes wurde erreicht."/>
<find-status-end-reached value="Suche: Erster Treffer von oben. Das Ende des Dokumentes wurde erreicht."/>
<find-status-replaceinfiles-1-replaced value="Ersetzen in Dateien: 1 Vorkommen wurde ersetzt"/>
<find-status-replaceinfiles-nb-replaced value="Ersetzen in Dateien: $INT_REPLACE$ Vorkommen wurden ersetzt"/>
<find-status-replaceinopenedfiles-1-replaced value="Ersetzen in geöffneten Dateien: 1 Vorkommen wurde ersetzt"/>
<find-status-replaceinopenedfiles-nb-replaced value="Ersetzen in geöffneten Dateien: $INT_REPLACE$ Vorkommen wurden ersetzt"/>
<find-status-invalid-re value="Suche: Ungültiger Ausdruck"/>
<find-status-search-failed value="Suche: Fehlgeschlagen"/>
<find-status-mark-1-match value="Hervorheben: 1 Treffer"/>
<find-status-mark-nb-matches value="Hervorheben: $INT_REPLACE$ Treffer"/>
<find-status-count-1-match value="Zähler: 1 Treffer"/>
<find-status-count-nb-matches value="Zähler: $INT_REPLACE$ Treffer"/>
<find-status-replaceall-1-replaced value="Alle ersetzen: 1 Treffer wurde ersetzt"/>
<find-status-replaceall-nb-replaced value="Alle ersetzen: $INT_REPLACE$ Treffer wurden ersetzt"/>
<find-status-replaceall-readonly value="Alle ersetzen: Konnte den Text nicht ersetzen (schreibgeschützte Datei)"/>
<find-status-replace-end-reached value="Ersetzen: Dokumentenende wurde erreicht - von oben beginnend"/>
<find-status-replace-top-reached value="Ersetzen: Dokumentenanfang wurde erreicht - von unten beginnend"/>
<find-status-replaced-next-found value="Ersetzen: 1 Treffer wurde ersetzt. Nächster Treffer gefunden"/>
<find-status-replaced-without-continuing value="Ersetzen: 1 Treffer wurde ersetzt."/>
<find-status-replaced-next-not-found value="Ersetzen: 1 Treffer wurde ersetzt. Keine weiteren Treffer gefunden"/>
<find-status-replace-not-found value="Ersetzen: Keine Treffer gefunden"/>
<find-status-replace-readonly value="Ersetzen: Konnte den Text nicht ersetzen (schreibgeschützte Datei)"/>
<find-status-cannot-find value="Suche: Konnte den Text &quot;$STR_REPLACE$&quot; nicht finden"/>
<find-status-cannot-find-pebkac-maybe value="Der angegebene Treffer kann nicht gefunden werden. Bitte überprüfen ob 'Am Ende von vorne beginnen' (auf EIN), 'Groß-/Kleinschreibung beachten' (auf AUS), oder 'Nur ganze Wörter suchen' (auf AUS) gesetzt sind."/>
<find-status-replaceall-1-replaced value="Alle ersetzen: 1 Vorkommen wurde ersetzt"/>
<find-status-replaceall-nb-replaced value="Alle ersetzen: $INT_REPLACE$ Vorkommen wurden ersetzt"/>
<find-status-replaceall-readonly value="Alle ersetzen: Konnte Text wegen schreibgeschützter Datei nicht ersetzen"/>
<find-status-replace-end-reached value="Ersetzen: 1. Vorkommen von oben wurde ersetzt. Das Ende des Dokumentes wurde erreicht"/>
<find-status-replace-top-reached value="Ersetzen: 1. Vorkommen von unten wurde ersetzt. Der Anfang des Dokumentes wurde erreicht"/>
<find-status-replaced-next-found value="Ersetzen: 1 Vorkommen wurde ersetzt. Nächster Treffer gefunden"/>
<find-status-replaced-without-continuing value="Ersetzen: 1 Vorkommen wurde ersetzt."/>
<find-status-replaced-next-not-found value="Ersetzen: 1 Vorkommen wurde ersetzt. Keine weiteren Treffer gefunden"/>
<find-status-replace-not-found value="Ersetzen: Kein Vorkommen gefunden"/>
<find-status-replace-readonly value="Ersetzen: Konnte Text wegen schreibgeschützter Datei nicht ersetzen"/>
<find-status-cannot-find value="Suche: Konnte Text &quot;$STR_REPLACE$&quot; nicht finden"/>
<find-status-cannot-find-pebkac-maybe value="Das angegebene Vorkommen kann nicht gefunden werden. Bitte überprüfen ob 'Am Ende von vorne beginnen' (auf EIN), 'Groß-/Kleinschreibung beachten' (auf AUS), oder 'Nur ganze Wörter suchen' (auf AUS) gesetzt sind."/>
<find-status-scope-selection value="im gewählten Text"/>
<find-status-scope-all value="in dieser Datei"/>
<find-status-scope-all value="in der gesamten Datei"/>
<find-status-scope-backward value="vom Dateianfang bis zum Cursor"/>
<find-status-scope-forward value="vom Cursor bis zum Dateiende"/>
<finder-find-in-finder value="In diesen Suchergebnissen finden …"/>
@ -1780,9 +1690,11 @@ Suche in allen Dateien, exkludiere alle Verzeichnisse log oder logs rekursiv:
<finder-collapse-all value="Alles einklappen"/>
<finder-uncollapse-all value="Alles aufklappen"/>
<finder-copy value="Kopiere ausgewählte Zeile(n)"/>
<finder-copy-selected-paths value="Gewählte(n) Pfadnamen kopieren"/>
<finder-copy-verbatim value="Kopieren"/>
<finder-copy-paths value="Pfadnamen kopieren"/>
<finder-select-all value="Alles wählen"/>
<finder-clear-all value="Alles löschen"/>
<finder-open-selected-paths value="Gewählte(n) Pfadnamen öffnen"/>
<finder-open-all value="Alles öffnen"/>
<finder-purge-for-every-search value="Vor jeder Suche leeren"/>
<finder-wrap-long-lines value="Zeilenumbruch bei langen Zeilen"/>
<common-ok value="OK"/>
@ -1807,16 +1719,17 @@ Suche in allen Dateien, exkludiere alle Verzeichnisse log oder logs rekursiv:
<summary-nbsel2 value=" Bytes) in "/>
<summary-nbrange value=" Stufen"/>
<progress-hits-title value="Treffer:"/>
<progress-cancel-button value="Abbrechen"/>
<progress-cancel-info value="Aktion wird abgebrochen, bitte warten …"/>
<find-in-files-progress-title value="Fortschritt für die Suche in Dateien …"/>
<replace-in-files-confirm-title value="Sind Sie sicher?"/>
<replace-in-files-confirm-directory value="Sind Sie sicher, dass alle Treffer ersetzt werden sollen in: "/>
<replace-in-files-confirm-directory value="Sind Sie sicher, dass alle Vorkommen ersetzt werden sollen in: "/>
<replace-in-files-confirm-filetype value="Für Dateityp: "/>
<replace-in-files-progress-title value="Fortschritt für das Ersetzen in Dateien …"/>
<replace-in-projects-confirm-title value="Sind Sie sicher?"/>
<replace-in-projects-confirm-message value="Sollen wirklich alle Treffer in allen Dokumenten im gewählten Projekt ersetzt werden?"/>
<replace-in-projects-confirm-message value="Sollen wirklich alle Vorkommen in allen Dokumenten im gewählten Projekt ersetzt werden?"/>
<replace-in-open-docs-confirm-title value="Sind Sie sicher?"/>
<replace-in-open-docs-confirm-message value="Sind Sie sicher, dass alle Treffer in allen offenen Dokumenten ersetzt werden sollen?"/>
<replace-in-open-docs-confirm-message value="Sind Sie sicher dass alle Vorkommen in allen offenen Dokumenten ersetzt werden sollen?"/>
<find-result-caption value="Suchergebnisse"/>
<find-result-title value="Suche"/><!-- Must not begin with space or tab character -->
<find-result-title-info value="($INT_REPLACE1$ Treffer in $INT_REPLACE2$ Dateien von $INT_REPLACE3$ gesucht)"/>
@ -1824,7 +1737,7 @@ Suche in allen Dateien, exkludiere alle Verzeichnisse log oder logs rekursiv:
<find-result-title-info-options-searchmode-normal value="Normal"/>
<find-result-title-info-options-searchmode-extended value="Erweitert"/>
<find-result-title-info-options-searchmode-regexp value="RegEx"/>
<find-result-title-info-options-case value="Groß-/Kleinschreibung"/>
<find-result-title-info-options-case value="Fall"/>
<find-result-title-info-options-word value="Wort"/>
<find-result-title-info-extra value=" - Zeilenfilter-Modus: nur die Treffer anzeigen"/>
<find-result-hits value="($INT_REPLACE$ Treffer)"/>
@ -1838,8 +1751,8 @@ Suche in allen Dateien, exkludiere alle Verzeichnisse log oder logs rekursiv:
<IncrementalFind-FSNotFound value="Ausdruck nicht gefunden"/>
<IncrementalFind-FSTopReached value="Anfang der Seite erreicht, Fortsetzung von unten"/>
<IncrementalFind-FSEndReached value="Ende der Seite erreicht, Fortsetzung von oben"/>
<contextMenu-styleAlloccurrencesOfToken value="Alle Treffer hervorheben"/>
<contextMenu-styleOneToken value="Diesen Treffer hervorheben"/>
<contextMenu-styleAlloccurrencesOfToken value="Alle Vorkommen hervorheben"/>
<contextMenu-styleOneToken value="Dieses Vorkommen hervorheben"/>
<contextMenu-clearStyle value="Alle Hervorhebungen entfernen"/>
<contextMenu-PluginCommands value="Plugin-Befehle"/>
<largeFileRestriction-tip value="Einige Funktionen können die Leistung bei großen Dateien beeinträchtigen. Diese Funktionen können beim Öffnen einer großen Datei automatisch deaktiviert werden - das kann hier angepasst werden.
@ -1848,7 +1761,7 @@ ACHTUNG:
1. Wenn Sie die Optionen hier ändern, müssen Sie die aktuell geöffneten großen Dateien erneut öffnen um die Änderung zu erhalten.
2. Wenn &quot;Wortumbruch global deaktivieren&quot; aktiv ist und Sie eine große Datei öffnen, wird &quot;Wortumbruch&quot; für alle Dateien deaktiviert. Sie können das aber über das Menü &quot;Ansicht-&gt;Wortumbruch&quot; wieder aktivieren."/>
<npcNote-tip value="Darstellung von ausgewählten &quot;Nicht-ASCII&quot; Leerzeichen und nicht druckbaren (Steuer-) Zeichen.
<npcNote-tip value="Darstellung von ausgewählten &quot;Nicht-ASCII&quot; Leerzeichen und nicht druckbaren (Steuer-)Zeichen.
HINWEIS:
Die Verwendung der Darstellung deaktiviert die Zeicheneffekte im Text.
@ -1873,34 +1786,9 @@ Ein Klick auf &quot;?&quot; öffnet die Webseite des Benutzerhandbuchs."/>
<!-- Don't translate "(&quot;Non-printing characters custom color&quot;)" -->
<npcCustomColor-tip value="Im Stil-Konfigurator kann die Standardfarbe für die speziellen Leerzeichen und die nicht druckbaren Zeichen angepasst werden (&quot;Non-printing characters custom color&quot;)."/>
<npcIncludeCcUniEol-tip value="Einstellungen für das Erscheinungsbild von nicht druckbaren Zeichen auf die Steuerzeichen C0, C1 und Unicode EOL (nächste Zeile, Zeilen- und Absatztrenner) anwenden."/>
<searchingInSelThresh-tip value="Anzahl der ausgewählten Zeichen (max. 1024) in der Bearbeitungszone, um das Kontrollkästchen 'In Auswahl' automatisch zu aktivieren, wenn der Suchdialog aktiviert wird. Diesen Wert auf 0 setzen, um die automatische Markierung zu deaktivieren."/>
<verticalEdge-tip value="Eine Spaltenmarkierung kann hinzugefügt werden, indem ihre Position mit einer Dezimalzahl angeben wird. Mehrere Spaltenmarkierungen können definiert werden, indem die verschiedenen Zahlen durch Leerzeichen getrennt werden."/>
<fileSaveAsCopySaveButton-tip value="Drücke die Shift-Taste während des Speicherns um die Kopie nach dem Speichern zu öffnen."/>
<autoIndentBasic-tip value="Stelle sicher, dass die Einrückung in der aktuellen Zeile (z.B. erstellt durch das Drücken der ENTER-Taste) mit der Einrückung in der vorigen Zeile übereinstimmt."/>
<autoIndentAdvanced-tip value="Aktiviere die 'Intelligente Einrückung' für 'C-ähnliche' Sprachen und Python. Diese 'C-ähnliche' Sprachen sind:
C, C++, Java, C#, Objective-C, PHP, JavaScript, JSP, CSS, Perl, Rust, PowerShell und JSON.
Wenn diese 'Intelligente Einrückung' gewählt wird, aber keine Dateien in den oben genannten Sprachen bearbeitet werden, bleibt die Einrückung im Standard-Modus."/>
<!-- Don't translate "Global override" and "Default Style" -->
<global-override-tip value="Das Aktivieren von 'Global override' überschreibt die Parameter in allen Schriftstilen. Was aber wahrscheinlich stattdessen gewünscht ist, sind die Einstellungen für 'Default Style'"/>
<scintillaRenderingTechnology-tip value="Verwende DirectWrite (kann die Darstellung von Sonderzeichen verbessern oder einige Grafikprobleme beheben - erfordert einen Neustart von Notepad++."/>
<!-- Due to the limited space on the status bar, if the translations for 'length' & 'lines' are much longer than the English words, please leave them in English instead of translating them. -->
<statusbar-length-lines value="Länge: $STR_REPLACE1$ Zeilen: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Ln' & 'Col' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Ln-Col value="Zei: $STR_REPLACE1$ Spa: $STR_REPLACE2$"/>
<!-- Due to the limited space on the status bar, if the translations for 'Pos' & 'Sel' are longer than the English words, please leave them in English instead of translating them. -->
<statusbar-Pos value="Pos: "/>
<statusbar-Sel value="Gew: "/>
<statusbar-Sel-number value="Gew"/>
<toolbar-accent-tip value="Mit dieser Option werden die Symbolleistensymbole der Akzentfarbe des Windows-Systems angepasst. Die Akzentfarbe ist die Farbe, mit der Schaltflächen, Rahmen und Startmenükacheln in Windows hervorgehoben werden. Um sie zu ändern, gehen Sie zu Einstellungen &gt; Personalisierung &gt; Farben und wählen Sie dann Ihre bevorzugte Akzentfarbe."/>
<max-len-on-search-tip value="Es sind nur $INT_REPLACE$ Zeichen erlaubt für die Suchen/Ersetzen-Textlänge - deine Eingabe könnte gekürzt werden und wird für die nächste Sitzung nicht gespeichert."/>
<max-len-on-save-tip value="Diese Sucheingabe (> $INT_REPLACE$ Zeichen) wird für die nächste Sitzung nicht gespeichert."/>
<goto-setting-tip value="Finde hier deine Einstellungen"/>
<npcIncludeCcUniEol-tip value="Wenden Sie die Einstellungen für das Erscheinungsbild von nicht druckbaren Zeichen auf die Steuerzeichen C0, C1 und Unicode EOL (nächste Zeile, Zeilen- und Absatztrenner) an."/>
<searchingInSelThresh-tip value="Anzahl der ausgewählten Zeichen (max. 1024) in der Bearbeitungszone, um das Kontrollkästchen 'In Auswahl' automatisch zu aktivieren, wenn der Suchdialog aktiviert wird. Den Wert auf 0 setzen, um die automatische Markierung zu deaktivieren."/>
</MiscStrings>
</Native-Langue>
</NotepadPlus>

View File

@ -134,6 +134,7 @@
<Item id="42030" name="Όνομα αρχείου σε Προσωρινή μνήμη"/>
<Item id="42031" name="Διαδρομή καταλόγου σε Προσωρινή μνήμη"/>
<Item id="42032" name="Εκτέλεση μακροεντολής πολλές φορές..."/>
<Item id="42033" name="Καθαρισμός μόνο για ανάγνωση μεταβητής flag"/>
<Item id="42034" name="Επεξεργαστής Στηλών..."/>
<Item id="42035" name="Πρόσθεση σχολίου"/>
<Item id="42036" name="Αφαίρεση σχολίου"/>
@ -411,6 +412,7 @@
<Item id="1658" name="Σε υπο-φακέλους"/>
<Item id="1659" name="Σε κρυφούς φακέλους"/>
<Item id="1660" name="Αντικατάσταση σε αρχεία"/>
<Item id="1661" name="Και στο τρέχον doc."/>
<Item id="1662" name="Πίνακας έργου 1"/>
<Item id="1663" name="Πίνακας έργου 2"/>
<Item id="1664" name="Πίνακας έργου 3"/>
@ -797,15 +799,18 @@
<Preference title="Προτιμήσεις">
<Item id="6001" name="Κλείσιμο"/>
<Global title="Γενικά">
<Item id="6101" name="Γραμμή εργαλείων"/>
<Item id="6102" name="Απόκρυψη"/>
<Item id="6103" name="Μικρά εικονίδια"/>
<Item id="6104" name="Μεγάλα εικονίδια"/>
<Item id="6105" name="Μικρά πρότυπα εικονίδια"/>
<Item id="6106" name="Γραμμή καρτελών"/>
<Item id="6107" name="Μείωση"/>
<Item id="6108" name="Κλείδωμα (Χωρίς Σύρσιμο-Απόθεση)"/>
<Item id="6109" name="Μαύρισμα ανενεργών καρτελών"/>
<Item id="6110" name="Εμφάνιση άνω πορτοκαλί γραμμής"/>
<Item id="6111" name="Εμφάνιση γραμμής κατάστασης"/>
<Item id="6112" name="Πλήκτρο κλεισίματος σε κάθε καρτέλα"/>
<Item id="6113" name="Διπλό κλικ για κλείσιμο εγγράφου"/>
@ -833,6 +838,7 @@
<Item id="6219" name="Ρυθμός Αναλαμπής: "/>
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6225" name="Ενεργοποίηση (Ctrl+Κλικ Ποντικιού/επιλογή)"/>
<Item id="6227" name="Αναδίπλωση γραμμών"/>
<Item id="6228" name="Εξ΄ ορισμού"/>
<Item id="6229" name="Ευθυγράμμιση"/>
@ -993,6 +999,7 @@
</Backup>
<AutoCompletion title="Αυτόμ συμπλήρωση">
<Item id="6115" name="Αυτόματη εσοχή"/>
<Item id="6807" name="Αυτόμ συμπλήρωση"/>
<Item id="6808" name="Ενεργοπ. αυτόμ. συμπλήρ. σε κάθε είσοδο"/>
<Item id="6809" name="Συνάρτηση συμπλήρωσης"/>
@ -1061,6 +1068,7 @@
</ComboBox>
<Item id="6114" name="Ενεργό"/>
<Item id="6117" name="Ενεργή MRU προσαρμογή"/>
<Item id="6308" name="Ελαχιστοποίηση στη Γραμμή εργασιών"/>
<Item id="6312" name="Κατάσταση Αρχείων Αυτόματης-ανίχνευσης"/>
<Item id="6313" name="Αθόρυβη ενημέρωση"/>
<Item id="6322" name="Επέκταση αρχείου συνόδου:"/>
@ -1073,6 +1081,7 @@
<Item id="6344" name="Σύνοψη εγγράφου"/>
<Item id="6345" name="Σύνοψη στην καρτέλα"/>
<Item id="6346" name="Σύνοψη στο χάρτη εγγράφου"/>
<Item id="6349" name="Χρήση DirectWrite (Μπορεί να βελτιωθεί η απόδοση ειδικών χαρακτήρων, πρέπει να γίνει επανεκκίνησηNotepad++)"/>
<Item id="6360" name="Σίγαση όλων των ήχων"/>
</MISC>
</Preference>
@ -1186,7 +1195,7 @@
<OpenFileError title="ERROR" message="Δεν μπορεί να ανοίξει το αρχείο &quot;$STR_REPLACE$&quot;."/>
<FileBackupFailed title="Αποτυχία δημιουργίας αντιγράφου αρχείου" message="Η προηγούμενη έκδοση του αρχείου δεν μπόρεσε να αποθηκευτεί στον κατάλογο αντιγράφων ασφαλείας στο &quot;$STR_REPLACE$&quot;.
Do you want to save the current file anyway?"/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
Do you want to save the current file anyways?"/><!-- HowToReproduce: this message prevents from system failure. It's hard to reproduce. -->
<LoadStylersFailed title="Load stylers.xml failed" message="Load &quot;$STR_REPLACE$&quot; failed!"/>
<LoadLangsFailed title="Configurator" message="Load langs.xml failed!
Do you want to recover your langs.xml?"/><!-- HowToReproduce: Close Notepad++. Use another editor to remove all content of "langs.xml" (0 length) then save it. Open Notepad++. -->
@ -1375,8 +1384,10 @@ Find in all files except exe, obj &amp;&amp; log:
<finder-uncollapse-all value="Uncollapse all"/>
<finder-copy value="Copy Selected Line(s)"/>
<finder-copy-verbatim value="Copy"/>
<finder-copy-paths value="Copy Pathname(s)"/>
<finder-select-all value="Select all"/>
<finder-clear-all value="Clear all"/>
<finder-open-all value="Open all"/>
<finder-purge-for-every-search value="Purge for every search"/>
<finder-wrap-long-lines value="Word wrap long lines"/>
<common-ok value="OK"/>

View File

@ -135,6 +135,7 @@
<Item id="42030" name="હાલનું ફાઈલનેમ ક્લિપબોર્ડ પર"/>
<Item id="42031" name="હાલનો ડિરેક્ટરી પાથ ક્લિપબોર્ડ પર"/>
<Item id="42032" name="એક મૅક્રો ઘણી વખત ચલાવો..."/>
<Item id="42033" name="ક્લિયર રિડ ઓનલી ફ્લેગ"/>
<Item id="42035" name="સિંગલ લાઈન કમેન્ટ"/>
<Item id="42036" name="સિંગલ લાઈન અનકમેન્ટ"/>
<Item id="42055" name="ખાલી લાઈન્સ કાઢો"/>
@ -339,6 +340,7 @@
<Item id="1625" name="નોર્મલ"/>
<Item id="1626" name="વિસ્તૃત(Extended) (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="ફાઈલ્સ માં બદલો"/>
<Item id="1661" name="હાલના ડોક્યુમેન્ટ ને અનુસરો"/>
<Item id="1641" name="બધા હાલના ડોક્યુમેન્ટ માં શોધો"/>
<Item id="1686" name="પારદર્શકતા"/>
<Item id="1703" name="&amp;. નવી લાઈન મેચ કરે"/>
@ -564,16 +566,19 @@
<Preference title="Preferences">
<Item id="6001" name="બંધ કરો"/>
<Global title="General">
<Item id="6101" name="ટૂલબાર"/>
<Item id="6102" name="છુપાવો"/>
<Item id="6103" name="નાના આઇકોન્સ"/>
<Item id="6104" name="મોટા આઇકોન્સ"/>
<Item id="6105" name="સ્ટાનડર્દ આઇકોન્સ"/>
<Item id="6106" name="ટેબ બાર"/>
<Item id="6107" name="ઘટાડો"/>
<Item id="6108" name="લોક ( ડ્રેગ અને ડ્રોપ નહિ)"/>
<Item id="6109" name="નિષ્ક્રિય ટેબ્સ ને ડાર્ક કરો"/>
<Item id="6110" name="એક્ટીવ ટેબ પર કલર કરેલ બાર દોરો"/>
<Item id="6111" name="સ્ટેટસ બાર બતાવો"/>
<Item id="6112" name="બધા ટેબ પર ક્લોઝ બટન બતાવો"/>
<Item id="6113" name="ડોક્યુમેન્ટ બંધ કરવા ડબલ ક્લિક કરો"/>
<Item id="6118" name="છુપાવો"/>
@ -594,6 +599,7 @@
<Item id="6221" name="એફ(F)"/>
<Item id="6222" name="એસ(S)"/>
<Item id="6224" name="મલ્ટી-એડીટીંગ સેટીંગઝ"/>
<Item id="6225" name="સક્રિય કરો (Ctrl+માઉસ ક્લીક/સિલેકશન)"/>
<Item id="6201" name="ફોલ્ડર માર્જિન સ્ટાઈલ"/>
<Item id="6202" name="સિમ્પલ"/>
<Item id="6203" name="એરો"/>
@ -714,6 +720,7 @@
</Backup>
<AutoCompletion title="Auto-Completion">
<Item id="6115" name="ઓટો-ઇન્ડેન્ટ"/>
<Item id="6807" name="ઓટો -કમ્પ્લીશન(Auto-Completion)"/>
<Item id="6808" name="દરેક ઈનપુટ માટે ઓટો-કમ્પ્લીશન સક્રિય કરો"/>
<Item id="6809" name="ફંક્શન કમ્પ્લીશન"/>
@ -748,6 +755,8 @@
</Delimiter>
<MISC title="MISC.">
<Item id="6307" name="સક્રિય"/>
<Item id="6308" name="સીસ્ટમ ટ્રે માટે/સુધી ઘટાડો"/>
<Item id="6312" name="ફાઈલ સ્ટેટસ ઓટો-ડીટેક્શન"/>
<Item id="6313" name="અપડેટ સાઈલન્ટલી"/>
<Item id="6318" name="ક્લીકેબલ લીંક સેટિંગ્સ"/>
@ -803,8 +812,8 @@
<MessageBox>
<ContextMenuXmlEditWarning title="Editing contextMenu" message="Editing contextMenu.xml allows you to modify your Notepad++ popup context menu.\rYou have to restart your Notepad++ to take effect after modifying contextMenu.xml."/>
<NppHelpAbsentWarning title="File does not exist" message="\rdoesn't exist. Please download it on Notepad++ site."/>
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.\rAll the saved modifications cannot be undone.\r\rContinue?"/>
<LoseUndoAbilityWarning title="Lose Undo Ability Warning" message="You should save the current modification.\rAll the saved modifications cannot be undone.\r\rContinue?"/>
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.\rAll the saved modifications can not be undone.\r\rContinue?"/>
<LoseUndoAbilityWarning title="Lose Undo Ability Warning" message="You should save the current modification.\rAll the saved modifications can not be undone.\r\rContinue?"/>
<CannotMoveDoc title="Move to new Notepad++ Instance" message="Document is modified, save it then try again."/>
<DocReloadWarning title="Reload" message="Are you sure you want to reload the current file and lose the changes made in Notepad++?"/>
<FileLockedWarning title="Save failed" message="Please check whether if this file is opened in another program"/>

View File

@ -97,6 +97,7 @@
<Item id="42027" name="כיוון טקסט שמאל לימין"/>
<Item id="42028" name="הגדר לקריאה בלבד"/>
<Item id="42032" name="הרץ מאקרו מספר מוגדר של פעמים"/>
<Item id="42033" name="בטל קריאה בלבד"/>
<Item id="42034" name="עורך עמודות"/>
<Item id="42035" name="חסום הערה"/>
<Item id="42036" name="חסום אי הערה"/>
@ -301,6 +302,7 @@
<Item id="1658" name="בכל תתי התיקיות"/>
<Item id="1659" name="בתיקיות חבויות"/>
<Item id="1660" name="החלף בקבצים"/>
<Item id="1661" name="עקוב מסמך נוכחי"/>
<Item id="1686" name="שקיפות"/>
<Item id="1687" name="באובדן מיקוד"/>
<Item id="1688" name="תמיד"/>

View File

@ -170,6 +170,7 @@
<Item id="42030" name="वर्तमान फाईल का नाम क्लिपबोर्ड पर लें"/>
<Item id="42031" name="वर्तमान डायरेक्टरी पाथ क्लिपबोर्ड पर लें"/>
<Item id="42032" name="मैक्रो को कई बार चलायें..."/>
<Item id="42033" name="Read-Only फ्लेग को निकालें"/>
<Item id="42035" name="सिंगल लाइन कमेंट"/>
<Item id="42036" name="सिंगल लाइन अंकमेंट"/>
<Item id="42055" name="खाली लाइनों को हटाएँ"/>
@ -388,6 +389,7 @@
<Item id="1625" name="सामान्य"/>
<Item id="1626" name="विस्तृत (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="फ़ाईलों में बदलें"/>
<Item id="1661" name="वर्तमान दस्तावेज़ का अनुसरण करें"/>
<Item id="1641" name="वर्तमान दस्तावेज़ में सब खोजें"/>
<Item id="1686" name="पारदर्शिता"/>
<Item id="1703" name="&amp;. न्यू लाइन मैच"/>
@ -691,16 +693,19 @@
<Preference title="पसंदगी (Preferences)">
<Item id="6001" name="बंद करें"/>
<Global title="समान्य">
<Item id="6101" name="टूलबार"/>
<Item id="6102" name="छिपायें"/>
<Item id="6103" name="छोटे आइकॉनस"/>
<Item id="6104" name="बड़े आइकॉनस"/>
<Item id="6105" name="स्टेंडर्ड आइकॉन"/>
<Item id="6106" name="टैब बार"/>
<Item id="6107" name="घटायें"/>
<Item id="6108" name="लॉक (no drag and drop)"/>
<Item id="6109" name="निष्क्रिय टैब को काला करें"/>
<Item id="6110" name="सक्रिय टैब पर रंगीन बार बनायें"/>
<Item id="6111" name="स्टेटस बार दिखायें"/>
<Item id="6112" name="हरेक टैब पर बंद का बटन दिखायें"/>
<Item id="6113" name="दस्तावेज़ बंद करने के लिए डबल क्लिक करें"/>
<Item id="6118" name="छिपायें"/>
@ -722,6 +727,7 @@
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6224" name="मल्टी-एडिटिंग सेटिंग्स"/>
<Item id="6225" name="सक्रिय (Ctrl+Mouse click/selection)"/>
<Item id="6201" name="फोंल्डर मार्जिन स्टाइल"/>
<Item id="6202" name="आसान (Simple)"/>
<Item id="6203" name="तीर (Arrow)"/>
@ -860,6 +866,7 @@
</Backup>
<AutoCompletion title="स्वतः पूर्ति">
<Item id="6115" name="स्वचालित इंडेंट"/>
<Item id="6807" name="स्वतः पूर्ति"/>
<Item id="6808" name="प्रत्येक इनपुट पर स्वतः पूर्ति सक्रिय करें"/>
<Item id="6809" name="फंक्शन समापन"/>
@ -921,6 +928,7 @@
<Element name="सभी खुली हुई फाइलों के लिए इनेबल करें"/>
<Element name="डिसेबल करें"/>
</ComboBox>
<Item id="6308" name="सिस्टम ट्रे में छोटा करें"/>
<Item id="6312" name="फाईल स्टेटस की स्वचालित जांच"/>
<Item id="6313" name="साइलेंटली अपडेट करें"/>
<Item id="6318" name="क्लिक योग्य लिंक की सेटिंग"/>
@ -1209,6 +1217,7 @@
<finder-copy value="कॉपी करें"/>
<finder-select-all value="सब सेलेक्ट करें"/>
<finder-clear-all value="सब क्लियर करें"/>
<finder-open-all value="सब ओपन करें"/>
<common-ok value="ओके"/>
<common-cancel value="रद्द करें"/>
<common-name value="नाम: "/>

View File

@ -207,6 +207,7 @@
<Item id="42032" name="係咁執行 mac&amp;ro..."/>
<!-- type: Edit menu (cont'd) -->
<Item id="42033" name="取消唯讀屬性"/>
<Item id="42035" name="轉做單行式註解"/>
<Item id="42036" name="取消單行式註解"/>
<Item id="42055" name="剷走空行"/>
@ -503,6 +504,7 @@
<Item CMDID="41014" name="喺磁碟重新 load 過"/><!-- #new v8.4.8 -->
<Item CMDID="41010" name="Print 出嚟..."/><!-- #new v8.4.8 -->
<Item CMDID="42028" name="唯讀"/><!-- #new v8.4.8 -->
<Item CMDID="42033" name="取消唯讀屬性"/><!-- #new v8.4.8 -->
<Item CMDID="2" name="抄去剪貼簿"/><!-- #new v8.4.8 -->
<Item CMDID="42029" name="抄低個檔案路徑"/><!-- #new v8.4.8 -->
<Item CMDID="42030" name="抄低個檔名"/><!-- #new v8.4.8 -->
@ -555,6 +557,7 @@
<Item id="1626" name="加強(例如 \n, \r, \t, \0, \x...(&amp;X)"/>
<Item id="1660" name="所有檔案全部取代"/>
<Item id="1665" name="喺 projects 嘅檔案執行取代"/><!-- #new v7.9.4 -->
<Item id="1661" name="使用目前文件嘅資料夾"/>
<Item id="1662" name="Project Panel 1"/><!-- #new v7.9.4 -->
<Item id="1663" name="Project Panel 2"/><!-- #new v7.9.4 -->
<Item id="1664" name="Project Panel 3"/><!-- #new v7.9.4 -->
@ -990,16 +993,19 @@
<Item id="6001" name="閂"/>
<Global title="一般">
<Item id="6101" name="工具列"/>
<Item id="6102" name="隱藏"/>
<Item id="6103" name="滑脫脫介面:細圖示"/><!-- "Fluent UI" -->
<Item id="6104" name="滑脫脫介面:大圖示"/><!-- "Fluent UI" -->
<Item id="6129" name="肥嘟嘟介面:細圖示"/><!-- "Filled Fluent UI" --><!-- #new v7.9.6 -->
<Item id="6130" name="肥嘟嘟介面:大圖示"/><!-- "Filled Fluent UI" --><!-- #new v7.9.6 -->
<Item id="6105" name="標準介面:細圖示"/>
<Item id="6106" name="Tab Bar"/>
<Item id="6107" name="縮細"/>
<Item id="6108" name="鎖定(唔畀 drag-and-drop"/>
<Item id="6109" name="整暗啲唔係用緊嘅 tabs"/>
<Item id="6110" name="喺用緊嘅 tab 上面加條顏色 bar"/>
<Item id="6111" name="顯示狀態列"/>
<Item id="6112" name="喺每個 tab 顯示交叉掣"/>
<Item id="6113" name="撳兩吓滑鼠掣去閂文件"/>
<Item id="6118" name="隱藏"/>
@ -1020,6 +1026,7 @@
<Item id="6221" name="快"/>
<Item id="6222" name="慢"/>
<Item id="6246" name="「摺埋呢層」同「展開呢層」命令改為「切換」"/><!-- #new v8.4.2 -->
<Item id="6225" name="幾個位置同時改嘢Ctrl + 撳/撳著滑鼠掣)"/>
<Item id="6227" name="自動換行"/><!-- #moved in v7.9.2 -->
<Item id="6228" name="預設"/><!-- #moved in v7.9.2 -->
<Item id="6229" name="對齊"/><!-- #moved in v7.9.2 -->
@ -1235,6 +1242,7 @@
</Backup>
<AutoCompletion title="自動完成">
<Item id="6115" name="自動縮排"/>
<Item id="6807" name="自動完成"/>
<Item id="6808" name="打每隻字都行自動完成"/>
<Item id="6809" name="函式自動完成"/>
@ -1294,7 +1302,7 @@
<Item id="7141" name="大型檔案限制"/><!-- #new v8.4.7 -->
<Item id="7143" name="啟用大型檔案限制(會失去語法突顯功能)"/><!-- #new v8.4.7 -->
<Item id="7144" name="定義大檔案 size"/><!-- #new v8.4.7 -->
<Item id="7146" name="MB (1 - 2046)"/><!-- #new v8.4.7 -->
<Item id="7146" name="MB (1 - 4096)"/><!-- #new v8.4.7 -->
<Item id="7147" name="容許顯示對應括號"/><!-- #new v8.4.7 -->
<Item id="7148" name="容許自動完成功能"/><!-- #new v8.4.7 -->
<Item id="7149" name="容許醒目提示功能"/><!-- #new v8.4.7 -->
@ -1330,6 +1338,7 @@
<Element name="喺所有打開咗嘅檔案啟用"/>
<Element name="停用"/>
</ComboBox>
<Item id="6308" name="最小化視窗嗰陣縮去系統匣"/>
<Item id="6312" name="自動偵測檔案狀態"/>
<Item id="6313" name="靜靜雞喺背景更新"/>
<Item id="6325" name="更新後轆去最後一行"/>
@ -1338,6 +1347,7 @@
<Item id="6324" name="文件切換器Ctrl + Tab 掣)"/>
<Item id="6331" name="標題列淨係顯示檔案名"/>
<Item id="6334" name="自動偵測檔案編碼"/>
<Item id="6349" name="使用 DirectWrite可以令特殊字符呈現得好啲需要重開 Notepad++"/>
<Item id="6337" name="資料夾工作區檔案副檔名:"/>
<Item id="6114" name="啟用"/>
<Item id="6117" name="啟用 MRU 行為功能"/>
@ -1701,8 +1711,10 @@ Reload 會放棄你喺 Notepad++ 改過嘅嘢,咁仲繼唔繼續呢?"/>
<finder-uncollapse-all value="展開所有層級"/>
<finder-copy value="抄低呢(幾)行"/>
<finder-copy-verbatim value="抄"/><!-- #new v7.9.2 -->
<finder-copy-paths value="抄低檔案路徑"/><!-- #new v7.9.6 -->
<finder-select-all value="揀晒"/>
<finder-clear-all value="全部清除"/>
<finder-open-all value="全部打開"/>
<finder-purge-for-every-search value="次次都清走搜尋結果"/><!-- #new v7.9.6 -->
<finder-wrap-long-lines value="自動換行"/>
<common-ok value="OK"/>

File diff suppressed because it is too large Load Diff

View File

@ -185,6 +185,7 @@ Last modified by Sahid A.Z. on 3/3/2023
<Item id="42087" name="Salin Semua Nama Berkas"/>
<Item id="42088" name="Salin Semua Jalur Berkas"/>
<Item id="42032" name="&amp;Jalankan Makro Beberapa Kali..."/>
<Item id="42033" name="Hapus Tanda Baca-Saja"/>
<Item id="42035" name="Komentar Baris Tunggal"/>
<Item id="42036" name="Hapus Komentar Baris Tunggal"/>
<Item id="42055" name="Hapus Baris Kosong"/>
@ -407,6 +408,7 @@ Last modified by Sahid A.Z. on 3/3/2023
<Item CMDID="41014" name="Muat ulang"/>
<Item CMDID="41010" name="Cetak..."/>
<Item CMDID="42028" name="Baca-Saja"/>
<Item CMDID="42033" name="Hapus Tanda Baca-Saja"/>
<Item CMDID="2" name="Salin ke Papan Klip"/>
<Item CMDID="42029" name="Salin Jalur Berkas Lengkap"/>
<Item CMDID="42030" name="Salin Semua Nama Berkas"/>
@ -459,6 +461,7 @@ Last modified by Sahid A.Z. on 3/3/2023
<Item id="1626" name="&amp;Lanjut (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="Ganti dalam Berkas"/>
<Item id="1665" name="Ganti dalam Proyek"/>
<Item id="1661" name="Ikuti dok. ini"/>
<Item id="1662" name="Panel Proyek 1"/>
<Item id="1663" name="Panel Proyek 2"/>
<Item id="1664" name="Panel Proyek 3"/>
@ -885,6 +888,7 @@ Last modified by Sahid A.Z. on 3/3/2023
<Preference title="Preferensi">
<Item id="6001" name="Tutup"/>
<Global title="Umum">
<Item id="6101" name="Bilah Alat"/>
<Item id="6102" name="Sembunyikan"/>
<Item id="6103" name="Fluent UI: kecil"/>
<Item id="6104" name="Fluent UI: besar"/>
@ -892,11 +896,13 @@ Last modified by Sahid A.Z. on 3/3/2023
<Item id="6130" name="Fluent UI Berisi: besar"/>
<Item id="6105" name="Ikon standar: kecil"/>
<Item id="6106" name="Bilah Tab"/>
<Item id="6107" name="Kecilkan"/>
<Item id="6108" name="Kunci (tanpa seret dan lepaskan)"/>
<Item id="6109" name="Tab nonaktif gelap"/>
<Item id="6110" name="Bilah tab-aktif berwarna"/>
<Item id="6111" name="Tampilkan bilah status"/>
<Item id="6112" name="Tampilkan tombol tutup di setiap tab"/>
<Item id="6113" name="Klik ganda untuk menutup dokumen"/>
<Item id="6118" name="Sembunyikan"/>
@ -918,6 +924,7 @@ Last modified by Sahid A.Z. on 3/3/2023
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6246" name="Jadikan perintah pelipatan/pembukaan level ini sebagai sakelar"/>
<Item id="6225" name="Aktifkan Multipengeditan (Ctrl+Klik/pilihan)"/>
<Item id="6227" name="Penggal Baris"/>
<Item id="6228" name="Baku"/>
<Item id="6229" name="Diratakan"/>
@ -1129,6 +1136,7 @@ Anda dapat mendefinisikan beberapa penanda kolom dengan menggunakan spasi putih
</Backup>
<AutoCompletion title="Pelengkapan Otomatis (PO)">
<Item id="6115" name="Indentasi otomatis"/>
<Item id="6807" name="Pelengkapan Otomatis (PO)"/>
<Item id="6808" name="Aktifkan PO pada tiap input"/>
<Item id="6809" name="Pelengkapan fungsi"/>
@ -1223,6 +1231,7 @@ Anda dapat mendefinisikan beberapa penanda kolom dengan menggunakan spasi putih
<Element name="Aktifkan untuk semua berkas terbuka"/>
<Element name="Nonaktifkan"/>
</ComboBox>
<Item id="6308" name="Minimalkan ke baki sistem"/>
<Item id="6312" name="Deteksi Otomatis Status Berkas"/>
<Item id="6313" name="Perbarui diam-diam"/>
<Item id="6325" name="Gulir ke baris terakhir setelah diperbarui"/>
@ -1231,6 +1240,7 @@ Anda dapat mendefinisikan beberapa penanda kolom dengan menggunakan spasi putih
<Item id="6324" name="Penukar Dokumen (Ctrl+TAB)"/>
<Item id="6331" name="Tampilkan nama berkas saja di bilah judul"/>
<Item id="6334" name="Otomatis deteksi pengodean karakter"/>
<Item id="6349" name="Gunakan DirectWrite (Mungkin meningkatkan perenderan karakter khusus, perlu memulai ulang Notepad++)"/>
<Item id="6337" name="Ekst. berkas Ruang Kerja:"/>
<Item id="6114" name="Aktifkan"/>
<Item id="6117" name="Aktifkan perilaku MRU"/>
@ -1590,8 +1600,10 @@ Temukan dalam semua berkas kecuali semua folder log atau logs secara berulang:
<finder-uncollapse-all value="Buka semua lipatan"/>
<finder-copy value="Salin Baris Terpilih"/>
<finder-copy-verbatim value="Salin"/>
<finder-copy-paths value="Salin Nama Jalur"/>
<finder-select-all value="Pilih semua"/>
<finder-clear-all value="Bersihkan semua"/>
<finder-open-all value="Buka semua"/>
<finder-purge-for-every-search value="Hapus untuk tiap pencarian"/>
<finder-wrap-long-lines value="Kemas kata baris panjang"/>
<common-ok value="Oke"/>

View File

@ -164,6 +164,7 @@
<Item id="42030" name="Current Filename chuig an ngearrthaisce"/>
<Item id="42031" name="Current Dir. Path chuig an ngearrthaisce"/>
<Item id="42032" name="&amp;Rith a Macro Multiple Times..."/>
<Item id="42033" name="Glan Read-Only Flag"/>
<Item id="42035" name="Single Line Comment"/>
<Item id="42036" name="Single Line Uncomment"/>
<Item id="42055" name="Bain línte folmha"/>
@ -390,6 +391,7 @@
<Item id="1625" name="&amp;Gnáth"/>
<Item id="1626" name="E&amp;xtended (\n, \r, \t, \0, \x...)"/>
<Item id="1660" name="&amp;Ionadaigh sna comhaid"/>
<Item id="1661" name="Follow current doc."/>
<Item id="1641" name="Aimsigh uile sa cháipéis reatha"/>
<Item id="1686" name="Trédhearc&amp;acht"/>
<Item id="1703" name="&amp;. matches newline"/>
@ -753,16 +755,19 @@
<Preference title="Sainroghanna">
<Item id="6001" name="Dún"/>
<Global title="Coiteann">
<Item id="6101" name="Toolbar"/>
<Item id="6102" name="Folaigh"/>
<Item id="6103" name="Deilbhíní móra"/>
<Item id="6104" name="Deilbhíní beaga"/>
<Item id="6105" name="Deilbhíní caighdeánacha"/>
<Item id="6106" name="Tab Bar"/>
<Item id="6107" name="Laghdaigh"/>
<Item id="6108" name="Lock (no drag and drop)"/>
<Item id="6109" name="Darken inactive tabs"/>
<Item id="6110" name="Draw a coloured bar on active tab"/>
<Item id="6111" name="Show status bar"/>
<Item id="6112" name="Show close button on each tab"/>
<Item id="6113" name="Double click to close document"/>
<Item id="6118" name="Folaigh"/>
@ -784,6 +789,7 @@
<Item id="6221" name="F"/>
<Item id="6222" name="S"/>
<Item id="6224" name="Multi-Editing Settings"/>
<Item id="6225" name="Cumasaigh (Ctrl+Mouse click/selection)"/>
<Item id="6201" name="Folder Margin Style"/>
<Item id="6202" name="Simplí"/>
<Item id="6203" name="Saighead"/>
@ -928,6 +934,7 @@ You can define several column markers by using white space to separate the diffe
</Backup>
<AutoCompletion title="Auto-Completion">
<Item id="6115" name="Auto-indent"/>
<Item id="6807" name="Auto-Completion"/>
<Item id="6808" name="Cumasaigh auto-completion on each input"/>
<Item id="6809" name="Function completion"/>
@ -989,6 +996,7 @@ You can define several column markers by using white space to separate the diffe
<Element name="Cumasaigh for all opened files"/>
<Element name="Díchumasaigh"/>
</ComboBox>
<Item id="6308" name="Minimize to system tray"/>
<Item id="6312" name="File Status Auto-Detection"/>
<Item id="6313" name="Nuashonraigh go ciúin é"/>
<Item id="6318" name="Clickable Link Settings"/>
@ -1000,6 +1008,7 @@ You can define several column markers by using white space to separate the diffe
<Item id="6324" name="Document Switcher (Ctrl+TAB)"/>
<Item id="6331" name="Show only filename in title bar"/>
<Item id="6334" name="Autodetect character encoding"/>
<Item id="6349" name="Use DirectWrite (May improve rendering special characters, need to restart Notepad++)"/>
<Item id="6337" name="Workspace file ext.:"/>
<Item id="6114" name="Cumasaigh"/>
<Item id="6117" name="Cumasaigh MRU behaviour"/>
@ -1066,10 +1075,10 @@ You have to restart your Notepad++ to take effect after modifying contextMenu.xm
<NppHelpAbsentWarning title="File does not exist" message="
doesn't exist. Please download it on Notepad++ site."/>
<SaveCurrentModifWarning title="Save Current Modification" message="You should save the current modification.
All the saved modifications cannot be undone.
All the saved modifications can not be undone.
Continue?"/>
<LoseUndoAbilityWarning title="Lose Undo Ability Warning" message="You should save the current modification.
All the saved modifications cannot be undone.
All the saved modifications can not be undone.
Continue?"/>
<CannotMoveDoc title="Move to new Notepad++ Instance" message="Document is modified, save it then try again."/>
<DocReloadWarning title="Reload" message="Are you sure you want to reload the current file and lose the changes made in Notepad++?"/>
@ -1112,9 +1121,9 @@ Do you want to go to Notepad++ page to download the latest version?"/>
<FileTooBigToOpen title="File size problem" message="File is too big to be opened by Notepad++"/>
<CreateNewFileOrNot title="Create new file" message="&quot;$STR_REPLACE$&quot; doesn't exist. Create it?"/>
<CreateNewFileError title="Create new file" message="Cannot create the file &quot;$STR_REPLACE$&quot;."/>
<OpenFileError title="ERROR" message="Cannot open file &quot;$STR_REPLACE$&quot;."/>
<OpenFileError title="ERROR" message="Can not open file &quot;$STR_REPLACE$&quot;."/>
<FileBackupFailed title="File Backup Failed" message="The previous version of the file could not be saved into the backup directory at &quot;$STR_REPLACE$&quot;.
Do you want to save the current file anyway?"/>
Do you want to save the current file anyways?"/>
<LoadStylersFailed title="Load stylers.xml failed" message="Load &quot;$STR_REPLACE$&quot; failed!"/>
<LoadLangsFailed title="Configurator" message="Load langs.xml failed!
Do you want to recover your langs.xml?"/>
@ -1294,6 +1303,7 @@ Find in all files except exe, obj &amp;&amp; log:
<finder-copy value="Cóipeáil"/>
<finder-select-all value="Roghnaigh uile"/>
<finder-clear-all value="Glan uile"/>
<finder-open-all value="Oscail uile"/>
<common-ok value="Tá go maith"/>
<common-cancel value="Cealaigh"/>
<common-name value="Ainm: "/>

Some files were not shown because too many files have changed in this diff Show More