Skip to content

Commit cdf126e

Browse files
committed
Minor Changes
1 parent 29fcdc9 commit cdf126e

25 files changed

+118
-109
lines changed

src/Bundle/Sucrose.Bundle/App.xaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
<Application x:Class="Sucrose.Bundle.App"
2-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
1+
<Application
2+
x:Class="Sucrose.Bundle.App"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
45
<Application.Resources>
56
<ResourceDictionary>
67
<ResourceDictionary.MergedDictionaries>
7-
<ResourceDictionary Source="/Sucrose.Bundle;component/Properties/Resources_EN.xaml"/>
8+
<ResourceDictionary Source="/Sucrose.Bundle;component/Properties/Resources_EN.xaml" />
89
</ResourceDictionary.MergedDictionaries>
910
</ResourceDictionary>
1011
</Application.Resources>

src/Bundle/Sucrose.Bundle/Main.xaml

+44-13
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,55 @@
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7-
mc:Ignorable="d"
8-
MouseDown="Window_MouseDown"
7+
Title="{DynamicResource Title}"
8+
Width="400"
9+
Height="400"
10+
AllowsTransparency="True"
11+
Background="#FF29373B"
912
ContentRendered="Window_ContentRendered"
10-
Title="{DynamicResource Title}" Height="400" Width="400"
11-
ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen"
12-
ShowInTaskbar="False" Topmost="True" AllowsTransparency="True"
13-
Background="#FF29373B" Icon="\Sucrose.Bundle;component\Assets\ICO.ico">
13+
Icon="\Sucrose.Bundle;component\Assets\ICO.ico"
14+
MouseDown="Window_MouseDown"
15+
ResizeMode="NoResize"
16+
ShowInTaskbar="False"
17+
Topmost="True"
18+
WindowStartupLocation="CenterScreen"
19+
WindowStyle="None"
20+
mc:Ignorable="d">
1421

1522
<Grid>
16-
<Image Source="\Sucrose.Bundle;component\Assets\Background21.jpg" Stretch="UniformToFill" Opacity="0.5" />
23+
<Image
24+
Opacity="0.5"
25+
Source="\Sucrose.Bundle;component\Assets\Background21.jpg"
26+
Stretch="UniformToFill" />
1727

18-
<TextBlock Text="{DynamicResource Subtitle}" FontSize="30" FontWeight="Light" Foreground="White"
19-
FontFamily="Segoe UI" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,260,0,0" />
28+
<TextBlock
29+
Margin="0,260,0,0"
30+
HorizontalAlignment="Center"
31+
VerticalAlignment="Top"
32+
FontFamily="Segoe UI"
33+
FontSize="30"
34+
FontWeight="Light"
35+
Foreground="White"
36+
Text="{DynamicResource Subtitle}" />
2037

21-
<TextBlock Text="{DynamicResource Install}" FontSize="16" FontWeight="Light" Foreground="White"
22-
FontFamily="Segoe UI" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,310,0,0" />
38+
<TextBlock
39+
Margin="0,310,0,0"
40+
HorizontalAlignment="Center"
41+
VerticalAlignment="Top"
42+
FontFamily="Segoe UI"
43+
FontSize="16"
44+
FontWeight="Light"
45+
Foreground="White"
46+
Text="{DynamicResource Install}" />
2347

24-
<TextBlock Text="{DynamicResource Done}" FontSize="16" FontWeight="Light" Foreground="White"
25-
FontFamily="Segoe UI" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,330,0,0" />
48+
<TextBlock
49+
Margin="0,330,0,0"
50+
HorizontalAlignment="Center"
51+
VerticalAlignment="Top"
52+
FontFamily="Segoe UI"
53+
FontSize="16"
54+
FontWeight="Light"
55+
Foreground="White"
56+
Text="{DynamicResource Done}" />
2657
</Grid>
2758
</Window>

src/Bundle/Sucrose.Bundle/Properties/Resources_AZ.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Paketi</system:String>
76
<system:String x:Key="Subtitle">Sucrose Paketi</system:String>
87
<system:String x:Key="Done">Quraşdırma başlandıqda başlayacaq.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_CS.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Balíček</system:String>
76
<system:String x:Key="Subtitle">Sucrose Balíček</system:String>
87
<system:String x:Key="Done">Spustí se, jakmile bude hotovo.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_DA.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Pakke</system:String>
76
<system:String x:Key="Subtitle">Sucrose Pakke</system:String>
87
<system:String x:Key="Done">Den vil starte, når den er færdig.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_DE.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose-Bündel</system:String>
76
<system:String x:Key="Subtitle">Sucrose-Bündel</system:String>
87
<system:String x:Key="Done">Es wird gestartet, sobald die Installation abgeschlossen ist.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_EL.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Δέσμη Sucrose</system:String>
76
<system:String x:Key="Subtitle">Δέσμη Sucrose</system:String>
87
<system:String x:Key="Done">Θα ξεκινήσει όταν ολοκληρωθεί.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_EN.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Bundle</system:String>
76
<system:String x:Key="Subtitle">Sucrose Bundle</system:String>
87
<system:String x:Key="Done">It'll launch once it is done.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_ES.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Paquete Sucrose</system:String>
76
<system:String x:Key="Subtitle">Paquete Sucrose</system:String>
87
<system:String x:Key="Done">Se lanzará una vez que esté hecho.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_FR.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Pack Sucrose</system:String>
76
<system:String x:Key="Subtitle">Pack Sucrose</system:String>
87
<system:String x:Key="Done">Il sera lancé une fois que l'installation sera terminée.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_HI.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose बंडल</system:String>
76
<system:String x:Key="Subtitle">Sucrose बंडल</system:String>
87
<system:String x:Key="Done">यह उस समय लॉन्च होगा जब यह समाप्त हो जाएगा।</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_IT.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Pacchetto di Sucrose</system:String>
76
<system:String x:Key="Subtitle">Pacchetto di Sucrose</system:String>
87
<system:String x:Key="Done">Verrà avviato una volta completata l'installazione.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_JA.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose パッケージ</system:String>
76
<system:String x:Key="Subtitle">Sucrose パッケージ</system:String>
87
<system:String x:Key="Done">インストールが完了すると開始されます。</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_KO.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose 번들</system:String>
76
<system:String x:Key="Subtitle">Sucrose 번들</system:String>
87
<system:String x:Key="Done">설치가 완료되면 시작됩니다.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_NB.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Bunt</system:String>
76
<system:String x:Key="Subtitle">Sucrose Bunt</system:String>
87
<system:String x:Key="Done">Det vil starte når det er ferdig.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_NL.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Bundel</system:String>
76
<system:String x:Key="Subtitle">Sucrose Bundel</system:String>
87
<system:String x:Key="Done">Het zal worden gelanceerd zodra het klaar is.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_PL.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Pakiet Sucrose</system:String>
76
<system:String x:Key="Subtitle">Pakiet Sucrose</system:String>
87
<system:String x:Key="Done">Uruchomi się, gdy zostanie zakończony.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_PT.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Pacote de Sucrose</system:String>
76
<system:String x:Key="Subtitle">Pacote de Sucrose</system:String>
87
<system:String x:Key="Done">Vai iniciar assim que estiver pronto.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_RO.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Pachetul Sucrose</system:String>
76
<system:String x:Key="Subtitle">Pachetul Sucrose</system:String>
87
<system:String x:Key="Done">Se va lansa odată ce este terminat.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_RU.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Набор Sucrose</system:String>
76
<system:String x:Key="Subtitle">Набор Sucrose</system:String>
87
<system:String x:Key="Done">Он запустится, как только установка будет завершена.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_SV.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose-Paket</system:String>
76
<system:String x:Key="Subtitle">Sucrose-Paket</system:String>
87
<system:String x:Key="Done">Det kommer att starta när det är klart.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_TL.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Pakete ng Sucrose</system:String>
76
<system:String x:Key="Subtitle">Pakete ng Sucrose</system:String>
87
<system:String x:Key="Done">Maglulunsad ito kapag tapos na.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_TR.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose Paketi</system:String>
76
<system:String x:Key="Subtitle">Sucrose Paketi</system:String>
87
<system:String x:Key="Done">Kurulum tamamlandığında başlayacak.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_UK.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Пакет Sucrose</system:String>
76
<system:String x:Key="Subtitle">Пакет Sucrose</system:String>
87
<system:String x:Key="Done">Він запуститься, як тільки буде завершено.</system:String>

src/Bundle/Sucrose.Bundle/Properties/Resources_ZH.xaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<ResourceDictionary
2-
xmlns:system="clr-namespace:System;assembly=mscorlib"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5-
>
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:system="clr-namespace:System;assembly=mscorlib">
65
<system:String x:Key="Title">Sucrose 包</system:String>
76
<system:String x:Key="Subtitle">Sucrose 包</system:String>
87
<system:String x:Key="Done">安装完成后将开始。</system:String>

0 commit comments

Comments
 (0)