0 votes

Hello,

I searching how to rename the actions menu. We're going to use french and english language for the portal.

Default actions are translated properly by Adaxes, now i want to be able to translate the custom actions we made.

I found how to rename a ldap property, but i didn't found how to rename an action yet. Could you help me ?

by (460 points)

1 Answer

0 votes
by (216k points)
selected by
Best answer

Hello Alexansre,

Yes, sure. For this purpose, you need to modify the Web Interface source files as follows:

  1. On the computer where your Web Interface is installed, open the folder for the Web Interface you want to configure, which is C:\Program Files\Softerra\Adaxes 3\Web Interface\<Web Interface> by default.

  2. Open the App_GlobalResources subfolder.

  3. Locate the necessary language version of the Strings.resx file. By default, there are 3 of them:

    • Strings.resx - English,
    • Strings.de.resx - German,
    • Strings.fr.resx - French.

    Since you are using the English and French versions of the Web interface, you'll need Strings.resx and Strings.fr.resx.

  4. Open one of the language versions, for example the English version, with any text editor, e.g. notepad.exe.

  5. Add a data XML element immediately before the closing </root> tag as follows:

     <i class="text-italic">...
       <data <strong class="text-bold">name="MyActionName"</strong> xml:space="preserve">
         <strong class="text-bold"><value>My Action</value></strong>
       </data></i>
     </root>

    where:

    • name parameter - specifies a unique name for this data element. It must be unique within the Strings.resx file and cannot contain spaces or special characters.
    • text in the value element - specifies the text that will be displayed for this element in the English version of the Web Interface.
  6. Add 1 data element for the name of each Home Page Action you want to translate. Also, if you want to have descriptions for the actions, add a data element for each description. When done, save the file.

  7. Repeat steps 4-6 for the other language versions of the file.
    Important:You need to use the same name of the element in all language version of the file. Thus, for example, if you provide a name for an action in the English version using element MyActionName, then the element for the same action name in the French version must also have the name MyActionName.

  8. When done with all language versions you need, return to the folder where the Web interface is installed and open the Web.config file. It is also an XML file that can be edited in any text editor.

  9. All Home Page Actions are contained in XML element configuration\softerra.adaxes\web.ui\homeComponent\actionPanel of the Web.config file. A typical element containing a custom action created by yourself looks approximately like this:

     <i class="text-italic">              <createObject objectType="user" id="c6206983-e680-4308-ab24-87e7ee9aa470">
                     ...
                     <strong class="text-bold"><name string="My Action" /></strong>
                     <strong class="text-bold"><description string="My Home Page Action Description" /></strong>
                   </createObject></i>

    where:

    • name element - contains the name of the Home Page Action as appears in the Web Interface;
    • description element - contains a description of the action as appears in the Web Interface.

    Locate an action you need.

  10. Replace the text in the name and description elements with references to the data items you added to the Strings.resx file. For example, if you added a data item called MyActionName for the action name, then you need to replace the following text:

    <name string="My Home Page Action" />

    with the following:

    <name resourceKey="Strings,MyActionName" />

  11. Repeat the same for all Home Page Actions you need.

  12. When done, save the file.

Pay attention that the changes made in the Strings.resx file will not be preserved by Adaxes Web Interface backup / restore, so if you want to save the settings, you need to make changes to the file after each upgrade.

In the next major version, we'll provide a simpler mechanism to translate Home Page Action names and descriptions.

Related questions

0 votes
1 answer

Im trying to rename "Extension attribute 1 and 2" to something legible for users. Is there a way to cahnge the dsiaply name myslef like how other attributes are done?

asked Feb 17, 2023 by raul.ramirez (210 points)
0 votes
0 answers

We are looking for a way to setup a "rename user" in the web interface that also changes the proxy adress. Our emails always include names so they always get changed on ... smtp) and the new one to (SMTP) ? smtp:old.email@domain.com SMTP:new.email@domain.com

asked Dec 22, 2021 by silicondt (60 points)
0 votes
0 answers

How do I rename an AD Object? When I try Rename-ADObject or use the ADAxes equivilent I get the follow error. It then references the CSV Import line for some ... run the script outside ADAxes, it completes without error and makes the expected changes. Thanks

asked Aug 24, 2020 by Fixxer (40 points)
0 votes
1 answer

Hello, We have an issue where email address is not being updated per email address policy after user account rename. If change is being done on Exchange directly it works fine. If ... : It throws this error: Can you please tell me what I am doing wrong here?

asked Nov 26, 2019 by DLe (760 points)
0 votes
1 answer

Hello, I want to use custom attributes to display values that would be updated via script, but I want a name my users can understand, so rename "CustomAttributeBinary1" to a more ... I cannot find this file on my server anywhere. How can I do this? Thanks.

asked Feb 3, 2015 by DFassett (710 points)
3,326 questions
3,026 answers
7,727 comments
544,679 users