~ubuntu-branches/ubuntu/trusty/localization-config/trusty

« back to all changes in this revision

Viewing changes to post-base-installer.d/08localization-config

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Hess
  • Date: 2008-10-13 19:31:08 UTC
  • mfrom: (2.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081013193108-7rzduh4eggzp1l3q
Tags: 1.05
* Fix selecting wrong language by ripping the encoding part from
  '%lang_locale_map' so the algorithm does not for example prefer
  de_BE over de_DE when locale is set to de_DE.UTF-8. Closes: #498095
* Fix unnecessary appearance of kpersonlizer by not creating
  '/etc/kde3/system.kdeglobals'. KDE now choses the correct
  settings automatically and a manual intervention is no longer
  necessary. (New file 'conffiles.d/lenny/kde' is a modified copy
  of the etch version) Closes: #499694
* debian/control:
  - Set "Debian Edu Developers <debian-edu@lists.debian.org>" as
    maintainer with permission by Christian Perrier. Remove
    Christian Perrier from Uploaders and add myself.
    Thanks to Christian and Konstantinos for their work on this
    package.
* Debconf translation updates:
  - Swedish updated. Closes: #491773
* Remove patch.tar.gz file that includes an older copy of some
  file in debian directory and is not used nor included in the
  binary packages.
* Merge changes from NMU, thanks to Ben Hutchings.
  Keep country version for some languages
  (e.g. de_DE to "German (DE)") to be consistent with other forms
  of that languages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
. /usr/share/debconf/confmodule
 
6
 
 
7
CODE=0
 
8
 
 
9
db_get debian-installer/locale || true
 
10
LOCALE="$RET"
 
11
export LOCALE
 
12
 
 
13
apt-install localization-config
 
14
 
 
15
localization-config /target preinst || CODE="$?"
 
16
if [ "$CODE" = 30 ]; then
 
17
        exit 10
 
18
else
 
19
        exit $CODE
 
20
fi