Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sudo-project
GitHub Repository: sudo-project/sudo
Path: blob/main/plugins/sudoers/ins_csops.h
1532 views
1
/*
2
* SPDX-License-Identifier: ISC
3
*
4
* Copyright (c) 1996, 1998, 1999, 2004
5
* Todd C. Miller <[email protected]>
6
*
7
* Permission to use, copy, modify, and distribute this software for any
8
* purpose with or without fee is hereby granted, provided that the above
9
* copyright notice and this permission notice appear in all copies.
10
*
11
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18
*/
19
20
#ifndef SUDOERS_INS_CSOPS_H
21
#define SUDOERS_INS_CSOPS_H
22
23
/*
24
* CSOps insults (may be site dependent).
25
*/
26
27
N_("Maybe if you used more than just two fingers..."),
28
N_("BOB says: You seem to have forgotten your passwd, enter another!"),
29
N_("stty: unknown mode: doofus"),
30
N_("I can't hear you -- I'm using the scrambler."),
31
N_("The more you drive -- the dumber you get."),
32
N_("Listen, broccoli brains, I don't have time to listen to this trash."),
33
N_("I've seen penguins that can type better than that."),
34
N_("Have you considered trying to match wits with a rutabaga?"),
35
N_("You speak an infinite deal of nothing"),
36
37
#endif /* SUDOERS_INS_CSOPS_H */
38
39