diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-20 20:09:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-20 20:09:52 +0300 |
commit | 013dcc896a1dcee5f26ab41f81a85878b2c216f7 (patch) | |
tree | 2b951e751c5ca7ca895027b00d6b0bfa1562cd6e | |
parent | 30cd6bc597faefaf3775edc299671f17d6255a12 (diff) | |
download | plus-013dcc896a1dcee5f26ab41f81a85878b2c216f7.tar.gz plus-013dcc896a1dcee5f26ab41f81a85878b2c216f7.tar.bz2 plus-013dcc896a1dcee5f26ab41f81a85878b2c216f7.tar.xz plus-013dcc896a1dcee5f26ab41f81a85878b2c216f7.zip |
fix typo.
perfomance -> performance
-rw-r--r-- | src/client.cpp | 2 | ||||
-rw-r--r-- | src/graphicsmanager.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_perfomance.cpp | 10 | ||||
-rw-r--r-- | src/gui/setup_visual.cpp | 2 | ||||
-rw-r--r-- | src/test/testmain.cpp | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/src/client.cpp b/src/client.cpp index 5f3803b30..5551bd312 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -1163,7 +1163,7 @@ int Client::gameExec() #ifndef WIN32 ADDBUTTON(mPerfomanceButton, new Button(mDesktop, // TRANSLATORS: perfoamance tab quick button - _("Perfomance"), "Perfomance", this)) + _("Performance"), "Perfomance", this)) ADDBUTTON(mVideoButton, new Button(mDesktop, // TRANSLATORS: video tab quick button _("Video"), "Video", this)) diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index 3bba8f9af..23e105e5f 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -938,7 +938,7 @@ static CALLBACK void debugCallback(GLenum source, GLenum type, GLuint id, message.append(" PORTABILITY"); break; case GL_DEBUG_TYPE_PERFORMANCE: - message.append(" PERFOMANCE"); + message.append(" PERFORMANCE"); break; case GL_DEBUG_TYPE_OTHER: message.append(" OTHER"); diff --git a/src/gui/setup_perfomance.cpp b/src/gui/setup_perfomance.cpp index c4fb30de1..4887d7201 100644 --- a/src/gui/setup_perfomance.cpp +++ b/src/gui/setup_perfomance.cpp @@ -58,7 +58,7 @@ Setup_Perfomance::Setup_Perfomance(const Widget2 *const widget) : mTexturesList(new NamesModel) { // TRANSLATORS: settings tab name - setName(_("Perfomance")); + setName(_("Performance")); // Do the layout LayoutHelper h(this); @@ -66,11 +66,11 @@ Setup_Perfomance::Setup_Perfomance(const Widget2 *const widget) : place(0, 0, mScroll, 10, 10); // TRANSLATORS: settings option - new SetupItemLabel(_("Better perfomance (enable for better perfomance)"), + new SetupItemLabel(_("Better performance (enable for better performance)"), "", this); // TRANSLATORS: settings option - new SetupItemCheckBox(_("Auto adjust perfomance"), "", + new SetupItemCheckBox(_("Auto adjust performance"), "", "adjustPerfomance", this, "adjustPerfomanceEvent"); // TRANSLATORS: settings option @@ -99,7 +99,7 @@ Setup_Perfomance::Setup_Perfomance(const Widget2 *const widget) : // TRANSLATORS: settings option - new SetupItemLabel(_("Better quality (disable for better perfomance)"), + new SetupItemLabel(_("Better quality (disable for better performance)"), "", this); // TRANSLATORS: settings option @@ -131,7 +131,7 @@ Setup_Perfomance::Setup_Perfomance(const Widget2 *const widget) : // TRANSLATORS: settings group new SetupItemLabel(_("Different options (enable or disable can " - "improve perfomance)"), "", this); + "improve performance)"), "", this); mTexturesList->fillFromArray(&texturesList[0], texturesListSize); diff --git a/src/gui/setup_visual.cpp b/src/gui/setup_visual.cpp index cbbe9affa..32555b929 100644 --- a/src/gui/setup_visual.cpp +++ b/src/gui/setup_visual.cpp @@ -66,7 +66,7 @@ static const char *const particleTypeList[] = // TRANSLATORS: patricle effects type N_("normal"), // TRANSLATORS: patricle effects type - N_("best perfomance") + N_("best performance") }; static const int vSyncListSize = 3; diff --git a/src/test/testmain.cpp b/src/test/testmain.cpp index 81e83a950..893b477f9 100644 --- a/src/test/testmain.cpp +++ b/src/test/testmain.cpp @@ -225,7 +225,7 @@ void TestMain::writeConfig(const int openGLMode, const int rescale, mConfig.setValue("showBackground", !rescale); mConfig.setValue("sound", !sound); - // better perfomance + // better performance mConfig.setValue("hwaccel", true); mConfig.setValue("fpslimit", 60); mConfig.setValue("altfpslimit", 2); |