added Slovakian translation
This commit is contained in:
parent
033c307445
commit
350c1092cb
|
@ -1,5 +1,7 @@
|
||||||
March 2012 3.7
|
March 2012 3.7
|
||||||
- login: support bind user for login search
|
- Login: support bind user for login search
|
||||||
|
- Personal: added labeledURI and cosmetic changes
|
||||||
|
- New translation: Slovakian
|
||||||
- Fixed bugs:
|
- Fixed bugs:
|
||||||
-> DHCP: error message not displayed properly (3441975)
|
-> DHCP: error message not displayed properly (3441975)
|
||||||
-> Profile loading not possible if required fields are not filled (3444948)
|
-> Profile loading not possible if required fields are not filled (3444948)
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# $Id$
|
# $Id$
|
||||||
#
|
#
|
||||||
# Copyright (C) 2004 - 2008 Roland Gruber
|
# Copyright (C) 2004 - 2011 Roland Gruber
|
||||||
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
|
|
||||||
# This script is run to create archives of all messages.po files.
|
# This script is run to create archives of all messages.po files.
|
||||||
|
@ -71,4 +71,8 @@ echo "Generating Russian translation template"
|
||||||
./make_po_ru
|
./make_po_ru
|
||||||
tar -czf messages.po_ru.tar.gz messages.po
|
tar -czf messages.po_ru.tar.gz messages.po
|
||||||
|
|
||||||
|
echo "Generating Slovakian translation template"
|
||||||
|
./make_po_sk
|
||||||
|
tar -czf messages.po_sk.tar.gz messages.po
|
||||||
|
|
||||||
rm messages.po
|
rm messages.po
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
# Copyright (C) 2011 Roland Gruber
|
||||||
|
# This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
|
|
||||||
|
# This script is run after make_po to merge the existing Slovak translations to messages.po
|
||||||
|
|
||||||
|
./make_po
|
||||||
|
msgmerge -v ../locale/sk_SK/LC_MESSAGES/messages.po messages.po -o messages.po
|
Loading…
Reference in New Issue