How can I change the IBM Cloud interface language? - ibm-cloud

IBM Cloud is showing me almost all menus, options, ... in my local language (take from the browser headers, I guess). How can I force the user interface to be in english? Without having to change the Windows or Browser configuration?
I'm a user of the free layer.

For the IBM Cloud console (the web UI) the language is determined by your browser setting. The the IBM Cloud documentation you can change the language using the language switch, usually at the bottom of a page.
In order to change the console UI you would need to install a browser extension with a so-called language picker.

As #data_henrik explained, the IBM Cloud web UI gets the language from your browser settings.
So you can follow these instructions to set it on your browser of choice:
Chrome browser
Firefox browser
Edge browser

Related

multi-language Enable or Disable in SAP FIORI Launchpad

Two language(English and German) are available on SAP Launchpad Login page.
SAP MANUALS, I found that we have to redefine below property :
Application supported languages
application_languages=EN,DE,FR
But I am not able to find exact place where to make the changes to enable or disable Arabic language.
Can anyone please help on this?
regards,
Umar Abdullah
By default, launchpad texts are displayed in the logon language. You can override this setting using a URL parameter.
The language for launchpad texts is set according to the following process:
1) If a value is set for URL parameter sap-language and the specified language is installed on the backend server, launchpad texts are displayed in this language.
2) If no language is defined for URL parameter sap-language, launchpad texts are displayed in the default language set in the ABAP system in Maintain User Profile (transaction SU01).
3) If no language is defined for URL parameter sap-language or Maintain User Profile, the browser settings for header field Accept-Language are taken into account. The system selects the first language from the list that is maintained in the browser, and which is also installed in the SAP system.
Please see also the corresponding docu.

How to search through all the ajax responses in network tab in Chrome?

How to search through all the ajax responses in network tab in Chrome?
I want to do this is because it is difficult for a JavaScript developer to get to know which information is coming from which service call, especially if you are new to the project and business logic is not clear. Also, opening each service in a network tab and searching in responses of so many service calls is difficult and time consuming.
This has now been implemented on the Network tab. Whenever a search criteria is added, Chrome will offer searching through all headers and bodies.
More from offical doc,
Open the Network panel then press Command+F (Mac) or Control+F (Windows, Linux, Chrome OS) to open the new Network Search pane.
This is similar to another question this morning to search json responses. The solution is the same, star this issue this issue. Starring is triggered via the star icon in the far left area of the blue title are just under search.
Starring issues let's the developers know what people need. The more stars something has, the more likely it is to get worked on sooner.
Currently this functionality is not provided and extensions are unable to add this type of functionality since the network panel isn't extensible in this way.
In Firefox you can save all the responses as a HAR file and then search through the file in a text editor (Chrome truncates the responses).
Inspector of Microsoft Edge browser offer such feature. Useful when you need to search through traffic made by an HTTPS web site that Fiddler cannot inspect (like Facebook web site).
There doesn't seem to be a way to do this in Chrome or Firefox. My solution has been to use Fiddler, which does support it.
Edit: I believe this was working for all resources at the time of writing, but please see comments because people say it is not/no-longer working as expected.
As of Chrome version 91, if you want to search through all resources (not just AJAX/fetched resources), then you need to open DevTools and then press Ctrl+Shift+F to open a search box. If you just type into the "filter" text input then it only searches through the URLs, rather than also searching the contents.

Chrome developer tools from JavaScript

Is there any way to access meta information provided by Chrome developer tools in JavaScript on a page? For example the bounding rectangle of an element, if element under cursor etc.
Thx for answers
No, this information is not available directly through JS. However you can use the remote debugging (and the Debugger API is available as a transport in your extensions) to get that info.

Browser Helper Object (BHO) for Firefox, Chrome and Safari

I have a working Browser Helper Object (BHO) which is essentially an ATL based COM component. When the component is registered as a BHO in the Registry, the internet explorer calls the SetSite() method passing an object with an interface of IWebBrowser and it also exposes a set of events that can subscribed to - such as OnDocumentComplete, which gives us access to the InnerHTML.
I'm looking for something in the same lines for non IE browsers Firefox, Chrome and Safari. I know firefox extensions is where I should start
Is it possible to achieve the same using a cross browser SDK like NPAPI ? (Because each browser has its own SDK and extension development platform like cocoa, Pepper API etc. and in addtion most of them support NPAPI.)
How can I subscribe for events so that a SetSite() sort of function could be called by the browser when the user navigates to a different site ?
The answer to your first question is simple: no, it is not possible to do this with npapi. See http://npapi.com/extensions for more information about the difference between a Plugin (NPAPI) and an Extension. If there are things you can't do with the extension that you need to do (for example, that require C++ code to work) you could put those things in a NPAPI plugin and use it from your extension. If you decide to go that route I recommend looking at FireBreath.
As to the second, it will differ based on which browser you're writing the extension for; yes, it will need to be different for each browser. A quick google search for "firefox extension event page load" yielded a useful-looking doc.

Adding to the browser user agent string?

I have a plug-in that handles its own url schema (something like mystuf:// ). If a user clicks on such a link when the plug-in isn't installed (s)he gets an ugly error. So I extended my installer to write into the Registry (for Internet Explorer) and the user.js (for Firefox) to ADD a custom string to the user agent string. These additions survive a browser upgrade nicely (Microsoft uses this technique to indicate the presence of the dotNet Framework).
Now I need to extend this to Apple Safari and Google Chrome on all supported platforms.
To be clear: I'm not looking how to REPLACE the user agent string, but how to amend it with additional information.
Any hint?
I faced a similar problem and I implemented this in the same way as apple do for iTunes as described in this SO question. Finding information on how to create the Firefox plugin was more tricky, but the answer to my question was a great help. The Firefox (or mozilla) plugin will be used by all mozilla based browsers (Firefox, Chrome, Safari) and you will therefore be able to use the same javascript to detect the firefox plugin in all of these browsers and therefore determine whether your plugin/custom protocol/application is installed.
As Google Chrome supports the Netscape Plugin API ( http://en.wikipedia.org/wiki/NPAPI ), the Firefox way might be a good starting point also there.