summaryrefslogtreecommitdiff
path: root/src/web/lang
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-05-24 09:05:42 -0400
committerFreya Murphy <freya@freyacat.org>2024-05-24 09:05:42 -0400
commitc5f39ea2cd7cf02246705ea8872d3b350526165c (patch)
tree2694f9fdc5d83b529a01f2997c1d89c271c86592 /src/web/lang
downloadwebsite-c5f39ea2cd7cf02246705ea8872d3b350526165c.tar.gz
website-c5f39ea2cd7cf02246705ea8872d3b350526165c.tar.bz2
website-c5f39ea2cd7cf02246705ea8872d3b350526165c.zip
initial
Diffstat (limited to 'src/web/lang')
-rw-r--r--src/web/lang/apps/blog.php16
-rw-r--r--src/web/lang/apps/error.php13
-rw-r--r--src/web/lang/apps/home.php35
-rw-r--r--src/web/lang/apps/projects.php4
-rw-r--r--src/web/lang/common.php60
5 files changed, 128 insertions, 0 deletions
diff --git a/src/web/lang/apps/blog.php b/src/web/lang/apps/blog.php
new file mode 100644
index 0000000..d860a8a
--- /dev/null
+++ b/src/web/lang/apps/blog.php
@@ -0,0 +1,16 @@
+<?php /* Copyright (c) 2024 Freya Murphy */
+
+$lang['title'] = 'Blog';
+$lang['posted'] = 'posted';
+
+$lang['blog_short_desc'] = 'I post things here sometimes';
+$lang['blog_desc'] = 'This is my blog! You can read the posts listed here, or you can find them on my <a href="blog/rss">RSS</a> feed.';
+
+$lang['comments'] = 'Comments';
+$lang['no_comments'] = 'No comments';
+$lang['new_comment_title'] = 'New comment:';
+$lang['new_comment_author_ph'] = 'Identify yourself';
+$lang['new_comment_author_label'] = 'Name';
+$lang['new_comment_content_ph'] = 'Write the stuff';
+$lang['new_comment_content_label'] = 'Content';
+$lang['new_comment_submit_text'] = 'Post Comment';
diff --git a/src/web/lang/apps/error.php b/src/web/lang/apps/error.php
new file mode 100644
index 0000000..79574b5
--- /dev/null
+++ b/src/web/lang/apps/error.php
@@ -0,0 +1,13 @@
+<?php /* Copyright (c) 2024 Freya Murphy */
+
+$lang['error_400'] = 'Bad request';
+$lang['error_401'] = 'Forbidden';
+$lang['error_404'] = 'Resource not found';
+$lang['error_413'] = 'Request too large';
+$lang['error_500'] = 'Whoops! Server error :(';
+$lang['error_503'] = 'Service unavailable';
+$lang['error'] = 'An unknown error has occoured';
+
+$lang['haa_haa_hee_hee_hoo_hoo'] = 'Haa Haa. Hee Hee. Hoo Hoo.';
+
+?>
diff --git a/src/web/lang/apps/home.php b/src/web/lang/apps/home.php
new file mode 100644
index 0000000..b3e3a16
--- /dev/null
+++ b/src/web/lang/apps/home.php
@@ -0,0 +1,35 @@
+<?php /* Copyright (c) 2024 Freya Murphy */
+
+$lang['title'] = $lang['first_name'];
+
+# sections
+$lang['about'] = 'About';
+$lang['section_about'] = '
+Hello! My name is Freya, and I am a person on the internet.
+I like to make projects that involve many things, though some of my
+favorites are operating systems, programming languages, and networking
+infrastructure.
+';
+
+$lang['whats_new'] = 'Whats New?';
+$lang['section_whats_new'] = '
+Every so often I post ideas, thoughts, or
+revelations that I have on my blog.
+Feel free to check it out at any time. (◕‿◕)
+';
+
+# interests
+$lang['interests'] = 'Interests';
+$lang['interests_general'] = 'General';
+$lang['interests_general_value'] = 'Computing, Anime, FNaF';
+$lang['interests_music'] = 'Music';
+$lang['interests_music_value'] = 'Billy Joel, Linkin Park, Vocaloid, Neil Cicierega';
+$lang['interests_comics'] = 'Comics';
+$lang['interests_comics_value'] = 'Homestuck';
+
+# contact
+$lang['contact'] = 'Contact Me';
+$lang['contact_email'] = 'Email';
+$lang['contact_matrix'] = 'Matrix';
+$lang['contact_xmpp'] = 'XMPP';
+$lang['contact_mastodon'] = 'Mastodon';
diff --git a/src/web/lang/apps/projects.php b/src/web/lang/apps/projects.php
new file mode 100644
index 0000000..8302691
--- /dev/null
+++ b/src/web/lang/apps/projects.php
@@ -0,0 +1,4 @@
+<?php /* Copyright (c) 2024 Freya Murphy */
+
+$lang['title'] = 'Projects';
+$lang['short_desc'] = 'Things that I have made';
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",
+];