Solved

"Open Documents" text

  • 27 April 2022
  • 3 replies
  • 63 views

Userlevel 2
Badge +4

Hi all,

 

When showing opened documents in Universal gui we get the text “Open Documents” (img 1).

Can I set my own text? Because I don’t find the term “documents” fitting.

img 1

Thanks

icon

Best answer by Arie V 27 April 2022, 21:30

View original

This topic has been closed for comments

3 replies

Userlevel 7
Badge +23

Hi,

As far as I know you can achieve this by creating a dynamic model procedure that updates the translation of the Translation object. What the exact translation object is, I'm not sure but you can look that up in the Translations screen inside the Software Factory. 

Userlevel 6
Badge +10

@kensonlatchmansing @Mark Jongeling It’s open_document, see reply from Anne Buit here. We also use the Dynamic solution as suggested.

Nevertheless, I also believe the default translation does not make sense. So please vote on the still open Idea.

Userlevel 6
Badge +10

To add: this is the Dynamic code we use:

update transl_object_transl 
set transl = 'Open tabs'
where project_id = @project_id
and project_vrs_id = @project_vrs_id
and appl_lang_id = 'ENG'
and type_of_object = 13  --GUI object
and transl_object_id = 'open_documents'