Skip to content

Commit

Permalink
Resolve issues reported ( Broken URL, Rebranding Remnants ) (#1190)
Browse files Browse the repository at this point in the history
Jira: SDLCOM-4521
  • Loading branch information
FlaviuTritean authored Apr 11, 2023
1 parent 28334cd commit 52daa97
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.0.0.0")]
[assembly: AssemblyFileVersion("4.0.2.2")]
[assembly: AssemblyFileVersion("4.0.3.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PluginDeploymentPath>$(AppData)\Trados\Trados Studio\17\Plugins</PluginDeploymentPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TellMe\ExcelTermCommunityForumAction.cs" />
<Compile Remove="TellMe\ExcelTermCommunityWikiAction.cs" />
<Compile Remove="TellMe\ExcelTermStoreAction.cs" />
<Compile Remove="TellMe\ExcelTermTellMeProvider.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json">
Expand Down Expand Up @@ -89,9 +83,6 @@
<Version>17.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="TellMe\" />
</ItemGroup>
<PropertyGroup>
<CreatePluginPackage>true</CreatePluginPackage>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ public class ExcelTermCommunityForumAction : AbstractTellMeAction

public ExcelTermCommunityForumAction()
{
Name = "SDL Community AppStore Forum";
Name = "RWS Community AppStore Forum";
}

public override void Execute()
{
Process.Start("http://community.sdl.com/appsupport");
Process.Start("https://community.rws.com/product-groups/trados-portfolio/rws-appstore/f");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public ExcelTermCommunityWikiAction()

public override void Execute()
{
Process.Start("https://community.sdl.com/product-groups/translationproductivity/w/customer-experience/5067/excel-terminology-provider-termexcelerator");
Process.Start("https://community.rws.com/product-groups/trados-portfolio/rws-appstore/w/wiki/5067/excel-terminology-provider-termexcelerator");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public ExcelTermStoreAction()

public override void Execute()
{
Process.Start("https://appstore.sdl.com/language/app/termexcelerator/534/");
Process.Start("https://appstore.rws.com/Plugin/59");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Sdl.Community.TermExcelerator.TellMe
[TellMeProvider]
public class ExcelTermTellMeProvider : ITellMeProvider
{
public string Name => "Term Excelerator tell me provider";
public string Name => "Term Excelerator Tell Me provider";

public AbstractTellMeAction[] ProviderActions => new AbstractTellMeAction[]
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<PluginPackage xmlns="http://www.sdl.com/Plugins/PluginPackage/1.0">
<PlugInName>TermExcelerator</PlugInName>
<Version>4.0.2.2</Version>
<Version>4.0.3.0</Version>
<Description>Excel based terminology provider. It allows to specify the columns from worksheet as source and target terms including synonyms separated by a delimitation.</Description>
<Author>Trados AppStore Team</Author>
<RequiredProduct name="TradosStudio" minversion="17.0" maxversion="17.9" />
Expand Down

0 comments on commit 52daa97

Please sign in to comment.