added Polish
This commit is contained in:
parent
d9c4485cc0
commit
63fa1d3ec5
|
@ -1,4 +1,5 @@
|
|||
30.04.2008 2.3.0
|
||||
- added Polish translation
|
||||
- support phpGroupWare accounts
|
||||
- password policies
|
||||
- redesigned PDF editor
|
||||
|
|
|
@ -10,8 +10,8 @@ LAM - Readme
|
|||
viewer included to allow access to the raw LDAP attributes. You can use
|
||||
templates for account creation and use multiple configuration profiles.
|
||||
LAM is translated to Catalan, Chinese (Traditional + Simplified), Czech,
|
||||
Dutch, English, French, German, Hungarian, Italian, Japanese, Portuguese,
|
||||
Russian and Spanish.
|
||||
Dutch, English, French, German, Hungarian, Italian, Japanese, Polish,
|
||||
Portuguese, Russian and Spanish.
|
||||
|
||||
http://sourceforge.net/projects/lam/
|
||||
|
||||
|
|
|
@ -32,6 +32,9 @@ it_IT.utf8:UTF-8:Italiano (Italia)
|
|||
# Hungarian
|
||||
hu_HU.utf8:UTF-8:Magyar (Magyarország)
|
||||
|
||||
# Polish
|
||||
pl_PL.utf8:UTF-8:Polski (Polska)
|
||||
|
||||
# Portuguese
|
||||
pt_BR.utf8:UTF-8:Português (Brasil)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (C) 2004 - 2006 Roland Gruber
|
||||
# Copyright (C) 2004 - 2008 Roland Gruber
|
||||
# This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
|
||||
|
||||
# This script is run to create archives of all messages.po files.
|
||||
|
@ -57,6 +57,11 @@ echo "Generating Japanese translation template"
|
|||
tar -czf messages.po_jp.tar.gz messages.po
|
||||
echo " "
|
||||
|
||||
echo "Generating Polish translation template"
|
||||
./make_po_pl
|
||||
tar -czf messages.po_pl.tar.gz messages.po
|
||||
echo " "
|
||||
|
||||
echo "Generating Portuguese translation template"
|
||||
./make_po_pt
|
||||
tar -czf messages.po_pt.tar.gz messages.po
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
# $Id$
|
||||
#
|
||||
# Copyright (C) 2008 Roland Gruber
|
||||
# This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
|
||||
|
||||
# This script is run after make_po to merge the existing Polish translations to messages.po
|
||||
|
||||
./make_po
|
||||
msgmerge -v ../locale/pl_PL/LC_MESSAGES/messages.po messages.po -o messages.po
|
Loading…
Reference in New Issue