Yorik van Havre
be6a654b3e
merged crowdin translations
2023-02-27 16:01:15 +01:00
Yorik van Havre
2cd27ce328
updated ts files
2023-02-27 15:35:51 +01:00
Yorik van Havre
0566d90cc5
merged crowdin translations
2023-02-13 15:45:26 +01:00
Yorik van Havre
63e4a36000
updated ts files
2023-02-13 15:45:26 +01:00
Yorik van Havre
d8b0e64e14
Merged crowdin translations
2023-02-07 15:55:31 +01:00
Yorik van Havre
94cd431eb2
updated ts files
2023-02-07 15:55:31 +01:00
Yorik van Havre
80c68fa4df
Merged crowdin translations
2023-01-30 10:04:15 +01:00
Yorik van Havre
81552acdeb
update ts files
2023-01-30 09:55:26 +01:00
Yorik van Havre
433b17b829
Merged crowdin translations
2023-01-23 11:25:49 +01:00
Yorik van Havre
48fdd4896a
Updated ts files
2023-01-23 10:41:33 +01:00
luzpaz
79e150a81b
Fix trailing whitespace, typos, headers
...
Fix trailing whitespace, typos, and header uniformity.
2023-01-23 00:34:37 +01:00
Yorik van Havre
5033f64ce9
Merged crowdin translations
2023-01-17 09:40:31 +01:00
Yorik van Havre
12239f7f99
Updated ts files
2023-01-17 09:24:46 +01:00
Jakub Świerk
de360796f0
Updated ts files
2023-01-10 13:46:33 +01:00
Yorik van Havre
ec6b14bbee
Merged crowdin translations
2023-01-09 14:06:28 +01:00
Yorik van Havre
c1160c598a
Updated ts files
2023-01-09 13:24:16 +01:00
wmayer
09ae3b2ab8
Gui: Qt6 port
...
* QString::indexOf() is now marked as [[nodiscard]]
* Replace deprecated methods of QMessageBox
* QMouseEvent::globalPos() is deprecated, use globalPosition().toPoint()
* QWidget::enterEvent() requires a QEnterEvent as argument
* QLibraryInfo::location() is deprecated, use path()
* QVariant::Type is deprecated, use QMetaType::Type
* QVariant::canConvert(int) is deprecated, use QVariant::canConvert(QMetaType) or QVariant::canConvert<T>()
* QMessageBox::standardIcon is deprecated, use QStyle::standardIcon()
* Replace deprecated method QMessageBox::question(), ...
* QApplication::fontMetrics() is deprecated
* QDropEvent::mouseButtons() is deprecated, use buttons()
* QDropEvent::keyboardModifiers() is deprecated, use modifiers()
* Constructor of QFontDatabase is deprecated, use static methods instead
* Qt::AA_DisableHighDpiScaling is deprecated
* Qt::AA_EnableHighDpiScaling is deprecated
* Qt::AA_UseHighDpiPixmaps is deprecated
2022-12-31 21:54:45 +01:00
Yorik van Havre
89147ef8de
Regenerated ts files using lupdate6.6
2022-12-22 15:39:42 +01:00
Yorik van Havre
59b6970728
Fixed ts files
2022-12-22 13:34:31 +01:00
Yorik van Havre
3376e387da
Merged crowdin translations
2022-12-20 10:01:00 +01:00
Yorik van Havre
d206d5cd1f
Updated ts files
2022-12-20 09:31:25 +01:00
Ajinkya Dahale
8ef77072f0
[GUI] Add missing include
...
This `memory` header is needed for `unique_ptr`, at least on Manjaro/Arch Linux with GCC.
2022-12-14 14:37:42 +01:00
wmayer
01a93426cf
Qt6 port: QLocale::decimalPoint() now returns a QString
2022-11-03 14:19:43 +01:00
wmayer
e8bbc2da63
Gui: fix some minor warnings reported by GH Actions
2022-11-03 13:58:07 +01:00
0penBrain
30a69066d0
Gui: decimal point converter: numpad separator always send Period to Python Console & Macro Editor
2022-11-03 13:41:06 +01:00
0penBrain
f22646c8fd
Gui: improve decimal point converter algorithm
...
Fix a bug in key code for forged key event
Only process spontaneous events
2022-11-03 13:41:06 +01:00
0penBrain
4760e70697
Gui: modernize management of decimal converter event filter
...
Use unique_ptr with custom deleter to be more defensive
2022-11-03 13:41:06 +01:00
0penBrain
f5b91de0e6
Gui: add decimal point converter to Translator
2022-11-03 13:41:06 +01:00
Yorik van Havre
1ae780d3b1
Merged crowdin translations
2022-10-17 15:12:16 +02:00
Yorik van Havre
9c24f0f5b8
Merged crowdin translations
2022-10-10 11:06:08 +02:00
Yorik van Havre
4ba1b0e4dc
Updated ts files
2022-10-10 10:19:30 +02:00
Yorik van Havre
4ca1b838a9
Merged crowdin translations
2022-10-06 12:48:05 +02:00
Yorik van Havre
3d75b4fb74
Updated ts files
2022-10-06 12:16:32 +02:00
berniev
ae53c9b0a4
Gui: Use auto and range-based for ( #7481 )
...
* On lines where the variable type is obvious from inspection, avoid repeating the type using auto.
* When possible use a ranged for loop instead of begin() and end() iterators
2022-09-14 13:25:13 -05:00
wmayer
23961706be
Gui: modernize C++: replace 'typedef' with 'using'
2022-08-29 14:09:18 +02:00
berniev
3d1f70765a
Gui: redundant void 2
2022-08-08 10:21:44 +02:00
wmayer
85bd6b5c6b
Fix several clazy issues:
...
* C++11 range-loop might detach Qt container [-Wclazy-range-loop-detach]
2022-07-24 23:48:37 +02:00
wmayer
82a6241fc5
fix (Qt) issues found by clang's clazy tool:
...
+ -Wclazy-incorrect-emit
+ -Wclazy-strict-iterators
+ -Wclazy-overloaded-signal
+ -Wclazy-qstring-arg
+ -Wclazy-unused-non-trivial-variable
+ -Wclazy-container-anti-pattern
+ -Wclazy-range-loop-reference
+ -Wclazy-const-signal-or-slot
+ -Wclazy-detaching-temporary
+ -Wclazy-qfileinfo-exists
2022-06-29 21:00:54 +02:00
Kuzemko Alexsandr
b99ccc6193
Crowdin Update .ts files with current source.
2022-06-21 17:31:06 +03:00
Yorik van Havre
05301abfcb
Merged crowdin translations
2022-06-12 11:56:37 +02:00
Yorik van Havre
3af0623431
Merged crowdin translations
2022-06-10 11:03:57 +02:00
Yorik van Havre
6aaa94d2f2
Updated ts files
2022-06-10 10:29:18 +02:00
Yorik van Havre
56264248eb
Merged crowdin translations
2022-06-09 13:40:35 +02:00
wmayer
3057abfae9
Gui: use expresion 'keyboard shortcut' to avoid incorrect translation
2022-06-09 13:15:41 +02:00
wmayer
9cd7500d65
Gui: improve German translation
2022-06-09 12:15:29 +02:00
Yorik van Havre
6d479e6cda
Generated ts files
2022-06-08 12:32:59 +02:00
Yorik van Havre
d2f8b7d4e3
Merged crowdin translations
2022-06-08 12:28:54 +02:00
Yorik van Havre
80982cf87b
Merged crowdin translations
2022-06-07 13:34:53 +02:00
Kuzemko Alexsandr
80967344c5
Crowdin Run update.ts with latest source code.
2022-06-07 13:15:44 +03:00
Yorik van Havre
1488714a0f
Merged crowdin translations
2022-06-03 11:26:35 +02:00