Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Categories #7

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Apps.Translate5/Apps.Translate5.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Product>Translate5</Product>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<Description>Cloud translation, review, post-editing and terminology platform</Description>
<AssemblyName>Apps.Translate5</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blackbird.Applications.Sdk.Common" Version="2.3.2-alpha1" />
<PackageReference Include="Blackbird.Applications.SDK.Extensions.FileManagement" Version="1.0.1" />
<PackageReference Include="Blackbird.Applications.Sdk.Utils" Version="1.0.16" />
<PackageReference Include="Blackbird.Applications.Sdk.Common" Version="2.6.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource CopyToOutputDirectory="Always" Include="image\icon.png"></EmbeddedResource>
<EmbeddedResource CopyToOutputDirectory="Always" Include="image\icon.png"/>
</ItemGroup>
</Project>
9 changes: 8 additions & 1 deletion Apps.Translate5/Translate5Application.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
using Blackbird.Applications.Sdk.Common;
using Blackbird.Applications.Sdk.Common.Metadata;

namespace Apps.Translate5;

public class Translate5Application : IApplication
public class Translate5Application : IApplication, ICategoryProvider
{
public IEnumerable<ApplicationCategory> Categories
{
get => [ApplicationCategory.CatAndTms];
set { }
}

public string Name
{
get => "Translate5";
Expand Down