Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Crowdin updates #50

Open
wants to merge 11 commits into
base: senpai
Choose a base branch
from
40 changes: 21 additions & 19 deletions public/assets/lang/en-UWU.json
Original file line number Diff line number Diff line change
Expand Up @@ -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...",
Expand All @@ -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."
}
4 changes: 3 additions & 1 deletion public/assets/lang/no-NO.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
38 changes: 38 additions & 0 deletions public/docs/en-UWU/contrib.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quarky Docs - Contributing to Quarky</title>
<link rel="stylesheet" href="/docs/index.css">
</head>
<body>
<header>
<img src="/assets/img/vukkyplanetdark.svg" id="planet">
<h1>Quarky</h1>
<i>Behind the Scenes</i>
</header>
<main>
<h1>Contributing to Quarky</h1>
<p>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.</p>
<h2 id="editor">Editor</h2>
<p>Personally I use <a href="https://www.jetbrains.com/webstorm/">WebStorm</a>, but it's expensive... <a href="https://code.visualstudio.com/">Visual Studio Code</a> should work as an alternative in this case.</p>
<h2 id="getcode">Getting the code</h2>
<small><p>※ A GitHub account is required to contribute to Quarky. If you don't have one, go to <a href="https://github.com/signup">https://github.com/signup</a>.</p></small>
<p>If you're planning to contribute to Quarky, you'll want to <a href="https://github.com/vukkysoft/quarky/fork">fork the GitHub repository</a>, then install <a href="https://git-scm.com/downloads">Git</a> and <a href="https://nodejs.org">Node.js</a> if you don't already have them.</p>
<p>Then open a terminal, go to your desired folder, and run these commands (<b>replace YOURUSER with your GitHub username</b>):</p>
<pre class="terminal">git clone https://github.com/YOURUSER/quarky<br>cd quarky<br>npm i && npm run build</pre>
<h2 id="branch">Creating a branch</h2>
<p>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.</p>
<pre class="terminal">git checkout -b BRANCHNAME main</pre>
<small><p>※ Your branch name should be a short description of what you're changing, like <code>fix-settings-typo</code>.</p></small>
<h2 id="liveserver">Editing the code</h2>
<p>The <code class="terminal">git clone</code> command from earlier should have created a <code>quarky</code> folder in your desired folder. Open it in your editor.</p>
<p>Once you have done that, if you're using Visual Studio Code, you should open the command palette (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd>), type <code>Show Recommended Extensions</code>, and install the extensions that appear.</p>
<p>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.</p>
<h2 id="pr">I made my changes, now what?</h2>
<small><p>※ When using <code class="terminal">git commit</code>, 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.</p></small>
<pre class="terminal">git add .<br>git commit -m "Made changes"<br>git push</pre>
<p>Then, go to <a href="https://github.com/Vukkysoft/Quarky">https://github.com/Vukkysoft/Quarky</a>. 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.</p>
</main>
</body>
</html>
27 changes: 27 additions & 0 deletions public/docs/en-UWU/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quarky Docs</title>
<link rel="stylesheet" href="/docs/index.css">
</head>
<body>
<header>
<img src="/assets/img/vukkyplanetdark.svg" id="planet">
<h1>Quawky</h1>
<i>Behind the Scenes</i>
</header>
<main>
<h1>OwO, what's this? *notices your docs*</h1>
<p>Dis is da secwet Quawky texts, UwU. </p>
<h2>Huohhh? Wat can I wead?</h2>
<dl class="explore">
<dt>Devewopews</dt>
<dd><a href="license.html">licensing</a></dd>
<dd><a href="contrib.html">contributing to quarky</a></dd>
<dt>Nyot a devewopew?</dt>
<dd>wooks like vukky did a fucky wucky and fowgor to type texts for uu! myaybe come back watew! 3:</dd>
</dl>
</main>
</body>
</html>
38 changes: 38 additions & 0 deletions public/docs/no-NO/contrib.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8">
<title>Quarky Docs - Contributing to Quarky</title>
<link rel="stylesheet" href="/docs/index.css">
</head>
<body>
<header>
<img src="/assets/img/vukkyplanetdark.svg" id="planet">
<h1>Quarky</h1>
<i>Behind the Scenes</i>
</header>
<main>
<h1>Contributing to Quarky</h1>
<p>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.</p>
<h2 id="editor">Editor</h2>
<p>Personally I use <a href="https://www.jetbrains.com/webstorm/">WebStorm</a>, but it's expensive... <a href="https://code.visualstudio.com/">Visual Studio Code</a> should work as an alternative in this case.</p>
<h2 id="getcode">Getting the code</h2>
<small><p>※ A GitHub account is required to contribute to Quarky. If you don't have one, go to <a href="https://github.com/signup">https://github.com/signup</a>.</p></small>
<p>If you're planning to contribute to Quarky, you'll want to <a href="https://github.com/vukkysoft/quarky/fork">fork the GitHub repository</a>, then install <a href="https://git-scm.com/downloads">Git</a> and <a href="https://nodejs.org">Node.js</a> if you don't already have them.</p>
<p>Then open a terminal, go to your desired folder, and run these commands (<b>replace YOURUSER with your GitHub username</b>):</p>
<pre class="terminal">git clone https://github.com/YOURUSER/quarky<br>cd quarky<br>npm i && npm run build</pre>
<h2 id="branch">Creating a branch</h2>
<p>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.</p>
<pre class="terminal">git checkout -b BRANCHNAME main</pre>
<small><p>※ Your branch name should be a short description of what you're changing, like <code>fix-settings-typo</code>.</p></small>
<h2 id="liveserver">Editing the code</h2>
<p>The <code class="terminal">git clone</code> command from earlier should have created a <code>quarky</code> folder in your desired folder. Open it in your editor.</p>
<p>Once you have done that, if you're using Visual Studio Code, you should open the command palette (<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd>), type <code>Show Recommended Extensions</code>, and install the extensions that appear.</p>
<p>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.</p>
<h2 id="pr">I made my changes, now what?</h2>
<small><p>※ When using <code class="terminal">git commit</code>, 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.</p></small>
<pre class="terminal">git add .<br>git commit -m "Made changes"<br>git push</pre>
<p>Then, go to <a href="https://github.com/Vukkysoft/Quarky">https://github.com/Vukkysoft/Quarky</a>. 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.</p>
</main>
</body>
</html>
27 changes: 27 additions & 0 deletions public/docs/no-NO/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8">
<title>Quarky Docs</title>
<link rel="stylesheet" href="/docs/index.css">
</head>
<body>
<header>
<img src="/assets/img/vukkyplanetdark.svg" id="planet">
<h1>Quarky</h1>
<i>Behind the Scenes</i>
</header>
<main>
<h1>Welcome to Quarky's documentation!</h1>
<p>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!</p>
<h2>Neat. What can I read?</h2>
<dl class="explore">
<dt>Developers</dt>
<dd><a href="license.html">licensing</a></dd>
<dd><a href="contrib.html">contributing to quarky</a></dd>
<dt>Not a developer?</dt>
<dd>Check back later, there's nothing for you to read :3</dd>
</dl>
</main>
</body>
</html>