Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translation: Remove excess double quote #11777

Merged
merged 5 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pcsx2-qt/Settings/ControllerBindingWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,8 @@ QIcon USBDeviceWidget::getIcon() const
{"guncon2", "guncon2-line"}, // GunCon 2
{"DJTurntable", "dj-hero-line"}, // DJ Hero TurnTable
{"Gametrak", "gametrak-line"}, // Gametrak Device
{"RealPlay", "realplay-sphere-line"} // RealPlay Device
{"RealPlay", "realplay-sphere-line"}, // RealPlay Device
{"TrainController", "train-line"} // Train Controller
};

for (size_t i = 0; i < std::size(icons); i++)
Expand Down
30 changes: 14 additions & 16 deletions pcsx2-qt/Settings/ControllerSettingsWindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>1305</width>
<width>1318</width>
<height>690</height>
</rect>
</property>
Expand Down Expand Up @@ -35,13 +35,13 @@
</property>
<property name="minimumSize">
<size>
<width>170</width>
<width>180</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>170</width>
<width>200</width>
<height>16777215</height>
</size>
</property>
Expand All @@ -51,6 +51,9 @@
<height>32</height>
</size>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item row="0" column="1">
Expand All @@ -64,11 +67,11 @@
</widget>
</item>
<item row="1" column="0" colspan="2">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<layout class="QHBoxLayout" name="profileLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="label">
<widget class="QLabel" name="profileLabel">
<property name="text">
<string>Editing Profile:</string>
</property>
Expand Down Expand Up @@ -96,8 +99,7 @@
<string>New Profile</string>
</property>
<property name="icon">
<iconset theme="plus-line">
<normaloff>.</normaloff>.</iconset>
<iconset theme="plus-line"/>
</property>
</widget>
</item>
Expand All @@ -107,8 +109,7 @@
<string>Apply Profile</string>
</property>
<property name="icon">
<iconset theme="folder-open-line">
<normaloff>.</normaloff>.</iconset>
<iconset theme="folder-open-line"/>
</property>
</widget>
</item>
Expand All @@ -118,8 +119,7 @@
<string>Delete Profile</string>
</property>
<property name="icon">
<iconset theme="minus-line">
<normaloff>.</normaloff>.</iconset>
<iconset theme="minus-line"/>
</property>
</widget>
</item>
Expand All @@ -129,8 +129,7 @@
<string>Mapping Settings</string>
</property>
<property name="icon">
<iconset theme="settings-3-line">
<normaloff>.</normaloff>.</iconset>
<iconset theme="settings-3-line"/>
</property>
</widget>
</item>
Expand All @@ -140,8 +139,7 @@
<string>Restore Defaults</string>
</property>
<property name="icon">
<iconset theme="restart-line">
<normaloff>.</normaloff>.</iconset>
<iconset theme="restart-line"/>
</property>
</widget>
</item>
Expand All @@ -150,7 +148,7 @@
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="standardButtons">
<set>QDialogButtonBox::Close</set>
<set>QDialogButtonBox::StandardButton::Close</set>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion pcsx2-qt/Settings/USBBindingWidget_RyojouhenCon.ui
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</size>
</property>
<property name="title">
<string extracomment="Door buttons toggle to open or close train doors when this controller is used with Densha De GO! games.">Door Buttons"</string>
<string extracomment="Door buttons toggle to open or close train doors when this controller is used with Densha De GO! games.">Door Buttons</string>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<property name="spacing">
Expand Down
Loading