~ubuntu-branches/ubuntu/vivid/qgo/vivid

« back to all changes in this revision

Viewing changes to src/defines.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2007-08-16 23:49:49 UTC
  • mfrom: (1.1.9 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20070816234949-4dsbhncmvyhoef2y
Tags: 1.5.4-2ubuntu1
* Merge from debian unstable, remaining changes:
  - 50_desktop-catagories.dpatch added to add qgo to Games menu.
  - Modify maintainer value as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
/*
37
37
* Set available languages here. The Codes have to be in the same order as the language names
38
38
*/
39
 
#define NUMBER_OF_AVAILABLE_LANGUAGES 10
 
39
#define NUMBER_OF_AVAILABLE_LANGUAGES 11
40
40
#define AVAILABLE_LANGUAGES { \
41
41
        "Chinese", \
 
42
        "Chinese (simplified)", \
42
43
        "Czech", \
43
44
        "Danish", \
44
45
        "Deutsch", \
45
46
        "English", \
46
47
        "Fran�ais", \
47
48
        "Italiano", \
 
49
        "Latin (!)", \
48
50
        "Nederlands", \
49
51
        "Portuges", \
 
52
        "Espanol",\
50
53
        "Russian"}
51
54
        
52
55
#define LANGUAGE_CODES { \
53
56
        "zh", \
 
57
        "zh_cn", \
54
58
        "cz", \
55
59
        "dk", \
56
60
        "de", \
57
61
        "en", \
58
62
        "fr", \
59
63
        "it", \
 
64
        "la", \
60
65
        "nl", \
61
66
        "pt", \
 
67
        "es",\
62
68
        "ru"}
63
69
 
64
70