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
|
<?php /* Copyright (c) 2024 Freya Murphy */
$lang['title'] = $lang['first_name'];
# sections
$lang['about'] = 'About';
$lang['section_about'] = '
Hi, and welcome to my webbed site! I go by Freya <span class="ipa">/ˈfɹeɪə/</span>.
I make cool programming projects, work as a software developer, and lurk on the
interwebz. You can find me tinerking with systems programming, networking, and
declarative linux distros.
';
$lang['android'] = 'Save Android';
$lang['section_android'] = 'Android will become a locked-down platform after September 2026. If you care are about software freedom, care about sideloading, or sick of companies locking down your devices, read the <a href="https://keepandroidopen.org/">open letter to Google about their Developer Verification Program.</a>';
$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'] = 'Vocaloid (Len <3), Neil Cicierega, SiIvaGunner';
$lang['interests_anime'] = 'Anime';
$lang['interests_anime_value'] = 'Evangalion, Code Geass, Banana Fish, Stranger by the Shore';
$lang['interests_comics'] = 'Comics / Books';
$lang['interests_comics_value'] = 'Homestuck, Erha';
# contact
$lang['contact'] = 'Contact Me';
$lang['contact_email'] = 'Email';
$lang['contact_matrix'] = 'Matrix';
$lang['contact_xmpp'] = 'XMPP';
|