mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-22 11:05:09 -05:00
i18n profile page
This commit is contained in:
@@ -6,7 +6,7 @@ import {
|
||||
FormLabel,
|
||||
Textarea,
|
||||
} from "@chakra-ui/core";
|
||||
import { useTranslation } from "lib/useMockT";
|
||||
import { Trans } from "@lingui/macro";
|
||||
import { FieldError } from "react-hook-form";
|
||||
import LimitProgress from "./LimitProgress";
|
||||
|
||||
@@ -29,7 +29,6 @@ const MarkdownTextarea: React.FC<Props> = ({
|
||||
register,
|
||||
placeholder,
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<FormControl isInvalid={!!error}>
|
||||
<FormLabel htmlFor={fieldName} mt={4}>
|
||||
@@ -48,10 +47,12 @@ const MarkdownTextarea: React.FC<Props> = ({
|
||||
mr={3}
|
||||
/>
|
||||
<Box>
|
||||
{t("users;markdownPrompt")}{" "}
|
||||
<a href="/markdown" target="_blank" rel="noreferrer noopener">
|
||||
https://sendou.ink/markdown
|
||||
</a>
|
||||
<Trans>
|
||||
Markdown is supported -{" "}
|
||||
<a href="/markdown" target="_blank" rel="noreferrer noopener">
|
||||
https://sendou.ink/markdown
|
||||
</a>
|
||||
</Trans>
|
||||
</Box>
|
||||
</FormHelperText>
|
||||
<FormErrorMessage>{error?.message}</FormErrorMessage>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { useTranslation } from "lib/useMockT";
|
||||
import { useLingui } from "@lingui/react";
|
||||
import Image from "next/image";
|
||||
import React from "react";
|
||||
|
||||
@@ -15,14 +15,14 @@ const WeaponImage: React.FC<WeaponImageProps> = ({
|
||||
noTitle,
|
||||
isInline,
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const { i18n } = useLingui();
|
||||
|
||||
return (
|
||||
<>
|
||||
<Image
|
||||
src={`/images/weapons/${name.replace(".", "")}.png`}
|
||||
alt={t(`game;${name}`)}
|
||||
title={noTitle ? undefined : t(`game;${name}`)}
|
||||
alt={i18n._(name)}
|
||||
title={noTitle ? undefined : i18n._(name)}
|
||||
width={size}
|
||||
height={size}
|
||||
style={{ display: isInline ? "inline-block" : undefined }}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Select, Tag, TagCloseButton, TagLabel } from "@chakra-ui/core";
|
||||
import { weaponsWithHeroCategorized } from "lib/lists/weaponsWithHero";
|
||||
import { useLingui } from "@lingui/react";
|
||||
import { weaponsWithHeroCategorizedLocalized } from "lib/lists/weaponsWithHero";
|
||||
import WeaponImage from "./WeaponImage";
|
||||
|
||||
interface Props {
|
||||
@@ -9,6 +10,7 @@ interface Props {
|
||||
}
|
||||
|
||||
const WeaponSelector: React.FC<Props> = ({ name, value, onChange }) => {
|
||||
const { i18n } = useLingui();
|
||||
return (
|
||||
<>
|
||||
<Select
|
||||
@@ -18,11 +20,11 @@ const WeaponSelector: React.FC<Props> = ({ name, value, onChange }) => {
|
||||
onChange(value.concat(e.target.value));
|
||||
}}
|
||||
>
|
||||
{weaponsWithHeroCategorized.map((wpnCategory) => (
|
||||
<optgroup key={wpnCategory.name} label={wpnCategory.name}>
|
||||
{weaponsWithHeroCategorizedLocalized.map((wpnCategory) => (
|
||||
<optgroup key={wpnCategory.name} label={i18n._(wpnCategory.name)}>
|
||||
{wpnCategory.weapons.map((wpn) => (
|
||||
<option key={wpn} value={wpn}>
|
||||
{wpn}
|
||||
{i18n._(wpn)}
|
||||
</option>
|
||||
))}
|
||||
</optgroup>
|
||||
|
||||
0
lib/lists/temp.ts
Normal file
0
lib/lists/temp.ts
Normal file
@@ -1,3 +1,5 @@
|
||||
import { t } from "@lingui/macro";
|
||||
|
||||
export const weaponsWithHero = [
|
||||
"Sploosh-o-matic",
|
||||
"Neo Sploosh-o-matic",
|
||||
@@ -140,192 +142,192 @@ export const weaponsWithHero = [
|
||||
"Kensa Undercover Brella",
|
||||
] as const;
|
||||
|
||||
export const weaponsWithHeroCategorized: readonly {
|
||||
export const weaponsWithHeroCategorizedLocalized: readonly {
|
||||
name: string;
|
||||
weapons: readonly string[];
|
||||
}[] = [
|
||||
{
|
||||
name: "Shooters",
|
||||
name: t`Shooters`,
|
||||
weapons: [
|
||||
"Sploosh-o-matic",
|
||||
"Neo Sploosh-o-matic",
|
||||
"Sploosh-o-matic 7",
|
||||
"Splattershot Jr.",
|
||||
"Custom Splattershot Jr.",
|
||||
"Kensa Splattershot Jr.",
|
||||
"Splash-o-matic",
|
||||
"Neo Splash-o-matic",
|
||||
"Aerospray MG",
|
||||
"Aerospray RG",
|
||||
"Aerospray PG",
|
||||
"Splattershot",
|
||||
"Hero Shot Replica",
|
||||
"Tentatek Splattershot",
|
||||
"Octo Shot Replica",
|
||||
"Kensa Splattershot",
|
||||
".52 Gal",
|
||||
".52 Gal Deco",
|
||||
"Kensa .52 Gal",
|
||||
"N-ZAP '85",
|
||||
"N-ZAP '89",
|
||||
"N-ZAP '83",
|
||||
"Splattershot Pro",
|
||||
"Forge Splattershot Pro",
|
||||
"Kensa Splattershot Pro",
|
||||
".96 Gal",
|
||||
".96 Gal Deco",
|
||||
"Jet Squelcher",
|
||||
"Custom Jet Squelcher",
|
||||
"L-3 Nozzlenose",
|
||||
"L-3 Nozzlenose D",
|
||||
"Kensa L-3 Nozzlenose",
|
||||
"H-3 Nozzlenose",
|
||||
"H-3 Nozzlenose D",
|
||||
"Cherry H-3 Nozzlenose",
|
||||
"Squeezer",
|
||||
"Foil Squeezer",
|
||||
t`Sploosh-o-matic`,
|
||||
t`Neo Sploosh-o-matic`,
|
||||
t`Sploosh-o-matic 7`,
|
||||
t`Splattershot Jr.`,
|
||||
t`Custom Splattershot Jr.`,
|
||||
t`Kensa Splattershot Jr.`,
|
||||
t`Splash-o-matic`,
|
||||
t`Neo Splash-o-matic`,
|
||||
t`Aerospray MG`,
|
||||
t`Aerospray RG`,
|
||||
t`Aerospray PG`,
|
||||
t`Splattershot`,
|
||||
t`Hero Shot Replica`,
|
||||
t`Tentatek Splattershot`,
|
||||
t`Octo Shot Replica`,
|
||||
t`Kensa Splattershot`,
|
||||
t`.52 Gal`,
|
||||
t`.52 Gal Deco`,
|
||||
t`Kensa .52 Gal`,
|
||||
t`N-ZAP '85`,
|
||||
t`N-ZAP '89`,
|
||||
t`N-ZAP '83`,
|
||||
t`Splattershot Pro`,
|
||||
t`Forge Splattershot Pro`,
|
||||
t`Kensa Splattershot Pro`,
|
||||
t`.96 Gal`,
|
||||
t`.96 Gal Deco`,
|
||||
t`Jet Squelcher`,
|
||||
t`Custom Jet Squelcher`,
|
||||
t`L-3 Nozzlenose`,
|
||||
t`L-3 Nozzlenose D`,
|
||||
t`Kensa L-3 Nozzlenose`,
|
||||
t`H-3 Nozzlenose`,
|
||||
t`H-3 Nozzlenose D`,
|
||||
t`Cherry H-3 Nozzlenose`,
|
||||
t`Squeezer`,
|
||||
t`Foil Squeezer`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Blasters",
|
||||
name: t`Blasters`,
|
||||
weapons: [
|
||||
"Luna Blaster",
|
||||
"Luna Blaster Neo",
|
||||
"Kensa Luna Blaster",
|
||||
"Blaster",
|
||||
"Hero Blaster Replica",
|
||||
"Custom Blaster",
|
||||
"Range Blaster",
|
||||
"Custom Range Blaster",
|
||||
"Grim Range Blaster",
|
||||
"Rapid Blaster",
|
||||
"Rapid Blaster Deco",
|
||||
"Kensa Rapid Blaster",
|
||||
"Rapid Blaster Pro",
|
||||
"Rapid Blaster Pro Deco",
|
||||
"Clash Blaster",
|
||||
"Clash Blaster Neo",
|
||||
t`Luna Blaster`,
|
||||
t`Luna Blaster Neo`,
|
||||
t`Kensa Luna Blaster`,
|
||||
t`Blaster`,
|
||||
t`Hero Blaster Replica`,
|
||||
t`Custom Blaster`,
|
||||
t`Range Blaster`,
|
||||
t`Custom Range Blaster`,
|
||||
t`Grim Range Blaster`,
|
||||
t`Rapid Blaster`,
|
||||
t`Rapid Blaster Deco`,
|
||||
t`Kensa Rapid Blaster`,
|
||||
t`Rapid Blaster Pro`,
|
||||
t`Rapid Blaster Pro Deco`,
|
||||
t`Clash Blaster`,
|
||||
t`Clash Blaster Neo`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Rollers",
|
||||
name: t`Rollers`,
|
||||
weapons: [
|
||||
"Carbon Roller",
|
||||
"Carbon Roller Deco",
|
||||
"Splat Roller",
|
||||
"Hero Roller Replica",
|
||||
"Krak-On Splat Roller",
|
||||
"Kensa Splat Roller",
|
||||
"Dynamo Roller",
|
||||
"Gold Dynamo Roller",
|
||||
"Kensa Dynamo Roller",
|
||||
"Flingza Roller",
|
||||
"Foil Flingza Roller",
|
||||
t`Carbon Roller`,
|
||||
t`Carbon Roller Deco`,
|
||||
t`Splat Roller`,
|
||||
t`Hero Roller Replica`,
|
||||
t`Krak-On Splat Roller`,
|
||||
t`Kensa Splat Roller`,
|
||||
t`Dynamo Roller`,
|
||||
t`Gold Dynamo Roller`,
|
||||
t`Kensa Dynamo Roller`,
|
||||
t`Flingza Roller`,
|
||||
t`Foil Flingza Roller`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Brushes",
|
||||
name: t`Brushes`,
|
||||
weapons: [
|
||||
"Inkbrush",
|
||||
"Inkbrush Nouveau",
|
||||
"Permanent Inkbrush",
|
||||
"Octobrush",
|
||||
"Herobrush Replica",
|
||||
"Octobrush Nouveau",
|
||||
"Kensa Octobrush",
|
||||
t`Inkbrush`,
|
||||
t`Inkbrush Nouveau`,
|
||||
t`Permanent Inkbrush`,
|
||||
t`Octobrush`,
|
||||
t`Herobrush Replica`,
|
||||
t`Octobrush Nouveau`,
|
||||
t`Kensa Octobrush`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Chargers",
|
||||
name: t`Chargers`,
|
||||
weapons: [
|
||||
"Classic Squiffer",
|
||||
"New Squiffer",
|
||||
"Fresh Squiffer",
|
||||
"Splat Charger",
|
||||
"Hero Charger Replica",
|
||||
"Firefin Splat Charger",
|
||||
"Kensa Charger",
|
||||
"Splatterscope",
|
||||
"Firefin Splatterscope",
|
||||
"Kensa Splatterscope",
|
||||
"E-liter 4K",
|
||||
"Custom E-liter 4K",
|
||||
"E-liter 4K Scope",
|
||||
"Custom E-liter 4K Scope",
|
||||
"Bamboozler 14 Mk I",
|
||||
"Bamboozler 14 Mk II",
|
||||
"Bamboozler 14 Mk III",
|
||||
"Goo Tuber",
|
||||
"Custom Goo Tuber",
|
||||
t`Classic Squiffer`,
|
||||
t`New Squiffer`,
|
||||
t`Fresh Squiffer`,
|
||||
t`Splat Charger`,
|
||||
t`Hero Charger Replica`,
|
||||
t`Firefin Splat Charger`,
|
||||
t`Kensa Charger`,
|
||||
t`Splatterscope`,
|
||||
t`Firefin Splatterscope`,
|
||||
t`Kensa Splatterscope`,
|
||||
t`E-liter 4K`,
|
||||
t`Custom E-liter 4K`,
|
||||
t`E-liter 4K Scope`,
|
||||
t`Custom E-liter 4K Scope`,
|
||||
t`Bamboozler 14 Mk I`,
|
||||
t`Bamboozler 14 Mk II`,
|
||||
t`Bamboozler 14 Mk III`,
|
||||
t`Goo Tuber`,
|
||||
t`Custom Goo Tuber`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Sloshers",
|
||||
name: t`Sloshers`,
|
||||
weapons: [
|
||||
"Slosher",
|
||||
"Hero Slosher Replica",
|
||||
"Slosher Deco",
|
||||
"Soda Slosher",
|
||||
"Tri-Slosher",
|
||||
"Tri-Slosher Nouveau",
|
||||
"Sloshing Machine",
|
||||
"Sloshing Machine Neo",
|
||||
"Kensa Sloshing Machine",
|
||||
"Bloblobber",
|
||||
"Bloblobber Deco",
|
||||
"Explosher",
|
||||
"Custom Explosher",
|
||||
t`Slosher`,
|
||||
t`Hero Slosher Replica`,
|
||||
t`Slosher Deco`,
|
||||
t`Soda Slosher`,
|
||||
t`Tri-Slosher`,
|
||||
t`Tri-Slosher Nouveau`,
|
||||
t`Sloshing Machine`,
|
||||
t`Sloshing Machine Neo`,
|
||||
t`Kensa Sloshing Machine`,
|
||||
t`Bloblobber`,
|
||||
t`Bloblobber Deco`,
|
||||
t`Explosher`,
|
||||
t`Custom Explosher`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Splatlings",
|
||||
name: t`Splatlings`,
|
||||
weapons: [
|
||||
"Mini Splatling",
|
||||
"Zink Mini Splatling",
|
||||
"Kensa Mini Splatling",
|
||||
"Heavy Splatling",
|
||||
"Hero Splatling Replica",
|
||||
"Heavy Splatling Deco",
|
||||
"Heavy Splatling Remix",
|
||||
"Hydra Splatling",
|
||||
"Custom Hydra Splatling",
|
||||
"Ballpoint Splatling",
|
||||
"Ballpoint Splatling Nouveau",
|
||||
"Nautilus 47",
|
||||
"Nautilus 79",
|
||||
t`Mini Splatling`,
|
||||
t`Zink Mini Splatling`,
|
||||
t`Kensa Mini Splatling`,
|
||||
t`Heavy Splatling`,
|
||||
t`Hero Splatling Replica`,
|
||||
t`Heavy Splatling Deco`,
|
||||
t`Heavy Splatling Remix`,
|
||||
t`Hydra Splatling`,
|
||||
t`Custom Hydra Splatling`,
|
||||
t`Ballpoint Splatling`,
|
||||
t`Ballpoint Splatling Nouveau`,
|
||||
t`Nautilus 47`,
|
||||
t`Nautilus 79`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Dualies",
|
||||
name: t`Dualies`,
|
||||
weapons: [
|
||||
"Dapple Dualies",
|
||||
"Dapple Dualies Nouveau",
|
||||
"Clear Dapple Dualies",
|
||||
"Splat Dualies",
|
||||
"Hero Dualie Replicas",
|
||||
"Enperry Splat Dualies",
|
||||
"Kensa Splat Dualies",
|
||||
"Glooga Dualies",
|
||||
"Glooga Dualies Deco",
|
||||
"Kensa Glooga Dualies",
|
||||
"Dualie Squelchers",
|
||||
"Custom Dualie Squelchers",
|
||||
"Dark Tetra Dualies",
|
||||
"Light Tetra Dualies",
|
||||
t`Dapple Dualies`,
|
||||
t`Dapple Dualies Nouveau`,
|
||||
t`Clear Dapple Dualies`,
|
||||
t`Splat Dualies`,
|
||||
t`Hero Dualie Replicas`,
|
||||
t`Enperry Splat Dualies`,
|
||||
t`Kensa Splat Dualies`,
|
||||
t`Glooga Dualies`,
|
||||
t`Glooga Dualies Deco`,
|
||||
t`Kensa Glooga Dualies`,
|
||||
t`Dualie Squelchers`,
|
||||
t`Custom Dualie Squelchers`,
|
||||
t`Dark Tetra Dualies`,
|
||||
t`Light Tetra Dualies`,
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Brellas",
|
||||
name: t`Brellas`,
|
||||
weapons: [
|
||||
"Splat Brella",
|
||||
"Hero Brella Replica",
|
||||
"Sorella Brella",
|
||||
"Tenta Brella",
|
||||
"Tenta Sorella Brella",
|
||||
"Tenta Camo Brella",
|
||||
"Undercover Brella",
|
||||
"Undercover Sorella Brella",
|
||||
"Kensa Undercover Brella",
|
||||
t`Splat Brella`,
|
||||
t`Hero Brella Replica`,
|
||||
t`Sorella Brella`,
|
||||
t`Tenta Brella`,
|
||||
t`Tenta Sorella Brella`,
|
||||
t`Tenta Camo Brella`,
|
||||
t`Undercover Brella`,
|
||||
t`Undercover Sorella Brella`,
|
||||
t`Kensa Undercover Brella`,
|
||||
],
|
||||
},
|
||||
] as const;
|
||||
|
||||
@@ -1,13 +1,16 @@
|
||||
module.exports = {
|
||||
locales: ["de", "en", "es", "fr", "it", "nl", "pt", "sv", "el", "ru", "ja", "ko", "zh"],
|
||||
sourceLocale: "en",
|
||||
fallbackLocale: "en",
|
||||
orderBy: "origin",
|
||||
catalogs: [
|
||||
{
|
||||
path: "<rootDir>/locale/{locale}/messages",
|
||||
include: [
|
||||
"./pages/",
|
||||
"./components/",
|
||||
"./scenes/"
|
||||
"./scenes/",
|
||||
"./lib/"
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
@@ -13,62 +13,670 @@ msgstr ""
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: el\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2020-11-04 01:38+0200\n"
|
||||
"POT-Creation-Date: 2020-11-04 14:14+0200\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -13,62 +13,670 @@ msgstr ""
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr "Shooters"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr "Sploosh-o-matic"
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr "Neo Sploosh-o-matic"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr "Sploosh-o-matic 7"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr "Splattershot Jr."
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr "Custom Splattershot Jr."
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr "Kensa Splattershot Jr."
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr "Splash-o-matic"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr "Neo Splash-o-matic"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr "Aerospray MG"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr "Aerospray RG"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr "Aerospray PG"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr "Splattershot"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr "Hero Shot Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr "Tentatek Splattershot"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr "Octo Shot Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr "Kensa Splattershot"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ".52 Gal"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ".52 Gal Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr "Kensa .52 Gal"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr "N-ZAP '85"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr "N-ZAP '89"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr "N-ZAP '83"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr "Splattershot Pro"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr "Forge Splattershot Pro"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr "Kensa Splattershot Pro"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ".96 Gal"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ".96 Gal Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr "Jet Squelcher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr "Custom Jet Squelcher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr "L-3 Nozzlenose"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr "L-3 Nozzlenose D"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr "Kensa L-3 Nozzlenose"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr "H-3 Nozzlenose"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr "H-3 Nozzlenose D"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr "Cherry H-3 Nozzlenose"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr "Squeezer"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr "Foil Squeezer"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr "Blasters"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr "Luna Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr "Luna Blaster Neo"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr "Kensa Luna Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr "Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr "Hero Blaster Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr "Custom Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr "Range Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr "Custom Range Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr "Grim Range Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr "Rapid Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr "Rapid Blaster Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr "Kensa Rapid Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr "Rapid Blaster Pro"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr "Rapid Blaster Pro Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr "Clash Blaster"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr "Clash Blaster Neo"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr "Rollers"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr "Carbon Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr "Carbon Roller Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr "Splat Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr "Hero Roller Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr "Krak-On Splat Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr "Kensa Splat Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr "Dynamo Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr "Gold Dynamo Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr "Kensa Dynamo Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr "Flingza Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr "Foil Flingza Roller"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr "Brushes"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr "Inkbrush"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr "Inkbrush Nouveau"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr "Permanent Inkbrush"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr "Octobrush"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr "Herobrush Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr "Octobrush Nouveau"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr "Kensa Octobrush"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr "Chargers"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr "Classic Squiffer"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr "New Squiffer"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr "Fresh Squiffer"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr "Splat Charger"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr "Hero Charger Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr "Firefin Splat Charger"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr "Kensa Charger"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr "Splatterscope"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr "Firefin Splatterscope"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr "Kensa Splatterscope"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr "E-liter 4K"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr "Custom E-liter 4K"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr "E-liter 4K Scope"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr "Custom E-liter 4K Scope"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr "Bamboozler 14 Mk I"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr "Bamboozler 14 Mk II"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr "Bamboozler 14 Mk III"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr "Goo Tuber"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr "Custom Goo Tuber"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr "Sloshers"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr "Slosher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr "Hero Slosher Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr "Slosher Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr "Soda Slosher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr "Tri-Slosher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr "Tri-Slosher Nouveau"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr "Sloshing Machine"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr "Sloshing Machine Neo"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr "Kensa Sloshing Machine"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr "Bloblobber"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr "Bloblobber Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr "Explosher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr "Custom Explosher"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr "Splatlings"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr "Mini Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr "Zink Mini Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr "Kensa Mini Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr "Heavy Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr "Hero Splatling Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr "Heavy Splatling Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr "Heavy Splatling Remix"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr "Hydra Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr "Custom Hydra Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr "Ballpoint Splatling"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr "Ballpoint Splatling Nouveau"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr "Nautilus 47"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr "Nautilus 79"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr "Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr "Dapple Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr "Dapple Dualies Nouveau"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr "Clear Dapple Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr "Splat Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr "Hero Dualie Replicas"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr "Enperry Splat Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr "Kensa Splat Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr "Glooga Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr "Glooga Dualies Deco"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr "Kensa Glooga Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr "Dualie Squelchers"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr "Custom Dualie Squelchers"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr "Dark Tetra Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr "Light Tetra Dualies"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr "Brellas"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr "Splat Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr "Hero Brella Replica"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr "Sorella Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr "Tenta Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr "Tenta Sorella Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr "Tenta Camo Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr "Undercover Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr "Undercover Sorella Brella"
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr "Kensa Undercover Brella"
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr "Log in via Discord"
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr "Log out"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr "Motion sensitivity"
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr "Profile"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr "Log out"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr "{0}"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr "Editing profile"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr "Custom URL"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr "Twitter name"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr "Twitch name"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr "YouTube channel ID"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr "Country"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr "Weapon pool"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr "Stick sensitivity"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr "Motion sensitivity"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr "Bio"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr "Edit profile"
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: nl\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ru\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -6,63 +6,677 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
#: lib/components/MarkdownTextarea.tsx:13
|
||||
msgid "Markdown is supported - <0>https://sendou.ink/markdown</0>"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
#: lib/lists/weaponsWithHero.ts:145
|
||||
msgid "Shooters"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
#: lib/lists/weaponsWithHero.ts:147
|
||||
msgid "Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
#: lib/lists/weaponsWithHero.ts:148
|
||||
msgid "Neo Sploosh-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
#: lib/lists/weaponsWithHero.ts:149
|
||||
msgid "Sploosh-o-matic 7"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:150
|
||||
msgid "Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:151
|
||||
msgid "Custom Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:152
|
||||
msgid "Kensa Splattershot Jr."
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:153
|
||||
msgid "Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:154
|
||||
msgid "Neo Splash-o-matic"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:155
|
||||
msgid "Aerospray MG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:156
|
||||
msgid "Aerospray RG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:157
|
||||
msgid "Aerospray PG"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:158
|
||||
msgid "Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:159
|
||||
msgid "Hero Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:160
|
||||
msgid "Tentatek Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:161
|
||||
msgid "Octo Shot Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:162
|
||||
msgid "Kensa Splattershot"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:163
|
||||
msgid ".52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:164
|
||||
msgid ".52 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:165
|
||||
msgid "Kensa .52 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:166
|
||||
msgid "N-ZAP '85"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:167
|
||||
msgid "N-ZAP '89"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:168
|
||||
msgid "N-ZAP '83"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:169
|
||||
msgid "Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:170
|
||||
msgid "Forge Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:171
|
||||
msgid "Kensa Splattershot Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:172
|
||||
msgid ".96 Gal"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:173
|
||||
msgid ".96 Gal Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:174
|
||||
msgid "Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:175
|
||||
msgid "Custom Jet Squelcher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:176
|
||||
msgid "L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:177
|
||||
msgid "L-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:178
|
||||
msgid "Kensa L-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:179
|
||||
msgid "H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:180
|
||||
msgid "H-3 Nozzlenose D"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:181
|
||||
msgid "Cherry H-3 Nozzlenose"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:182
|
||||
msgid "Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:183
|
||||
msgid "Foil Squeezer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:187
|
||||
msgid "Blasters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:189
|
||||
msgid "Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:190
|
||||
msgid "Luna Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:191
|
||||
msgid "Kensa Luna Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:192
|
||||
msgid "Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:193
|
||||
msgid "Hero Blaster Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:194
|
||||
msgid "Custom Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:195
|
||||
msgid "Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:196
|
||||
msgid "Custom Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:197
|
||||
msgid "Grim Range Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:198
|
||||
msgid "Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:199
|
||||
msgid "Rapid Blaster Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:200
|
||||
msgid "Kensa Rapid Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:201
|
||||
msgid "Rapid Blaster Pro"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:202
|
||||
msgid "Rapid Blaster Pro Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:203
|
||||
msgid "Clash Blaster"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:204
|
||||
msgid "Clash Blaster Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:208
|
||||
msgid "Rollers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:210
|
||||
msgid "Carbon Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:211
|
||||
msgid "Carbon Roller Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:212
|
||||
msgid "Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:213
|
||||
msgid "Hero Roller Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:214
|
||||
msgid "Krak-On Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:215
|
||||
msgid "Kensa Splat Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:216
|
||||
msgid "Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:217
|
||||
msgid "Gold Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:218
|
||||
msgid "Kensa Dynamo Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:219
|
||||
msgid "Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:220
|
||||
msgid "Foil Flingza Roller"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:224
|
||||
msgid "Brushes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:226
|
||||
msgid "Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:227
|
||||
msgid "Inkbrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:228
|
||||
msgid "Permanent Inkbrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:229
|
||||
msgid "Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:230
|
||||
msgid "Herobrush Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:231
|
||||
msgid "Octobrush Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:232
|
||||
msgid "Kensa Octobrush"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:236
|
||||
msgid "Chargers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:238
|
||||
msgid "Classic Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:239
|
||||
msgid "New Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:240
|
||||
msgid "Fresh Squiffer"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:241
|
||||
msgid "Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:242
|
||||
msgid "Hero Charger Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:243
|
||||
msgid "Firefin Splat Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:244
|
||||
msgid "Kensa Charger"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:245
|
||||
msgid "Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:246
|
||||
msgid "Firefin Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:247
|
||||
msgid "Kensa Splatterscope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:248
|
||||
msgid "E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:249
|
||||
msgid "Custom E-liter 4K"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:250
|
||||
msgid "E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:251
|
||||
msgid "Custom E-liter 4K Scope"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:252
|
||||
msgid "Bamboozler 14 Mk I"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:253
|
||||
msgid "Bamboozler 14 Mk II"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:254
|
||||
msgid "Bamboozler 14 Mk III"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:255
|
||||
msgid "Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:256
|
||||
msgid "Custom Goo Tuber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:260
|
||||
msgid "Sloshers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:262
|
||||
msgid "Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:263
|
||||
msgid "Hero Slosher Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:264
|
||||
msgid "Slosher Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:265
|
||||
msgid "Soda Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:266
|
||||
msgid "Tri-Slosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:267
|
||||
msgid "Tri-Slosher Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:268
|
||||
msgid "Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:269
|
||||
msgid "Sloshing Machine Neo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:270
|
||||
msgid "Kensa Sloshing Machine"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:271
|
||||
msgid "Bloblobber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:272
|
||||
msgid "Bloblobber Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:273
|
||||
msgid "Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:274
|
||||
msgid "Custom Explosher"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:278
|
||||
msgid "Splatlings"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:280
|
||||
msgid "Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:281
|
||||
msgid "Zink Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:282
|
||||
msgid "Kensa Mini Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:283
|
||||
msgid "Heavy Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:284
|
||||
msgid "Hero Splatling Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:285
|
||||
msgid "Heavy Splatling Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:286
|
||||
msgid "Heavy Splatling Remix"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:287
|
||||
msgid "Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:288
|
||||
msgid "Custom Hydra Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:289
|
||||
msgid "Ballpoint Splatling"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:290
|
||||
msgid "Ballpoint Splatling Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:291
|
||||
msgid "Nautilus 47"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:292
|
||||
msgid "Nautilus 79"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:296
|
||||
msgid "Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:298
|
||||
msgid "Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:299
|
||||
msgid "Dapple Dualies Nouveau"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:300
|
||||
msgid "Clear Dapple Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:301
|
||||
msgid "Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:302
|
||||
msgid "Hero Dualie Replicas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:303
|
||||
msgid "Enperry Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:304
|
||||
msgid "Kensa Splat Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:305
|
||||
msgid "Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:306
|
||||
msgid "Glooga Dualies Deco"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:307
|
||||
msgid "Kensa Glooga Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:308
|
||||
msgid "Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:309
|
||||
msgid "Custom Dualie Squelchers"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:310
|
||||
msgid "Dark Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:311
|
||||
msgid "Light Tetra Dualies"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:315
|
||||
msgid "Brellas"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:317
|
||||
msgid "Splat Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:318
|
||||
msgid "Hero Brella Replica"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:319
|
||||
msgid "Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:320
|
||||
msgid "Tenta Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:321
|
||||
msgid "Tenta Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:322
|
||||
msgid "Tenta Camo Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:323
|
||||
msgid "Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:324
|
||||
msgid "Undercover Sorella Brella"
|
||||
msgstr ""
|
||||
|
||||
#: lib/lists/weaponsWithHero.ts:325
|
||||
msgid "Kensa Undercover Brella"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:19
|
||||
msgid "Log in via Discord"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Layout/components/TopNav.tsx:32
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
#: scenes/Layout/components/TopNav.tsx:36
|
||||
msgid "Log out"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:63
|
||||
msgid "{0}"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:102
|
||||
msgid "Editing profile"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:109
|
||||
msgid "Custom URL"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:123
|
||||
msgid "Twitter name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
#: scenes/Profile/components/ProfileModal.tsx:137
|
||||
msgid "Twitch name"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:151
|
||||
msgid "YouTube channel ID"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:161
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:172
|
||||
msgid "Weapon pool"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:184
|
||||
msgid "Stick sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:194
|
||||
msgid "Motion sensitivity"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "Bio"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:202
|
||||
msgid "# I'm a header\\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:206
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/components/ProfileModal.tsx:209
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: scenes/Profile/index.tsx:17
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
@@ -14,17 +14,17 @@ import { FiGlobe } from "react-icons/fi";
|
||||
export const languages = [
|
||||
{ code: "de", name: "Deutsch" },
|
||||
{ code: "en", name: "English" },
|
||||
{ code: "es-ES", name: "Español" },
|
||||
{ code: "es", name: "Español" },
|
||||
{ code: "fr", name: "Français" },
|
||||
{ code: "it", name: "Italiano" },
|
||||
{ code: "nl", name: "Nederlands" },
|
||||
{ code: "pt-BR", name: "Português" },
|
||||
{ code: "pt", name: "Português" },
|
||||
{ code: "sv", name: "Svenska" },
|
||||
{ code: "el", name: "Ελληνικά" },
|
||||
{ code: "ru", name: "Русский" },
|
||||
{ code: "ja", name: "日本語" },
|
||||
{ code: "ko", name: "한국어" },
|
||||
{ code: "zh-TW", name: "繁體中文" },
|
||||
{ code: "zh", name: "繁體中文" },
|
||||
] as const;
|
||||
|
||||
export const LanguageSelector = () => {
|
||||
|
||||
@@ -18,7 +18,8 @@ import {
|
||||
useToast,
|
||||
} from "@chakra-ui/core";
|
||||
import { zodResolver } from "@hookform/resolvers/zod";
|
||||
import { Trans } from "@lingui/macro";
|
||||
import { t, Trans } from "@lingui/macro";
|
||||
import { useLingui } from "@lingui/react";
|
||||
import { countries } from "countries-list";
|
||||
import {
|
||||
GetUserByIdentifierDocument,
|
||||
@@ -29,7 +30,6 @@ import {
|
||||
import MarkdownTextarea from "lib/components/MarkdownTextarea";
|
||||
import WeaponSelector from "lib/components/WeaponSelector";
|
||||
import { getToastOptions } from "lib/getToastOptions";
|
||||
import { useTranslation } from "lib/useMockT";
|
||||
import { Controller, useForm } from "react-hook-form";
|
||||
import { FaGamepad, FaTwitch, FaTwitter, FaYoutube } from "react-icons/fa";
|
||||
import {
|
||||
@@ -83,7 +83,7 @@ const ProfileModal: React.FC<Props> = ({
|
||||
existingProfile,
|
||||
identifier,
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const { i18n } = useLingui();
|
||||
|
||||
const { handleSubmit, errors, register, watch, control } = useForm<FormData>({
|
||||
resolver: zodResolver(profileSchemaFrontend),
|
||||
@@ -102,7 +102,7 @@ const ProfileModal: React.FC<Props> = ({
|
||||
const toast = useToast();
|
||||
const [updateUserProfile, { loading }] = useUpdateUserProfileMutation({
|
||||
onCompleted: () => {
|
||||
toast(getToastOptions(t("users;Profile updated"), "success"));
|
||||
toast(getToastOptions(i18n._(t`Profile updated`), "success"));
|
||||
onClose();
|
||||
},
|
||||
onError: (error) => {
|
||||
@@ -315,12 +315,14 @@ const ProfileModal: React.FC<Props> = ({
|
||||
|
||||
<MarkdownTextarea
|
||||
fieldName="bio"
|
||||
title={t("users;Bio")}
|
||||
title={i18n._(t`Bio`)}
|
||||
error={errors.bio}
|
||||
register={register}
|
||||
value={watchBio!}
|
||||
maxLength={PROFILE_CHARACTER_LIMIT}
|
||||
placeholder={`# I'm a header\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:`}
|
||||
placeholder={i18n._(
|
||||
t`# I'm a header\nI'm **bolded**. Embedding weapon images is easy too: :luna_blaster:`
|
||||
)}
|
||||
/>
|
||||
</ModalBody>
|
||||
<ModalFooter>
|
||||
|
||||
Reference in New Issue
Block a user