File: obsolete-strings.c

package info (click to toggle)
trader 7.18-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,920 kB
  • sloc: ansic: 24,162; sh: 4,963; makefile: 73; sed: 16
file content (103 lines) | stat: -rw-r--r-- 4,572 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/************************************************************************
*                                                                       *
*                Obsolete Strings From Various Libraries                *
*                                                                       *
************************************************************************/

/*
  Author: John Zaitseff <J.Zaitseff@zap.org.au>
  $Id: e20a9106773a726c6f99376e82bbba70a182a9e7 $

  This file contains strings that are present in older versions of
  various libraries but are no longer present in files distributed as
  part of the GNU Portability Library.  This allows programs to provide
  translations for strings used in, for example, older versions of the
  GNU C Library as released with various Linux distributions.

  This file is NOT intended to be linked into any program.  Instead, it
  is simply meant to be listed in po/POTFILES.in.


  This file is free software: you can redistribute it and/or modify it
  under the terms of the GNU General Public License as published by the
  Free Software Foundation, either version 3 of the License, or (at your
  option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see https://www.gnu.org/licenses/.
*/


/************************************************************************
*                      From data/trader.desktop.in                      *
************************************************************************/

const char *trader_desktop_strings[] = {
    /* TRANSLATORS: Older versions of the GNU Gettext library utilities
       treat the Icon value in data/trader.desktop.in as a translatable
       string.  That string, the name of the icon to use, is defined here
       for those older versions of xgettext(1).  Unless you provide a
       matching icon, please leave it as "trader": this will use
       trader.svg and the various trader.png files in the data source
       code directory. */
    N_("trader"),

    ""
};


/************************************************************************
*                   From GNU C Library posix/getopt.c                   *
************************************************************************/

const char *glibc_posix_getopt_strings[] = {
    /* TRANSLATORS: These strings are used in older versions of various
       libraries, such as the GNU C Library as released with various
       Linux distributions. */
    N_("%s: option `%s%s' is ambiguous\n"),
    N_("%s: option '%s%s' is ambiguous\n"),
    N_("%s: option `%s%s' is ambiguous; possibilities:"),
    N_("%s: option '%s%s' is ambiguous; possibilities:"),
    N_("%s: unrecognized option `%s%s'\n"),
    N_("%s: unrecognized option '%s%s'\n"),
    N_("%s: option `%s%s' doesn't allow an argument\n"),
    N_("%s: option '%s%s' doesn't allow an argument\n"),
    N_("%s: option `%s%s' requires an argument\n"),
    N_("%s: option '%s%s' requires an argument\n"),
    N_("%s: invalid option -- `%c'\n"),
    N_("%s: invalid option -- '%c'\n"),
    N_("%s: option requires an argument -- `%c'\n"),
    N_("%s: option requires an argument -- '%c'\n"),

    N_("%s: option `%s' is ambiguous; possibilities:"),
    N_("%s: option '%s' is ambiguous; possibilities:"),
    N_("%s: option `%s' is ambiguous\n"),
    N_("%s: option '%s' is ambiguous\n"),
    N_("%s: option `--%s' doesn't allow an argument\n"),
    N_("%s: option '--%s' doesn't allow an argument\n"),
    N_("%s: option `%c%s' doesn't allow an argument\n"),
    N_("%s: option '%c%s' doesn't allow an argument\n"),
    N_("%s: option `--%s' requires an argument\n"),
    N_("%s: option '--%s' requires an argument\n"),
    N_("%s: unrecognized option `--%s'\n"),
    N_("%s: unrecognized option '--%s'\n"),
    N_("%s: unrecognized option `%c%s'\n"),
    N_("%s: unrecognized option '%c%s'\n"),
    N_("%s: option `-W %s' is ambiguous\n"),
    N_("%s: option '-W %s' is ambiguous\n"),
    N_("%s: option `-W %s' doesn't allow an argument\n"),
    N_("%s: option '-W %s' doesn't allow an argument\n"),
    N_("%s: option `-W %s' requires an argument\n"),
    N_("%s: option '-W %s' requires an argument\n"),

    ""
};


/***********************************************************************/
// End of file