Skip to content

Commit

Permalink
Make wording slightly more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
filips123 committed Feb 20, 2024
1 parent ed95d39 commit f28c75c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/docs/about/current-limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process handles its content processes. This is just a wild theory though and has
investigated further.

This issue can be prevented by installing each web app into a different profile,
which is the default behaviour on macOS.
which is the default behavior on macOS.

Check [this comment][link-merged-comment] and related discussions for ideas
and possible solutions for fixing this. This problem is tracked as issue [#81]
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/help/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Unique features that PWAsForFirefox supports include:
* **More customization options:** This project supports additional configuration abilities
that Chromium-based browsers do not. Customization options that the project supports include
allowing the customization of the browser toolbar with widgets, different browser settings
for different web apps, installing additional addons, etc. In addition, the behaviour can
for different web apps, installing additional addons, etc. In addition, the behavior can
also be highly customized with the available settings.

* **Better integration with the desktop:** Web apps installed with this project can provide
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/user-guide/browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ automatically open in the app browser. You don't have to do anything special.
By default, when you navigate to the website that is outside the scope of the current web
app, the browser will display a disabled address bar with the current URL. This is used
for security reasons to ensure that you know you are not in the original web app anymore.
This behaviour can be changed in the settings (see below for configuration options).
This behavior can be changed in the settings (see below for configuration options).

### Using Firefox Features

Expand Down Expand Up @@ -220,7 +220,7 @@ to use multiple tabs of the same web app in the same window.

> When opening a link that should normally open in a new window or tab:
>
> * 0 - Do not change link behaviour (not recommended)
> * 0 - Do not change link behavior (not recommended)
> * 1 - Force links into the current tab (default)
> * 2 - Force links into a new window
> * 3 - Force links into a new tab
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/user-guide/console.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Both arguments are optional. Omitted arguments will not change profile's propert
Setting arguments to an empty value will clear their properties.

It is also possible to apply the profile template to an existing profile, with similar
behaviour as when [creating a profile](#creating-a-profile).
behavior as when [creating a profile](#creating-a-profile).

### Listing Profiles

Expand Down
4 changes: 2 additions & 2 deletions native/userchrome/profile/chrome/pwa/content/browser.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ class PwaBrowser {
const canLoad = this.canLoad(uri);
let displayBar = !canLoad && !uri.spec.startsWith('about:firefoxview');

// Change URL bar behaviour based on our custom preference
// Change URL bar behavior based on our custom preference
const userPreference = xPref.get(ChromeLoader.PREF_DISPLAY_URL_BAR);
if (userPreference === 1) displayBar = false;
else if (userPreference === 2) displayBar = true;
Expand Down Expand Up @@ -1923,7 +1923,7 @@ class PwaBrowser {
xPref.set('distribution.about', ChromeLoader.DISTRIBUTION_ABOUT, true);

// Determines whether `_blank` links target is forced into the current tab or a new window
// 0 - Do not change link behaviour (strongly not recommended)
// 0 - Do not change link behavior (not recommended)
// 1 - Force links into the current tab (default)
// 2 - Force links into a new window
// 3 - Force links into a new tab
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ links-target-choice-new-window =
.label = Force links into a new window
links-target-choice-keep =
.label = Do not change link behaviour
.label = Do not change link behavior
## Launch Type Preference

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function setWindowColors (window, site) {
* On Windows, this function sets the AppUserModelID (GroupID) property of the
* window, allowing grouping multiple windows of the same site in the Windows
* taskbar and preventing grouping different sites. It also sets taskbar windows
* icons to prevent incorrect behaviour when pinning/unpinning the shortcut.
* icons to prevent incorrect behavior when pinning/unpinning the shortcut.
*
* On all systems it sets the window name, the window `icon` attribute to prevent
* problems on some desktop environments (for example, Xfce), `windowclass` and
Expand Down

0 comments on commit f28c75c

Please sign in to comment.