summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/GitBlitWebApp_nl.properties
Commit message (Collapse)AuthorAgeFilesLines
* fix: Fix exposing password hashes in user edit pageFlorian Zschocke2025-06-141-1/+1
| | | | | | | | | | When an administrator edits a user entry, the user's password hash is present on the edit page. This is unnecessary. But it exposes the hash to an administrator who could choose to try to brute-force the hash and use the password on other logins of that user. This is an issue for administrative users who have no access to the actual database on disk but access to the user edit web page.
* Property bundle: Fix typo in "nl" language fileFlorian Zschocke2021-10-211-1/+1
|
* Property bundle: Fix incorrect property keysFlorian Zschocke2021-10-211-1/+1
| | | | | | | Some property keys had typos. There is a `gb.ticketStatus` and a `gb.ticketState`. Neither is used anywhere in the code, but only the former is defined in the default file. So only use `gb.ticketStatus`.
* fix: Remove trailing spaces from property bundle filesFlorian Zschocke2021-10-211-5/+5
|
* fix: Remove duplicate property keys from properties filesFlorian Zschocke2021-10-211-3/+1
| | | | | | | | | | Some property keys were duplicated, mostly `status`, `permission` and `comment`. The problem with `gb.comment` is, that it is used in two different locations in two different meanings. One as a verb, the second as a noun. Which makes no difference in English, but other languages. The solution is that the second key is renamed to `gb.sshKeyComment`. The code is adjusted accordingly.
* Add a unit test to check if the resource bundle can be loadedFlorian Zschocke2021-10-201-0/+4
| | | | | | | | | To prevent that we have a resource file in a resource bundle broken and not loading undiscovered for years, add a unit test that will load the resource properties file for each of the languages. In order to check if the file was loaded and the bundle mechanism didn't fall back on the default, a new property key is added to each language file, solely for the purpose to be checked in the unit test.
* Update link target to Lucene 5.5 query syntax, moving the link to the page.Florian Zschocke2017-03-051-1/+2
| | | | | | | | | | | | | | | Update the link target to the query parser syntax page of the 5.5 version. Refactor the `LuceneSearchPage` to use an `ExternalLink` for the link to the lucene page, so that the link target is kept and updated in the Java code. Move the link out of the language files. This was way too cumbersome to update the link target (which is probably why no one ever did). The query help text is changed to contain a variable: `gb.queryHelp = here be some ${querySyntax} help`, which is replaced by Wicket with a link. The link text is a new lange file property: `gb.querySyntax`.
* Spelling mistake fixlarsmaes2016-09-161-1/+1
| | | pushedNewBranch was wrongly spelled
* Fix spelling mistakeSouthparkfan2015-02-261-1/+1
|
* Update GitBlitWebApp_nl.propertieslarsmaes2014-11-061-1/+1
| | | typo in Dutch translation
* Dutch translated stringsJeroen Baten2014-06-141-9/+81
|
* dutch translation of stringJeroen Baten2014-03-091-0/+1
|
* dutch translations.Jeroen Baten2014-03-081-16/+22
| | | | why the original shows up, I have no idea
* Updated the Dutch translation for 1.4.0Jeroen Baten2014-03-061-503/+664
|
* Updated Dutch translationJeroen Baten2013-07-171-49/+49
|
* Prepare Dutch resource for translationJames Moger2013-07-171-1/+60
|
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+445
This is a massive commit which reorganizes the entire project structure (although it is still monolithic), removes the Build classes, and switches to Moxie, a smarter Ant build tookit based on the original Gitblit Build classes. The Ant build script will likely require additional fine-tuning, but this is big step forward.
); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- =========================================================================== --> <project default="newPDF" basedir="."> <!-- =================================================================== --> <!-- Initialization target --> <!-- =================================================================== --> <target name="init"> <tstamp/> <mkdir dir="tests"/> <property name="referenceDir" value="reference"/> <property name="testDir" value="tests"/> <property name="foDir" value="fo"/> <path id="run-classpath"> <fileset dir="../../lib"> <include name="*.jar"/> </fileset> <pathelement location="../../build/fop.jar"/> </path> <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop" classpathref="run-classpath"/> <taskdef name="compare" classname="org.apache.fop.tools.anttasks.FileCompare" classpathref="run-classpath"/> </target> <!-- =================================================================== --> <!-- Help on usage --> <!-- =================================================================== --> <target name="usage"> <echo message="Use '-projecthelp' instead"/> </target> <!-- =================================================================== --> <!-- Produces new test files (function) --> <!-- =================================================================== --> <target name="newTestFiles"> <fop format="${mimetype}" outdir="${outDir}" messagelevel="${msglevel}" relativebase="true"> <fileset dir="basic"> <include name="**/*.fo"/> </fileset> <fileset dir="footnotes"> <include name="**/*.fo"/> </fileset> <fileset dir="pagination"> <include name="**/*.fo"/> </fileset> <fileset dir="keeps_and_breaks"> <include name="**/*.fo"/> </fileset> <fileset dir="markers"> <include name="**/*.fo"/> </fileset> <fileset dir="region_body"> <include name="**/*.fo"/> </fileset> <fileset dir="tables"> <include name="**/*.fo"/> </fileset> <fileset dir="svg"> <include name="**/*.fo"/> </fileset> <fileset dir="advanced"> <include name="**/giro.fo"/> </fileset> </fop> </target> <!-- =================================================================== --> <!-- Produces new test PDF files --> <!-- =================================================================== --> <target name="newPDF" depends="init" description="Creates a new set of PDF test files"> <antcall target="newTestFiles"> <param name="mimetype" value="application/pdf"/> <param name="msglevel" value="warn"/> <param name="outDir" value="${testDir}"/> </antcall> </target> <!-- =================================================================== --> <!-- Produces new test RTF files --> <!-- =================================================================== --> <target name="newRTF" depends="init" description="Creates a new set of RTF test files"> <antcall target="newTestFiles"> <param name="mimetype" value="application/rtf"/> <param name="msglevel" value="warn"/> <param name="outDir" value="${testDir}"/> </antcall> </target> <!-- =================================================================== --> <!-- Produces new test ps files --> <!-- =================================================================== --> <target name="newPS" depends="init" description="Creates a new set of PostScript test files"> <antcall target="newTestFiles"> <param name="mimetype" value="application/postscript"/> <param name="msglevel" value="warn"/> <param name="outDir" value="${testDir}"/> </antcall> </target> <!-- =================================================================== --> <!-- Produces new test areatree files --> <!-- =================================================================== --> <target name="newAT" depends="init" description="Creates a new set of AreaTree XML test files"> <antcall target="newTestFiles"> <param name="mimetype" value="text/xml"/> <param name="msglevel" value="warn"/> <param name="outDir" value="${testDir}"/> </antcall> </target> <!-- =================================================================== --> <!-- Compares new test pdf files to reference pdf files --> <!-- =================================================================== --> <target name="comparePDF" depends="newPDF"> <compare referenceDirectory="${referenceDir}" testDirectory="${testDir}" filenames="normal.pdf,table.pdf,list.pdf,link.pdf,border.pdf,images.pdf,extensive.pdf,readme.pdf,fonts.pdf,bordershorthand.pdf,character.pdf,corresprop.pdf,hyphen.pdf,inhprop.pdf,instream.pdf,leader.pdf,newlinktest.pdf,normalex.pdf,pdfoutline.pdf,simple.pdf,textdeko.pdf,tableunits.pdf"/> </target> <!-- =================================================================== --> <!-- Produces new reference pdf files --> <!-- =================================================================== --> <target name="referencePDF" depends="init"> <antcall target="newTestFiles"> <param name="mimetype" value="application/pdf"/> <param name="msglevel" value="warn"/> <param name="outDir" value="${referenceDir}"/> </antcall> </target> <!-- =================================================================== --> <!-- Starts the test --> <!-- =================================================================== --> <target name="runtest" depends="comparePDF"> <echo message="Running Fop tests"/> </target> <!-- =================================================================== --> <!-- Clean targets --> <!-- =================================================================== --> <target name="clean" depends="init"> <delete dir="${testDir}"/> </target> </project> <!-- End of file -->