]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/testlang.c
Load cups into easysw/current.
[thirdparty/cups.git] / cups / testlang.c
CommitLineData
ef416fc2 1/*
f7faf1f5 2 * "$Id: testlang.c 4903 2006-01-10 20:02:46Z mike $"
ef416fc2 3 *
4 * Localization test program for the Common UNIX Printing System (CUPS).
5 *
6 * Copyright 1997-2006 by Easy Software Products.
7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * This file is subject to the Apple OS-Developed Software exception.
25 *
26 * Contents:
27 *
28 * main() - Load the specified language and show the strings for yes and no.
29 */
30
31/*
32 * Include necessary headers...
33 */
34
35#include <stdio.h>
36#include "i18n.h"
37
38
39/*
40 * 'main()' - Load the specified language and show the strings for yes and no.
41 */
42
43int /* O - Exit status */
44main(int argc, /* I - Number of command-line arguments */
45 char *argv[]) /* I - Command-line arguments */
46{
47 cups_lang_t *language; /* Message catalog */
48 cups_lang_t *language2; /* Message catalog */
49
50
51 if (argc == 1)
52 {
53 language = cupsLangDefault();
54 language2 = cupsLangDefault();
55 }
56 else
57 {
58 language = cupsLangGet(argv[1]);
59 language2 = cupsLangGet(argv[1]);
60 }
61
62 if (language != language2)
63 {
64 puts("**** ERROR: Language cache did not work! ****");
65 puts("First result from cupsLangGet:");
66 }
67
68 printf("Language = \"%s\"\n", language->language);
69 printf("Encoding = \"%s\"\n", _cupsEncodingName(language->encoding));
70 printf("No = \"%s\"\n", _cupsLangString(language, "No"));
71 printf("Yes = \"%s\"\n", _cupsLangString(language, "Yes"));
72
73 if (language != language2)
74 {
75 puts("Second result from cupsLangGet:");
76
77 printf("Language = \"%s\"\n", language2->language);
78 printf("Encoding = \"%s\"\n", _cupsEncodingName(language2->encoding));
79 printf("No = \"%s\"\n", _cupsLangString(language2, "No"));
80 printf("Yes = \"%s\"\n", _cupsLangString(language2, "Yes"));
81 }
82
83 return (0);
84}
85
86
87/*
f7faf1f5 88 * End of "$Id: testlang.c 4903 2006-01-10 20:02:46Z mike $".
ef416fc2 89 */