Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sudo-project
GitHub Repository: sudo-project/sudo
Path: blob/main/plugins/sudoers/ins_python.h
1532 views
1
/*
2
* SPDX-License-Identifier: ISC
3
*
4
* Copyright (c) 2018 Todd C. Miller <[email protected]>
5
*
6
* Permission to use, copy, modify, and distribute this software for any
7
* purpose with or without fee is hereby granted, provided that the above
8
* copyright notice and this permission notice appear in all copies.
9
*
10
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
*/
18
19
#ifndef SUDOERS_INS_PYTHON_H
20
#define SUDOERS_INS_PYTHON_H
21
22
/*
23
* Insults from "Monty Python's Flying Circus" and family.
24
*/
25
26
N_("That is no basis for supreme executive power!"),
27
N_("You empty-headed animal food trough wiper!"),
28
N_("I fart in your general direction!"),
29
N_("Your mother was a hamster and your father smelt of elderberries!"),
30
N_("You must cut down the mightiest tree in the forest... with... a herring!"),
31
N_("I wave my private parts at your aunties!"),
32
N_("He's not the Messiah, he's a very naughty boy!"),
33
N_("I wish to make a complaint."),
34
N_("When you're walking home tonight, and some homicidal maniac comes after you with a bunch of loganberries, don't come crying to me!"),
35
N_("This man, he doesn't know when he's beaten! He doesn't know when he's winning, either. He has no... sort of... sensory apparatus..."),
36
N_("There's nothing wrong with you that an expensive operation can't prolong."),
37
N_("I'm very sorry, but I'm not allowed to argue unless you've paid."),
38
39
#endif /* SUDOERS_INS_PYTHON_H */
40
41