Compare commits
61 Commits
2025.303.0
...
2025.819.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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 | ||
|
|
60eadda66f | ||
|
|
3caf249cb1 | ||
|
|
5fedb5e6ce | ||
|
|
0edfc339f8 | ||
|
|
a8eab10fd0 | ||
|
|
5e7ee670dc | ||
|
|
5ad60845ef | ||
|
|
a3eaf7cf64 | ||
|
|
432530e85e | ||
|
|
85ea37bcff | ||
|
|
fe4efb627d | ||
|
|
a02b41923b | ||
|
|
913270246d | ||
|
|
0cdb934fd6 | ||
|
|
823d0ef64a | ||
|
|
7a39d7130f | ||
|
|
322458a514 | ||
|
|
5ea5cf4673 | ||
|
|
a83f48bad8 | ||
|
|
62349cccfb | ||
|
|
091e7030f5 | ||
|
|
9cd45251a5 | ||
|
|
836c8fa5d4 | ||
|
|
9d6894040d |
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
|
|
||||||
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
|
|
||||||
@@ -59,27 +59,27 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="new_player_registration" xml:space="preserve">
|
<data name="new_player_registration" xml:space="preserve">
|
||||||
<value>새로운 계정 만들기</value>
|
<value>신규 플레이어 등록</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="lets_get_you_started" xml:space="preserve">
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
<value>시작해봐요</value>
|
<value>시작해 볼까요</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="lets_create_an_account" xml:space="preserve">
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
<value>계정을 만들어볼까요!</value>
|
<value>계정을 만들어 봅시다!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="multi_account_warning_help" xml:space="preserve">
|
<data name="multi_account_warning_help" xml:space="preserve">
|
||||||
<value>제 계정에 접근 할 수 없어요, 도와주세요!</value>
|
<value>로그인이 안 돼요, 도와주세요!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="multi_account_warning_accept" xml:space="preserve">
|
<data name="multi_account_warning_accept" xml:space="preserve">
|
||||||
<value>이해했어요, 지금 만들려는 계정은 제 게 아니에요.</value>
|
<value>이해했어요. 제 계정이 아니예요.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="username_description" xml:space="preserve">
|
<data name="username_description" xml:space="preserve">
|
||||||
<value>이건 당신의 공개적인 명칭이 될 거에요. 욕설이나 다른 누군가를 사칭하는 것은 안돼요. 당신의 개인 정보를 노출하는 것도 안된다는 거 기억해주세요!</value>
|
<value>모두에게 보여질 정보입니다. 모욕, 사칭은 안 돼요. 또한, 개인 정보 노출도 가급적 피해 주세요!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="email_description_1" xml:space="preserve">
|
<data name="email_description_1" xml:space="preserve">
|
||||||
<value>알림, 계정 확인 그리고 당신이 비밀번호를 잊어버렸을 때 쓰일 거에요. 절대로 불필요한 메일은 보내지 않을게요.</value>
|
<value>알림, 계정 확인, 그리고 비밀번호 찾기에 사용돼요. 스팸 메일은 절대, 절대 보내지 않을게요.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="email_description_2" xml:space="preserve">
|
<data name="email_description_2" xml:space="preserve">
|
||||||
<value> 정확하게 적어주세요!</value>
|
<value> 맞는 주소를 기입했는지 확인해 주세요!</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
<value>Регистрация нового игрока</value>
|
<value>Регистрация нового игрока</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="lets_get_you_started" xml:space="preserve">
|
<data name="lets_get_you_started" xml:space="preserve">
|
||||||
<value>Давайте начнём</value>
|
<value>Приступим к созданию нового аккаунта</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="lets_create_an_account" xml:space="preserve">
|
<data name="lets_create_an_account" xml:space="preserve">
|
||||||
<value>Создать аккаунт!</value>
|
<value>Создать аккаунт!</value>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Разыграйце некалькі карт, каб атрымаць рэкамендуемае зрушэнне!</value>
|
<value>Разыграйце некалькі карт, каб атрымаць рэкамендуемае зрушэнне!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Па даным апошніх {0} гульняў, значэнне афсету ўстаноўлена дакладна!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Рэкамендуе мае значэнне зруху на аснове апошніх {0} гульняў: {1} МЗС.</value>
|
<value>Рэкамендуе мае значэнне зруху на аснове апошніх {0} гульняў: {1} МЗС.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Изиграйте няколко бийтмапа за да предложим закъснение!</value>
|
<value>Изиграйте няколко бийтмапа за да предложим закъснение!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Спрямо последните {0} игри, закъснението е настроено правилно!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Според последните {0} игри, предложеното закъснение е {1} мс.</value>
|
<value>Според последните {0} игри, предложеното закъснение е {1} мс.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,11 +94,14 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Juga alguns mapes per rebre una compensació suggerida!</value>
|
<value>Juga alguns mapes per rebre una compensació suggerida!</value>
|
||||||
</data>
|
</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">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Segons les últimes {0} partides, la compensació suggerida és d'{1} ms. </value>
|
<value>Segons les últimes {0} partides, la compensació suggerida és d'{1} ms. </value>
|
||||||
</data>
|
</data>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>Aplicar compensació suggerida</value>
|
<value>Aplica la compensació suggerida</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="offset_wizard" xml:space="preserve">
|
<data name="offset_wizard" xml:space="preserve">
|
||||||
<value>Assistent de compensació</value>
|
<value>Assistent de compensació</value>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Zahraj si pár beatmap, abys obdržel doporučený offset!</value>
|
<value>Zahraj si pár beatmap, abys obdržel doporučený offset!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Na základě posledních {0} her je tvůj offset nastaven správně!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Na základě posledních {0} her je doporučený offset {1} ms.</value>
|
<value>Na základě posledních {0} her je doporučený offset {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Spiele zur Empfehlung eines Offsets ein paar Beatmaps!</value>
|
<value>Spiele zur Empfehlung eines Offsets ein paar Beatmaps!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Basierend auf den letzten {0} Play(s) ist dein Offset richtig gesetzt!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Basierend auf den letzten {0} Spielen ist der empfohlene Offset {1} ms.</value>
|
<value>Basierend auf den letzten {0} Spielen ist der empfohlene Offset {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
<value>Στερεοφωνικός διαχωρισμός Hitsound</value>
|
<value>Στερεοφωνικός διαχωρισμός Hitsound</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="master_volume" xml:space="preserve">
|
<data name="master_volume" xml:space="preserve">
|
||||||
<value>Master</value>
|
<value>Κύριος ήχος</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="master_volume_inactive" xml:space="preserve">
|
<data name="master_volume_inactive" xml:space="preserve">
|
||||||
<value>Master (παράθυρο ανενεργό)</value>
|
<value>Master (παράθυρο ανενεργό)</value>
|
||||||
@@ -91,6 +91,18 @@
|
|||||||
<data name="audio_offset" xml:space="preserve">
|
<data name="audio_offset" xml:space="preserve">
|
||||||
<value>Ηχητική μετατόπιση</value>
|
<value>Ηχητική μετατόπιση</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
|
<value>Παίξε μερικά beatmaps για να λάβεις μια προτεινόμενη μετατόπιση!</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>
|
||||||
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
|
<value>Εφαρμογή προτεινόμενης μετατόπισης</value>
|
||||||
|
</data>
|
||||||
<data name="offset_wizard" xml:space="preserve">
|
<data name="offset_wizard" xml:space="preserve">
|
||||||
<value>Οδηγός μετατόπισης</value>
|
<value>Οδηγός μετατόπισης</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>¡Juega algunos mapas para recibir una compensación sugerida!</value>
|
<value>¡Juega algunos mapas para recibir una compensación sugerida!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Según tus últimas {0} jugadas, ¡tu compensación es correcta!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Según las últimas {0} jugadas, la compensación sugerida es {1} ms.</value>
|
<value>Según las últimas {0} jugadas, la compensación sugerida es {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>¡Juega algunos beatmaps para recibir una compensación sugerida!</value>
|
<value>¡Juega algunos beatmaps para recibir una compensación sugerida!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Según tus últimas {0} jugadas, ¡tu compensación es correcta!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Según las últimas {0} jugadas, la compensación sugerida es {1} ms.</value>
|
<value>Según las últimas {0} jugadas, la compensación sugerida es {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Jouez quelques beatmaps pour qu'un décalage vous soit suggéré !</value>
|
<value>Jouez quelques beatmaps pour qu'un décalage vous soit suggéré !</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>En se basant sur vos {0} dernières parties, votre décalage est correctement réglé !</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>En se basant sur vos {0} dernières parties, le décalage suggéré est de {1} ms.</value>
|
<value>En se basant sur vos {0} dernières parties, le décalage suggéré est de {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>שחקו כמה מפות על מנת לקבל היסט מומלץ!</value>
|
<value>שחקו כמה מפות על מנת לקבל היסט מומלץ!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>בהתחשבות על {0} המשחק(ים) האחרונים, ההתהיה שלך מוגדרת נכון!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>על בסיס {0} המשחקים האחרונים, ההיסט המומלץ הוא {1} מילי־שניות.</value>
|
<value>על בסיס {0} המשחקים האחרונים, ההיסט המומלץ הוא {1} מילי־שניות.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Mainkan beberapa beatmap untuk menerima saran offset!</value>
|
<value>Mainkan beberapa beatmap untuk menerima saran offset!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Berdasarkan {0} permainan sebelumnya, offset kamu telah terpasang dengan benar!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Berdasarkan {0} permainan terakhir, offset yang disarankan adalah {1} ms.</value>
|
<value>Berdasarkan {0} permainan terakhir, offset yang disarankan adalah {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Gioca un paio di beatmap per ricevere suggerimenti all'offset!</value>
|
<value>Gioca un paio di beatmap per ricevere suggerimenti all'offset!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Basandosi sulle ultime partite ({0} in tutto), il tuo offset è impostato correttamente!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Basandosi con {0} partita/e in precedenza, l'offset suggerito è di {1} ms.</value>
|
<value>Basandosi con {0} partita/e in precedenza, l'offset suggerito è di {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>あなたに最適なオフセットを提案するには、いくつかのビートマップをプレイしていただく必要があります!</value>
|
<value>あなたに最適なオフセットを提案するには、いくつかのビートマップをプレイしていただく必要があります!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>最後の {0} プレイに基づいて、オフセットが正しく設定されています!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>直近 {0} 回のプレイに基づいて推奨されるオフセットは {1} msです。</value>
|
<value>直近 {0} 回のプレイに基づいて推奨されるオフセットは {1} msです。</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -92,10 +92,13 @@
|
|||||||
<value>오디오 오프셋</value>
|
<value>오디오 오프셋</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>추천 오프셋을 설정하기 위해 비트맵을 몇 개 플레이 해 주세요!</value>
|
<value>비트맵 몇 판만 플레이하시면 오프셋 추천값을 찾아드릴게요!</value>
|
||||||
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>{0} 판의 플레이를 살펴보니, 오프셋이 올바르게 설정된 상태네요!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>최근 {0}번의 플레이에 기반하여, {1}ms의 오프셋을 추천드려요.</value>
|
<value>{0} 판의 플레이를 살펴보니, 오프셋 설정은 {1} ms가 적당해 보이네요.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>추천 오프셋 적용</value>
|
<value>추천 오프셋 적용</value>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Spēlējiet dažas bītmapes, lai saņemtu ieteikto nobīdi!</value>
|
<value>Spēlējiet dažas bītmapes, lai saņemtu ieteikto nobīdi!</value>
|
||||||
</data>
|
</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">
|
<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>
|
<value>Pamatojoties uz pēdējo(-ām) {0} spēli(-ām), ieteicama nobīde ir {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
<value>Kelantangan</value>
|
<value>Kelantangan</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="output_device" xml:space="preserve">
|
<data name="output_device" xml:space="preserve">
|
||||||
<value>Peranti Keluaran</value>
|
<value>Peranti keluaran</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
||||||
<value>Pemisahan stereo bunyi pukulan</value>
|
<value>Pemisahan stereo bunyi pukulan</value>
|
||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Main beberapa peta rentak untuk menerima sebuah saranan imbangan!</value>
|
<value>Main beberapa peta rentak untuk menerima sebuah saranan imbangan!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Berpangkalkan {0} mainan terdahulu, imbangan anda ditetapkan dengan betul!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Berpangkalkan {0} mainan terakhir, saranan imbangan adalah {1} ms.</value>
|
<value>Berpangkalkan {0} mainan terakhir, saranan imbangan adalah {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Speel een paar beatmaps om een aanbevolen offset te ontvangen!</value>
|
<value>Speel een paar beatmaps om een aanbevolen offset te ontvangen!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Volgens je laatste {0} play(s), is je offset goed ingesteld!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Gebaseerd op de afgelopen {0} play(s), de aanbevolen offset is {1} ms.</value>
|
<value>Gebaseerd op de afgelopen {0} play(s), de aanbevolen offset is {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Spill noen beatmaps for å få en foreslått offset!</value>
|
<value>Spill noen beatmaps for å få en foreslått offset!</value>
|
||||||
</data>
|
</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">
|
<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>
|
<value>Basert på de(n) {0} siste spillingen(e), er foreslått offset {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -92,10 +92,13 @@
|
|||||||
<value>Opóźnienie dźwięku</value>
|
<value>Opóźnienie dźwięku</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<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 twoich ostatnich zagrań ({0}) aktualnie ustawione opóźnienie jest prawidłowe!</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<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>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>Zastosuj sugerowane opóźnienie</value>
|
<value>Zastosuj sugerowane opóźnienie</value>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Jogue alguns beatmaps para receber um atraso sugerido!</value>
|
<value>Jogue alguns beatmaps para receber um atraso sugerido!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Baseado no(s) último(s) {0} jogo(s), o atraso foi configurado com sucesso!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Baseado no(s) último(s) {0} jogo(s), o atraso sugerido é de {1} ms.</value>
|
<value>Baseado no(s) último(s) {0} jogo(s), o atraso sugerido é de {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Play a few beatmaps to receive a suggested offset!</value>
|
<value>Play a few beatmaps to receive a suggested offset!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Based on the last {0} play(s), your offset is set correctly!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Based on the last {0} play(s), the suggested offset is {1} ms.</value>
|
<value>Based on the last {0} play(s), the suggested offset is {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Joacă niște beatmap-uri pentru a primi un decalaj sugerat!</value>
|
<value>Joacă niște beatmap-uri pentru a primi un decalaj sugerat!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Bazat pe ultimul/ultimele {0} play(uri), decalajul tău este setat corect!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Pe baza ultimei (ultimelor) {0} încercări, decalajul sugerat este de {1} ms.</value>
|
<value>Pe baza ultimei (ultimelor) {0} încercări, decalajul sugerat este de {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,8 +94,11 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Сыграйте несколько карт, чтобы узнать рекомендованное значение!</value>
|
<value>Сыграйте несколько карт, чтобы узнать рекомендованное значение!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>По данным последних {0} игр, значение сдвига установлено верно!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Рекомендованное значение сдвига, основанное на последних {0} играх: {1} мс.</value>
|
<value>Рекомендованное значение сдвига по данным последних {0} игр составляет {1} мс.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>Применить рекомендованное значение</value>
|
<value>Применить рекомендованное значение</value>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Spela några beatmaps för att få en föreslagen förskjutning!</value>
|
<value>Spela några beatmaps för att få en föreslagen förskjutning!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Baserat på de senaste {0} spelningar(na) är din offset korrekt inställd!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Baserat på de senaste {0} antal spel(en), så är ditt föreslagna offset {1} ms.</value>
|
<value>Baserat på de senaste {0} antal spel(en), så är ditt föreslagna offset {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -71,7 +71,7 @@
|
|||||||
<value>Çıkış cihazı</value>
|
<value>Çıkış cihazı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
<data name="positional_hitsound_audio_level" xml:space="preserve">
|
||||||
<value>Hitsound stereo ayrımı</value>
|
<value>Hit sesi stereo ayrımı</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="master_volume" xml:space="preserve">
|
<data name="master_volume" xml:space="preserve">
|
||||||
<value>Ana ses</value>
|
<value>Ana ses</value>
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
<value>Müzik</value>
|
<value>Müzik</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="offset_header" xml:space="preserve">
|
<data name="offset_header" xml:space="preserve">
|
||||||
<value>Ofset Düzenleme</value>
|
<value>Ofset ayarlaması</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="audio_offset" xml:space="preserve">
|
<data name="audio_offset" xml:space="preserve">
|
||||||
<value>Ses ofseti</value>
|
<value>Ses ofseti</value>
|
||||||
@@ -94,8 +94,11 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Önerilen bir ofset almak için birkaç beatmap oyna!</value>
|
<value>Önerilen bir ofset almak için birkaç beatmap oyna!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Son {0} oynanışa göre, ofsetin doğru ayarlanmış!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Son {0} oyun(lar)a göre önerilen ofset {1} ms.</value>
|
<value>Son {0} oynanışa göre, önerilen ofset {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>Önerilen ofseti uygula</value>
|
<value>Önerilen ofseti uygula</value>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Зіграйте ще кілька мап, щоб отримати рекомендований офсет!</value>
|
<value>Зіграйте ще кілька мап, щоб отримати рекомендований офсет!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>На основі останніх {0} ігор, ваш офсет налаштовано правильно!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Виходячи з останніх {0} мап(ах), запропонований офсет - {1} мс.</value>
|
<value>Виходячи з останніх {0} мап(ах), запропонований офсет - {1} мс.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,6 +94,9 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>Hãy chơi một vài beatmap để biết được độ trễ đề xuất!</value>
|
<value>Hãy chơi một vài beatmap để biết được độ trễ đề xuất!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>Dựa vào {0} lần chơi cuối, độ trễ của bạn đã được thiết lập chính xác!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>Dựa vào {0} lần chơi cuối, độ trễ đề xuất là {1} ms.</value>
|
<value>Dựa vào {0} lần chơi cuối, độ trễ đề xuất là {1} ms.</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -94,8 +94,11 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>玩一些圖譜來獲得推薦的偏移!</value>
|
<value>玩一些圖譜來獲得推薦的偏移!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>根據最近的 {0} 次遊戲,你的偏移已被正確設置!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>依最近的 {0} 次遊戲,建議將偏移調整為 {1} ms。</value>
|
<value>根據最近的 {0} 次遊戲,建議的偏移調整為 {1} ms。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>套用推薦的偏移設定</value>
|
<value>套用推薦的偏移設定</value>
|
||||||
|
|||||||
@@ -94,8 +94,11 @@
|
|||||||
<data name="suggested_offset_note" xml:space="preserve">
|
<data name="suggested_offset_note" xml:space="preserve">
|
||||||
<value>玩一些谱面来让游戏计算一个合适的偏移!</value>
|
<value>玩一些谱面来让游戏计算一个合适的偏移!</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="suggested_offset_correct" xml:space="preserve">
|
||||||
|
<value>基于你最近的 {0} 次游玩,你的偏移量已经正确设定好了!</value>
|
||||||
|
</data>
|
||||||
<data name="suggested_offset_value_received" xml:space="preserve">
|
<data name="suggested_offset_value_received" xml:space="preserve">
|
||||||
<value>基于你最近的 {0} 场游戏,游戏推荐的偏移量是 {1} ms。</value>
|
<value>基于你最近的 {0} 次游玩,游戏推荐的偏移量是 {1} ms。</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="apply_suggested_offset" xml:space="preserve">
|
<data name="apply_suggested_offset" xml:space="preserve">
|
||||||
<value>使用推荐偏移</value>
|
<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>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>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>Á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>排行类型</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>
|
||||||
@@ -74,6 +74,6 @@
|
|||||||
<value>(τα αντικείμενα χτυπήματος εμφανίζονται αργότερα)</value>
|
<value>(τα αντικείμενα χτυπήματος εμφανίζονται αργότερα)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
||||||
<value>(τα αντικείμενα χτύπημα εμφανίζονται νωρίτερα)</value>
|
<value>(τα αντικείμενα χτυπήματος εμφανίζονται νωρίτερα)</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -59,21 +59,21 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="beatmap_offset" xml:space="preserve">
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
<value>비트맵 오프셋</value>
|
<value>오디오 오프셋 (비트맵 단독)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="previous_play" xml:space="preserve">
|
<data name="previous_play" xml:space="preserve">
|
||||||
<value>이전 플레이:</value>
|
<value>이전 플레이:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="previous_play_too_short_to_use_for_calibration" xml:space="preserve">
|
<data name="previous_play_too_short_to_use_for_calibration" xml:space="preserve">
|
||||||
<value>이전 플레이가 보정으로 쓰기에는 너무 짧습니다</value>
|
<value>이전의 플레이가 너무 짧아서 보정값을 낼 수가 없었어요</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="calibrate_using_last_play" xml:space="preserve">
|
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||||
<value>마지막 플레이로 보정</value>
|
<value>마지막 플레이로 보정</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="hit_objects_appear_later" xml:space="preserve">
|
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||||
<value>(히트 오브젝트가 늦게 나타납니다)</value>
|
<value>(히트 오브젝트가 늦게 나타나요)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
<data name="hit_objects_appear_earlier" xml:space="preserve">
|
||||||
<value>(히트 오브젝트가 빨리 나타납니다)</value>
|
<value>(히트 오브젝트가 빨리 나타나요)</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
<value>Tempoh permainan sebelumnya terlalu pendek untuk penentukuran</value>
|
<value>Tempoh permainan sebelumnya terlalu pendek untuk penentukuran</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="calibrate_using_last_play" xml:space="preserve">
|
<data name="calibrate_using_last_play" xml:space="preserve">
|
||||||
<value>Tentukur menggunakan permainan sebelumnya</value>
|
<value>Tentukur peta rentak</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="hit_objects_appear_later" xml:space="preserve">
|
<data name="hit_objects_appear_later" xml:space="preserve">
|
||||||
<value>(objek pukul muncul lebih lewat)</value>
|
<value>(objek pukul muncul lebih lewat)</value>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="beatmap_offset" xml:space="preserve">
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
<value>Opóźnienie beatmapy</value>
|
<value>Opóźnienie dźwięku (ta beatmapa)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="previous_play" xml:space="preserve">
|
<data name="previous_play" xml:space="preserve">
|
||||||
<value>Poprzednie zagranie:</value>
|
<value>Poprzednie zagranie:</value>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="beatmap_offset" xml:space="preserve">
|
<data name="beatmap_offset" xml:space="preserve">
|
||||||
<value>Beatmap offsettryck</value>
|
<value>Beatmap offsettryck (detta beatmap)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="previous_play" xml:space="preserve">
|
<data name="previous_play" xml:space="preserve">
|
||||||
<value>Föregående spel:</value>
|
<value>Föregående spel:</value>
|
||||||
|
|||||||
@@ -69,4 +69,7 @@
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Зразумела</value>
|
<value>Зразумела</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Выбраныя выканаўцы - гэта артысты, якія ў рамках супрацоўніцтва з osu! дазволілі выкарыстоўваць частку сваіх трэкаў для стварэння карт. Для некаторых версій osu! мы будзем паказваць карты, створаныя да трэкаў толькі ад абраных выканаўцаў, каб падтрымліваць гульнявую экасістэму.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Разбирам</value>
|
<value>Разбирам</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Представените изпълнители са музикални изпълнители, които са си сътрудничили с osu!, за да направят селекция от своите песни достъпна за използване в бийтмапове. За някои издания на osu! показваме само бийтмапове от представени изпълнители, за да подкрепим по-добре околната екосистема.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="user_content_disclaimer" xml:space="preserve">
|
<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>
|
||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<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.
|
<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">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Ho entenc</value>
|
<value>Ho entenc</value>
|
||||||
</data>
|
</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>
|
</root>
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||||
<value>Vypnutím filtru "Oficiální umělci" se zobrazí veškerý uživatelský obsah.
|
<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>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Rozumím</value>
|
<value>Rozumím</value>
|
||||||
|
|||||||
@@ -67,6 +67,9 @@
|
|||||||
Αυτό περιλαμβάνει περιεχόμενο που μπορεί να μην είναι κατάλληλα αδειοδοτημένο για χρήση στο osu!. Περιηγηθείτε με δική σας ευθύνη.</value>
|
Αυτό περιλαμβάνει περιεχόμενο που μπορεί να μην είναι κατάλληλα αδειοδοτημένο για χρήση στο osu!. Περιηγηθείτε με δική σας ευθύνη.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Κατάλαβα</value>
|
<value>Κατανοητό</value>
|
||||||
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Προτεινόμενοι Καλλιτέχνες (Featured Artists) είναι μουσικοί καλλιτέχνες που έχουν συνεργαστεί με το osu! για να κάνουν μια επιλογή από τα κομμάτια τους διαθέσιμα για χρήση σε beatmaps. Για μερικές κυκλοφορίες osu!, παρουσιάζουμε μόνο τα beatmaps των Προτινόμενων Καλλιτέχνων για την καλύτερη υποστήριξη του περιβάλλοντος οικοσυστήματος.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Esto incluye contenido que puede no estar licenciado correctamente para su uso e
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Entiendo</value>
|
<value>Entiendo</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Los artistas destacados son artistas musicales que han colaborado con osu! para que una selección de sus pistas estén disponibles para su uso en beatmaps. Para algunas versiones de osu!, solo mostramos beatmaps de artistas destacados para apoyar mejor al ecosistema local.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Esto incluye contenido que puede no estar licenciado correctamente para su uso e
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Entiendo</value>
|
<value>Entiendo</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Los artistas destacados son artistas musicales que han colaborado con osu! para que una selección de sus pistas estén disponibles para su uso en beatmaps. Para algunas versiones de osu!, solo mostramos beatmaps de artistas destacados para apoyar mejor al ecosistema local.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>הבנתי</value>
|
<value>הבנתי</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>אמנים נבחרים הם יוצרי מוזיקה אשר שיתפו פעולה עם osu! בכדי להפוך חלק מהשם שלהם לזמינים בשימוש בתור מפות במשחק. בחלק מהעדכונים של osu!, אנחנו מציגים רק מפות של אומנים נבחרים בכדי לתמוך בהם.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -70,6 +70,6 @@ Hal ini dapat meliputi konten yang diunggah ke osu! tanpa lisensi atau izin guna
|
|||||||
<value>Saya mengerti</value>
|
<value>Saya mengerti</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
<value>Featured Artist merupakan para musisi yang telah bekerja sama dengan osu! untuk menjadikan sebagian lagu mereka tersedia sebagai bahan beatmap. Pada versi rilis osu! tertentu, kami hanya menampilkan beatmap Featured Artist untuk lebih mendukung ekosistem permainan di sekitar kami.</value>
|
<value>Featured Artist merupakan jajaran musisi yang telah berkolaborasi dengan osu! untuk menyediakan sebagian lagu mereka sebagai bahan beatmap. Pada versi rilis osu! tertentu, kami hanya menampilkan beatmap Featured Artist untuk lebih mendukung ekosistem permainan di sekitar kami.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -62,11 +62,14 @@
|
|||||||
<value>사용자 콘텐츠 주의 사항</value>
|
<value>사용자 콘텐츠 주의 사항</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||||
<value>"공식 아티스트" 필터를 끄면 이용자들이 게시한 모든 콘텐츠가 표시됩니다.
|
<value>"공식 아티스트" 검색 조건을 끄시면, 사용자 제작 컨텐츠의 전체가 표시돼요.
|
||||||
|
|
||||||
이 콘텐츠 중에서는 osu!에서의 사용이 적절히 인증되지 않은 콘텐츠들이 있을 수 있습니다. 위험을 감수할 수 있을 경우에만 탐색하세요.</value>
|
osu! 사용에 허가되지 않은 컨텐츠가 있을 수 있어요. 책임은 여러분 몫입니다.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>알겠습니다</value>
|
<value>이해했어요</value>
|
||||||
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>공식 아티스트란, osu!와 협력하여 작곡한 곡들 중 일부를 비트맵에 사용할 수 있도록 허가한 작곡가들을 의미합니다. 간혹 osu! 업데이트 시, 저작권 보호를 위해 공식 아티스트의 곡이 사용된 비트맵만 소개해 드립니다.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -62,11 +62,14 @@
|
|||||||
<value>Lietotāja satura atruna</value>
|
<value>Lietotāja satura atruna</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<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>
|
Tas ietver arī saturu, kas, iespējams, nav pareizi licencēts lietošanai osu!. Pārlūkojiet uz savu risku.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Es saprotu</value>
|
<value>Es saprotu</value>
|
||||||
</data>
|
</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>
|
</root>
|
||||||
@@ -70,6 +70,6 @@ Ini termasuk kandungan yang mungkin tidak berlesen sah untuk penggunaaan osu!. L
|
|||||||
<value>Saya faham</value>
|
<value>Saya faham</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
<value>Artis Sorotan ialah para seniman muzik yang telah bekerjasama dengan osu! untuk menyediakan runut-runut terpilih untuk digunakan dalam peta rentak. Untuk beberapa lepasan osu!, kami hanya memperagakan peta rentak artis sorotan agar ekosistem sekitar disokong dengan lebih baik.</value>
|
<value>Artis Sorotan ialah para seniman muzik yang telah bekerjasama dengan osu! untuk menyediakan runut-runut terpilih untuk digunakan dalam peta rentak. Untuk beberapa edaran osu!, kami hanya memperagakan peta rentak artis sorotan agar ekosistem sekitar disokong dengan lebih baik.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Deze inhoud heeft mogelijk geen licentie voor gebruik binnen osu!. Blader verder
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Ik begrijp het</value>
|
<value>Ik begrijp het</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>"Aanbevolen artiesten" zijn artiesten die samengewerkt hebben met osu! om een selectie van hun nummers beschikbaar te maken voor gebruik in beatmaps. Voor sommige versies van osu! laten we alleen "aanbevolen artiesten"-beatmaps zien om beter in het ecosysteem te passen.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Dette inkluderer innhold som kanskje ikke er korrekt lisensiert for bruk med osu
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Jeg forstår</value>
|
<value>Jeg forstår</value>
|
||||||
</data>
|
</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>
|
</root>
|
||||||
@@ -70,6 +70,6 @@ Obejmuje to również zawartość, która może nie być licencjonowana do użyc
|
|||||||
<value>Rozumiem</value>
|
<value>Rozumiem</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
<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>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -59,14 +59,17 @@
|
|||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="user_content_disclaimer" xml:space="preserve">
|
<data name="user_content_disclaimer" xml:space="preserve">
|
||||||
<value>Isenção de responsabilidade do conteúdo do usuário</value>
|
<value>Isenção de responsabilidade do conteúdo do jogador</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="by_turning_off_the_featured" xml:space="preserve">
|
<data name="by_turning_off_the_featured" xml:space="preserve">
|
||||||
<value>Ao desativar o filtro "Artista em destaque", todo o conteúdo carregado pelo usuário será exibido.
|
<value>Ao desativar o filtro "Artista em destaque", todo o conteúdo carregado pelo jogador será exibido.
|
||||||
|
|
||||||
Isso inclui conteúdo que pode não estar licenciado corretamente para osu! uso. Navegue por seu próprio risco.</value>
|
Isso inclui conteúdo que pode não estar licenciado corretamente para osu! Navegue por seu próprio risco.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Eu entendi</value>
|
<value>Eu entendi</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Artistas em destaque são artistas de música que colaboraram com o osu! Para fazer uma seleção das suas trilhas disponíveis para uso em beatmaps. Para algumas versões do osu! Exibimos apenas beatmaps do artista em destaque para melhor apoiar o ecossistema circundante.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -70,6 +70,6 @@
|
|||||||
<value>Я понимаю</value>
|
<value>Я понимаю</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
<value>Избранные исполнители это те, которые сотрудничают с osu! и предоставляют подборку своих треков для использования в картах. В определённых релизах osu! показываются только карты, созданные на песни избранных исполнителей, чтобы лучше поддерживать экосистему.</value>
|
<value>Избранные исполнители — это артисты, которые в рамках сотрудничества с osu! разрешили использовать часть своих треков для создания карт. Для некоторых версий osu! мы будем показывать карты, созданные к трекам только от избранных исполнителей, чтобы поддерживать окружающую игровую экосистему.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Detta inkluderar innehåll som kanske inte är korrekt licensierat för osu! anv
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Jag förstår</value>
|
<value>Jag förstår</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Utvalda artister är musikartister som har samarbetat med osu! för att göra ett urval av sina låtar tillgängliga för användning i beatmaps. För vissa osu!-utgåvor visar vi endast utvalda artisters beatmaps för att bättre stödja det omgivande ekosystemet.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Bu osu!'nun lisanslamadığı içerikleri içerebilir. Bu durum kendi sorumlulu
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Anladım</value>
|
<value>Anladım</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Featured Artist'ler, osu! ile işbirliği yaparak beatmaplerde kullanılmak üzere bir dizi parça sağlayan müzik sanatçılarıdır. Bazı osu! güncellemelerinde, çevresindeki ekosistemi daha iyi desteklemek amacıyla yalnızca Featured Artist'lerin beatmap'lerini gösteriyoruz.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -69,4 +69,7 @@ Nó sẽ bao gồm những nội dung có thể không được cấp phép đú
|
|||||||
<data name="understood" xml:space="preserve">
|
<data name="understood" xml:space="preserve">
|
||||||
<value>Tôi hiểu</value>
|
<value>Tôi hiểu</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
|
<value>Nghệ Sĩ Nổi Bật là những nghệ sĩ âm nhạc đã hợp tác với osu! để cung cấp tuyển chọn các tác phẩm của họ cho phép sử dụng trong các beatmap. Đối với một số phiên bản phát hành của osu!, chúng tôi chỉ giới thiệu các beatmap của các nghệ sĩ nổi bật nhằm hỗ trợ tốt hơn cho hệ sinh thái xung quanh.</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -70,6 +70,6 @@
|
|||||||
<value>我了解並關閉分類</value>
|
<value>我了解並關閉分類</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
<data name="featured_artists_disabled_tooltip" xml:space="preserve">
|
||||||
<value>精選藝術家是和osu!合作過的作曲家,讓其指定歌曲可以做成圖譜。osu!有些版本只會出現精選藝術家的圖譜,以更好地支持版權生態。</value>
|
<value>精選藝術家是指與 osu! 合作,將其部分曲目授權用於製作圖譜的音樂藝術家。在某些 osu! 版本發布時,我們僅會展示精選藝術家的圖譜,以更好地支持周邊生態系統。</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</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>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>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>
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user