~ubuntu-branches/debian/sid/installation-guide/sid

« back to all changes in this revision

Viewing changes to build/po_functions

  • Committer: Bazaar Package Importer
  • Author(s): Frans Pop, Frans Pop, Joey Hess, Wouter Verhelst
  • Date: 2007-03-19 15:00:12 UTC
  • Revision ID: james.westby@ubuntu.com-20070319150012-gt27pr4xu0ts4cps
Tags: 20070319
[ Frans Pop ]
* Cleaned up definitions of some entities and removed unused ones.
* Implement infrastructure that allows entities to be translated.
  Thanks to Miroslav Kure for providing the patch. Closes: #344048, #406515.
* Disable Korean PDF/PS formats for builds for the website.
* appendix/files: update information about mouse configuration, based on a
  patch from Peter Samuelson (for which thanks). Closes: #406290.
* boot-installer, appendix/preseed: document preseed/interactive parameter.

[ Joey Hess ]
* Fix package name for installation-reports, and manual unfuzzy of all
  translations. Closes: #408408

[ Frans Pop ]
* welcome:
  - make links to FSF and GNU more consistent (closes: #410317)
  - we do not necessarily share the ideals of the FSF (closes: #410129)
  Thanks to Francesco Poli for suggesting these changes.
* using-d-i: guided partitioning now creates swap inside LVM.
  Thanks to Francesco Poli. Closes: #411399.
* Document installs over PPPoE. Based on a text proposed by Eddy Petrisor.
  Closes: #408340.
* installation-howto: update for the integration of base-config into D-I.
* appendix/preseed:
  - as exim no longer asks any questions during installations, there is no
    real need to document it anymore
  - add link to Philip Hand's website as it contains many creative examples
  - document how to select the ftp protocol during mirror selection
  - document how to install from CD/DVD only (and not use a network mirror)
* Update base/standard system and task sizes.

[ Joey Hess ]
* Document debian-installer/allow_unauthenticated.

[ Wouter Verhelst ]
* Update mac68k installation after notes from Finn Thain, upstream mac68k
  kernel hacker.

[ Frans Pop ]
* Replace entity in example-preseed.txt file. Thanks to Geert Stappers for
  spotting the error. Closes: #413257.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
}
10
10
 
11
11
# Check whether language uses PO files for translation
12
 
check_po () {
13
 
    USES_PO=""
 
12
uses_po () {
14
13
    if [ -d "../po/$lang" ] ; then
15
14
        if [ -d "../$lang/.svn" ] ; then
16
15
            echo "Warning: both PO files and XML files are present; ignoring PO files"
17
16
        else
18
 
            USES_PO="1"
19
 
            if [ -d "../$lang/" ] ; then
20
 
                echo "Info: cleaning old XML files"
21
 
                rm -r ../$lang/
22
 
            fi
 
17
            return 0
23
18
        fi
24
19
    fi
 
20
    return 1
25
21
}
26
22
 
27
23
generate_xml () {
35
31
    return 0
36
32
}
37
33
 
 
34
clear_xml () {
 
35
    for lang in $languages; do
 
36
        if [ -d ../po/$lang ] && [ ! -d ../$lang/.svn ]; then
 
37
            rm -rf ../$lang
 
38
        fi
 
39
    done
 
40
}
 
41
 
38
42
clear_po () {
39
43
    rm -rf ./build.po
40
44
}