diff options
Diffstat (limited to 'src/web/lang/common.php')
-rw-r--r-- | src/web/lang/common.php | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/web/lang/common.php b/src/web/lang/common.php new file mode 100644 index 0000000..442e4c1 --- /dev/null +++ b/src/web/lang/common.php @@ -0,0 +1,60 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ + +# things +$lang['lang_short'] = 'en'; +$lang['lang_full'] = 'en_US'; + +$lang['domain'] = 'freya.cat'; +$lang['base_path'] = '/'; +$lang['root_url'] = sprintf("https://%s%s", $lang['domain'], $lang['base_path']); +$lang['git_url'] = 'https://g.freya.cat/freya'; +$lang['theme_color'] = '#181818'; + +# 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_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", +]; |