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
|
<?php /* Copyright (c) 2024 Freya Murphy */
# lang
$lang['lang_short'] = 'en';
$lang['lang_full'] = 'en_US';
# names
$lang['first_name'] = 'Freya';
$lang['last_name'] = 'Murphy';
$lang['default_short_desc'] = 'Hi I exist';
# common actions
$lang['action_home_text'] = 'Home';
$lang['action_home_tip'] = 'View my home page.';
$lang['action_projects_text'] = 'Projects';
$lang['action_projects_tip'] = 'View my projects.';
$lang['action_blog_text'] = 'Blog';
$lang['action_blog_tip'] = 'View my blog';
# common alt text
$lang['alt_button_eyes'] = 'Best viewed with eyes';
$lang['alt_button_vim'] = 'Edited with VIM';
$lang['alt_button_gnu_linux'] = 'Made with GNU/Linux';
$lang['alt_button_eff'] = 'Support the Electronic Frontier Foundation!';
$lang['alt_button_apiopage'] = 'Memetic apiopage';
$lang['alt_website_logo'] = 'Website Logo';
# misc
$lang['john_title'] = 'Johnvertisement';
$lang['bucket_title'] = 'Bucket Webring';
$lang['license_pre'] = 'This site is licensed under the';
$lang['copyright'] = 'Copyright (c)';
# footer_text
$lang ['footer_text'] = [
"Always look on the bright side of life",
"🐝 powder",
"Submit to john",
"Make sure to feed your computer three meals a day",
"curl https://f.freya.cat/rick/roll.sh | bash",
"medium rare chocolate",
"Incorporated by bees",
"[redacted]",
"Certified <a href=\"https://datatracker.ietf.org/doc/html/rfc9225\">RFC 9225</a> compliant.",
"JS free since always",
"Thank you for visiting the",
"footer text",
"If problems occur, stop doing the bad",
":(){ :|: & };:",
"Approved by russian hackers",
"Shake well",
"Help im stuck inside footer text!",
"abort: no x11 display server found",
];
|