Opened 18 years ago

Closed 17 years ago

#1138 closed enhancement (fixed)

Dutch translation

Reported by: johan@… Owned by: Adrian Holovaty
Component: contrib.admin Version: dev
Severity: normal Keywords: l10n dutch
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django.po with dutch (NL) translation

Attachments (1)

django.po (47.8 KB ) - added by johan@… 18 years ago.
dutch translation

Download all attachments as: .zip

Change History (8)

by johan@…, 18 years ago

Attachment: django.po added

dutch translation

comment:1 by hugo, 18 years ago

Resolution: fixed
Status: newclosed

(In [1799]) fixed #1138 - added 'nl' translation

comment:2 by anonymous, 17 years ago

Resolution: fixed
Status: closedreopened
Version: SVN

I'm sorry to not have read how to attach a patch to a ticket system...

There is a small trivial bug in the Dutch translation where a generice message containing %s formatting gets translated to the wrong error message as fixed string, resulting in an exception as not all arguments get converted during string formatting. Patch follows here as a code block:

Index: django.po
===================================================================
--- django.po	(revision 4501)
+++ django.po	(working copy)
@@ -26,7 +26,7 @@
 #: db/models/fields/related.py:43
 #, python-format
 msgid "Please enter a valid %s."
-msgstr "Geef een geldig IP adres."
+msgstr "Geef een geldig %s veld."
 
 #: db/models/fields/related.py:579
 msgid "Separate multiple IDs with commas."

thanks for all the good work!

Niels Poppe

comment:3 by Simon G. <dev@…>, 17 years ago

Keywords: l10n dutch added
Summary: Dutch translation[patch] Dutch translation
Triage Stage: UnreviewedAccepted

comment:4 by Chris Beaven, 17 years ago

Has patch: set
Summary: [patch] Dutch translationDutch translation

Simon, we use the "has patch" flag now :P

comment:5 by Simon G. <dev@…>, 17 years ago

bah, need coffee :)

comment:6 by Gary Wilson <gary.wilson@…>, 17 years ago

Triage Stage: AcceptedReady for checkin

comment:7 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: reopenedclosed

(In [4530]) Fixed #1138 -- Applied a small fix to the Dutch translation. Thanks Niels Poppe.

Note: See TracTickets for help on using tickets.
Back to Top