RWS Community
RWS Community
  • Site

Trados Go

Trados Studio

Trados Ignite

Trados Team

Trados Accelerate

Trados Enterprise

Trados GroupShare

Passolo

MultiTerm

RWS AppStore

Connectors

Beta Groups

Managed Translation

MultiTrans

TMS

Trados Enterprise

WorldServer

Language Weaver

Language Weaver Edge

Language Weaver Connectors

Language Weaver in Trados Studio

 

 

Content Champions

Tridion Docs

Tridion Sites

Contenta

LiveContent

XPP

Trados Go Ideas

Trados Studio Ideas

Trados Ignite Ideas

Trados GroupShare Ideas

Trados Team Ideas

Trados Team Terminology Ideas

Trados Enterprise & Accelerate Ideas

MultiTerm Ideas

Passolo Ideas

RWS Appstore Ideas

Tridion Docs Ideas

Tridion Sites Ideas

Language Weaver Ideas

Language Weaver Edge Ideas

Managed Translation - Enterprise Ideas

TMS Ideas

WorldServer Ideas

Trados Enterprise Ideas

XPP Ideas

GroupShare Developers

Language Cloud Developers

MultiTerm Developers

Passolo Developers

Trados Studio Developers

Managed Translation Developers

TMS Developers

WorldServer Developers

Tridion Docs Developers

XPP Developers

Language Combinations by Language Services

RWS Training & Certification

Style Guides

LDE Korean Vendor Support

RWS Campus

Trados Approved Trainers

Nordic Tridion Docs User Group

Tridion West Coast User Group

Community Ops

RWS Community Internal Group

AURORA

Internal Trados Ideas

Linguistic Validation

Mercury

QA Tools

RI Operational Excellence

Trados Inspired

XPP Cloud

Recognition & Reward System

RWS Community Platform Related Questions

Community Solutions Hub (Trados)

About RWS

Events

RWS Services: Train AI & others

RWS Training & Certification

To RWS Support

  • Search
  • Translate

    Detecting language please wait for.......


    Powered by
  • User
  • Site
  • Search
  • User
  • Developers
  • Trados Portfolio
  • Trados Studio Developers
  • More
  • Cancel
Trados Studio Developers

Trados Studio Developers > Studio Developers WIKI

How to use the Studio Useful Tips service
  • Home
  • Trados Studio developers forum
  • Studio Developers WIKI
  • Studio Developers Blog
  • More
  • Cancel
  • New
Show Translation Options

Detecting language please wait for.......


Powered by
Trados Studio Developers requires membership for participation - click to join
  • -Trados Studio API
    • Developer Licences
    • +Getting Started
    • -Knowledgebase
      • -How to...
        • How to create a project using public api
        • How to create a View plugin in Studio using WPF
        • How to sign an class library using Sdl Community key
        • +How to use Batch Tasks plugins
        • How to use Studio Ribbon Tabs
        • How to use Tell Me API
        • How to use the Studio Useful Tips service
        • +How to use the Translation Memory API
      • +Studio 2015
      • +Studio 2019
      • +Studio 2021
      • +Trados Studio 2022

You are currently reviewing an older revision of this page.

  • History View current version

Studio Useful Tips service

Overview

The Sdl.Community.UsefulTips.Service is a service provider for updating the Useful Tips that are displayed in SDL Trados Studio 2019.

 


 

Add Sdl.Community.UsefulTips.Service to your project

 

Package Manager UI

1. In Solution Explorer, right-click References and choose Manage NuGet Packages

2. Choose nuget.org as the Package source, select the Browse tab, search for Sdl.Community.UsefulTips.Service, select that package in the list, and select Install:

3. Accept any license prompts.

 

Package Manager Console

1. Select the Tools > NuGet Package Manager > Package Manager Console menu command.

2. From the Package Manager Console, enter the command:

Install-Package Sdl.Community.UsefulTips.Service -Version 1.1.5

 


 

Examples

The following example creates an instance of the TipsProvider and adds a new Tip for a single language (i.e. en).

using System.Collections.Generic;
using Sdl.Community.UsefulTipsService;
using Sdl.Community.UsefulTipsService.Model;
using Sdl.Community.UsefulTipsService.Services; 

namespace Sdl.Community.Example.Services
{
    public class UsefulTipsService
    {
        public void AddUsefulTips()
        {
            var tipContexts = GetTipContexts();

            var tipsProvider = new TipsProvider(new PathService());
            tipsProvider.AddTips(tipContexts, "[My Plugin Name]");
        }

        private static List<TipContext> GetTipContexts()
        {
            var tipContexts = new List<TipContext>
            {
                new TipContext
                {
                    LanguageId = "en",
                    Tips = new List<Tip>
                    {
                        new Tip
                        {
                            Category = "[the plugin name]",
                            Context = "[the Id associated wth the plugin View]",
                            Content = "[full path to the Markdown File]",
                            Title = "My Tip",
                            Description = "This is an awesome Tip",
                            DescriptionImage = "[full path to the image file]"
                        }
                    }
                }
            };
            return tipContexts;
        }
    }
}

 


 

 

 API

 

 

 

 

 

  • Our Terms of Use
  • Copyright
  • Privacy
  • Security
  • Anti-slavery Statement
  • Cookie Notice
  • YouTube