Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan White <support@dmapps.us>2019-08-31 03:18:41 +0300
committerGitHub <noreply@github.com>2019-08-31 03:18:41 +0300
commit3b330ee2d11221b598ec60e506cc4c5652e33dd6 (patch)
tree60d944a6517d737ec809243d27a24a16090961e2 /src/core/Translator.h
parent58d357e9cec3c5e1586ce48775984a86d1e39aeb (diff)
Improve accessibility (#3409)
* Add application settings reset button - Corrects accessibility findings GP.2 * Use icons in addition to color to indicate password mismatch - Corrects accessibility finding CN.2 * Announce begin/end of list navigation - Corrects accessibility finding KF.4 * Fixes for keyboard navigation - Add Ctrl+F10 keyboard shortcut to show group/entry context menus. Fixes #3140 - Improve movement between form fields * Fix loading system-defined language in translator - Fixes #3202 - Bypass built-in Qt loading of QLocale for translations. The order of loading languages doesn't consider all file names prior to moving to the next language in the list. This resulted in English being chosen no matter what language is the top priority. * Improve message box defaults and fix documentation links * Better support for screen readers * Add accessible names on form fields * Prevent changing values during settings widget scrolling - Add an event filter to combo boxes and spin boxes on the settings page to prevent the mouse wheel from changing the values without having focus - Add horizontal stretch to the security settings to make the spin boxes more manageable.
Diffstat (limited to 'src/core/Translator.h')
-rw-r--r--src/core/Translator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/Translator.h b/src/core/Translator.h
index 23a18422c..8236ade43 100644
--- a/src/core/Translator.h
+++ b/src/core/Translator.h
@@ -29,8 +29,8 @@ public:
static QList<QPair<QString, QString>> availableLanguages();
private:
- static bool installTranslator(const QLocale& locale, const QString& path);
- static bool installQtTranslator(const QLocale& locale, const QString& path);
+ static bool installTranslator(const QStringList& languages, const QString& path);
+ static bool installQtTranslator(const QStringList& languages, const QString& path);
};
#endif // KEEPASSX_TRANSLATOR_H