Compare commits
76 Commits
2025.530.0
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| dbc0225759 | |||
| 2c31994a41 | |||
|
|
5fd562c365 | ||
|
|
7822fff8e0 | ||
|
|
29fa3dab92 | ||
| dfbefdc532 | |||
|
|
42c4a3853b | ||
|
|
654c3d09cd | ||
|
|
dd414fe878 | ||
|
|
5da1a1c806 | ||
|
|
91254bbbc7 | ||
|
|
5bd03adfe5 | ||
|
|
db103660aa | ||
|
|
4bb8eda4b8 | ||
|
|
8a64f35da0 | ||
|
|
3389589219 | ||
|
|
3dc7b2587b | ||
|
|
84ee0b93e7 | ||
| 58858ece4b | |||
| a1f8f41662 | |||
|
|
6579de103e | ||
|
|
cd84499dc1 | ||
|
|
a196be8e63 | ||
|
|
b09ebd1d92 | ||
|
|
37cdb9813c | ||
|
|
74935d1e97 | ||
|
|
7e6fdb348f | ||
|
|
37f1c49693 | ||
|
|
aa89d5be66 | ||
|
|
2de74c512e | ||
|
|
fae42a811a | ||
|
|
c52d908881 | ||
|
|
d23e432ca5 | ||
|
|
5c7d5ab2b1 | ||
|
|
167ddd711c | ||
|
|
f33ed4a4e5 | ||
|
|
cc1889ce65 | ||
|
|
2467f85d3d | ||
|
|
8495abf624 | ||
|
|
08098ae3b2 | ||
|
|
ca430b4ae9 | ||
|
|
121d4230b7 | ||
|
|
9594adda08 | ||
|
|
93c11aa0b8 | ||
|
|
8b40cb7a2b | ||
|
|
e620796f41 | ||
|
|
574f8ee787 | ||
|
|
6990f65686 | ||
|
|
431c180e36 | ||
|
|
6eaf0c915a | ||
|
|
d2b640395b | ||
|
|
1e034906d5 | ||
|
|
08c263eff1 | ||
|
|
fb9cd1a518 | ||
|
|
d10d73d434 | ||
|
|
91ca2edb01 | ||
|
|
b939050cfa | ||
|
|
33d9c1988e | ||
|
|
d1334c7959 | ||
|
|
21673075b4 | ||
|
|
044aa0cb86 | ||
|
|
2d97c42847 | ||
|
|
bc57cc1cb9 | ||
|
|
4203ad0606 | ||
|
|
fb7da180ba | ||
|
|
e58d90ffd1 | ||
|
|
f8898bc75d | ||
|
|
7285d9247a | ||
|
|
bc451a4856 | ||
|
|
3c0184059b | ||
|
|
94c42a9cc9 | ||
|
|
91fe0794f9 | ||
|
|
a20237478c | ||
|
|
0d23c81b43 | ||
|
|
21f0e584b6 | ||
|
|
c4e8e5af17 |
18
.github/workflows/build.yml
vendored
Normal file
18
.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
name: Build
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install .NET 8.0.x
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "8.0.x"
|
||||
|
||||
- name: Build
|
||||
run: dotnet build -c Release osu.Game.Resources
|
||||
70
.github/workflows/deploy.yml
vendored
Normal file
70
.github/workflows/deploy.yml
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
name: Pack and nuget
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
notify_pending_production_deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Submit pending deployment notification
|
||||
run: |
|
||||
export TITLE="Pending osu-resources Production Deployment: $GITHUB_REF_NAME"
|
||||
export URL="https://github.com/ppy/osu-resources/actions/runs/$GITHUB_RUN_ID"
|
||||
export DESCRIPTION="Awaiting approval for building NuGet packages for tag $GITHUB_REF_NAME:
|
||||
[View Workflow Run]($URL)"
|
||||
export ACTOR_ICON="https://avatars.githubusercontent.com/u/$GITHUB_ACTOR_ID"
|
||||
|
||||
BODY="$(jq --null-input '{
|
||||
"embeds": [
|
||||
{
|
||||
"title": env.TITLE,
|
||||
"color": 15098112,
|
||||
"description": env.DESCRIPTION,
|
||||
"url": env.URL,
|
||||
"author": {
|
||||
"name": env.GITHUB_ACTOR,
|
||||
"icon_url": env.ACTOR_ICON
|
||||
}
|
||||
}
|
||||
]
|
||||
}')"
|
||||
|
||||
curl \
|
||||
-H "Content-Type: application/json" \
|
||||
-d "$BODY" \
|
||||
"${{ secrets.DISCORD_INFRA_WEBHOOK_URL }}"
|
||||
|
||||
pack:
|
||||
name: Pack
|
||||
runs-on: ubuntu-latest
|
||||
environment: production
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set artifacts directory
|
||||
id: artifactsPath
|
||||
run: echo "::set-output name=nuget_artifacts::${{github.workspace}}/artifacts"
|
||||
|
||||
- name: Install .NET 8.0.x
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "8.0.x"
|
||||
|
||||
- name: Pack
|
||||
run: dotnet pack -c Release osu.Game.Resources /p:Version=${{ github.ref_name }} /p:GenerateDocumentationFile=true /p:IncludeSymbols=true /p:SymbolPackageFormat=snupkg -o ${{steps.artifactsPath.outputs.nuget_artifacts}}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: osu-resources
|
||||
path: |
|
||||
${{steps.artifactsPath.outputs.nuget_artifacts}}/*.nupkg
|
||||
${{steps.artifactsPath.outputs.nuget_artifacts}}/*.snupkg
|
||||
|
||||
- name: Publish packages to nuget.org
|
||||
run: dotnet nuget push ${{steps.artifactsPath.outputs.nuget_artifacts}}/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
|
||||
11
appveyor.yml
11
appveyor.yml
@@ -1,11 +0,0 @@
|
||||
clone_depth: 1
|
||||
version: '{build}'
|
||||
image: Visual Studio 2022
|
||||
configuration: Release
|
||||
platform: Any CPU
|
||||
before_build:
|
||||
- ps: if($env:appveyor_repo_tag -eq 'True') { Update-AppveyorBuild -Version $env:appveyor_repo_tag_name }
|
||||
build_script:
|
||||
- cmd: dotnet pack osu.Game.Resources /p:Version=%APPVEYOR_BUILD_VERSION%
|
||||
artifacts:
|
||||
- path: osu.Game.Resources/bin/Any CPU/Release/**/*.nupkg
|
||||
@@ -1,17 +0,0 @@
|
||||
clone_depth: 1
|
||||
version: '{build}'
|
||||
skip_non_tags: true
|
||||
image: Visual Studio 2022
|
||||
configuration: Release
|
||||
platform: Any CPU
|
||||
before_build:
|
||||
- ps: if($env:appveyor_repo_tag -eq 'True') { Update-AppveyorBuild -Version $env:appveyor_repo_tag_name }
|
||||
build_script:
|
||||
- cmd: dotnet pack osu.Game.Resources /p:Version=%APPVEYOR_BUILD_VERSION%
|
||||
artifacts:
|
||||
- path: osu.Game.Resources/bin/Any CPU/Release/**/*.nupkg
|
||||
deploy:
|
||||
- provider: Environment
|
||||
name: nuget
|
||||
- provider: Environment
|
||||
name: github
|
||||
24
osu-resources.sln
Normal file
24
osu-resources.sln
Normal file
@@ -0,0 +1,24 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "osu.Game.Resources", "osu.Game.Resources\osu.Game.Resources.csproj", "{4E0F1568-FD55-4BB7-4556-B4F5539069F0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{4E0F1568-FD55-4BB7-4556-B4F5539069F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{4E0F1568-FD55-4BB7-4556-B4F5539069F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{4E0F1568-FD55-4BB7-4556-B4F5539069F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4E0F1568-FD55-4BB7-4556-B4F5539069F0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {B169AF6B-FB68-49AB-98AD-AB42499E9C01}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
BIN
osu.Game.Resources/Fonts/Noto/Noto-Bopomofo.bin
Normal file
BIN
osu.Game.Resources/Fonts/Noto/Noto-Bopomofo.bin
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
BIN
osu.Game.Resources/Fonts/Noto/Noto-Bopomofo_0.png
Normal file
BIN
osu.Game.Resources/Fonts/Noto/Noto-Bopomofo_0.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
55
osu.Game.Resources/Fonts/Noto/bmfont-bopomofo.bmfc
Normal file
55
osu.Game.Resources/Fonts/Noto/bmfont-bopomofo.bmfc
Normal file
@@ -0,0 +1,55 @@
|
||||
# AngelCode Bitmap Font Generator configuration file
|
||||
fileVersion=1
|
||||
|
||||
# font settings
|
||||
fontName=Noto Sans SC Medium
|
||||
fontFile=
|
||||
charSet=0
|
||||
fontSize=100
|
||||
aa=4
|
||||
scaleH=100
|
||||
useSmoothing=1
|
||||
isBold=1
|
||||
isItalic=0
|
||||
useUnicode=1
|
||||
disableBoxChars=1
|
||||
outputInvalidCharGlyph=0
|
||||
dontIncludeKerningPairs=0
|
||||
useHinting=1
|
||||
renderFromOutline=0
|
||||
useClearType=0
|
||||
|
||||
# character alignment
|
||||
paddingDown=0
|
||||
paddingUp=0
|
||||
paddingRight=0
|
||||
paddingLeft=0
|
||||
spacingHoriz=4
|
||||
spacingVert=4
|
||||
useFixedHeight=0
|
||||
forceZero=0
|
||||
|
||||
# output file
|
||||
outWidth=1024
|
||||
outHeight=1024
|
||||
outBitDepth=32
|
||||
fontDescFormat=0
|
||||
fourChnlPacked=0
|
||||
textureFormat=png
|
||||
textureCompression=0
|
||||
alphaChnl=0
|
||||
redChnl=4
|
||||
greenChnl=4
|
||||
blueChnl=4
|
||||
invA=0
|
||||
invR=0
|
||||
invG=0
|
||||
invB=0
|
||||
|
||||
# outline
|
||||
outlineThickness=0
|
||||
|
||||
# selected chars
|
||||
chars=12549-12591,12704-12731
|
||||
|
||||
# imported icon images
|
||||
55
osu.Game.Resources/Fonts/Noto/bmfont-cjk-basic.bmfc
Normal file
55
osu.Game.Resources/Fonts/Noto/bmfont-cjk-basic.bmfc
Normal file
@@ -0,0 +1,55 @@
|
||||
# AngelCode Bitmap Font Generator configuration file
|
||||
fileVersion=1
|
||||
|
||||
# font settings
|
||||
fontName=Noto Sans SC Medium
|
||||
fontFile=
|
||||
charSet=0
|
||||
fontSize=100
|
||||
aa=4
|
||||
scaleH=100
|
||||
useSmoothing=1
|
||||
isBold=1
|
||||
isItalic=0
|
||||
useUnicode=1
|
||||
disableBoxChars=1
|
||||
outputInvalidCharGlyph=0
|
||||
dontIncludeKerningPairs=0
|
||||
useHinting=1
|
||||
renderFromOutline=0
|
||||
useClearType=0
|
||||
|
||||
# character alignment
|
||||
paddingDown=0
|
||||
paddingUp=0
|
||||
paddingRight=0
|
||||
paddingLeft=0
|
||||
spacingHoriz=4
|
||||
spacingVert=4
|
||||
useFixedHeight=0
|
||||
forceZero=0
|
||||
|
||||
# output file
|
||||
outWidth=1024
|
||||
outHeight=1024
|
||||
outBitDepth=32
|
||||
fontDescFormat=0
|
||||
fourChnlPacked=0
|
||||
textureFormat=png
|
||||
textureCompression=0
|
||||
alphaChnl=0
|
||||
redChnl=4
|
||||
greenChnl=4
|
||||
blueChnl=4
|
||||
invA=0
|
||||
invR=0
|
||||
invG=0
|
||||
invB=0
|
||||
|
||||
# outline
|
||||
outlineThickness=0
|
||||
|
||||
# selected chars
|
||||
chars=12688-12730,12736-12771,12784-12830,12832-13054,13056-13099,13101-13311,19968-40912,65072-65103
|
||||
|
||||
# imported icon images
|
||||
55
osu.Game.Resources/Fonts/Noto/bmfont-cjk-compatibility.bmfc
Normal file
55
osu.Game.Resources/Fonts/Noto/bmfont-cjk-compatibility.bmfc
Normal file
@@ -0,0 +1,55 @@
|
||||
# AngelCode Bitmap Font Generator configuration file
|
||||
fileVersion=1
|
||||
|
||||
# font settings
|
||||
fontName=Noto Sans SC Medium
|
||||
fontFile=
|
||||
charSet=0
|
||||
fontSize=100
|
||||
aa=4
|
||||
scaleH=100
|
||||
useSmoothing=1
|
||||
isBold=1
|
||||
isItalic=0
|
||||
useUnicode=1
|
||||
disableBoxChars=1
|
||||
outputInvalidCharGlyph=0
|
||||
dontIncludeKerningPairs=0
|
||||
useHinting=1
|
||||
renderFromOutline=0
|
||||
useClearType=0
|
||||
|
||||
# character alignment
|
||||
paddingDown=0
|
||||
paddingUp=0
|
||||
paddingRight=0
|
||||
paddingLeft=0
|
||||
spacingHoriz=4
|
||||
spacingVert=4
|
||||
useFixedHeight=0
|
||||
forceZero=0
|
||||
|
||||
# output file
|
||||
outWidth=1024
|
||||
outHeight=1024
|
||||
outBitDepth=32
|
||||
fontDescFormat=0
|
||||
fourChnlPacked=0
|
||||
textureFormat=png
|
||||
textureCompression=0
|
||||
alphaChnl=0
|
||||
redChnl=4
|
||||
greenChnl=4
|
||||
blueChnl=4
|
||||
invA=0
|
||||
invR=0
|
||||
invG=0
|
||||
invB=0
|
||||
|
||||
# outline
|
||||
outlineThickness=0
|
||||
|
||||
# selected chars
|
||||
chars=13312-19893,63744-64109,65072-65103
|
||||
|
||||
# imported icon images
|
||||
@@ -1,70 +0,0 @@
|
||||
# AngelCode Bitmap Font Generator configuration file
|
||||
fileVersion=1
|
||||
|
||||
# font settings
|
||||
fontName=Noto Sans CJK JP Medium
|
||||
fontFile=
|
||||
charSet=0
|
||||
fontSize=100
|
||||
aa=4
|
||||
scaleH=100
|
||||
useSmoothing=1
|
||||
isBold=1
|
||||
isItalic=0
|
||||
useUnicode=1
|
||||
disableBoxChars=1
|
||||
outputInvalidCharGlyph=0
|
||||
dontIncludeKerningPairs=0
|
||||
useHinting=1
|
||||
renderFromOutline=0
|
||||
useClearType=0
|
||||
|
||||
# character alignment
|
||||
paddingDown=0
|
||||
paddingUp=0
|
||||
paddingRight=0
|
||||
paddingLeft=0
|
||||
spacingHoriz=4
|
||||
spacingVert=4
|
||||
useFixedHeight=0
|
||||
forceZero=0
|
||||
|
||||
# output file
|
||||
outWidth=1024
|
||||
outHeight=1024
|
||||
outBitDepth=32
|
||||
fontDescFormat=0
|
||||
fourChnlPacked=0
|
||||
textureFormat=png
|
||||
textureCompression=0
|
||||
alphaChnl=0
|
||||
redChnl=4
|
||||
greenChnl=4
|
||||
blueChnl=4
|
||||
invA=0
|
||||
invR=0
|
||||
invG=0
|
||||
invB=0
|
||||
|
||||
# outline
|
||||
outlineThickness=0
|
||||
|
||||
# selected chars
|
||||
chars=0-126,160-259,272-275,282-283,296-299,323-324,327-328,332-335,338-339,360-365,402,416-417,431-432
|
||||
chars=461-476,504-505,593,609,711,713-715,729,913-929,931-937,945-961,963-969,1025,1040-1103,1105,4352
|
||||
chars=4353-4607,7742-7743,7840-7929,8194-8195,8208-8214,8216-8218,8220-8222,8224-8226,8229-8231,8240,8242
|
||||
chars=8243,8245,8249-8252,8258,8263-8265,8273,8361,8363-8364,8413-8414,8448,8451,8453,8457-8458,8463,8467
|
||||
chars=8470,8481-8482,8486-8487,8491,8494,8501,8507,8544-8555,8560-8571,8592-8601,8632-8633,8644-8646,8651
|
||||
chars=8652,8656,8658,8660,8678-8681,8693,8704,8706-8707,8709-8715,8719,8721-8723,8725,8730,8733-8736,8739
|
||||
chars=8741-8750,8756-8759,8765,8771,8773,8776,8780,8786,8800-8802,8804-8807,8810-8811,8814-8815,8818-8819
|
||||
chars=8822-8823,8834-8839,8842-8843,8853-8857,8864,8869,8895,8922-8923,8943,8965-8967,8978,8984,9001-9002
|
||||
chars=9136-9137,9150-9164,9166,9178-9179,9251,9312-9643,9649-9651,9654-9655,9660-9661,9664-9665,9670-9676
|
||||
chars=9678-9683,9698-9702,9711,9728-9731,9733-9734,9737,9742-9743,9750-9751,9756-9759,9775,9792-9794,9824
|
||||
chars=9825-9839,9842-9853,9888,9917-9918,9986,10003,10010,10045,10047-10048,10070,10102-10111,10145,10548
|
||||
chars=10549,10687,10746-10747,11013-11015,11034,11834-11835,11904-11929,11931-12019,12032-12245,12272
|
||||
chars=12273-12283,12288-12351,12353-12438,12441-12543,12549-12589,12593-12686,12688-12730,12736-12771
|
||||
chars=12784-12830,12832-13054,13056-13099,13101-19893,19968-40912,43360-43388,44032-55203,55216-55238
|
||||
chars=55243-55291,63744-64109,64256-64260,65040-65049,65072-65106,65108-65126,65128-65131,65281-65470
|
||||
chars=65474-65479,65482-65487,65490-65495,65498-65500,65504-65510,65512-65518
|
||||
|
||||
# imported icon images
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 93 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 696 B |
Binary file not shown.
|
Before Width: | Height: | Size: 33 KiB |
@@ -65,7 +65,7 @@
|
||||
<value>시작해 볼까요</value>
|
||||
</data>
|
||||
<data name="lets_create_an_account" xml:space="preserve">
|
||||
<value>계정을 만들어 봐요!</value>
|
||||
<value>계정을 만들어 봅시다!</value>
|
||||
</data>
|
||||
<data name="multi_account_warning_help" xml:space="preserve">
|
||||
<value>로그인이 안 돼요, 도와주세요!</value>
|
||||
|
||||
@@ -94,6 +94,9 @@
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>Разыграйце некалькі карт, каб атрымаць рэкамендуемае зрушэнне!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>Па даным апошніх {0} гульняў, значэнне афсету ўстаноўлена дакладна!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>Рэкамендуе мае значэнне зруху на аснове апошніх {0} гульняў: {1} МЗС.</value>
|
||||
</data>
|
||||
|
||||
@@ -94,11 +94,14 @@
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>Juga alguns mapes per rebre una compensació suggerida!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>Segons la/les última/es {0} partida/es, la vostra compensació s'ha establert correctament!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>Segons les últimes {0} partides, la compensació suggerida és d'{1} ms. </value>
|
||||
</data>
|
||||
<data name="apply_suggested_offset" xml:space="preserve">
|
||||
<value>Aplicar compensació suggerida</value>
|
||||
<value>Aplica la compensació suggerida</value>
|
||||
</data>
|
||||
<data name="offset_wizard" xml:space="preserve">
|
||||
<value>Assistent de compensació</value>
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
<value>Στερεοφωνικός διαχωρισμός Hitsound</value>
|
||||
</data>
|
||||
<data name="master_volume" xml:space="preserve">
|
||||
<value>Master</value>
|
||||
<value>Κύριος ήχος</value>
|
||||
</data>
|
||||
<data name="master_volume_inactive" xml:space="preserve">
|
||||
<value>Master (παράθυρο ανενεργό)</value>
|
||||
|
||||
@@ -94,6 +94,9 @@
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>שחקו כמה מפות על מנת לקבל היסט מומלץ!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>בהתחשבות על {0} המשחק(ים) האחרונים, ההתהיה שלך מוגדרת נכון!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>על בסיס {0} המשחקים האחרונים, ההיסט המומלץ הוא {1} מילי־שניות.</value>
|
||||
</data>
|
||||
|
||||
@@ -94,6 +94,9 @@
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>あなたに最適なオフセットを提案するには、いくつかのビートマップをプレイしていただく必要があります!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>最後の {0} プレイに基づいて、オフセットが正しく設定されています!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>直近 {0} 回のプレイに基づいて推奨されるオフセットは {1} msです。</value>
|
||||
</data>
|
||||
|
||||
@@ -95,10 +95,10 @@
|
||||
<value>비트맵 몇 판만 플레이하시면 오프셋 추천값을 찾아드릴게요!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>{0} 판의 플레이(들)을 보니, 오프셋이 올바르게 설정된 상태네요!</value>
|
||||
<value>{0} 판의 플레이를 살펴보니, 오프셋이 올바르게 설정된 상태네요!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>최근 {0} 번의 플레이를 보니, 오프셋 설정은 {1} ms가 적당해 보이네요.</value>
|
||||
<value>{0} 판의 플레이를 살펴보니, 오프셋 설정은 {1} ms가 적당해 보이네요.</value>
|
||||
</data>
|
||||
<data name="apply_suggested_offset" xml:space="preserve">
|
||||
<value>추천 오프셋 적용</value>
|
||||
|
||||
@@ -94,6 +94,9 @@
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>Spēlējiet dažas bītmapes, lai saņemtu ieteikto nobīdi!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>Balstīts uz pēdējiem {0} mēģinājuma(iem), tava nobīde ir uzstādīta pareizi!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>Pamatojoties uz pēdējo(-ām) {0} spēli(-ām), ieteicama nobīde ir {1} ms.</value>
|
||||
</data>
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
<value>Main beberapa peta rentak untuk menerima sebuah saranan imbangan!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>Berdasarkan {0} mainan terdahulu, imbangan anda ditetapkan dengan betul!</value>
|
||||
<value>Berpangkalkan {0} mainan terdahulu, imbangan anda ditetapkan dengan betul!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>Berpangkalkan {0} mainan terakhir, saranan imbangan adalah {1} ms.</value>
|
||||
|
||||
@@ -94,6 +94,9 @@
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>Spill noen beatmaps for å få en foreslått offset!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>Basert på de(n) siste {0} spillingen(e), er din offset riktig innstilt!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>Basert på de(n) {0} siste spillingen(e), er foreslått offset {1} ms.</value>
|
||||
</data>
|
||||
|
||||
@@ -92,13 +92,13 @@
|
||||
<value>Opóźnienie dźwięku</value>
|
||||
</data>
|
||||
<data name="suggested_offset_note" xml:space="preserve">
|
||||
<value>Zagraj kilka beatmap, aby otrzymać sugerowane opóźnienie!</value>
|
||||
<value>Zagraj kilka beatmap, aby wyznaczyć sugerowane opóźnienie!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>Na podstawie ostatnich(niej) {0} gier/gry, twoje opóźnienie ustawione jest poprawnie!</value>
|
||||
<value>Na podstawie twoich ostatnich zagrań ({0}) aktualnie ustawione opóźnienie jest prawidłowe!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>Na podstawie ostatnich(niego) {0} zagrań(nia), sugerowany offset to {1} ms.</value>
|
||||
<value>Na podstawie twoich ostatnich zagrań ({0}) sugerowane opóźnienie dźwięku wynosi {1} ms.</value>
|
||||
</data>
|
||||
<data name="apply_suggested_offset" xml:space="preserve">
|
||||
<value>Zastosuj sugerowane opóźnienie</value>
|
||||
|
||||
@@ -106,4 +106,10 @@
|
||||
<data name="offset_wizard" xml:space="preserve">
|
||||
<value>Offset wizard</value>
|
||||
</data>
|
||||
<data name="adjust_beatmap_offset_automatically" xml:space="preserve">
|
||||
<value>Adjust beatmap offset automatically</value>
|
||||
</data>
|
||||
<data name="adjust_beatmap_offset_automatically_tooltip" xml:space="preserve">
|
||||
<value>If enabled, the offset suggested from last play on a beatmap is automatically applied.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -95,10 +95,10 @@
|
||||
<value>玩一些谱面来让游戏计算一个合适的偏移!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_correct" xml:space="preserve">
|
||||
<value>基于最近的 {0} 次游玩,你的偏移值已经精确设定好了!</value>
|
||||
<value>基于你最近的 {0} 次游玩,你的偏移量已经正确设定好了!</value>
|
||||
</data>
|
||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||
<value>基于你最近的 {0} 场游戏,游戏推荐的偏移量是 {1} ms。</value>
|
||||
<value>基于你最近的 {0} 次游玩,游戏推荐的偏移量是 {1} ms。</value>
|
||||
</data>
|
||||
<data name="apply_suggested_offset" xml:space="preserve">
|
||||
<value>使用推荐偏移</value>
|
||||
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Рэйтынг</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Мясцовы</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Сусветны</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Па краіне</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Сярод сяброў</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Камандны</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Сартаваць</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Вынікі</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Трапнасць</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Макс. комба</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Промахі</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Дата</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Обхват</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Локален</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Глобален</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Държава</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Приятели</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Отбор</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Вид</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Резултат</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Прецизност</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Макс комбо</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Пропуски</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Дата</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Abast</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Local</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>País</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Amics</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Equip</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Ordre</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Puntuació</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Precisió</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Combo Màxim</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Errors</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Data</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Rozsah</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Lokální</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Svět</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Stát</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Přátelé</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Tým</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Řazení</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Skóre</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Přesnost</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Maximální kombo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Minutí</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Datum</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Typ</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Lokal</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Land</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Freunde</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Team</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Sortierung</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Punkte</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Genauigkeit</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Maximale Combo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Misses</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Datum</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Εμβέλεια</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Τοπικά</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Παγκόσμια</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Χώρα</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Φίλοι</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Ομάδες</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Ταξινόμηση</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Σκορ</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Ακρίβεια</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Μέγιστο Combo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Αστοχίες</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Ημερομηνία</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Clasificación</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Local</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Nacional</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Entre mis amigos</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Entre mi equipo</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Ordenar</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Por puntuación</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Por precisión</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Por combo máximo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Por fallos</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Por fecha</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Clasificación</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Local</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Nacional</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Entre mis amigos</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Entre mi equipo</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Ordenar</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Por puntuación</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Por precisión</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Por combo máximo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Por fallos</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Por fecha</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Laajuus</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Paikallinen</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Globaali</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Maa</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Kaveri</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Tiimi</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Lajittele</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Pisteet</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Tarkkuus</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Suurin Iskuputki</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Harhaiskut</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Päivämäärä</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Type</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Local</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>National</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Amis</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Équipe</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Trier</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Score</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Précision</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Combo max</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Notes manquées</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Date</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Cakupan</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Lokal</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Negara</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Teman</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Tim</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Sortir</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Skor</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Akurasi</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Kombo Maks</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Miss</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Tanggal</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Tipo</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Locale</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Globale</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Paese</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Amici</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Squadra</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Ordina</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Punteggio</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Precisione</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Combo Massima</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Errori</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Data</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>対象範囲</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>ローカル</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>グローバル</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>国別</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>友達</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>チーム</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>並び替え</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>スコア</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>精度</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>最大コンボ</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>ミス数</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>日付</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>범위</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>로컬</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>글로벌</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>국가</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>친구</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>팀</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>정렬</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>점수</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>정확도</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>최대 콤보</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>미스 횟수</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>날짜</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Aprėptis</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Vietinis</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Pasaulis</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Šalis</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Draugai</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Komanda</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Rūšiuoti</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Taškai</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Tikslumas</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Didžiausias Kombo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Nepataikymai</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Data</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>?</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Vietēja</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Globālā</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Valstī</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Draugos</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Komandā</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Kārtot</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Punkti</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Precizitāte</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Maksimalā Kombinācija</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Netrāpījumi</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Datums</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Zakres</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Lokalnie</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Światowy</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Narodowość</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Przyjaciel</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Team</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Sortuj</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Punktacja</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Precyzja</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Maksymalne combo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Pudła</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Data</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Área</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Local</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>País</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Amigos</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Equipe</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Ordenar</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Pontuação</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Precisão</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Como Máximo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Chances Perdidas</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Data</value>
|
||||
</data>
|
||||
</root>
|
||||
97
osu.Game.Resources/Localisation/BeatmapLeaderboardWedge.resx
Normal file
97
osu.Game.Resources/Localisation/BeatmapLeaderboardWedge.resx
Normal file
@@ -0,0 +1,97 @@
|
||||
<?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="scope" xml:space="preserve">
|
||||
<value>Scope</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Local</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Global</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Country</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Friend</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Team</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Sort</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Score</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Accuracy</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Max Combo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Misses</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Date</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Рейтинг</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Локальный</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Мировой</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>По стране</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Среди друзей</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Командный</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Сортировка</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Очки</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Точность</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Макс. комбо</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Промахи</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Дата</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Kapsam</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Yerel</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Küresel</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Ülke</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Arkadaş</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Takım</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Sıralama</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Skor</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Doğruluk</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Maksimum Kombo</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Kaçırılanlar</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Tarih</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>Область</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>Локально</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>Глобально</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>Країна</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>Друзі</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>Команда</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>Сортувати</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>Бали</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>Точність</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>Макс. комбо</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>Промахи</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>Часу</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>排行類型</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>本機</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>全球</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>國家</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>朋友</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>戰隊</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>排序</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>分數</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>準確率</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>最大連擊</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>失誤數</value>
|
||||
</data>
|
||||
<data name="date" xml:space="preserve">
|
||||
<value>時間</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -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="scope" xml:space="preserve">
|
||||
<value>排行类型</value>
|
||||
</data>
|
||||
<data name="local" xml:space="preserve">
|
||||
<value>本地</value>
|
||||
</data>
|
||||
<data name="global" xml:space="preserve">
|
||||
<value>全球</value>
|
||||
</data>
|
||||
<data name="country" xml:space="preserve">
|
||||
<value>国家或地区</value>
|
||||
</data>
|
||||
<data name="friend" xml:space="preserve">
|
||||
<value>好友</value>
|
||||
</data>
|
||||
<data name="team" xml:space="preserve">
|
||||
<value>战队</value>
|
||||
</data>
|
||||
<data name="sort" xml:space="preserve">
|
||||
<value>排序</value>
|
||||
</data>
|
||||
<data name="score" xml:space="preserve">
|
||||
<value>分数</value>
|
||||
</data>
|
||||
<data name="accuracy" xml:space="preserve">
|
||||
<value>准确率</value>
|
||||
</data>
|
||||
<data name="max_combo" xml:space="preserve">
|
||||
<value>最大连击</value>
|
||||
</data>
|
||||
<data name="misses" xml:space="preserve">
|
||||
<value>失误数</value>
|
||||
</data>
|
||||
<data name="date" 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>
|
||||
</resheader>
|
||||
<data name="beatmap_offset" xml:space="preserve">
|
||||
<value>Compensació d'àudio (aquest beatmap)</value>
|
||||
<value>Compensació d'àudio (aquest mapa)</value>
|
||||
</data>
|
||||
<data name="previous_play" xml:space="preserve">
|
||||
<value>Reproducció anterior:</value>
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
<value>이전의 플레이가 너무 짧아서 보정값을 낼 수가 없었어요</value>
|
||||
</data>
|
||||
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||
<value>이전 플레이 추천값으로 보정하기</value>
|
||||
<value>마지막 플레이로 보정</value>
|
||||
</data>
|
||||
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||
<value>(히트 오브젝트가 늦게 나타나요)</value>
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
<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>Opóźnienie beatmapy</value>
|
||||
<value>Opóźnienie dźwięku (ta beatmapa)</value>
|
||||
</data>
|
||||
<data name="previous_play" xml:space="preserve">
|
||||
<value>Poprzednie zagranie:</value>
|
||||
|
||||
@@ -69,4 +69,7 @@
|
||||
<data name="understood" xml:space="preserve">
|
||||
<value>Зразумела</value>
|
||||
</data>
|
||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||
<value>Выбраныя выканаўцы - гэта артысты, якія ў рамках супрацоўніцтва з osu! дазволілі выкарыстоўваць частку сваіх трэкаў для стварэння карт. Для некаторых версій osu! мы будзем паказваць карты, створаныя да трэкаў толькі ад абраных выканаўцаў, каб падтрымліваць гульнявую экасістэму.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -59,7 +59,7 @@
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="user_content_disclaimer" xml:space="preserve">
|
||||
<value>Exempció de responsabilitat del contingut de l'usuari</value>
|
||||
<value>Avís del contingut de l'usuari</value>
|
||||
</data>
|
||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||
<value>Si desactiveu el filtre «Artista destacat», es mostrarà tot el contingut pujat pels usuaris.
|
||||
@@ -69,4 +69,7 @@ Això inclou contingut que pot no tenir una llicència correcta per a l'ús a os
|
||||
<data name="understood" xml:space="preserve">
|
||||
<value>Ho entenc</value>
|
||||
</data>
|
||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||
<value>Els artistes destacats són els músics que han col·laborat amb l'osu! per a fer una selecció de les seves pistes disponibles per als mapes. Per a algunes versions de l'osu, només mostrem mapes amb artistes destacats per a donar suport a l'ecosistema local.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -64,7 +64,7 @@
|
||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||
<value>Vypnutím filtru "Oficiální umělci" se zobrazí veškerý uživatelský obsah.
|
||||
|
||||
Toto zahrnuje obsah, který nemusí být licencován pro osu!. Procházejte na vlastní riziko.</value>
|
||||
Toto zahrnuje obsah, který nemusí být licencován pro osu!. Procházej na vlastní riziko.</value>
|
||||
</data>
|
||||
<data name="understood" xml:space="preserve">
|
||||
<value>Rozumím</value>
|
||||
|
||||
@@ -69,4 +69,7 @@
|
||||
<data name="understood" xml:space="preserve">
|
||||
<value>הבנתי</value>
|
||||
</data>
|
||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||
<value>אמנים נבחרים הם יוצרי מוזיקה אשר שיתפו פעולה עם osu! בכדי להפוך חלק מהשם שלהם לזמינים בשימוש בתור מפות במשחק. בחלק מהעדכונים של osu!, אנחנו מציגים רק מפות של אומנים נבחרים בכדי לתמוך בהם.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -62,11 +62,14 @@
|
||||
<value>Lietotāja satura atruna</value>
|
||||
</data>
|
||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||
<value>Izslēdzot filtru "Attēlotais Mākslinieks", tiks parādīts viss lietotāja augšupielādētais saturs.
|
||||
<value>Izslēdzot filtru "Kontraktētie Mākslinieki", tiks parādīts viss lietotāja augšupielādētais saturs.
|
||||
|
||||
Tas ietver arī saturu, kas, iespējams, nav pareizi licencēts lietošanai osu!. Pārlūkojiet uz savu risku.</value>
|
||||
</data>
|
||||
<data name="understood" xml:space="preserve">
|
||||
<value>Es saprotu</value>
|
||||
</data>
|
||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||
<value>Kontraktētie Mākslinieki ir mūzikas mākslinieki, kuri ir sadarbojušies ar osu!, lai padarītu daļu no viņu mūzikas pieejamu, izmantošanai ritma-kartēs. Priekš dažiem osu! jaunumu materiālam, mēs izmantojam tikai iemīļotos māksliniekus, lai labāk atbalstītu apkārtējo ekosistēmu.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -69,4 +69,7 @@ Dette inkluderer innhold som kanskje ikke er korrekt lisensiert for bruk med osu
|
||||
<data name="understood" xml:space="preserve">
|
||||
<value>Jeg forstår</value>
|
||||
</data>
|
||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||
<value>Utvalgte Artister er musikkartister som har samarbeidet med osu! for å lage et utvalg av deres egne spor for bruk i beatmaps. For noen osu! utgivelser viser vi kun utvalgte artist beatmaps for å støtte økosystemet bedre.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -70,6 +70,6 @@ Obejmuje to również zawartość, która może nie być licencjonowana do użyc
|
||||
<value>Rozumiem</value>
|
||||
</data>
|
||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||
<value>Wyróżnieni artyści to artyści muzyczni, którzy współpracowali z osu!, aby udostępnić wybór swoich utworów do wykorzystania w beatmapach. W przypadku niektórych wydań osu! prezentujemy tylko beatmapy wyróżnionych artystów, aby lepiej wspierać otaczający ekosystem.</value>
|
||||
<value>Wyróżnieni artyści to osoby z którymi współpracujemy, by zapewnić społeczności osu! oryginalną muzykę do wykorzystania w beatmapach. W niektórych wydaniach osu! wyświetlamy wyłącznie beatmapy związane z utworami wyróżnionych artystów, aby lepiej wspierać otaczający ekosystem.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Кругі</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Слайдэры</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Спінеры</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Удары</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Барабанныя дробы</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Запаўненні</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Садавіны</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Струмені соку</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Бананавыя душы</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Ноты</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Доўгія ноты</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Кръгове</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Слайдъри</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Спинъри</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Удари</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Слайдъри</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Спинъри</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Плодове</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Сок стриймове</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Бананопад</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Ноти</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Задържащи се ноти</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Cercles</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Sliders</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinners</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Cops</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Redobles</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swells</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Fruites</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Juice Streams</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Pluges de Bananes</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notes</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Notes Sostingudes</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Koleček</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Sliderů</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinnerů</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Úderů</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Virblů</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Šejkrů</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Ovoce</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Proudů džusu</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banánových spršek</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Not</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Dlouhých not</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Circles</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slider</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinner</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Treffer</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Drumrolls</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swells</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Fruits</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Juice-Streams</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banana-Showers</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notes</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Hold-Notes</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Κύκλοι</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Κυλίσεις</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Περιστροφές</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Εμφανίσεις</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Βαρέλια</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Χτυπήματα</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Φρούτα</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Ροές Χυμού</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Μπανάνα Ντους</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Σημειώσεις</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Αναμονή Σημειώσεων</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Círculos</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Sliders</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinners</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Golpes</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Redobles</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swells</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Frutas</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Corrientes de jugo</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Lluvia de plátanos</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notas</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Notas largas</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Círculos</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Sliders</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinners</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Golpes</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Redobles</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swells</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Frutas</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Corrientes de jugo</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Lluvia de plátanos</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notas</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Notas largas</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Ympyrät</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Liukurit</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Pyörittimet</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Osumat</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Rumpupärinät</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Pyöritin</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Hedelmät</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Mehuvirtaukset</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banaanisuihkut</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Nuotit</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Pitonuotit</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Cercles</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Sliders</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinners</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Hits</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Drumrolls</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swells</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Fruits</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Juice Streams</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banana Showers</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notes</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Hold Notes</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Circle</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slider</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinner</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Hit</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Drumroll</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swell</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Fruit</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Juice Stream</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banana Shower</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Note</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Hold Note</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Cerchi</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slider</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinner</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Colpi</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Rullanti</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Crescenti</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Frutti</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Strisce di Succo</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Piogge di Banane</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Note</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Note Lunghe</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>サークルの数</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>スライダーの数</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>スピナーの数</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>ノートの数</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>連打の数</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>でんでん太鼓の数</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>フルーツの数</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>ジュースストリームの数</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>バナナシャワーの数</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>ノートの数</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>ホールドノートの数</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>동그라미 갯수</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>슬라이더 갯수</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>스피너 횟수</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>히트 갯수</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>연타 횟수</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>덴덴 북 갯수</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>과일 갯수</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>쥬스 스트림 횟수</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>바나나 샤워 횟수</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>노트 수</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>홀드 노트 갯수</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Apļi</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slīdņi</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spineri</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Sitieni</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Bungas</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Uzbriedumi</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Augļi</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Sulas Plūsmas</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banānu Duša</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notis</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Turāmās Notis</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Bulatan</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Gelangsar</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Pemutar</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Pukulan</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Titiran gendang</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Kembung</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Buah</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Aliran Jus</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Hujan Pisang</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Nada</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Tahan Nada</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Kółka</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slidery</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinnery</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Trafienia</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Seria trafień</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Fale</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Owoce</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Strumień soku</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Bananowy prysznic</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Nota</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Przytrzymaj Noty</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Círculos</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Controles deslizantes</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinners</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Acertos</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Tambores</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Batidas rápidas</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Frutas</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Fluxos de Suco</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Chuvas de Banana</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notas</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Manter notas</value>
|
||||
</data>
|
||||
</root>
|
||||
94
osu.Game.Resources/Localisation/BeatmapStatisticStrings.resx
Normal file
94
osu.Game.Resources/Localisation/BeatmapStatisticStrings.resx
Normal file
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Circles</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Sliders</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinners</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Hits</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Drumrolls</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swells</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Fruits</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Juice Streams</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Banana Showers</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notes</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Hold Notes</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Cercuri</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slidere</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spinner-uri</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Clicuri</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Drumroll-uri</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swell-uri</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Fructe</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Stream-uri de Suc</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Shower de Banane</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Note</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Hold Note-uri</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Ноты</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Слайдеры</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Спиннеры</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Ноты</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Барабанные дроби</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Заполнения</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Фрукты</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Струи сока</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Банановые души</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Ноты</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Удерживаемые ноты</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Halkalar</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Kaydıraçlar</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Döner semboller</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Vuruşlar</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Davul ruloları</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Yükselme</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Meyveler</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Meyve Suyu Akışları</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Muz Duşları</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Notlar</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Bekletme Notları</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Нот</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Слайдери</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Спіннери</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Удари</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Дроби</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Рокоти</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Фрукти</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Струмені соку</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Бананові дощі</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Ноти</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Довгі ноти</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>Vòng tròn</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>Slide</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>Spin</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>Hit</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>Gõ trống</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>Swell</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>Hoa quả</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>Juice stream</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>Mây chuối</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>Nốt</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>Nốt giữ</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>圓圈</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>滑條</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>轉盤</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>打擊</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>黃長條</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>吹氣球</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>水果</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>果汁串</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>香蕉群</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>音符</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>長按音符</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?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="circles" xml:space="preserve">
|
||||
<value>圆圈</value>
|
||||
</data>
|
||||
<data name="sliders" xml:space="preserve">
|
||||
<value>滑条</value>
|
||||
</data>
|
||||
<data name="spinners" xml:space="preserve">
|
||||
<value>转盘</value>
|
||||
</data>
|
||||
<data name="hits" xml:space="preserve">
|
||||
<value>击打</value>
|
||||
</data>
|
||||
<data name="drumrolls" xml:space="preserve">
|
||||
<value>黄条</value>
|
||||
</data>
|
||||
<data name="swells" xml:space="preserve">
|
||||
<value>气球</value>
|
||||
</data>
|
||||
<data name="fruits" xml:space="preserve">
|
||||
<value>水果</value>
|
||||
</data>
|
||||
<data name="juice_streams" xml:space="preserve">
|
||||
<value>小果</value>
|
||||
</data>
|
||||
<data name="banana_showers" xml:space="preserve">
|
||||
<value>香蕉</value>
|
||||
</data>
|
||||
<data name="notes" xml:space="preserve">
|
||||
<value>单点</value>
|
||||
</data>
|
||||
<data name="hold_notes" xml:space="preserve">
|
||||
<value>长条</value>
|
||||
</data>
|
||||
</root>
|
||||
151
osu.Game.Resources/Localisation/BeatmapSubmission.be.resx
Normal file
151
osu.Game.Resources/Localisation/BeatmapSubmission.be.resx
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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_submission_title" xml:space="preserve">
|
||||
<value>Публікацыя карты</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_description" xml:space="preserve">
|
||||
<value>Падзяліцеся сваёй картай з усім светам!</value>
|
||||
</data>
|
||||
<data name="content_permissions" xml:space="preserve">
|
||||
<value>Правы на выкарыстанне медыя</value>
|
||||
</data>
|
||||
<data name="content_permissions_acknowledgement" xml:space="preserve">
|
||||
<value>Зразумела</value>
|
||||
</data>
|
||||
<data name="frequently_asked_questions" xml:space="preserve">
|
||||
<value>Частыя пытанні</value>
|
||||
</data>
|
||||
<data name="submission_settings" xml:space="preserve">
|
||||
<value>Параметры публікацыі</value>
|
||||
</data>
|
||||
<data name="confirm_submission" xml:space="preserve">
|
||||
<value>Апублікаваць карту!</value>
|
||||
</data>
|
||||
<data name="exporting" xml:space="preserve">
|
||||
<value>Пераўтварэнне ў сумяшчальны фармат...</value>
|
||||
</data>
|
||||
<data name="preparing" xml:space="preserve">
|
||||
<value>Падрыхтоўка да загрузцы...</value>
|
||||
</data>
|
||||
<data name="uploading" xml:space="preserve">
|
||||
<value>Загрузка змесціва карты...</value>
|
||||
</data>
|
||||
<data name="finishing" xml:space="preserve">
|
||||
<value>Завяршэнне...</value>
|
||||
</data>
|
||||
<data name="content_permissions_disclaimer" xml:space="preserve">
|
||||
<value>Перш чым працягнуць, мы просім вас праверыць, ці дазволена выкарыстоўваць загружанае вамі змесціва. Звярніце ўвагу, што вы адказныя за апублікаваны вамі кантэнт на платформе osu!. Калі сумняваецеся, калі ласка, атрымаеце дазвол ад аўтараў перад загрузкай!</value>
|
||||
</data>
|
||||
<data name="check_content_usage_guidelines" xml:space="preserve">
|
||||
<value>Азнаёміцца з кіраўніцтвам па правілах выкарыстання медыя</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria" xml:space="preserve">
|
||||
<value>Крытэрыі ранкинга карт</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria_description" xml:space="preserve">
|
||||
<value>Не ўпэўненыя, што карта адпавядаюць усім правілам і рэкамендацыям? Паспрабуйцце звярнуцца са спісам неабходных крытэрыяў, паскорыце працэс атрымання рэйтынгу!</value>
|
||||
</data>
|
||||
<data name="submission_process" xml:space="preserve">
|
||||
<value>Працэдура ранкинга</value>
|
||||
</data>
|
||||
<data name="submission_process_description" xml:space="preserve">
|
||||
<value>Хочаце даведацца больш аб этапах атрымання рэйтынгу? Вывучыце падрабязны артыкул на вікі!</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum" xml:space="preserve">
|
||||
<value>Форум для абмеркавання маппинга</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum_description" xml:space="preserve">
|
||||
<value>Ёсць пытанні па маппингу і працэдуры ранкинга? Задайце іх на форуме!</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum" xml:space="preserve">
|
||||
<value>Форум для пошуку модероў</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum_description" xml:space="preserve">
|
||||
<value>Узніклі праблемы з атрыманнем зваротнай сувязі? Пастаўце карту ў чаргу моддера!</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_caption" xml:space="preserve">
|
||||
<value>У якой катэгорыі апублікаваць карту?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_wip" xml:space="preserve">
|
||||
<value>У распрацоўцы/патрэбна дапамога (не завершана, не гатовая да атрымання рэйтынгу)</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_pending" xml:space="preserve">
|
||||
<value>На разглядзе (завершана, гатовая да атрымання рэйтынгу)</value>
|
||||
</data>
|
||||
<data name="notify_for_discussion_replies" xml:space="preserve">
|
||||
<value>Атрымліваць апавяшчэнні аб водгуках на карту</value>
|
||||
</data>
|
||||
<data name="load_in_browser_after_submission" xml:space="preserve">
|
||||
<value>Адкрыць у браўзэры пасля загрузкі</value>
|
||||
</data>
|
||||
<data name="legacy_export_disclaimer" xml:space="preserve">
|
||||
<value>Заўвага: каб гульцы ўсіх версій osu! змаглі атрымаць асалоду ад вашай картай, яна будзе ператворана ў назад-сумяшчальны фармат. Мы зрабілі ўсё магчымае для выключэння ўплыву гэтага працэсу на зыходны стан карты, аднак некаторыя даныя новых функцый, не падтрымоўваных папярэднімі версіямі osu!, у любым выпадку могуць быць страчаныя.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>Нельга апублікаваць пустую карту.</value>
|
||||
</data>
|
||||
<data name="update_beatmap" xml:space="preserve">
|
||||
<value>Абнавіць карту!</value>
|
||||
</data>
|
||||
<data name="upload_new_beatmap" xml:space="preserve">
|
||||
<value>Загрузіць НОВУЮ карту!</value>
|
||||
</data>
|
||||
</root>
|
||||
151
osu.Game.Resources/Localisation/BeatmapSubmission.ca.resx
Normal file
151
osu.Game.Resources/Localisation/BeatmapSubmission.ca.resx
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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_submission_title" xml:space="preserve">
|
||||
<value>Enviament de mapes</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_description" xml:space="preserve">
|
||||
<value>Comparteix el teu mapa amb el món!</value>
|
||||
</data>
|
||||
<data name="content_permissions" xml:space="preserve">
|
||||
<value>Permisos de continguts</value>
|
||||
</data>
|
||||
<data name="content_permissions_acknowledgement" xml:space="preserve">
|
||||
<value>Ho entenc</value>
|
||||
</data>
|
||||
<data name="frequently_asked_questions" xml:space="preserve">
|
||||
<value>Preguntes freqüents</value>
|
||||
</data>
|
||||
<data name="submission_settings" xml:space="preserve">
|
||||
<value>Configuració de l'enviament</value>
|
||||
</data>
|
||||
<data name="confirm_submission" xml:space="preserve">
|
||||
<value>Envia el mapa!</value>
|
||||
</data>
|
||||
<data name="exporting" xml:space="preserve">
|
||||
<value>Exportant mapa per compatibilitat...</value>
|
||||
</data>
|
||||
<data name="preparing" xml:space="preserve">
|
||||
<value>Es prepara per a pujar...</value>
|
||||
</data>
|
||||
<data name="uploading" xml:space="preserve">
|
||||
<value>Es pugen els continguts del mapa...</value>
|
||||
</data>
|
||||
<data name="finishing" xml:space="preserve">
|
||||
<value>Acabant...</value>
|
||||
</data>
|
||||
<data name="content_permissions_disclaimer" xml:space="preserve">
|
||||
<value>Abans de continuar, us demanem que comproveu si s'ha autoritzat la pujada que voleu realitzar. Tingueu en compte que sou responsable del contingut que pugeu a la plataforma i, si teniu algun dubte, hauríeu de demanar permís dels creadors abans de fer-ho!</value>
|
||||
</data>
|
||||
<data name="check_content_usage_guidelines" xml:space="preserve">
|
||||
<value>Comprova les normes d'ús de contingut per a més informació</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria" xml:space="preserve">
|
||||
<value>Criteri de classificació de mapa</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria_description" xml:space="preserve">
|
||||
<value>No esteu segur si compliu amb les normes? Comproveu la llista i feu que el procés de classificació sigui més àgil!</value>
|
||||
</data>
|
||||
<data name="submission_process" xml:space="preserve">
|
||||
<value>Procés d'enviament</value>
|
||||
</data>
|
||||
<data name="submission_process_description" xml:space="preserve">
|
||||
<value>No esteu segur sobre el procés d'admissió? Comproveu l'entrada de la viqui!</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum" xml:space="preserve">
|
||||
<value>Fòrum d'ajuda de mapeig</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum_description" xml:space="preserve">
|
||||
<value>Teniu preguntes sobre el mapeig i els enviaments de mapes? Pregunteu als fòrums!</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum" xml:space="preserve">
|
||||
<value>Fòrum de cues de moding</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum_description" xml:space="preserve">
|
||||
<value>Teniu problemes a l'hora de rebre retroaccions? Pregunteu a la cua de mods!</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_caption" xml:space="preserve">
|
||||
<value>On voleu anar per a penjar el vostre mapa?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_wip" xml:space="preserve">
|
||||
<value>Treball en curs / Ajuda (incomplet, encara no es pot classificar)</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_pending" xml:space="preserve">
|
||||
<value>Pendent (completat, que es pot classificar)</value>
|
||||
</data>
|
||||
<data name="notify_for_discussion_replies" xml:space="preserve">
|
||||
<value>Rep notificacions de les respostes de discussions</value>
|
||||
</data>
|
||||
<data name="load_in_browser_after_submission" xml:space="preserve">
|
||||
<value>Carrega al navegador després d'enviar-lo</value>
|
||||
</data>
|
||||
<data name="legacy_export_disclaimer" xml:space="preserve">
|
||||
<value>Nota: Per tal que tots els usuaris de totes les versios de l'osu puguin gaudir del vostre mapa, s'exportarà a un format compatible. Encara que fem l'esforç que aquest procés permeti obtenir un mapa jugable tal com desitja el seu autor, algunes dades relacionades amb característiques que no funcionen en versions prèvies de l'osu es podrien perdre.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>No es poden enviar mapes buits.</value>
|
||||
</data>
|
||||
<data name="update_beatmap" xml:space="preserve">
|
||||
<value>Actualitza el mapa!</value>
|
||||
</data>
|
||||
<data name="upload_new_beatmap" xml:space="preserve">
|
||||
<value>Penja un mapa nou!</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -107,7 +107,7 @@
|
||||
<value>Proces odesílání</value>
|
||||
</data>
|
||||
<data name="submission_process_description" xml:space="preserve">
|
||||
<value>Nejsi si jistý procesem odesílání? Podívejte se na tuto wiki stránku!</value>
|
||||
<value>Nejsi si jistý procesem odesílání? Podívej se na tuto wiki stránku!</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum" xml:space="preserve">
|
||||
<value>Fórum pro pomoc s mapováním</value>
|
||||
|
||||
@@ -140,7 +140,7 @@
|
||||
<value>Nota: al fine di consentire agli utenti di tutte le versioni osu! di godere della tua beatmap, verrà esportata in un formato retrocompatibile. Anche se abbiamo fatto sforzi per garantire che il processo mantenga la beatmap giocabile nella sua forma prevista, alcuni dati relativi a funzionalità che le versioni precedenti di osu! non supportano potrebbero andare perduti.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>Le beatmap vuote non possono essere inviate.</value>
|
||||
<value>Le beatmap vuote non possono essere caricate.</value>
|
||||
</data>
|
||||
<data name="update_beatmap" xml:space="preserve">
|
||||
<value>Aggiorna beatmap!</value>
|
||||
|
||||
151
osu.Game.Resources/Localisation/BeatmapSubmission.lv-LV.resx
Normal file
151
osu.Game.Resources/Localisation/BeatmapSubmission.lv-LV.resx
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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_submission_title" xml:space="preserve">
|
||||
<value>Ritma-mapes diskusija</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_description" xml:space="preserve">
|
||||
<value>Parādi savu ritma-karti pasaulei!</value>
|
||||
</data>
|
||||
<data name="content_permissions" xml:space="preserve">
|
||||
<value>Satura atļaujas</value>
|
||||
</data>
|
||||
<data name="content_permissions_acknowledgement" xml:space="preserve">
|
||||
<value>Es saprotu</value>
|
||||
</data>
|
||||
<data name="frequently_asked_questions" xml:space="preserve">
|
||||
<value>Biežāk uzdotie jautājumi</value>
|
||||
</data>
|
||||
<data name="submission_settings" xml:space="preserve">
|
||||
<value>Iesūtīšanas iestatījumi</value>
|
||||
</data>
|
||||
<data name="confirm_submission" xml:space="preserve">
|
||||
<value>Iesūtīt ritma-karti!</value>
|
||||
</data>
|
||||
<data name="exporting" xml:space="preserve">
|
||||
<value>Eksportē ritma-kartes priekš saderības...</value>
|
||||
</data>
|
||||
<data name="preparing" xml:space="preserve">
|
||||
<value>Gatavo augšupielādei...</value>
|
||||
</data>
|
||||
<data name="uploading" xml:space="preserve">
|
||||
<value>Augšupielādē ritma-kartes saturu...</value>
|
||||
</data>
|
||||
<data name="finishing" xml:space="preserve">
|
||||
<value>Gandriiīiiīiiz...</value>
|
||||
</data>
|
||||
<data name="content_permissions_disclaimer" xml:space="preserve">
|
||||
<value>Pirms tu turpini, mēs vēlamies paprasīt vai tu esi pārbaudījis saturu, kuru tu taisies publicēt. Lūdzu saproti, ka tu esi atbildīgs par saturu, kuru tu augšupielādē platformā, un ja tev ir šaubas, pajautā atļauju satura izveidotājam pirms publicēšanas!</value>
|
||||
</data>
|
||||
<data name="check_content_usage_guidelines" xml:space="preserve">
|
||||
<value> Pārbaudi materiāla izmantošanas noteikumus, lai iegūtu vairāk informāciju</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria" xml:space="preserve">
|
||||
<value>Ritma-Karšu novērtēšanas kritēriji</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria_description" xml:space="preserve">
|
||||
<value>Neesi drošs vai tu seko noteikumiem? Pārbaudi sarakstu un paātrini novērtēšanas procesu!</value>
|
||||
</data>
|
||||
<data name="submission_process" xml:space="preserve">
|
||||
<value>Iesūtīšanas process</value>
|
||||
</data>
|
||||
<data name="submission_process_description" xml:space="preserve">
|
||||
<value>Neesi drošs par iesūtīšanas procesu? Apskati viki!</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum" xml:space="preserve">
|
||||
<value>Kartēšanas palīdzības forums</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum_description" xml:space="preserve">
|
||||
<value>Ir jautājumi par kartēšanu? Uzdod tos forumā!</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum" xml:space="preserve">
|
||||
<value>Moderātoru citējumu forums</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum_description" xml:space="preserve">
|
||||
<value>Problēmas ar komentāru iegūšanu? Kāpēc nepajautāt moderātoru sarakstā?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_caption" xml:space="preserve">
|
||||
<value>Kur tu vēlētos nopublicēt savu ritma-karti?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_wip" xml:space="preserve">
|
||||
<value>Pabeigšanas Procesā / Palīdzība (nepabeigta, nav gatava novērtēšanai)</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_pending" xml:space="preserve">
|
||||
<value>Pagaidu (pabeigtas, gatavas novērtēšanai)</value>
|
||||
</data>
|
||||
<data name="notify_for_discussion_replies" xml:space="preserve">
|
||||
<value>Saņemt paziņojumus par diskusiju atbildēm</value>
|
||||
</data>
|
||||
<data name="load_in_browser_after_submission" xml:space="preserve">
|
||||
<value>Ielādēt pārlūkā pēc iesūtīšanas</value>
|
||||
</data>
|
||||
<data name="legacy_export_disclaimer" xml:space="preserve">
|
||||
<value>Piezīme: Lai visu osu! versijas lietotāji varētu izbaudīt tavu ritma-karti, tā tiks eksportēta atgriezeniski saderīgā formātā. Kamēr mēs esam centušies ar šo procesu, uzturēt ritma-karti spēlējamu tās nodomātajā formā, dati, kuri ir saistīti ar jaunām spēles funkcijām, kuras iepriekšējās osu! versijas neatbalsta, varētu tikt pazaudēti.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>Tukšas ritma-kartes nevar tikt iesūtītas.</value>
|
||||
</data>
|
||||
<data name="update_beatmap" xml:space="preserve">
|
||||
<value>Atjaunināt ritma-karti!</value>
|
||||
</data>
|
||||
<data name="upload_new_beatmap" xml:space="preserve">
|
||||
<value>Augšupielādēt JAUNU ritma-karti!</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -98,10 +98,10 @@
|
||||
<value>Semak garis panduan penggunaan kandungan untuk maklumat lanjut</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria" xml:space="preserve">
|
||||
<value>Ukur tara penarafan Berkedudukan peta rentak</value>
|
||||
<value>Ukur tara penarafan Berpangkat peta rentak</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria_description" xml:space="preserve">
|
||||
<value>Anda tidak pasti jika memenuhi garis panduan? Semak senarai dan percepatkan proses penarafan Berkedudukan!</value>
|
||||
<value>Anda tidak pasti jika memenuhi garis panduan? Semak senarai dan percepatkan proses penarafan Berpangkat!</value>
|
||||
</data>
|
||||
<data name="submission_process" xml:space="preserve">
|
||||
<value>Proses penyerahan</value>
|
||||
@@ -125,10 +125,10 @@
|
||||
<value>Di manakah anda ingin menghantar peta rentak anda?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_wip" xml:space="preserve">
|
||||
<value>Kerja Sedang Berjalan / Bantuan (tidak lengkap, tidak sedia untuk berkedudukan)</value>
|
||||
<value>Kerja Sedang Berjalan / Bantuan (tidak lengkap, tidak sedia untuk berpangkat)</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_pending" xml:space="preserve">
|
||||
<value>Tergantung (lengkap, sedia untuk berkedudukan)</value>
|
||||
<value>Tergantung (lengkap, sedia untuk berpangkat)</value>
|
||||
</data>
|
||||
<data name="notify_for_discussion_replies" xml:space="preserve">
|
||||
<value>Terima pemberitahuan untuk balasan perbincangan</value>
|
||||
|
||||
151
osu.Game.Resources/Localisation/BeatmapSubmission.no.resx
Normal file
151
osu.Game.Resources/Localisation/BeatmapSubmission.no.resx
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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_submission_title" xml:space="preserve">
|
||||
<value>Beatmap innsending</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_description" xml:space="preserve">
|
||||
<value>Del ditt beatmap med verden!</value>
|
||||
</data>
|
||||
<data name="content_permissions" xml:space="preserve">
|
||||
<value>Innholdstillatelser</value>
|
||||
</data>
|
||||
<data name="content_permissions_acknowledgement" xml:space="preserve">
|
||||
<value>Jeg forstår</value>
|
||||
</data>
|
||||
<data name="frequently_asked_questions" xml:space="preserve">
|
||||
<value>Ofte spurte spørsmål</value>
|
||||
</data>
|
||||
<data name="submission_settings" xml:space="preserve">
|
||||
<value>Innstillinger for innsending</value>
|
||||
</data>
|
||||
<data name="confirm_submission" xml:space="preserve">
|
||||
<value>Send inn beatmap!</value>
|
||||
</data>
|
||||
<data name="exporting" xml:space="preserve">
|
||||
<value>Eksporterer beatmap for kompatibilitet...</value>
|
||||
</data>
|
||||
<data name="preparing" xml:space="preserve">
|
||||
<value>Forbereder opplasting...</value>
|
||||
</data>
|
||||
<data name="uploading" xml:space="preserve">
|
||||
<value>Laster opp beatmap innhold...</value>
|
||||
</data>
|
||||
<data name="finishing" xml:space="preserve">
|
||||
<value>Fullfører...</value>
|
||||
</data>
|
||||
<data name="content_permissions_disclaimer" xml:space="preserve">
|
||||
<value>Før du fortsetter, ber vi deg sjekke om innholdet du laster opp er klarert for opplasting. Vær oppmerksom på at du har ansvaret for innholdet du laster opp til plattformen og hvis du er i tvil, bør du be om tillatelse fra innholdsskaperne før opplasting!</value>
|
||||
</data>
|
||||
<data name="check_content_usage_guidelines" xml:space="preserve">
|
||||
<value>Sjekk retningslinjer for bruk av innhold for mer informasjon</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria" xml:space="preserve">
|
||||
<value>Beatmap rangeringskriterier</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria_description" xml:space="preserve">
|
||||
<value>Er du sikker på at du er innenfor retningslinjene? Sjekk listen og fremskynde rangeringsprosessen!</value>
|
||||
</data>
|
||||
<data name="submission_process" xml:space="preserve">
|
||||
<value>Prosess for innlevering</value>
|
||||
</data>
|
||||
<data name="submission_process_description" xml:space="preserve">
|
||||
<value>Usikker på innsendingsprosessen? Sjekk ut wiki-oppføringen!</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum" xml:space="preserve">
|
||||
<value>Tilording av hjelpeforum</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum_description" xml:space="preserve">
|
||||
<value>Har du noen spørsmål om mapping og innsending? Spør om det i forumet!</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum" xml:space="preserve">
|
||||
<value>Modding køer forum</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum_description" xml:space="preserve">
|
||||
<value>Har du trøbbel ved å få tilbakemelding? Gjerne spør i en mod kø!</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_caption" xml:space="preserve">
|
||||
<value>Hvor vil du legge ut beatmappet ditt?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_wip" xml:space="preserve">
|
||||
<value>Under arbeid / Hjelp (ikke komplett, ikke klar for rangering)</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_pending" xml:space="preserve">
|
||||
<value>Venter (fullført, klar for rangering)</value>
|
||||
</data>
|
||||
<data name="notify_for_discussion_replies" xml:space="preserve">
|
||||
<value>Motta varsler om diskusjon svar</value>
|
||||
</data>
|
||||
<data name="load_in_browser_after_submission" xml:space="preserve">
|
||||
<value>Last inn i nettleser etter innsending</value>
|
||||
</data>
|
||||
<data name="legacy_export_disclaimer" xml:space="preserve">
|
||||
<value>Merk: For å gjøre det mulig for brukere av all osu!-versjoner for å nyte ditt beatmap, vil den bli eksportert i et bakovers-kompatibelt format. Samtidig som vi har arbeidet for å sikre at denne prosessen holder beatmappet som er spillbar i sin tiltenkte form. noen data relatert til funksjoner som tidligere versjoner av osu! ikke støtter kan gå tapt.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>Tomme beatmaps kan ikke sendes.</value>
|
||||
</data>
|
||||
<data name="update_beatmap" xml:space="preserve">
|
||||
<value>Oppdater beatmap!</value>
|
||||
</data>
|
||||
<data name="upload_new_beatmap" xml:space="preserve">
|
||||
<value>Last opp NY beatmap!</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -65,7 +65,7 @@
|
||||
<value>Podziel się swoją beatmapą ze światem!</value>
|
||||
</data>
|
||||
<data name="content_permissions" xml:space="preserve">
|
||||
<value>Uprawnienia treści</value>
|
||||
<value>Uprawnienia do zawartych treści</value>
|
||||
</data>
|
||||
<data name="content_permissions_acknowledgement" xml:space="preserve">
|
||||
<value>Rozumiem</value>
|
||||
@@ -74,13 +74,13 @@
|
||||
<value>Często zadawane pytania</value>
|
||||
</data>
|
||||
<data name="submission_settings" xml:space="preserve">
|
||||
<value>Ustawienia zgłoszenia</value>
|
||||
<value>Ustawienia przesyłania</value>
|
||||
</data>
|
||||
<data name="confirm_submission" xml:space="preserve">
|
||||
<value>Prześlij beatmapę!</value>
|
||||
</data>
|
||||
<data name="exporting" xml:space="preserve">
|
||||
<value>Eksportowanie beatmapy dla kompatybilności...</value>
|
||||
<value>Eksportowanie beatmapy w kompatybilnym formacie...</value>
|
||||
</data>
|
||||
<data name="preparing" xml:space="preserve">
|
||||
<value>Przygotowywanie do przesłania...</value>
|
||||
@@ -92,40 +92,40 @@
|
||||
<value>Finalizowanie...</value>
|
||||
</data>
|
||||
<data name="content_permissions_disclaimer" xml:space="preserve">
|
||||
<value>Zanim przejdziesz dalej, prosimy o sprawdzenie, czy przesyłane treści zostały zatwierdzone do przesłania. Pamiętaj, że jesteś odpowiedzialny za treści, które przesyłasz na platformę i w razie wątpliwości powinieneś poprosić twórców o pozwolenie przed ich przesłaniem!</value>
|
||||
<value>Zanim przejdziesz dalej, upewnij się, że posiadasz odpowiednie uprawnienia do przesyłanych treści. Pamiętaj, że ponosisz wszelką odpowiedzialność za treści przesłane na platformę - w razie wątpliwości skontaktuj się z twórcami przesyłanych treści w celu uzyskania odpowiednich pozwoleń.</value>
|
||||
</data>
|
||||
<data name="check_content_usage_guidelines" xml:space="preserve">
|
||||
<value>Sprawdź wytyczne dotyczące użycia zawartości, aby uzyskać więcej informacji</value>
|
||||
<value>Sprawdź wytyczne dot. wykorzystywania treści</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria" xml:space="preserve">
|
||||
<value>Kryteria rankingu beatmapy</value>
|
||||
<value>Kryteria rankingowe beatmap</value>
|
||||
</data>
|
||||
<data name="beatmap_ranking_criteria_description" xml:space="preserve">
|
||||
<value>Nie jesteś pewien czy spełniasz wytyczne? Sprawdź listę i przyspiesz proces nadania statusu rankingowego!</value>
|
||||
<value>Nie masz pewności, czy beatmapa spełnia odpowiednie wytyczne? Sprawdź listę i przyspiesz proces nadania statusu rankingowego!</value>
|
||||
</data>
|
||||
<data name="submission_process" xml:space="preserve">
|
||||
<value>Proces przesyłania</value>
|
||||
<value>Proces przesyłania beatmap</value>
|
||||
</data>
|
||||
<data name="submission_process_description" xml:space="preserve">
|
||||
<value>Nie masz pewności co do procesu przesyłania? Sprawdź wpis na wiki!</value>
|
||||
<value>Masz wątpliwości dotyczące procesu przesyłania beatmap? Sprawdź artykuł na wiki!</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum" xml:space="preserve">
|
||||
<value>Forum pomocy w mapowaniu</value>
|
||||
<value>Forum pomocy w tworzeniu beatmap</value>
|
||||
</data>
|
||||
<data name="mapping_help_forum_description" xml:space="preserve">
|
||||
<value>Masz pytania dotyczące mapowania i zgłoszeń? Zadaj je na forum!</value>
|
||||
<value>Masz pytania dotyczące tworzenia beatmap i procesu przesyłania? Zadaj je na forum!</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum" xml:space="preserve">
|
||||
<value>Forum kolejki moderacji</value>
|
||||
<value>Forum kolejek modowania</value>
|
||||
</data>
|
||||
<data name="modding_queues_forum_description" xml:space="preserve">
|
||||
<value>Masz problem z otrzymaniem opinii? Zapytaj w kolejce moderacji!</value>
|
||||
<value>Masz problem z uzyskaniem opinii o swojej beatmapie? Zapytaj w kolejce modowania!</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_caption" xml:space="preserve">
|
||||
<value>Gdzie chciałbyś opublikować swoją beatmapę?</value>
|
||||
<value>W której kategorii chcesz opublikować swoją beatmapę?</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_wip" xml:space="preserve">
|
||||
<value>Rozwijana / Pomoc (niekompletna, nie gotowa do nadania statusu rankingowego)</value>
|
||||
<value>Obecnie rozwijana (niekompletna, niegotowa do nadania statusu rankingowego)</value>
|
||||
</data>
|
||||
<data name="beatmap_submission_target_pending" xml:space="preserve">
|
||||
<value>Oczekująca (ukończona, gotowa do uzyskania statusu rankingowego)</value>
|
||||
@@ -137,13 +137,13 @@
|
||||
<value>Otwórz w przeglądarce po przesłaniu</value>
|
||||
</data>
|
||||
<data name="legacy_export_disclaimer" xml:space="preserve">
|
||||
<value>Uwaga: Aby umożliwić użytkownikom wszystkich wersji osu! korzystanie z beatmapy, zostanie ona wyeksportowana w formacie kompatybilnym wstecz. Chociaż dołożyliśmy starań, aby proces ten zapewniał zagranie beatmapy w zamierzonej formie, niektóre dane związane z funkcjami, których poprzednie wersje osu! nie obsługują, mogą zostać utracone.</value>
|
||||
<value>Uwaga: Aby umożliwić użytkownikom wszystkich wersji osu! korzystanie z beatmapy, zostanie ona wyeksportowana w formacie kompatybilnym wstecz. Chociaż dołożyliśmy starań, aby proces ten umożliwiał zagranie beatmapy w zamierzonej formie, niektóre dane związane z funkcjami, których poprzednie wersje osu! nie obsługują, mogą zostać utracone.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>Puste beatmapy nie mogą być przesłane.</value>
|
||||
<value>Nie możesz przesyłać pustych beatmap.</value>
|
||||
</data>
|
||||
<data name="update_beatmap" xml:space="preserve">
|
||||
<value>Aktualizuj beatmapę!</value>
|
||||
<value>Zaktualizuj beatmapę!</value>
|
||||
</data>
|
||||
<data name="upload_new_beatmap" xml:space="preserve">
|
||||
<value>Prześlij NOWĄ beatmapę!</value>
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
<value>Enviando conteúdo de beatmap...</value>
|
||||
</data>
|
||||
<data name="finishing" xml:space="preserve">
|
||||
<value>Concluindo ...</value>
|
||||
<value>Concluindo...</value>
|
||||
</data>
|
||||
<data name="content_permissions_disclaimer" xml:space="preserve">
|
||||
<value>Antes de continuar, pedimos que verifique se o conteúdo que você está enviando foi limpo para envio. Por favor, entenda que você é responsável pelo conteúdo que você carrega na plataforma e, em caso de dúvida, deve pedir permissão aos criadores antes de fazer o upload!</value>
|
||||
|
||||
@@ -137,7 +137,7 @@
|
||||
<value>Открыть в браузере после загрузки</value>
|
||||
</data>
|
||||
<data name="legacy_export_disclaimer" xml:space="preserve">
|
||||
<value>Примечание: Чтобы игроки всех версий osu! смогли насладиться вашей картой, она будет преобразована в обратно совместимый формат. Мы сделали всё возможное для исключения влияния этого процесса на исходное состояние карты, однако некоторые данные новых функций, не поддерживаемых предыдущими версиями osu!, в любом случае могут быть потеряны.</value>
|
||||
<value>Примечание: Чтобы игроки всех версий игры смогли насладиться вашей картой, она будет преобразована в обратно совместимый формат. Мы сделали всё возможное для исключения влияния этого процесса на исходное состояние карты, однако некоторые данные новых функций, не поддерживаемых предыдущими версиями osu!, в любом случае могут быть потеряны.</value>
|
||||
</data>
|
||||
<data name="empty_beatmaps_cannot_be_submitted" xml:space="preserve">
|
||||
<value>Нельзя опубликовать пустую карту.</value>
|
||||
|
||||
@@ -88,4 +88,14 @@
|
||||
<data name="daily_challenge" xml:space="preserve">
|
||||
<value>штодзённы чэлендж</value>
|
||||
</data>
|
||||
<data name="mobile_disclaimer_header" xml:space="preserve">
|
||||
<value>Некалькі важных слоў ад каманды распрацоўшчыкаў!</value>
|
||||
</data>
|
||||
<data name="mobile_disclaimer_body" xml:space="preserve">
|
||||
<value>Мы выпусцілі osu! на мабільныя платформы, каб як мага больш людзей змаглі атрымаць асалоду ад гульні, аднак мы па-ранейшаму сканцэнтраваны на версіі для ПК.
|
||||
|
||||
Ваш гульнявы досвед не будзе ідэальным і, магчыма, вы адчуеце, што ён значна саступае гульням, распрацаваным спецыяльна для мабільных прылад.
|
||||
|
||||
Мы пастаянна працуем над паляпшэннем гульні - калі ласка, заставайцеся з намі, каб быць у курсе будучых абнаўленняў!</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -68,7 +68,7 @@
|
||||
<value>llistes d'àudio</value>
|
||||
</data>
|
||||
<data name="play" xml:space="preserve">
|
||||
<value>posar</value>
|
||||
<value>juga</value>
|
||||
</data>
|
||||
<data name="edit" xml:space="preserve">
|
||||
<value>edita</value>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user