-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'locale-validator' of https://github.com/Rinary1/space-s…
…unrise into locale-validator
- Loading branch information
Showing
21 changed files
with
470 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<Control xmlns="https://spacestation14.io" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls" | ||
MinSize="100 100"> | ||
<BoxContainer Orientation="Vertical" > | ||
<customControls:HSeparator/> | ||
<BoxContainer Orientation="Horizontal" SeparationOverride="2" HorizontalExpand="True"> | ||
<customControls:VSeparator/> | ||
<BoxContainer Orientation="Vertical" HorizontalExpand="True"> | ||
<Label Text="{Loc 'Спонсорство'}" StyleClasses="LabelHeadingBigger" HorizontalAlignment="Center"/> | ||
<GridContainer Columns="2" | ||
HorizontalAlignment="Center" | ||
VerticalExpand="True" | ||
VerticalAlignment="Top" | ||
Margin="5 5 5 5"> | ||
<Label Text="{Loc 'Уровень: '}" StyleClasses="LabelKeyText"/> | ||
<Label Name="SponsorTierName" /> | ||
</GridContainer> | ||
<GridContainer Columns="2" | ||
HorizontalAlignment="Center" | ||
VerticalExpand="True" | ||
VerticalAlignment="Top"> | ||
<Button Name="InfoSponsorButton" Text="Информация" Disabled="True" /> | ||
<Button Name="BuySponsorButton" Text="Приобрести" /> | ||
</GridContainer> | ||
</BoxContainer> | ||
<customControls:VSeparator/> | ||
<BoxContainer Orientation="Vertical" HorizontalExpand="True"> | ||
<Label Text="{Loc 'Соц.сети'}" StyleClasses="LabelHeadingBigger" HorizontalAlignment="Center"/> | ||
<GridContainer Columns="2" | ||
HorizontalAlignment="Center" | ||
VerticalExpand="True" | ||
VerticalAlignment="Top" | ||
Margin="5 5 5 5"> | ||
<Label Text="{Loc 'Discord:'}" StyleClasses="LabelKeyText"/> | ||
<BoxContainer Orientation="Horizontal"> | ||
<Label Name="LinkedDiscordName" /> | ||
<Button Name="LinkDiscordButton" Text="Подвязать"/> | ||
</BoxContainer> | ||
<Label Text="{Loc 'Telegram:'}" StyleClasses="LabelKeyText"/> | ||
<BoxContainer Orientation="Horizontal" > | ||
<Label Name="LinkedTelegramName" /> | ||
<Button Name="LinkTelegramButton" Text="Подвязать"/> | ||
</BoxContainer> | ||
</GridContainer> | ||
</BoxContainer> | ||
<customControls:VSeparator/> | ||
</BoxContainer> | ||
<customControls:HSeparator/> | ||
</BoxContainer> | ||
</Control> |
Oops, something went wrong.