Add i18n comments for the acronym IR

This commit is contained in:
JosJuice
2017-04-08 13:27:17 +02:00
parent f41557b1c3
commit 254df247b1
6 changed files with 9 additions and 0 deletions

View File

@ -18,6 +18,7 @@
#include "InputCommon/ControllerInterface/ControllerInterface.h"
#include "InputCommon/GCPadStatus.h"
// clang-format off
const std::string hotkey_labels[] = {
_trans("Open"),
_trans("Change Disc"),
@ -73,7 +74,9 @@ const std::string hotkey_labels[] = {
_trans("Toggle Texture Dumping"),
_trans("Toggle Custom Textures"),
// i18n: IR stands for internal resolution
_trans("Increase IR"),
// i18n: IR stands for internal resolution
_trans("Decrease IR"),
_trans("Freelook Decrease Speed"),
@ -148,6 +151,7 @@ const std::string hotkey_labels[] = {
_trans("Save State"),
_trans("Load State"),
};
// clang-format on
static_assert(NUM_HOTKEYS == sizeof(hotkey_labels) / sizeof(hotkey_labels[0]),
"Wrong count of hotkey_labels");