Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
翻译更新
Browse files Browse the repository at this point in the history
  • Loading branch information
MATRIX-feather committed Dec 19, 2019
1 parent 1983f2e commit 63707c0
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 37 deletions.
Binary file added build/Humanizer.resources.dll
Binary file not shown.
9 changes: 0 additions & 9 deletions deb/avlibfix/DEBIAN/control

This file was deleted.

1 change: 0 additions & 1 deletion deb/avlibfix/usr/lib/x86_64-linux-gnu/libavcodec.so

This file was deleted.

1 change: 0 additions & 1 deletion deb/avlibfix/usr/lib/x86_64-linux-gnu/libavformat.so

This file was deleted.

1 change: 0 additions & 1 deletion deb/avlibfix/usr/lib/x86_64-linux-gnu/libavutil.so

This file was deleted.

1 change: 0 additions & 1 deletion deb/avlibfix/usr/lib/x86_64-linux-gnu/libswscale.so

This file was deleted.

12 changes: 0 additions & 12 deletions deb/osu/DEBIAN/control

This file was deleted.

7 changes: 0 additions & 7 deletions deb/osu/usr/share/applications/lazer-cn.desktop

This file was deleted.

2 changes: 1 addition & 1 deletion osu.Desktop/Overlays/VersionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private void load(OsuColour colours, TextureStore textures, OsuGameBase game)
Font = OsuFont.Numeric.With(size: 15),
Colour = colours.Yellow,
// Text = @"早期开发版本(Development Build)"
Text = @"早期开发版本"
Text = @"2019.1113.0+matrixfeather 6"
},
new Sprite
{
Expand Down
4 changes: 2 additions & 2 deletions osu.Game/Beatmaps/DummyWorkingBeatmap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public DummyWorkingBeatmap(AudioManager audio, TextureStore textures)
{
Metadata = new BeatmapMetadata
{
Artist = "please load a beatmap!",
Title = "no beatmaps available!"
Artist = "请先选择一张谱面!",
Title = "未选择任何谱面!"
},
BeatmapSet = new BeatmapSetInfo(),
BaseDifficulty = new BeatmapDifficulty
Expand Down
2 changes: 1 addition & 1 deletion osu.Game/Configuration/ScreenshotFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace osu.Game.Configuration
{
public enum ScreenshotFormat
{
[Description("JPG (适用于网络传输)")]
[Description("JPG (适合网络传输)")]
Jpg = 1,

[Description("PNG (无损)")]
Expand Down
3 changes: 2 additions & 1 deletion osu.Game/Online/API/Requests/SearchBeatmapSetsRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ public enum BeatmapSearchCategory
Leaderboard,
[Description("计入排名的")]
Ranked,
[Description("质量合格的")]
Qualified,
Loved,
[Description("我喜欢的")]
Favourites,

[Description("Pending & WIP")]
[Description("Pending WIP")]
Pending,
[Description("坟图")]
Graveyard,
Expand Down
15 changes: 15 additions & 0 deletions tihuan.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
cols=`stty size|awk '{print $2}'`
pause(){
read -p "按下Enter键继续"
}

while(true);do
ori_arg=$(whiptail --title "原消息" --inputbox "" "$lines" "$cols" 3>&1 1>&2 2>&3)
if [ $? != 0 ];then
exit 1;
fi
new_arg=$(whiptail --title "新消息" --inputbox "要替换的消息:\n$ori_arg" "$lines" "$cols" 3>&1 1>&2 2>&3)
sed -i "s/$ori_arg/$new_arg/g" ./osu.Desktop/bin/Release/netcoreapp3.0/Humanizer.dll
pause
done

0 comments on commit 63707c0

Please sign in to comment.