diff --git a/public/assets/lang/en-UWU.json b/public/assets/lang/en-UWU.json index 0273e3e..030809d 100644 --- a/public/assets/lang/en-UWU.json +++ b/public/assets/lang/en-UWU.json @@ -18,27 +18,27 @@ ], "COMPANION": { "GREETING": [ - "Hello!", - "Hi!" + "Hewwo!", + "Hoi!" ] }, - "SETTINGS": "Settings, fwendo", - "SELECT_A_QUARK": "Sewect a quawk >w<", - "LEAVE_QUARK": "Weave quawk 3:", + "SETTINGS": "settings, fwendo", + "SELECT_A_QUARK": "sewect a quawk >w<", + "LEAVE_QUARK": "weave quawk 3:", "DEFAULT_USERNAME": "cute kitty", - "SELECT_A_CHANNEL": "Sewect a channew :3c", - "SETTINGS_GENERAL": "Genewaw", - "SETTINGS_APPEARANCE": "Appeawance", - "SETTINGS_ABOUT": "About~", - "SETTINGS_EXIT": "Exit 3:", - "SETTING_LANGUAGE": "Wanguage (wequiwes wewoad)", + "SELECT_A_CHANNEL": "sewect a channew :3c", + "SETTINGS_GENERAL": "genewaw", + "SETTINGS_APPEARANCE": "appeawance", + "SETTINGS_ABOUT": "about~", + "SETTINGS_EXIT": "exit 3:", + "SETTING_LANGUAGE": "wanguage (wequiwes wewoad)", "ENTER_INVITE_CODE": "Enter the invite code for the quark you want to join.", - "MESSAGE_REQUIRED": "You need to enter a message to send! :D", - "NOTIFICATIONS_ENABLED_TITLE": "Notifications enabled.", - "NOTIFICATIONS_ENABLED_BODY": "Please enjoy them!", - "NOTIFICATIONS_DENIED": "You have denied Quarky's request to send you notifications, so no notifications can be sent...", - "LOADING_EMOJI": "Woading emoji... :3", - "NO_EMOJI": "Nyo emoji... 3:", + "MESSAGE_REQUIRED": "bwehh... uu need to type stuff fiwst, siwwy... >w>", + "NOTIFICATIONS_ENABLED_TITLE": "pwingy noises enyabwed!", + "NOTIFICATIONS_ENABLED_BODY": "nyow I'm going to p-poke uu FOWEVEW!!!", + "NOTIFICATIONS_DENIED": "oh nyoo! uu didn't wet me send you pwingy noises! can't send you any nyow, siwwy! 3:", + "LOADING_EMOJI": "woading emoji... :3", + "NO_EMOJI": "nyo emoji... 3:", "SETTING_NOTIFICATIONS": "Show notifications for all new messages", "SAVING_SETTINGS": "Please wait, your settings are being saved...", "FETCHING_NETWORK": "Getting network information...", @@ -49,6 +49,8 @@ "LETTING_YOU_IN": "Letting you in...", "BY_VUKKY": "b-by Vukky UwU", "CREDITS_WACKYMODER": "WackyModer for the fancier message sender and attachment support", - "AVATAR_UPDATED_TITLE": "Your avatar's been updated.", - "AVATAR_UPDATED_BODY": "Enjoy your new look!" + "AVATAR_UPDATED_TITLE": "Oooh, nyew pictuwe...", + "AVATAR_UPDATED_BODY": "So pwetty! Hope uu wike it!!", + "NO_CHANNELS": "oh NYO!! nyo channews in dis quawk 3:", + "RECONNECTING_SPLASH": "Vukkies are now sleeping... Please wait quietly." } \ No newline at end of file diff --git a/public/assets/lang/no-NO.json b/public/assets/lang/no-NO.json index 055ff4b..1c24dfd 100644 --- a/public/assets/lang/no-NO.json +++ b/public/assets/lang/no-NO.json @@ -50,5 +50,7 @@ "BY_VUKKY": "av Vukky", "CREDITS_WACKYMODER": "WackyModer for the fancier message sender and attachment support", "AVATAR_UPDATED_TITLE": "Avataren din er oppdatert.", - "AVATAR_UPDATED_BODY": "Håper du liker det nye utseendet!" + "AVATAR_UPDATED_BODY": "Håper du liker det nye utseendet!", + "NO_CHANNELS": "This quark has no channels.", + "RECONNECTING_SPLASH": "Vukkies are now sleeping... Please wait quietly." } \ No newline at end of file diff --git a/public/docs/en-UWU/contrib.html b/public/docs/en-UWU/contrib.html new file mode 100644 index 0000000..3408ab4 --- /dev/null +++ b/public/docs/en-UWU/contrib.html @@ -0,0 +1,38 @@ + + + + + Quarky Docs - Contributing to Quarky + + + +
+ +

Quarky

+ Behind the Scenes +
+
+

Contributing to Quarky

+

Fancy frameworks are too scawy for me, so these instructions shouldn't be too advanced. You might still want to look at it if you're uncertain, though.

+

Editor

+

Personally I use WebStorm, but it's expensive... Visual Studio Code should work as an alternative in this case.

+

Getting the code

+

※ A GitHub account is required to contribute to Quarky. If you don't have one, go to https://github.com/signup.

+

If you're planning to contribute to Quarky, you'll want to fork the GitHub repository, then install Git and Node.js if you don't already have them.

+

Then open a terminal, go to your desired folder, and run these commands (replace YOURUSER with your GitHub username):

+
git clone https://github.com/YOURUSER/quarky
cd quarky
npm i && npm run build
+

Creating a branch

+

If you already know what you're going to contribute, you should create a branch. This allows you to keep your changes separate from the main Quarky code, and other changes - which is especially helpful if you're juggling multiple changes that haven't been merged into Quarky yet.

+
git checkout -b BRANCHNAME main
+

※ Your branch name should be a short description of what you're changing, like fix-settings-typo.

+

Editing the code

+

The git clone command from earlier should have created a quarky folder in your desired folder. Open it in your editor.

+

Once you have done that, if you're using Visual Studio Code, you should open the command palette (Ctrl + Shift + P), type Show Recommended Extensions, and install the extensions that appear.

+

Now you can start editing the code! To open Quarky in your web browser, press the Start button next to "Start local Quarky" in WebStorm, or the Go Live button in the bottom right of Visual Studio Code.

+

I made my changes, now what?

+

※ When using git commit, you should provide a short message that explains what you changed. "Made changes" isn't very helpful, so you'll probably want to type something else. Make sure to keep the quotation marks.

+
git add .
git commit -m "Made changes"
git push
+

Then, go to https://github.com/Vukkysoft/Quarky. A box should appear with your GitHub username and branch name, saying that there were recent pushes on it. Click the "Compare & pull request" button to request your changes to be merged into Quarky.

+
+ + \ No newline at end of file diff --git a/public/docs/en-UWU/index.html b/public/docs/en-UWU/index.html new file mode 100644 index 0000000..973d07b --- /dev/null +++ b/public/docs/en-UWU/index.html @@ -0,0 +1,27 @@ + + + + + Quarky Docs + + + +
+ +

Quawky

+ Behind the Scenes +
+
+

OwO, what's this? *notices your docs*

+

Dis is da secwet Quawky texts, UwU.

+

Huohhh? Wat can I wead?

+
+
Devewopews
+
licensing
+
contributing to quarky
+
Nyot a devewopew?
+
wooks like vukky did a fucky wucky and fowgor to type texts for uu! myaybe come back watew! 3:
+
+
+ + diff --git a/public/docs/no-NO/contrib.html b/public/docs/no-NO/contrib.html new file mode 100644 index 0000000..18e919f --- /dev/null +++ b/public/docs/no-NO/contrib.html @@ -0,0 +1,38 @@ + + + + + Quarky Docs - Contributing to Quarky + + + +
+ +

Quarky

+ Behind the Scenes +
+
+

Contributing to Quarky

+

Fancy frameworks are too scawy for me, so these instructions shouldn't be too advanced. You might still want to look at it if you're uncertain, though.

+

Editor

+

Personally I use WebStorm, but it's expensive... Visual Studio Code should work as an alternative in this case.

+

Getting the code

+

※ A GitHub account is required to contribute to Quarky. If you don't have one, go to https://github.com/signup.

+

If you're planning to contribute to Quarky, you'll want to fork the GitHub repository, then install Git and Node.js if you don't already have them.

+

Then open a terminal, go to your desired folder, and run these commands (replace YOURUSER with your GitHub username):

+
git clone https://github.com/YOURUSER/quarky
cd quarky
npm i && npm run build
+

Creating a branch

+

If you already know what you're going to contribute, you should create a branch. This allows you to keep your changes separate from the main Quarky code, and other changes - which is especially helpful if you're juggling multiple changes that haven't been merged into Quarky yet.

+
git checkout -b BRANCHNAME main
+

※ Your branch name should be a short description of what you're changing, like fix-settings-typo.

+

Editing the code

+

The git clone command from earlier should have created a quarky folder in your desired folder. Open it in your editor.

+

Once you have done that, if you're using Visual Studio Code, you should open the command palette (Ctrl + Shift + P), type Show Recommended Extensions, and install the extensions that appear.

+

Now you can start editing the code! To open Quarky in your web browser, press the Start button next to "Start local Quarky" in WebStorm, or the Go Live button in the bottom right of Visual Studio Code.

+

I made my changes, now what?

+

※ When using git commit, you should provide a short message that explains what you changed. "Made changes" isn't very helpful, so you'll probably want to type something else. Make sure to keep the quotation marks.

+
git add .
git commit -m "Made changes"
git push
+

Then, go to https://github.com/Vukkysoft/Quarky. A box should appear with your GitHub username and branch name, saying that there were recent pushes on it. Click the "Compare & pull request" button to request your changes to be merged into Quarky.

+
+ + \ No newline at end of file diff --git a/public/docs/no-NO/index.html b/public/docs/no-NO/index.html new file mode 100644 index 0000000..e4466b4 --- /dev/null +++ b/public/docs/no-NO/index.html @@ -0,0 +1,27 @@ + + + + + Quarky Docs + + + +
+ +

Quarky

+ Behind the Scenes +
+
+

Welcome to Quarky's documentation!

+

Sometimes a user guide, sometimes developer instructions, sometimes a trivia section, sometimes offering a bit of insight, but mostly a distraction from actually working on the software - it's text!

+

Neat. What can I read?

+
+
Developers
+
licensing
+
contributing to quarky
+
Not a developer?
+
Check back later, there's nothing for you to read :3
+
+
+ +