Skip to content

Commit

Permalink
Merge pull request #35 from MikeRatcliffe/fix-typos
Browse files Browse the repository at this point in the history
chore:  Fix a few typos
  • Loading branch information
victorwads authored Aug 25, 2024
2 parents 85643ca + aa8dd5c commit d0ee209
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Download and install Quest games from ROOKIE Public Mirror (like [VRP Rookie Sid

---

- [ QRookie](#-qrookie)
- [QRookie](#-qrookie)
- [Screenshots](#screenshots)
- [Download](#download)
- [Arch Linux](#arch-linux)
Expand Down Expand Up @@ -131,7 +131,7 @@ See [releases](https://github.com/glaumar/QRookie/releases).
See [releases](https://github.com/glaumar/QRookie/releases).

> [!WARNING]
> *The MacOS Bundle is automatically build using github action and is not signed or notarized*
> *The MacOS Bundle is automatically built using a github action and is not signed or notarized*
> [!WARNING]
> *The MacOS Bundle does not include **java runtime**. If you want to use the `rename pkg` function, you need to install the java runtime additionally:*
Expand All @@ -148,11 +148,11 @@ See [releases](https://github.com/glaumar/QRookie/releases).
> *If you don’t know nix at all, we don’t recommend using this method to install QRookie.*
> [!WARNING]
> *More than 3GB of data may be downloaded during first installation*
> *More than 3GB of data may be downloaded during the first installation*
1. **install nix:** I recommend using the [graphical installer](https://determinate.systems/posts/graphical-nix-installer/) for installation. (From [here](https://nixcademy.com/2024/01/15/nix-on-macos/) you can find more ways to install nix on MacOS)
1. **Install nix:** We recommend using the [graphical installer](https://determinate.systems/posts/graphical-nix-installer/) for installation. (From [here](https://nixcademy.com/2024/01/15/nix-on-macos/) you can find more ways to install nix on MacOS)
2. **install QRookie using flake:**
2. **Install QRookie using flake:**
```shell
export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1
Expand All @@ -174,7 +174,7 @@ QRookie currently does not support `install.txt`. Some games may fail to install
- `~/.var/app/io.github.glaumar.QRookie/data/QRookie/` (Flatpak)
- `~/Library/Application Support/QRookie` (MacOS)

and manually install them ([ Howto: Sideload Manually](https://vrpirates.wiki/en/Howto/Manual-Sideloading)).
and manually install them ([Howto: Sideload Manually](https://vrpirates.wiki/en/Howto/Manual-Sideloading)).

## 2. Are all the games provided by QRookie? Are these games infected with viruses?

Expand All @@ -195,10 +195,10 @@ paru -S android-sdk-build-tools android-apktool
```shell
# build
cmake -B build -S . -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr'
cmake --build build --target qrookie
cmake --build build --target QRookie

# run
./build/qrookie
./build/QRookie

# install (not recommended)
cmake --install build
Expand Down Expand Up @@ -282,9 +282,9 @@ cd ./macOs/

## MacOS (Nix)
### Install Nix
I recommend using the [graphical installer](https://determinate.systems/posts/graphical-nix-installer/) for installation.
We recommend using the [graphical installer](https://determinate.systems/posts/graphical-nix-installer/) for installation.

For more details, refer to [here](https://nixcademy.com/2024/01/15/nix-on-macos/)
For more details, see [here](https://nixcademy.com/2024/01/15/nix-on-macos/)

### Build
Some dependencies in Nix are not supported on Darwin, but they can actually run if you force them to compile.
Expand Down
2 changes: 1 addition & 1 deletion content/Tabs/Devices/ApplicationDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Kirigami.Card {
footer: Button {
id: action_button
icon.name: "uninstall"
text: qsTr("Uninstall to All Users")
text: qsTr("Uninstall For All Users")
onClicked: {
uninstallButtonClicked();
}
Expand Down
4 changes: 2 additions & 2 deletions content/Tabs/Devices/Device.qml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ RowLayout {
app.vrp.settings.lastWirelessAddr = wireless_adress.text;
} else {
wireless_error_message.visible = true;
wireless_error_message.text = qsTr("Failed to connect to " + wireless_adress.text);
wireless_error_message.text = qsTr("Failed to connect to %1").arg(wireless_adress.text);
}
});
}
Expand Down Expand Up @@ -219,7 +219,7 @@ RowLayout {
app.deviceManager.connectToWirelessDeviceQml(address).then((connected) => {
if (!connected) {
wireless_error_message.visible = true;
wireless_error_message.text = qsTr("Failed to connect to " + address);
wireless_error_message.text = qsTr("Failed to connect to %1").arg(address);
}
device_card.autoConnect = true;
});
Expand Down
6 changes: 3 additions & 3 deletions content/Tabs/Downloads/DownloadDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Kirigami.Card {
status_label.color = Kirigami.Theme.textColor;
if (isNaN(progress) || progress <= 0) {
progress_bar.indeterminate = true;
status_label.text = qsTr("Starting Downloading");
status_label.text = qsTr("Starting Download");
}
} else if (status === VrpManager.DownloadError) {
delete_button.enabled = true;
Expand Down Expand Up @@ -116,7 +116,7 @@ Kirigami.Card {
anchors.margins: 10
anchors.right: progress_bar.right
anchors.bottom: progress_bar.top
text: "Unknown Status"
text: qsTr("Unknown Status")
}

Button {
Expand All @@ -125,7 +125,7 @@ Kirigami.Card {
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.margins: 10
text: "delete"
text: qsTr("Delete")
icon.name: "delete"
onClicked: {
deleteButtonClicked();
Expand Down
6 changes: 3 additions & 3 deletions content/Tabs/Downloads/Downloads.qml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RowLayout {
Label {
id: download_title

text: qsTr("Downloading") + " (" + downloading_list.count + ")"
text: qsTr("Downloading (%1)").arg(downloading_list.count)
font.bold: true
font.pointSize: Qt.application.font.pointSize * 2
}
Expand Down Expand Up @@ -109,7 +109,7 @@ RowLayout {
id: local_title

Layout.alignment: Qt.AlignLeft
text: qsTr("Local") + " (" + local_list.count + ")"
text: qsTr("Local (%1)").arg(local_list.count)
font.bold: true
font.pointSize: Qt.application.font.pointSize * 2
}
Expand All @@ -128,7 +128,7 @@ RowLayout {
app.vrp.settings.renamePackage = checked;
}
text: qsTr("Rename pkg")
ToolTip.text: qsTr("Rename the package before installing the game.This is useful when Quest prevents you from launching an game whose free trial has expired.")
ToolTip.text: qsTr("Rename the package before installing the game. This is useful when a Quest prevents you from launching a game whose free trial has expired.")
ToolTip.visible: hovered
}

Expand Down
2 changes: 1 addition & 1 deletion content/Tabs/Downloads/LocalDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Kirigami.Card {
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.margins: 10
text: "Delete"
text: qsTr("Delete")
icon.name: "delete"
onClicked: {
deleteButtonClicked();
Expand Down
6 changes: 3 additions & 3 deletions content/Tabs/Games/GameDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Kirigami.Card {
break;
case VrpManager.Downloading:
if (isNaN(progress) || progress <= 0) {
action_button.text = qsTr("Starting Downloading");
action_button.text = qsTr("Starting Download");
progress_bar.indeterminate = true;
progress_bar.visible = true;
action_button.icon.name = "download";
Expand Down Expand Up @@ -143,7 +143,7 @@ Kirigami.Card {

Label {
Layout.alignment: Qt.AlignRight
text: "Version: " + versionCode
text: qsTr("Version: %1").arg(versionCode)
}

Label {
Expand Down Expand Up @@ -182,7 +182,7 @@ Kirigami.Card {
id: action_button

Layout.fillWidth: true
text: qsTr("Downlad")
text: qsTr("Download")
onClicked: {
if (status === VrpManager.Installable || status === VrpManager.UpdatableLocally || status === VrpManager.InstallError)
installButtonClicked();
Expand Down
8 changes: 4 additions & 4 deletions content/Tabs/Users/Users.qml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ RowLayout {
installed_apps_number.text = app.deviceManager.selectedUsersInstalledApps > -1
? app.deviceManager.selectedUsersInstalledApps
: qsTr("loading...");
installed_tab.text = qsTr("Installed (") + app.deviceManager.selectedUsersInstalledApps + qsTr(")");
available_tab.text = qsTr("Available (") + app.deviceManager.availableAppsCount + qsTr(")");
installed_tab.text = qsTr("Installed (%1)").arg(app.deviceManager.selectedUsersInstalledApps);
available_tab.text = qsTr("Available (%1)").arg(app.deviceManager.availableAppsCount);
}

target: app.deviceManager
Expand All @@ -51,7 +51,7 @@ RowLayout {
header: Label {
id: users_title

text: "Users"
text: qsTr("Users")
font.bold: true
font.pointSize: Qt.application.font.pointSize * 2
}
Expand All @@ -76,7 +76,7 @@ RowLayout {
Label {
id: users_info_label

text: "User Info"
text: qsTr("User Info")
font.bold: true
font.pointSize: Qt.application.font.pointSize * 1.5
}
Expand Down

0 comments on commit d0ee209

Please sign in to comment.