Compare commits
44 Commits
2023.531.0
...
2023.817.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
85c84fb5da | ||
|
|
d371ec81d5 | ||
|
|
e2bcb4cc8c | ||
|
|
63a2561eb3 | ||
|
|
092895270a | ||
|
|
1ce82e27d3 | ||
|
|
1544dfac99 | ||
|
|
b786e4b136 | ||
|
|
e2549e24bf | ||
|
|
46c27cd5dd | ||
|
|
c134c62213 | ||
|
|
e8084a2d20 | ||
|
|
1b2ed4eaa2 | ||
|
|
5e50106385 | ||
|
|
5919f3bbd1 | ||
|
|
4e909450dd | ||
|
|
a325353b42 | ||
|
|
8fc1a7d2da | ||
|
|
3145704062 | ||
|
|
071aa54383 | ||
|
|
2d6642fcd0 | ||
|
|
fb817e028e | ||
|
|
2052fa941a | ||
|
|
aa60df50d9 | ||
|
|
7f5ab9721b | ||
|
|
9adf5c4168 | ||
|
|
57715de3e0 | ||
|
|
edf71b5fe2 | ||
|
|
16f480868b | ||
|
|
d4d516b297 | ||
|
|
e12cb13180 | ||
|
|
92dfb04555 | ||
|
|
8a97df817b | ||
|
|
9a88bf2fd0 | ||
|
|
0362797eed | ||
|
|
1719d41502 | ||
|
|
4da0fc939d | ||
|
|
d6181e8360 | ||
|
|
3e52067dcc | ||
|
|
50e7e1a816 | ||
|
|
c0efb56ae6 | ||
|
|
8e8ef41761 | ||
|
|
715b1089c3 | ||
|
|
7c304ab230 |
@@ -1,11 +1,13 @@
|
|||||||
preserve_hierarchy: true
|
preserve_hierarchy: true
|
||||||
files:
|
files:
|
||||||
- source: /osu.Game.Resources/Localisation/*.resx
|
- source: /osu.Game.Resources/Localisation/**/*.resx
|
||||||
translation: /osu.Game.Resources/Localisation/%file_name%.%locale%.%file_extension%
|
translation: /osu.Game.Resources/Localisation/**/%file_name%.%locale%.%file_extension%
|
||||||
ignore:
|
ignore:
|
||||||
# note that this should probably be using %locale% rather than a simple wildcard
|
# note that this should probably be using %locale% rather than a simple wildcard
|
||||||
# but it doesn't seem to respect our mapping below.
|
# but it doesn't seem to respect our mapping below.
|
||||||
- /osu.Game.Resources/Localisation/%file_name%.*.%file_extension%
|
- /osu.Game.Resources/Localisation/**/%file_name%.*.%file_extension%
|
||||||
|
# automatically pulled from Crowdin
|
||||||
|
- /osu.Game.Resources/Localisation/Web/**/*
|
||||||
update_option: update_as_unapproved
|
update_option: update_as_unapproved
|
||||||
languages_mapping:
|
languages_mapping:
|
||||||
locale:
|
locale:
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 81 KiB |
@@ -54,6 +54,6 @@ invB=0
|
|||||||
outlineThickness=0
|
outlineThickness=0
|
||||||
|
|
||||||
# selected chars
|
# selected chars
|
||||||
chars=32-126,338-339,376,8211-8212,8216-8218,8220-8222,8224-8226,8230,8240,8249-8250,8364,8722
|
chars=32-126,338-339,376,8211-8212,8216-8218,8220-8222,8224-8226,8230,8239-8240,8249-8250,8364,8722
|
||||||
|
|
||||||
# imported icon images
|
# imported icon images
|
||||||
|
|||||||
52
osu.Game.Resources/Fonts/Venera/venera-postprocess.py
Executable file
@@ -0,0 +1,52 @@
|
|||||||
|
#!/usr/bin/fontforge
|
||||||
|
|
||||||
|
# This is a python script leveraging fontforge.
|
||||||
|
# The purpose of this script is to process files for the Venera font in a way that fixes several issues
|
||||||
|
# with osu!'s usage of the font.
|
||||||
|
|
||||||
|
# This script implicitly assumes the folder structure:
|
||||||
|
# - The original font files should be in `./venera` relative to the script.
|
||||||
|
# - The modified font files will be output to `./venera-modified` relative to the script.
|
||||||
|
# The directory must exist beforehand.
|
||||||
|
|
||||||
|
import fontforge
|
||||||
|
import psMat
|
||||||
|
import os
|
||||||
|
|
||||||
|
for filename in os.listdir("venera"):
|
||||||
|
in_path = f"venera/{filename}"
|
||||||
|
|
||||||
|
if os.path.splitext(in_path)[1] != ".otf":
|
||||||
|
continue
|
||||||
|
|
||||||
|
print(f"Processing {in_path}...")
|
||||||
|
font = fontforge.open(in_path)
|
||||||
|
|
||||||
|
print("Getting backtick glyph...")
|
||||||
|
backtick = font[0x60]
|
||||||
|
|
||||||
|
(_, _, _, ymax) = backtick.boundingBox()
|
||||||
|
ascent = font.ascent
|
||||||
|
print(f"Backtick has ymax = {ymax}. Font ascent is {ascent}.")
|
||||||
|
if ymax > ascent:
|
||||||
|
difference = ymax - ascent
|
||||||
|
print(f"Moving glyph down by {difference} to fit.")
|
||||||
|
backtick.transform(psMat.translate(0, -difference))
|
||||||
|
|
||||||
|
if 0xA0 not in font:
|
||||||
|
print("U+00A0 NO-BREAK SPACE glyph is missing. Filling with U+0020 SPACE.")
|
||||||
|
font.selection.select(0x20)
|
||||||
|
font.copy()
|
||||||
|
font.selection.select(0xA0)
|
||||||
|
font.paste()
|
||||||
|
|
||||||
|
if 0x202F not in font:
|
||||||
|
print("U+202F NARROW NO-BREAK SPACE glyph is missing. Filling with U+0020 SPACE.")
|
||||||
|
font.selection.select(0x20)
|
||||||
|
font.copy()
|
||||||
|
font.selection.select(0x202F)
|
||||||
|
font.paste()
|
||||||
|
|
||||||
|
out_path = f"venera-modified/{filename}"
|
||||||
|
print(f"Saving to {out_path}...")
|
||||||
|
font.generate(out_path)
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.be.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Рэгістрацыя новага гульца</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Давай распачнем</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Давай створым уліковы запіс!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Дапамажыце, не магу ўвайсці ў мой уліковы запіс!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Разумею. Гэты ўліковы запіс ствараецца для кагосьці іншага.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Гэта будзе бачна іншым. Ніякай лаянкі, ніякага выдавання сябе за кагосьці іншага. Таксама пазбягайце раскрываць свае асабістыя дадзеныя!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Будзе выкарыстоўвацца для паведамленняў, праверкі ўліковага запісу і ў выпадку, калі вы забыліся пароль. Ніякага спаму, ніколі.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Пераканайцеся, што ўсё правільна!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.ca-ES.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registrar nou jugador</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Anem a començar</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Anem a crear un compte!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Ajuda, no puc accedir al meu compte!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Entenc. Aquest compte no és per a mi.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Aquesta serà la teva presència pública. Ni blasfemia, ni suplantació. Eviteu també exposar les teves dades personals!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>S'utilitzarà per a les notificacions, verificació de compte i en cas que oblidis la teva contrasenya. Sense correu brossa, mai.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Assegura't de fer-ho bé!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.cs.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registrace nového hráče</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Pusťme se do toho</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Pojďme vytvořit účet!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Pomoc, nemám přístup ke svému účtu!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Chápu. Tento účet není pro mě.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Tohle bude tvůj veřejný vzhled. Žádná sprostá slova, žádné vydávání se za někoho jiného. Vyhni se také odhalování svých osobních údajů!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Bude použita pro oznámení, ověření účtu a v případě, že zapomeneš svoje heslo. Žádný spam, nikdy.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value>Ujisti se, že je zadán správně!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.de.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Neuanmeldung</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Lass uns loslegen</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Einen Account erstellen!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Hilfe, ich kann nicht auf meinen Account zugreifen!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Ich bin einverstanden. Dieser Account ist nicht für mich.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Dies wird deine öffentliche Darstellung sein. Keine Schimpfwörter, keine Nachahmung. Vermeide es auch, deine persönlichen Daten preiszugeben!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Sie wird für Benachrichtigungen, Accountüberprüfungen und falls du dein Passwort vergessen hast, verwendet. Kein Spam, versprochen.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Achte darauf, dass sie richtig ist!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.el.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Εγγραφή νέου παίκτη</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Ας ξεκινήσουμε</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Ας δημιουργήσουμε ένα λογαριασμό!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Βοήθεια, δεν έχω πρόσβαση στον λογαριασμό μου!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Κατάλαβα. Ο λογαριασμός δεν είναι για εμένα.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Αυτό θα είναι η δημόσια παρουσία σας. Χωρίς βία, χωρίς μίμηση. Αποφύγετε να εκθέσετε τα προσωπικά σας στοιχεία, επίσης!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Θα χρησιμοποιηθεί για ειδοποιήσεις, επαλήθευση λογαριασμού και σε περίπτωση που ξεχάσεις τον κωδικό σου. Δεν έχει spam, καθόλου.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Σιγουρέψου ότι το έχεις σωστά!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.es.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registro de un nuevo usuario</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Vamos a empezar</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>¡Vamos a crear una cuenta!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>¡Ayuda, no puedo acceder a mi cuenta!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Entiendo. Esta cuenta no es para mí.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Esta será tu presencia pública. Sin blasfemias, sin suplantación. ¡Evita exponer tus propios datos personales también!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Se utilizará para notificaciones, verificación de cuenta y en el caso de que olvides tu contraseña. Sin correos basura, nunca.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> ¡Asegúrate de hacerlo bien!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.fa-IR.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>ثبت نام بازیکن جدید</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>بیاید شروع کنیم</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>بیاید یک حساب جدید بسازیم!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>کمک! نمی توانم به حسابم دسترسی پیدا کنم!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>متوجه هستم. این حساب مال من نیست.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>این حضور عمومی شماست. از بدگویی و ناسزا و جعل هویت بپرهیزید و اطلاعات شخصی را فاش نکنید!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>برای اعلانات، تایید هویت حساب و در صورت فراموشی رمز حساب برای کمک به بازیابی استفاده میشود. هیچ هرزنامه ای ارسال نخواهد شد. هیچوقت.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value>مطمئن باشید که درست است!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.fi.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Uuden pelaajan rekisteröinti</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Aloitetaan</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Luodaan tili!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Apua, en voi käyttää tiliäni!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Ymmärrän. Tämä tili ei ole minulle.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Tämä edustaa sinua julkisesti. Ei törkeyksiä, ei toisina henkilöinä esiintymistä. Vältä myös paljastamasta yksityisiä henkilötietojasi!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Käytetään ilmoituksia varten, tilin todentamiseen ja siinä tapauksessa, että unohdat salasanasi. Ei roskapostia, koskaan.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Varmista, että se on kirjoitettu oikein!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.fr.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Inscription d'un nouveau joueur</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Commençons</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Créons un compte !</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>À l'aide, je ne peux pas accéder à mon compte !</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Je comprends. Ce compte n'est pas pour moi.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Ce sera votre présence publique. Pas d'insultes, pas d'usurpation d'identité. Évitez aussi d'exposer vos informations personnelles !</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Sera utilisée pour les notifications, la vérification de compte et dans le cas où vous oubliez votre mot de passe. Aucun spam, jamais.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Assurez-vous qu'elle soit correcte !</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.hu.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Új játékos regisztráció</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Vágjunk bele</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Hozzuk létre fiókod!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Segítség, nem tudom elérni fiókomat!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Megértettem. Ez a fiók nem számomra van.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Ez lesz a nyilvános jelenléted. Semmi trágárság, vagy személyeskedés. Kerülje el saját személyes adatainak felfedését is!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Értesítésekre, fiókellenőrzésre és arra az esetre, ha elfelejtené jelszavát, használható. Soha semmi spam.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Ügyelj arra, hogy jót adtál meg!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.id.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Pendaftaran pemain baru</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Mari persiapkan dirimu</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Mari buat akun!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Tolong, saya tidak dapat mengakses akun saya!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Saya mengerti. Akun ini bukan untuk saya.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Nama ini akan menjadi identitas publikmu. Jangan gunakan nama yang tidak pantas atau yang menyerupai nama orang lain. Usahakan juga untuk tidak menyertakan rincian pribadimu!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Alamat ini akan digunakan untuk notifikasi, verifikasi akun, dan membuktikan identitasmu apabila kamu lupa kata sandi. Kami tidak akan pernah mengirimkan spam, selamanya.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Pastikan kamu mengisi semuanya dengan benar!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.it.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registrazione nuovo utente</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Diamo inizio alle danze</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Creiamo un account!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Aiuto, non riesco ad accedere al mio account!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Ne sono consapevole. Questo account non è per me.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Questa è la tua figura pubblica. Non si accettano blasfemia e impersonificazioni. Evitate anche di condividere dati personali!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Verrà utilizzato per notifiche, verifica dell'account e nel caso che dimentichi la password. Zero spam.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Assicurati di scriverla bene!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.ko.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>새로운 계정 만들기</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>시작해봐요</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>계정을 만들어볼까요!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>제 계정에 접근 할 수 없어요, 도와주세요!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>이해했어요, 지금 만들려는 계정은 제 게 아니에요.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>이건 당신의 공개적인 명칭이 될 거에요. 욕설이나 다른 누군가를 사칭하는 것은 안돼요. 당신의 개인 정보를 노출하는 것도 안된다는 거 기억해주세요!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>알림, 계정 확인 그리고 당신이 비밀번호를 잊어버렸을 때 쓰일 거에요. 절대로 불필요한 메일은 보내지 않을게요.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value>정확하게 적어주세요!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.nl.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registreren als nieuwe speler</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Laten we beginnen</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Laten we een account maken!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Help, ik heb geen toegang meer!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Begrepen. Dit account is voor iemand anders.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Deze naam wordt publiek weergegeven. Geen scheldwoorden, geen imitatie van anderen. Zorg er ook voor dat je geen persoonlijke gegevens prijsgeeft!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Deze wordt gebruikt voor meldingen, accountverificatie en om je wachtwoord te herstellen. Nooit voor spam.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Controleer of dit adres zeker klopt!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.no.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Ny brukerregistrering</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>La oss få deg i gang</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>La oss opprette en konto!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Hjelp, jeg får ikke tilgang til kontoen min!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Jeg forstår. Denne kontoen er ikke for meg.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Dette vil være din offentlige tilstedeværelse. Ingen banning, ingen etterligning. Unngå også å gi ut dine egne personlige opplysninger!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Vil bli brukt til varslinger, kontobekreftelse og hvis du glemmer passordet ditt. Ingen spam, aldri.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Sørg for at det blir rett!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.pl.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Rejestracja</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Rozpocznij swoją przygodę</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Utwórz konto</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Nie mam dostępu do swojego konta!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Rozumiem. To konto nie jest dla mnie.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>To będzie twoja obecność publiczna. Bez żadnych wulgaryzmów, bez podszywania się. Unikaj ujawniania własnych danych osobowych!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Będzie używany do powiadomień, weryfikacji konta oraz w przypadku, kiedy zapomnisz hasła. Nie do spamu, nigdy.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Upewnij się, że jest prawidłowy!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.pt-BR.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registro de novo jogador</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Vamos começar</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Vamos criar uma conta!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Me ajude, eu não consigo acessar minha conta!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Entendo. Essa conta não é para mim.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Esta será a sua presença pública. Sem profanidade, sem falsidade ideológica. Evite expor seus próprios dados pessoais também!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Será usado para notificações, verificação de conta e no caso de você esquecer sua senha. Sem spam, nunca.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Tenha a certeza de entender certo!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>New player registration</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Let's get you started</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Let's create an account!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Help, I can't access my account!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>I understand. This account isn't for me.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>This will be your public presence. No profanity, no impersonation. Avoid exposing your own personal details, too!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Will be used for notifications, account verification and in the case you forget your password. No spam, ever.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Make sure to get it right!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.ro.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Înregistrare utilizator nou</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Să începem</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Să creăm un cont!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Ajutor, nu îmi pot accesa contul!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Înțeleg. Acest cont nu este pentru mine.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Aceasta va fi prezența ta publică. Fără obscenități, fără impersonare. Evită să îți expui și datele personale!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Va fi folosit pentru notificări, verificarea contului și în cazul în care uitați parola. Fără spam, niciodată.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Asigură-te că este corect!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.ru.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Регистрация нового игрока</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Давайте начнём</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Создадим аккаунт!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Помогите, я потерял доступ к своему аккаунту!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Я понимаю. Этот аккаунт не для меня.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Это Ваше публичное лицо. Без ругательств и самозванства. Также избегайте разглашения персональных данных!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Будет использоваться для уведомлений, проверки аккаунта и в случае, если вы забудете пароль. Никакого спама, никогда.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value>Убедитесь, что почта указана правильно!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.sr-SP.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Регистрација новог играча</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Хајде да почнемо</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Хајде да направимо налог!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Помозите, не могу да приступим свом налогу!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Разумем. Овај налог није за мене.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Ово ће бити ваше јавно присуство. Без вулгарности, без лажног представљања. Избегавајте откривањем својих личних података!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Користиће се за обавештења, верификацију налога и у случају да заборавите лозинку. Без нежељене поште, никада.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Побрините се да то урадите како треба!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.sv.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Registrera ny användare</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Låt oss komma igång</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Låt oss skapa ett nytt konto!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Hjälp, jag kan inte komma åt mitt konto!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Jag förstår. Detta kontot är inte till mig.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Detta kommer att vara din offentliga förekomst. Inga svordomar, ingen efterbildning. Undvik att avslöja egna personuppgifter också!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Kommer att användas för notiser, kontoverifiering och i fall att du glömmer bort ditt lösenord. Ingen skräppost, någonsin.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Se till att få det rätt!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.th.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>การลงทะเบียนผู้เล่นใหม่</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>มาเริ่มต้นกันเลย</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>มาเริ่มสร้างบัญชีของคุณกัน</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>ช่วยด้วย, ฉันไม่สามารถเข้าถึงบัญชีของฉันได้!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>ฉันรับทราบ นี่ไม่ใช่บัญชีของฉัน</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>นี่จะเป็นการปรากฏตัวต่อสาธารณะของคุณ ไม่มีคำหยาบคายไม่มีการแอบอ้าง หลีกเลี่ยงการเปิดเผยข้อมูลส่วนตัวของคุณเองด้วย!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>จะใช้สำหรับการแจ้งเตือน การยืนยันบัญชี และในกรณีที่คุณลืมรหัสผ่าน ไม่มีสแปมเช่นเคย</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> ตรวจสอบให้แน่ใจว่าถูกต้อง!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.uk.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Реєстрація нового гравця</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Розпочнімо</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Створимо обліковий запис!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Допоможіть, я не маю доступу до свого облікового запису!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Я розумію. Цей обліковий запис не для мене.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Це й буде вашою публічною присутністю. Без ненормативної лексики або прикидання іншою особою. Також, уникайте витоку ваших особистих даних!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Буде використаний для сповіщень, верифікації облікового запису в випадку того якщо ви забудете пароль. Без спаму, взагалі.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value>Переконайтесь що він правильний!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.vi.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>Đăng ký người chơi mới</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>Hãy cùng bắt đầu nào</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>Cùng tạo tài khoản nào!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>Giúp với, tôi không thể truy cập vào tài khoản của mình!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>Tôi hiểu rồi. Tài khoản này không phải dành cho tôi.</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>Đây sẽ là tên công khai của bạn. Không chứa từ ngữ tục tĩu và mạo danh người khác. Và cũng tránh làm lộ thông tin cá nhân của bạn nữa!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>Sẽ được sử dụng để thông báo, xác nhận tài khoản và trong trường hợp bạn quên mật khẩu. Không bao giờ có thư rác.</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> Hãy chắc chắn là bạn nhập đúng nhé!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.zh-Hant.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>新玩家註冊</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>讓我們開始吧!</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>讓我們來建立一個全新的帳號!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>幫幫我,我沒辦法存取我的帳號!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>我了解,這個帳號不是我的</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>這將會是您未來在 osu! 的公開身分。請不要冒犯、假扮他人,亦不要透漏您的任何個人資料!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>將用於作為通知、帳號驗證,或當您忘記密碼時作為協助您恢復帳號的媒介。在其他狀況下我們不會打擾您。</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value>請務必填寫正確的電子郵件!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
85
osu.Game.Resources/Localisation/AccountCreation.zh.resx
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
|
<value>新玩家注册</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
|
<value>让我们开始吧</value>
|
||||||
|
</data>
|
||||||
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
|
<value>让我们创建一个账号!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
|
<value>帮帮我,我不能访问我的账号!</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
|
<value>我了解,这个账号不是给我的。</value>
|
||||||
|
</data>
|
||||||
|
<data name="username_description" xml:space="preserve">
|
||||||
|
<value>这将成为你的公开身份。不要冒犯、假扮他人,也不要暴露自己的个人信息!</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_1" xml:space="preserve">
|
||||||
|
<value>将用于通知、帐号验证,或是帮助您忘记密码时重设密码。其他情况下我们不会打扰您。</value>
|
||||||
|
</data>
|
||||||
|
<data name="email_description_2" xml:space="preserve">
|
||||||
|
<value> 确保它准确无误!</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
<value>Dispositivo de salida</value>
|
<value>Dispositivo de salida</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
||||||
<value>Separación estéreo de efectos de sonido</value>
|
<value>Separación estéreo de hitsounds</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="master_volume" xml:space="preserve">
|
<data name="master_volume" xml:space="preserve">
|
||||||
<value>General</value>
|
<value>General</value>
|
||||||
|
|||||||
97
osu.Game.Resources/Localisation/AudioSettings.tg-TJ.resx
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="audio_section_header" xml:space="preserve">
|
||||||
|
<value>Аудио</value>
|
||||||
|
</data>
|
||||||
|
<data name="audio_devices_header" xml:space="preserve">
|
||||||
|
<value>Дастегоҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="volume_header" xml:space="preserve">
|
||||||
|
<value>Дараҷе аудио</value>
|
||||||
|
</data>
|
||||||
|
<data name="output_device" xml:space="preserve">
|
||||||
|
<value>Дастегоҳе хуруҷи аудио</value>
|
||||||
|
</data>
|
||||||
|
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
||||||
|
<value>Ҷудо кардан хитсаунд дар танзим стерео</value>
|
||||||
|
</data>
|
||||||
|
<data name="master_volume" xml:space="preserve">
|
||||||
|
<value>Устод</value>
|
||||||
|
</data>
|
||||||
|
<data name="master_volume_inactive" xml:space="preserve">
|
||||||
|
<value>Устод (бирун панҷере)</value>
|
||||||
|
</data>
|
||||||
|
<data name="effect_volume" xml:space="preserve">
|
||||||
|
<value>Таъсир</value>
|
||||||
|
</data>
|
||||||
|
<data name="music_volume" xml:space="preserve">
|
||||||
|
<value>Мусеғи</value>
|
||||||
|
</data>
|
||||||
|
<data name="offset_header" xml:space="preserve">
|
||||||
|
<value>Танзиме офсет</value>
|
||||||
|
</data>
|
||||||
|
<data name="audio_offset" xml:space="preserve">
|
||||||
|
<value>Офсете аудио</value>
|
||||||
|
</data>
|
||||||
|
<data name="offset_wizard" xml:space="preserve">
|
||||||
|
<value>Кумаке офсет</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
<value>Пристрій відтворення</value>
|
<value>Пристрій відтворення</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
||||||
<value>Стерео ефекти</value>
|
<value>Стерео розділення ефектів</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="master_volume" xml:space="preserve">
|
<data name="master_volume" xml:space="preserve">
|
||||||
<value>Загальна</value>
|
<value>Загальна</value>
|
||||||
|
|||||||
79
osu.Game.Resources/Localisation/BeatmapOffsetControl.el.resx
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
|
<value>Μετατόπιση beatmap</value>
|
||||||
|
</data>
|
||||||
|
<data name="previous_play" xml:space="preserve">
|
||||||
|
<value>Προηγούμενο παιχνίδι:</value>
|
||||||
|
</data>
|
||||||
|
<data name="previous_play_too_short_to_use_for_calibration" xml:space="preserve">
|
||||||
|
<value>Το προηγούμενο παιχνίδι ήταν πολύ σύντομο για να χρησιμοποιηθεί για βαθμονόμηση</value>
|
||||||
|
</data>
|
||||||
|
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||||
|
<value>Βαθμονόμησε χρησιμοποιώντας το προηγούμενο παιχνίδι</value>
|
||||||
|
</data>
|
||||||
|
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||||
|
<value>(τα αντικείμενα χτυπήματος εμφανίζονται αργότερα)</value>
|
||||||
|
</data>
|
||||||
|
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
||||||
|
<value>(τα αντικείμενα χτύπημα εμφανίζονται νωρίτερα)</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
<value>Edellinen yritys liian lyhyt käytettäväksi kalibrointiin</value>
|
<value>Edellinen yritys liian lyhyt käytettäväksi kalibrointiin</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="calibrate_using_last_play" xml:space="preserve">
|
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||||
<value>Kalibroi käyttämällä viime yritystä</value>
|
<value>Kalibroi käyttäen viime yritystä</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="hit_objects_appear_later" xml:space="preserve">
|
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||||
<value>(osumakohteet ilmestyvät myöhemmin)</value>
|
<value>(osumakohteet ilmestyvät myöhemmin)</value>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="beatmap_offset" xml:space="preserve">
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
<value>Bitmapo poslinkis</value>
|
<value>Beatmap'o poslinkis</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="previous_play" xml:space="preserve">
|
<data name="previous_play" xml:space="preserve">
|
||||||
<value>Praeitas sužaidimas:</value>
|
<value>Praeitas sužaidimas:</value>
|
||||||
|
|||||||
79
osu.Game.Resources/Localisation/BeatmapOffsetControl.pt.resx
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
|
<value>Desvio do beatmap</value>
|
||||||
|
</data>
|
||||||
|
<data name="previous_play" xml:space="preserve">
|
||||||
|
<value>Jogada anterior:</value>
|
||||||
|
</data>
|
||||||
|
<data name="previous_play_too_short_to_use_for_calibration" xml:space="preserve">
|
||||||
|
<value>A jogada anterior foi demasiado curta para calibrar</value>
|
||||||
|
</data>
|
||||||
|
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||||
|
<value>Calibrar a utilizar a última jogada</value>
|
||||||
|
</data>
|
||||||
|
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||||
|
<value>(os objetos aparecerão mais tarde)</value>
|
||||||
|
</data>
|
||||||
|
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
||||||
|
<value>(os objetos aparecerão mais cedo)</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
|
<value>Офсет битмап</value>
|
||||||
|
</data>
|
||||||
|
<data name="previous_play" xml:space="preserve">
|
||||||
|
<value>Бозӣ қабли:</value>
|
||||||
|
</data>
|
||||||
|
<data name="previous_play_too_short_to_use_for_calibration" xml:space="preserve">
|
||||||
|
<value>Бозӣ қабли хейли кутоҳ будеш барое естефоде кардан колибре</value>
|
||||||
|
</data>
|
||||||
|
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||||
|
<value>Колибре бо естефоде кардан бозӣ қабл</value>
|
||||||
|
</data>
|
||||||
|
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||||
|
<value>(объектҳо дертар пайдо мешаванд)</value>
|
||||||
|
</data>
|
||||||
|
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
||||||
|
<value>(объектҳо зудтар пайдо мешаванд)</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="beatmap_offset" xml:space="preserve">
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
<value>บีตแม็ปออฟเซ็ต</value>
|
<value>ออฟเซ็ตบีทแมพ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="previous_play" xml:space="preserve">
|
<data name="previous_play" xml:space="preserve">
|
||||||
<value>การเล่นครั้งก่อนหน้า:</value>
|
<value>การเล่นครั้งก่อนหน้า:</value>
|
||||||
|
|||||||
@@ -62,9 +62,9 @@
|
|||||||
<value>Descargo de responsabilidad del contenido del usuario</value>
|
<value>Descargo de responsabilidad del contenido del usuario</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||||
<value>Al desactivar el filtro de "Artista Destacado", se mostrará todo el contenido subido por los usuarios.
|
<value>Al desactivar el filtro de «Artista destacado», se mostrará todo el contenido subido por los usuarios.
|
||||||
|
|
||||||
Esto incluye contenido que puede no estar licenciado correctamente para su uso en osu!. Navegue bajo su propio riesgo.</value>
|
Esto incluye contenido que puede no estar licenciado correctamente para su uso en osu!. Navega bajo tu propio riesgo.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Entiendo</value>
|
<value>Entiendo</value>
|
||||||
|
|||||||
@@ -64,7 +64,7 @@
|
|||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||||
<value>Kun "Suositellut esittäjät" -suodatin poistetaan käytöstä, näytetään kaikki käyttäjien lähettämä sisältö.
|
<value>Kun "Suositellut esittäjät" -suodatin poistetaan käytöstä, näytetään kaikki käyttäjien lähettämä sisältö.
|
||||||
|
|
||||||
Osassa tästä voi olla sisältöä, jota ei ole lisensoitu osu!:ssa käytettäväksi. Selaa omalla vastuullasi.</value>
|
Osassa tästä voi olla sisältöä, jota ei ole lisensoitu osu!ssa käytettäväksi. Selaa omalla vastuullasi.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Ymmärrän</value>
|
<value>Ymmärrän</value>
|
||||||
|
|||||||
70
osu.Game.Resources/Localisation/BindingSettings.sk.resx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="shortcut_and_gameplay_bindings" xml:space="preserve">
|
||||||
|
<value>Skratka a herné klávesy</value>
|
||||||
|
</data>
|
||||||
|
<data name="configure" xml:space="preserve">
|
||||||
|
<value>Nastaviť</value>
|
||||||
|
</data>
|
||||||
|
<data name="change_bindings_button" xml:space="preserve">
|
||||||
|
<value>zmeniť globálne skratky a herné klávesy</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
70
osu.Game.Resources/Localisation/BindingSettings.tg-TJ.resx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="shortcut_and_gameplay_bindings" xml:space="preserve">
|
||||||
|
<value>Пайвастоҳои бозӣ</value>
|
||||||
|
</data>
|
||||||
|
<data name="configure" xml:space="preserve">
|
||||||
|
<value>Танзим кунед</value>
|
||||||
|
</data>
|
||||||
|
<data name="change_bindings_button" xml:space="preserve">
|
||||||
|
<value>аваз кардан тугмаҳои миёнабур ва танзим бозӣ</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
88
osu.Game.Resources/Localisation/ButtonSystem.el.resx
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="solo" xml:space="preserve">
|
||||||
|
<value>μονό</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi" xml:space="preserve">
|
||||||
|
<value>κοινό</value>
|
||||||
|
</data>
|
||||||
|
<data name="playlists" xml:space="preserve">
|
||||||
|
<value>λίστες αναπαραγωγής</value>
|
||||||
|
</data>
|
||||||
|
<data name="play" xml:space="preserve">
|
||||||
|
<value>αναπαραγωγή</value>
|
||||||
|
</data>
|
||||||
|
<data name="edit" xml:space="preserve">
|
||||||
|
<value>επεξεργασία</value>
|
||||||
|
</data>
|
||||||
|
<data name="browse" xml:space="preserve">
|
||||||
|
<value>περιήγηση</value>
|
||||||
|
</data>
|
||||||
|
<data name="settings" xml:space="preserve">
|
||||||
|
<value>ρυθμίσεις</value>
|
||||||
|
</data>
|
||||||
|
<data name="back" xml:space="preserve">
|
||||||
|
<value>πίσω</value>
|
||||||
|
</data>
|
||||||
|
<data name="exit" xml:space="preserve">
|
||||||
|
<value>έξοδος</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
88
osu.Game.Resources/Localisation/ButtonSystem.sk.resx
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="solo" xml:space="preserve">
|
||||||
|
<value>sólo</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi" xml:space="preserve">
|
||||||
|
<value>multi</value>
|
||||||
|
</data>
|
||||||
|
<data name="playlists" xml:space="preserve">
|
||||||
|
<value>playlisty</value>
|
||||||
|
</data>
|
||||||
|
<data name="play" xml:space="preserve">
|
||||||
|
<value>hrať</value>
|
||||||
|
</data>
|
||||||
|
<data name="edit" xml:space="preserve">
|
||||||
|
<value>upraviť</value>
|
||||||
|
</data>
|
||||||
|
<data name="browse" xml:space="preserve">
|
||||||
|
<value>prehliadať</value>
|
||||||
|
</data>
|
||||||
|
<data name="settings" xml:space="preserve">
|
||||||
|
<value>nastavenia</value>
|
||||||
|
</data>
|
||||||
|
<data name="back" xml:space="preserve">
|
||||||
|
<value>späť</value>
|
||||||
|
</data>
|
||||||
|
<data name="exit" xml:space="preserve">
|
||||||
|
<value>odísť</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
88
osu.Game.Resources/Localisation/ButtonSystem.tg-TJ.resx
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="solo" xml:space="preserve">
|
||||||
|
<value>муҷаррад</value>
|
||||||
|
</data>
|
||||||
|
<data name="multi" xml:space="preserve">
|
||||||
|
<value>боҳам диге</value>
|
||||||
|
</data>
|
||||||
|
<data name="playlists" xml:space="preserve">
|
||||||
|
<value>листҳое навозиш</value>
|
||||||
|
</data>
|
||||||
|
<data name="play" xml:space="preserve">
|
||||||
|
<value>бозӣ</value>
|
||||||
|
</data>
|
||||||
|
<data name="edit" xml:space="preserve">
|
||||||
|
<value>таҳрир</value>
|
||||||
|
</data>
|
||||||
|
<data name="browse" xml:space="preserve">
|
||||||
|
<value>ҷустуҷӯ</value>
|
||||||
|
</data>
|
||||||
|
<data name="settings" xml:space="preserve">
|
||||||
|
<value>танзимҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="back" xml:space="preserve">
|
||||||
|
<value>баргард</value>
|
||||||
|
</data>
|
||||||
|
<data name="exit" xml:space="preserve">
|
||||||
|
<value>хореҷ</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -64,4 +64,7 @@
|
|||||||
<data name="header_description" xml:space="preserve">
|
<data name="header_description" xml:space="preserve">
|
||||||
<value>μπείτε στη συζήτηση σε πραγματικό χρόνο</value>
|
<value>μπείτε στη συζήτηση σε πραγματικό χρόνο</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="mention_user" xml:space="preserve">
|
||||||
|
<value>Αναφορά</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
70
osu.Game.Resources/Localisation/Chat.sk.resx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="header_title" xml:space="preserve">
|
||||||
|
<value>chat</value>
|
||||||
|
</data>
|
||||||
|
<data name="header_description" xml:space="preserve">
|
||||||
|
<value>pripoj sa do diskusie</value>
|
||||||
|
</data>
|
||||||
|
<data name="mention_user" xml:space="preserve">
|
||||||
|
<value>Spomenúť</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
70
osu.Game.Resources/Localisation/Chat.tg-TJ.resx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="header_title" xml:space="preserve">
|
||||||
|
<value>чат</value>
|
||||||
|
</data>
|
||||||
|
<data name="header_description" xml:space="preserve">
|
||||||
|
<value>чати зинда ҳамроҳ шавед</value>
|
||||||
|
</data>
|
||||||
|
<data name="mention_user" xml:space="preserve">
|
||||||
|
<value>Ишора</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Па змаўчанні</value>
|
<value>Па змаўчанні</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Экспартаваць</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Шырыня</value>
|
<value>Шырыня</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Выйсці</value>
|
<value>Выйсці</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps Lock уключаны</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Збросіць па змаўчанні</value>
|
<value>Збросіць па змаўчанні</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>По подразбиране</value>
|
<value>По подразбиране</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Експорт</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Ширина</value>
|
<value>Ширина</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Изход</value>
|
<value>Изход</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock е включен</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Връщане към подразбиране</value>
|
<value>Връщане към подразбиране</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Per defecte</value>
|
<value>Per defecte</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportar</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Amplada</value>
|
<value>Amplada</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,10 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Sortir</value>
|
<value>Sortir</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>
|
||||||
|
Bloq Mayús està activat</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Tornar a les opcions per defecte</value>
|
<value>Tornar a les opcions per defecte</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Výchozí</value>
|
<value>Výchozí</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportovat</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Šířka</value>
|
<value>Šířka</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Ukončit</value>
|
<value>Ukončit</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock je aktivní</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Nastavit výchozí</value>
|
<value>Nastavit výchozí</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Standard</value>
|
<value>Standard</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportieren</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Breite</value>
|
<value>Breite</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Beenden</value>
|
<value>Beenden</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Feststelltaste ist aktiviert</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Auf Standard zurücksetzen</value>
|
<value>Auf Standard zurücksetzen</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
157
osu.Game.Resources/Localisation/Common.el.resx
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="back" xml:space="preserve">
|
||||||
|
<value>Πίσω</value>
|
||||||
|
</data>
|
||||||
|
<data name="next" xml:space="preserve">
|
||||||
|
<value>Επόμενο</value>
|
||||||
|
</data>
|
||||||
|
<data name="finish" xml:space="preserve">
|
||||||
|
<value>Τέλος</value>
|
||||||
|
</data>
|
||||||
|
<data name="enabled" xml:space="preserve">
|
||||||
|
<value>Ενεργοποιημένο</value>
|
||||||
|
</data>
|
||||||
|
<data name="disabled" xml:space="preserve">
|
||||||
|
<value>Απενεργοποιημένο</value>
|
||||||
|
</data>
|
||||||
|
<data name="default" xml:space="preserve">
|
||||||
|
<value>Προεπιλογή</value>
|
||||||
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Εξαγωγή</value>
|
||||||
|
</data>
|
||||||
|
<data name="width" xml:space="preserve">
|
||||||
|
<value>Πλάτος</value>
|
||||||
|
</data>
|
||||||
|
<data name="height" xml:space="preserve">
|
||||||
|
<value>Ύψος</value>
|
||||||
|
</data>
|
||||||
|
<data name="downloading" xml:space="preserve">
|
||||||
|
<value>Λήψη...</value>
|
||||||
|
</data>
|
||||||
|
<data name="importing" xml:space="preserve">
|
||||||
|
<value>Εισαγωγή...</value>
|
||||||
|
</data>
|
||||||
|
<data name="deselect_all" xml:space="preserve">
|
||||||
|
<value>Αποεπιλογή Όλων</value>
|
||||||
|
</data>
|
||||||
|
<data name="select_all" xml:space="preserve">
|
||||||
|
<value>Επιλογή Όλων</value>
|
||||||
|
</data>
|
||||||
|
<data name="beatmaps" xml:space="preserve">
|
||||||
|
<value>Beatmaps</value>
|
||||||
|
</data>
|
||||||
|
<data name="scores" xml:space="preserve">
|
||||||
|
<value>Βαθμολογίες</value>
|
||||||
|
</data>
|
||||||
|
<data name="skins" xml:space="preserve">
|
||||||
|
<value>Skins</value>
|
||||||
|
</data>
|
||||||
|
<data name="collections" xml:space="preserve">
|
||||||
|
<value>Συλλογές</value>
|
||||||
|
</data>
|
||||||
|
<data name="mod_presets" xml:space="preserve">
|
||||||
|
<value>Mod presets</value>
|
||||||
|
</data>
|
||||||
|
<data name="name" xml:space="preserve">
|
||||||
|
<value>Όνομα</value>
|
||||||
|
</data>
|
||||||
|
<data name="description" xml:space="preserve">
|
||||||
|
<value>Περιγραφή</value>
|
||||||
|
</data>
|
||||||
|
<data name="menu_bar_file" xml:space="preserve">
|
||||||
|
<value>Αρχείο</value>
|
||||||
|
</data>
|
||||||
|
<data name="menu_bar_edit" xml:space="preserve">
|
||||||
|
<value>Επεξεργασία</value>
|
||||||
|
</data>
|
||||||
|
<data name="menu_bar_view" xml:space="preserve">
|
||||||
|
<value>Προβολή</value>
|
||||||
|
</data>
|
||||||
|
<data name="undo" xml:space="preserve">
|
||||||
|
<value>Αναίρεση</value>
|
||||||
|
</data>
|
||||||
|
<data name="redo" xml:space="preserve">
|
||||||
|
<value>Επαναφορά</value>
|
||||||
|
</data>
|
||||||
|
<data name="cut" xml:space="preserve">
|
||||||
|
<value>Αποκοπή</value>
|
||||||
|
</data>
|
||||||
|
<data name="copy" xml:space="preserve">
|
||||||
|
<value>Αντιγραφή</value>
|
||||||
|
</data>
|
||||||
|
<data name="paste" xml:space="preserve">
|
||||||
|
<value>Επικόλληση</value>
|
||||||
|
</data>
|
||||||
|
<data name="clone" xml:space="preserve">
|
||||||
|
<value>Κλωνοποίηση</value>
|
||||||
|
</data>
|
||||||
|
<data name="exit" xml:space="preserve">
|
||||||
|
<value>Έξοδος</value>
|
||||||
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Το Caps lock είναι ενεργό</value>
|
||||||
|
</data>
|
||||||
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
|
<value>Επαναφορά στην προεπιλογή</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Predeterminado</value>
|
<value>Predeterminado</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportar</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Ancho</value>
|
<value>Ancho</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,10 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Salir</value>
|
<value>Salir</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>
|
||||||
|
Bloq Mayús está activado</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Volver a la opción por defecto</value>
|
<value>Volver a la opción por defecto</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -145,6 +145,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>خروج</value>
|
<value>خروج</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>کپس لاک شما روشن است</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>بازگشت به پیشفرض</value>
|
<value>بازگشت به پیشفرض</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Oletus</value>
|
<value>Oletus</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Vie</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Leveys</value>
|
<value>Leveys</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -101,7 +104,7 @@
|
|||||||
<value>Tulokset</value>
|
<value>Tulokset</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="skins" xml:space="preserve">
|
<data name="skins" xml:space="preserve">
|
||||||
<value>Skinit</value>
|
<value>Ulkoasut</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="collections" xml:space="preserve">
|
<data name="collections" xml:space="preserve">
|
||||||
<value>Kokoelmat</value>
|
<value>Kokoelmat</value>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Poistu</value>
|
<value>Poistu</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock on käytössä</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Palauta oletukseen</value>
|
<value>Palauta oletukseen</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Par défaut</value>
|
<value>Par défaut</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exporter</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Largeur</value>
|
<value>Largeur</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Quitter</value>
|
<value>Quitter</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Le verrouillage des majuscules est actif</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Rétablir par défaut</value>
|
<value>Rétablir par défaut</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Alapértelmezett</value>
|
<value>Alapértelmezett</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportálás</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Szélesség</value>
|
<value>Szélesség</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Kilépés</value>
|
<value>Kilépés</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock be van kapcsolva</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Visszatérés az alapértelmezett állapotba</value>
|
<value>Visszatérés az alapértelmezett állapotba</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Default</value>
|
<value>Default</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Ekspor</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Lebar</value>
|
<value>Lebar</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Keluar</value>
|
<value>Keluar</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock sedang aktif</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Kembalikan ke default</value>
|
<value>Kembalikan ke default</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Predefinito</value>
|
<value>Predefinito</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Esporta</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Larghezza</value>
|
<value>Larghezza</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Esci</value>
|
<value>Esci</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Blocco maiuscole attivo</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Ripristina le impostazioni predefinite</value>
|
<value>Ripristina le impostazioni predefinite</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>기본값</value>
|
<value>기본값</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>내보내기</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>가로</value>
|
<value>가로</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>종료하기</value>
|
<value>종료하기</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps Lock이 활성화됨</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>기본값으로 되돌리기</value>
|
<value>기본값으로 되돌리기</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Numatytasis</value>
|
<value>Numatytasis</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Eksportuoti</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Plotis</value>
|
<value>Plotis</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -95,7 +98,7 @@
|
|||||||
<value>Pažymėti visus</value>
|
<value>Pažymėti visus</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="beatmaps" xml:space="preserve">
|
<data name="beatmaps" xml:space="preserve">
|
||||||
<value>Bitmapai</value>
|
<value>Beatmap'ai</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="scores" xml:space="preserve">
|
<data name="scores" xml:space="preserve">
|
||||||
<value>Taškai</value>
|
<value>Taškai</value>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Išeiti</value>
|
<value>Išeiti</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>“Caps lock“ Įjungtas</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Atstatyti numatytasias reikšmes</value>
|
<value>Atstatyti numatytasias reikšmes</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -145,6 +145,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Iziet</value>
|
<value>Iziet</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock ir aktīvs</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Atgriezt uz noklusējumu</value>
|
<value>Atgriezt uz noklusējumu</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Standaard</value>
|
<value>Standaard</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exporteren</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Breedte</value>
|
<value>Breedte</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Sluiten</value>
|
<value>Sluiten</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock staat aan</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Standaardinstellingen herstellen</value>
|
<value>Standaardinstellingen herstellen</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Domyślne</value>
|
<value>Domyślne</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Eksportuj</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Szerokość</value>
|
<value>Szerokość</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Wyjdź</value>
|
<value>Wyjdź</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Klawisz Caps Lock jest włączony</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Przywróć ustawienia domyślne</value>
|
<value>Przywróć ustawienia domyślne</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Padrão</value>
|
<value>Padrão</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportar</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Largura</value>
|
<value>Largura</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Sair</value>
|
<value>Sair</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock está ativo</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Reverter para padrão</value>
|
<value>Reverter para padrão</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Default</value>
|
<value>Default</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Export</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Width</value>
|
<value>Width</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Exit</value>
|
<value>Exit</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock is active</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Revert to default</value>
|
<value>Revert to default</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Implicit</value>
|
<value>Implicit</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportă</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Lățime</value>
|
<value>Lățime</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Ieșire</value>
|
<value>Ieșire</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock este activ</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Reveniți la valorile implicite</value>
|
<value>Reveniți la valorile implicite</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>По умолчанию</value>
|
<value>По умолчанию</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Экспортировать</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Ширина</value>
|
<value>Ширина</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Выйти</value>
|
<value>Выйти</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>нажат Caps Lock</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Сбросить</value>
|
<value>Сбросить</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Standard</value>
|
<value>Standard</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Exportera</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Bredd</value>
|
<value>Bredd</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Avsluta</value>
|
<value>Avsluta</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock är aktiv</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Återställ till standard</value>
|
<value>Återställ till standard</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
154
osu.Game.Resources/Localisation/Common.tg-TJ.resx
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="back" xml:space="preserve">
|
||||||
|
<value>Баргард</value>
|
||||||
|
</data>
|
||||||
|
<data name="next" xml:space="preserve">
|
||||||
|
<value>Баъди</value>
|
||||||
|
</data>
|
||||||
|
<data name="finish" xml:space="preserve">
|
||||||
|
<value>Тамом</value>
|
||||||
|
</data>
|
||||||
|
<data name="enabled" xml:space="preserve">
|
||||||
|
<value>Фаъол</value>
|
||||||
|
</data>
|
||||||
|
<data name="disabled" xml:space="preserve">
|
||||||
|
<value>Ғайрифаъол</value>
|
||||||
|
</data>
|
||||||
|
<data name="default" xml:space="preserve">
|
||||||
|
<value>Пешфарз</value>
|
||||||
|
</data>
|
||||||
|
<data name="width" xml:space="preserve">
|
||||||
|
<value>Васеъ</value>
|
||||||
|
</data>
|
||||||
|
<data name="height" xml:space="preserve">
|
||||||
|
<value>Баландӣ</value>
|
||||||
|
</data>
|
||||||
|
<data name="downloading" xml:space="preserve">
|
||||||
|
<value>Доре даӯнлуд мешавад...</value>
|
||||||
|
</data>
|
||||||
|
<data name="importing" xml:space="preserve">
|
||||||
|
<value>Доре воред мешавад...</value>
|
||||||
|
</data>
|
||||||
|
<data name="deselect_all" xml:space="preserve">
|
||||||
|
<value>Бардоштан интихоб ҳаме</value>
|
||||||
|
</data>
|
||||||
|
<data name="select_all" xml:space="preserve">
|
||||||
|
<value>Интихоб ҳаме</value>
|
||||||
|
</data>
|
||||||
|
<data name="beatmaps" xml:space="preserve">
|
||||||
|
<value>Битмапҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="scores" xml:space="preserve">
|
||||||
|
<value>Натиҷаҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="skins" xml:space="preserve">
|
||||||
|
<value>Скинҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="collections" xml:space="preserve">
|
||||||
|
<value>Маҷмӯаҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="mod_presets" xml:space="preserve">
|
||||||
|
<value>Интихоби пешакӣ модҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="name" xml:space="preserve">
|
||||||
|
<value>Ном</value>
|
||||||
|
</data>
|
||||||
|
<data name="description" xml:space="preserve">
|
||||||
|
<value>Тавсиф</value>
|
||||||
|
</data>
|
||||||
|
<data name="menu_bar_file" xml:space="preserve">
|
||||||
|
<value>Файл</value>
|
||||||
|
</data>
|
||||||
|
<data name="menu_bar_edit" xml:space="preserve">
|
||||||
|
<value>Вироиш</value>
|
||||||
|
</data>
|
||||||
|
<data name="menu_bar_view" xml:space="preserve">
|
||||||
|
<value>Ҷустуҷӯ</value>
|
||||||
|
</data>
|
||||||
|
<data name="undo" xml:space="preserve">
|
||||||
|
<value>Лағв</value>
|
||||||
|
</data>
|
||||||
|
<data name="redo" xml:space="preserve">
|
||||||
|
<value>Аз нав</value>
|
||||||
|
</data>
|
||||||
|
<data name="cut" xml:space="preserve">
|
||||||
|
<value>Буридан</value>
|
||||||
|
</data>
|
||||||
|
<data name="copy" xml:space="preserve">
|
||||||
|
<value>Нусха</value>
|
||||||
|
</data>
|
||||||
|
<data name="paste" xml:space="preserve">
|
||||||
|
<value>Часбондан</value>
|
||||||
|
</data>
|
||||||
|
<data name="clone" xml:space="preserve">
|
||||||
|
<value>Шабиеҳ сози</value>
|
||||||
|
</data>
|
||||||
|
<data name="exit" xml:space="preserve">
|
||||||
|
<value>Хореҷ</value>
|
||||||
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Қуфле копитол рушан ҳастеш</value>
|
||||||
|
</data>
|
||||||
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
|
<value>Баргаштан бе пешфарз</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>ค่าเริ่มต้น</value>
|
<value>ค่าเริ่มต้น</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>ส่งออก</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>ความกว้าง</value>
|
<value>ความกว้าง</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -95,7 +98,7 @@
|
|||||||
<value>เลือกทั้งหมด</value>
|
<value>เลือกทั้งหมด</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="beatmaps" xml:space="preserve">
|
<data name="beatmaps" xml:space="preserve">
|
||||||
<value>บีตแม็ป</value>
|
<value>บีทแมพ</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="scores" xml:space="preserve">
|
<data name="scores" xml:space="preserve">
|
||||||
<value>คะแนน</value>
|
<value>คะแนน</value>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>ออก</value>
|
<value>ออก</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock ทำงานอยู่</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>เปลี่ยนกลับเป็นค่าเริ่มต้น</value>
|
<value>เปลี่ยนกลับเป็นค่าเริ่มต้น</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Varsayılan</value>
|
<value>Varsayılan</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Dışa aktar</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Genişlik</value>
|
<value>Genişlik</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Çık</value>
|
<value>Çık</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock açık</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Varsayılana döndür</value>
|
<value>Varsayılana döndür</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>За замовчуванням</value>
|
<value>За замовчуванням</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Експорт</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Ширина</value>
|
<value>Ширина</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -107,7 +110,7 @@
|
|||||||
<value>Колекції</value>
|
<value>Колекції</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="mod_presets" xml:space="preserve">
|
<data name="mod_presets" xml:space="preserve">
|
||||||
<value>Набори модів</value>
|
<value>Пресети модів</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="name" xml:space="preserve">
|
<data name="name" xml:space="preserve">
|
||||||
<value>Назва</value>
|
<value>Назва</value>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Вийти</value>
|
<value>Вийти</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock увімкнено</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Повернути до стандартних</value>
|
<value>Повернути до стандартних</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>Mặc định</value>
|
<value>Mặc định</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>Xuất</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>Chiều rộng</value>
|
<value>Chiều rộng</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>Thoát</value>
|
<value>Thoát</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>Caps lock đang được bật</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>Khôi phục mặc định</value>
|
<value>Khôi phục mặc định</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>預設值</value>
|
<value>預設值</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>匯出</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>寬度</value>
|
<value>寬度</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>離開</value>
|
<value>離開</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>大寫鎖定已開啟</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>還原為預設值</value>
|
<value>還原為預設值</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -76,6 +76,9 @@
|
|||||||
<data name="default" xml:space="preserve">
|
<data name="default" xml:space="preserve">
|
||||||
<value>默认</value>
|
<value>默认</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="export" xml:space="preserve">
|
||||||
|
<value>导出</value>
|
||||||
|
</data>
|
||||||
<data name="width" xml:space="preserve">
|
<data name="width" xml:space="preserve">
|
||||||
<value>宽度</value>
|
<value>宽度</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -145,6 +148,9 @@
|
|||||||
<data name="exit" xml:space="preserve">
|
<data name="exit" xml:space="preserve">
|
||||||
<value>退出</value>
|
<value>退出</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="caps_lock_is_active" xml:space="preserve">
|
||||||
|
<value>大写锁定已打开</value>
|
||||||
|
</data>
|
||||||
<data name="revert_to_default" xml:space="preserve">
|
<data name="revert_to_default" xml:space="preserve">
|
||||||
<value>恢复默认</value>
|
<value>恢复默认</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -62,6 +62,6 @@
|
|||||||
<value>Rodyti porofilį</value>
|
<value>Rodyti porofilį</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="view_beatmap" xml:space="preserve">
|
<data name="view_beatmap" xml:space="preserve">
|
||||||
<value>Rodyti bitmapą</value>
|
<value>Rodyti beatmap'ą</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
67
osu.Game.Resources/Localisation/ContextMenu.sk.resx
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="view_profile" xml:space="preserve">
|
||||||
|
<value>Zobraziť profil</value>
|
||||||
|
</data>
|
||||||
|
<data name="view_beatmap" xml:space="preserve">
|
||||||
|
<value>Zobraziť beatmapu</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
67
osu.Game.Resources/Localisation/ContextMenu.tg-TJ.resx
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="view_profile" xml:space="preserve">
|
||||||
|
<value>Намоиш ҳисоб</value>
|
||||||
|
</data>
|
||||||
|
<data name="view_beatmap" xml:space="preserve">
|
||||||
|
<value>Намоиш битмап</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -62,6 +62,6 @@
|
|||||||
<value>ดูโปรไฟล์</value>
|
<value>ดูโปรไฟล์</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="view_beatmap" xml:space="preserve">
|
<data name="view_beatmap" xml:space="preserve">
|
||||||
<value>ดูบีตแม็ป</value>
|
<value>ดูบีทแมพ</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
82
osu.Game.Resources/Localisation/DebugSettings.el.resx
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="debug_section_header" xml:space="preserve">
|
||||||
|
<value>Αποσφαλμάτωση</value>
|
||||||
|
</data>
|
||||||
|
<data name="general_header" xml:space="preserve">
|
||||||
|
<value>Γενικά</value>
|
||||||
|
</data>
|
||||||
|
<data name="show_log_overlay" xml:space="preserve">
|
||||||
|
<value>Εμφάνιση επικάλυψης αρχείου καταγραφής</value>
|
||||||
|
</data>
|
||||||
|
<data name="bypass_front_to_back_pass" xml:space="preserve">
|
||||||
|
<value>Παράκαμψη της μπροστινής προς πίσω απόδοσης περάσματος</value>
|
||||||
|
</data>
|
||||||
|
<data name="import_files" xml:space="preserve">
|
||||||
|
<value>Εισαγωγή αρχείων</value>
|
||||||
|
</data>
|
||||||
|
<data name="memory_header" xml:space="preserve">
|
||||||
|
<value>Μνήμη</value>
|
||||||
|
</data>
|
||||||
|
<data name="clear_all_caches" xml:space="preserve">
|
||||||
|
<value>Εκκαθάριση όλων των caches</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="debug_section_header" xml:space="preserve">
|
<data name="debug_section_header" xml:space="preserve">
|
||||||
<value>Depurar</value>
|
<value>Depuración</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="general_header" xml:space="preserve">
|
<data name="general_header" xml:space="preserve">
|
||||||
<value>General</value>
|
<value>General</value>
|
||||||
@@ -77,6 +77,6 @@
|
|||||||
<value>Memoria</value>
|
<value>Memoria</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="clear_all_caches" xml:space="preserve">
|
<data name="clear_all_caches" xml:space="preserve">
|
||||||
<value>Borrar todas las memorias caché</value>
|
<value>Borrar todas las cachés</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
<value>Yleiset</value>
|
<value>Yleiset</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="show_log_overlay" xml:space="preserve">
|
<data name="show_log_overlay" xml:space="preserve">
|
||||||
<value>Näytä virheenjäljityslokin peittokuva</value>
|
<value>Näytä virheenjäljityslokin peitetaso</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="bypass_front_to_back_pass" xml:space="preserve">
|
<data name="bypass_front_to_back_pass" xml:space="preserve">
|
||||||
<value>Ohita edestä-takaisin-renderöinti</value>
|
<value>Ohita edestä-takaisin-renderöinti</value>
|
||||||
|
|||||||
82
osu.Game.Resources/Localisation/DebugSettings.tg-TJ.resx
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="debug_section_header" xml:space="preserve">
|
||||||
|
<value>Ишкол зидоӣ</value>
|
||||||
|
</data>
|
||||||
|
<data name="general_header" xml:space="preserve">
|
||||||
|
<value>Умӯми</value>
|
||||||
|
</data>
|
||||||
|
<data name="show_log_overlay" xml:space="preserve">
|
||||||
|
<value>Намоиш вурӯде систем</value>
|
||||||
|
</data>
|
||||||
|
<data name="bypass_front_to_back_pass" xml:space="preserve">
|
||||||
|
<value>Дур задан гузаргои интиқоле ҷулу-бе-ақаб</value>
|
||||||
|
</data>
|
||||||
|
<data name="import_files" xml:space="preserve">
|
||||||
|
<value>Воред кардан файлҳо</value>
|
||||||
|
</data>
|
||||||
|
<data name="memory_header" xml:space="preserve">
|
||||||
|
<value>Хотира</value>
|
||||||
|
</data>
|
||||||
|
<data name="clear_all_caches" xml:space="preserve">
|
||||||
|
<value>Пок кардан тамом хотираи кэш</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -65,6 +65,6 @@
|
|||||||
<value>Sí. A por ello.</value>
|
<value>Sí. A por ello.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="cancel" xml:space="preserve">
|
<data name="cancel" xml:space="preserve">
|
||||||
<value>¡No! Abortar la misión</value>
|
<value>¡No! Abortar misión</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="header_text" xml:space="preserve">
|
||||||
|
<value>Confirmar eliminação de</value>
|
||||||
|
</data>
|
||||||
|
<data name="confirm" xml:space="preserve">
|
||||||
|
<value>Sim. Pode ir.</value>
|
||||||
|
</data>
|
||||||
|
<data name="cancel" xml:space="preserve">
|
||||||
|
<value>Não! Abortar a missão</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="header_text" xml:space="preserve">
|
||||||
|
<value>Тасдиқи нест кардани</value>
|
||||||
|
</data>
|
||||||
|
<data name="confirm" xml:space="preserve">
|
||||||
|
<value>Бале. Анҷом кунед.</value>
|
||||||
|
</data>
|
||||||
|
<data name="cancel" xml:space="preserve">
|
||||||
|
<value>Не! Таслимаш кунед</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="difficulty_multiplier" xml:space="preserve">
|
||||||
|
<value>Multiplicador de Dificuldade</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<xsd:schema xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="root">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string"/>
|
||||||
|
<xsd:attribute name="name" type="xsd:string"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1"/>
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3"/>
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4"/>
|
||||||
|
<xsd:attribute ref="xml:space"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1"/>
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="difficulty_multiplier" xml:space="preserve">
|
||||||
|
<value>Омили сахтӣ</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
@@ -73,8 +73,11 @@
|
|||||||
<data name="set_preview_point_to_current" xml:space="preserve">
|
<data name="set_preview_point_to_current" xml:space="preserve">
|
||||||
<value>Estableix el punt de previsualització al temps actual</value>
|
<value>Estableix el punt de previsualització al temps actual</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="export_package" xml:space="preserve">
|
<data name="export_for_editing" xml:space="preserve">
|
||||||
<value>Exportar paquet</value>
|
<value>Per a editar (.olz)</value>
|
||||||
|
</data>
|
||||||
|
<data name="export_for_compatibility" xml:space="preserve">
|
||||||
|
<value>Per a compatibilidad (.osz)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="create_new_difficulty" xml:space="preserve">
|
<data name="create_new_difficulty" xml:space="preserve">
|
||||||
<value>Crear nova dificultat</value>
|
<value>Crear nova dificultat</value>
|
||||||
@@ -118,4 +121,7 @@
|
|||||||
<data name="rotation_snapped" xml:space="preserve">
|
<data name="rotation_snapped" xml:space="preserve">
|
||||||
<value>{0:0}° (encaixat)</value>
|
<value>{0:0}° (encaixat)</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="limited_distance_snap_grid" xml:space="preserve">
|
||||||
|
<value>Limitar la ubicació de la configuració de distància al temps actual</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -73,8 +73,11 @@
|
|||||||
<data name="set_preview_point_to_current" xml:space="preserve">
|
<data name="set_preview_point_to_current" xml:space="preserve">
|
||||||
<value>Nastavit bod náhledu na aktuální čas</value>
|
<value>Nastavit bod náhledu na aktuální čas</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="export_package" xml:space="preserve">
|
<data name="export_for_editing" xml:space="preserve">
|
||||||
<value>Exportovat balíček</value>
|
<value>Pro úpravy (.olz)</value>
|
||||||
|
</data>
|
||||||
|
<data name="export_for_compatibility" xml:space="preserve">
|
||||||
|
<value>Pro kompatibilitu (.osz)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="create_new_difficulty" xml:space="preserve">
|
<data name="create_new_difficulty" xml:space="preserve">
|
||||||
<value>Vytvořit novou obtížnost</value>
|
<value>Vytvořit novou obtížnost</value>
|
||||||
@@ -113,9 +116,12 @@
|
|||||||
<value>Ticky</value>
|
<value>Ticky</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="rotation_unsnapped" xml:space="preserve">
|
<data name="rotation_unsnapped" xml:space="preserve">
|
||||||
<value>{0:0.0}°</value>
|
<value>{0:0}°</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="rotation_snapped" xml:space="preserve">
|
<data name="rotation_snapped" xml:space="preserve">
|
||||||
<value>{0:0.0}° (snapped)</value>
|
<value>{0:0}° (po krocích)</value>
|
||||||
|
</data>
|
||||||
|
<data name="limited_distance_snap_grid" xml:space="preserve">
|
||||||
|
<value>Omezte umístění v mřížce vzdálenosti na aktuální čas</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||