dsa-t
a27b3636ed
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 99.9% (9945 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/zh_Hans/
2025-02-07 00:35:13 +01:00
dsa-t
6e5a29f89f
Translated using Weblate (Russian)
...
Currently translated at 100.0% (9946 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-07 00:35:13 +01:00
dsa-t
4b19f9df19
Translated using Weblate (Polish)
...
Currently translated at 99.9% (9945 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pl/
2025-02-07 00:35:13 +01:00
dsa-t
5d061b7f5f
Translated using Weblate (Korean)
...
Currently translated at 99.9% (9945 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2025-02-07 00:35:13 +01:00
dsa-t
a550996aac
Translated using Weblate (Japanese)
...
Currently translated at 99.9% (9938 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ja/
2025-02-07 00:35:13 +01:00
dsa-t
03a4733ba6
Translated using Weblate (German)
...
Currently translated at 99.9% (9945 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/de/
2025-02-07 00:35:13 +01:00
Marek Roszko
69a7dc95c5
Probably fix the bitmap button painting more
...
Testing on platforms shows we don't need this differentiated case between toolbar and non toolbar icons. Since we don't start with an small base bundle icon for the icons that probably had issues before.
2025-02-06 18:25:53 -05:00
Alex Shvartzkop
c74165d58f
Update translations
2025-02-07 01:15:10 +03:00
dsa-t
a66f5a052b
Translated using Weblate (Russian)
...
Currently translated at 100.0% (9945 of 9945 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-06 23:13:30 +01:00
Jan Straka
f25bc191d8
Translated using Weblate (Czech)
...
Currently translated at 76.4% (7605 of 9945 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/cs/
2025-02-06 23:13:30 +01:00
Alex Shvartzkop
421a76c4f7
Translate "Padstack is questionable".
2025-02-07 00:30:23 +03:00
Seth Hillbrand
1e6e555164
Cache based on sub/subscript
...
Prevents the case where we cache a font in one scale and try to use
another. This could be contained in scaleFactor but we don't currently
prescale, so hashing on the boolean is probably easier
2025-02-06 13:26:04 -08:00
Wayne Stambaugh
f45915ba93
Eeschema folder housekeeping.
2025-02-06 09:47:00 -05:00
jean-pierre charras
69c6412b43
Revert "fix commit 4ef2853a on non Windows platforms"
...
This reverts commit e587e5029c487e69222f6bf545a0ad0f07e0f210.
Revert "Print dlgs: add panel printer to select the current printer. Windows only"
This reverts commit 4ef2853ae51afa028350c0c42ee01286837e5178.
2025-02-06 14:27:30 +01:00
jean-pierre charras
e587e5029c
fix commit 4ef2853a on non Windows platforms
2025-02-06 13:33:06 +01:00
jean-pierre charras
4ef2853ae5
Print dlgs: add panel printer to select the current printer. Windows only
...
Other platforms natively show the available printers.
2025-02-06 12:29:18 +01:00
John Beard
466ee6fac8
Pcbnew: keep alway-on layer checkboxes visible but disabled
...
THese layers can't be disabled, but hiding the checkboxes
can be misunderstood as the layers are missing, rather than forced on.
E.g.: https://gitlab.com/kicad/code/kicad/-/issues/18756#note_2315214661
2025-02-05 22:01:46 +08:00
John Beard
14cbce5d0f
Pcbnew: fix bad layer maths in stackup dialog
...
F_Cu | B_Cu is not the same as LSET( F_Cu ) | LSET( B_Cu),
so you cannot do some_lset |= F_Cu | B_Cu (or rather you can, but
it is not what you expect).
F_Cu and B_Cu are just ints, so 0 | 2 == 2. This isn't the
same as setting *bit indices* 0 and 2. OR-ing with 2 is setting
bit index 1, which is F_Mask.
You can set them one by one with lset.set( F_Cu ) or OR with
LSET::ExternalCuMask() helper. But actually, we're trying to set all 'n'
copper layers, and LSET has AllCuMask and we can save all the hassle
in this function.
Thanks to @aris-kimi for finding the problematic code lines and
providing the foundation of this fix.
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/19855
2025-02-06 13:00:33 +08:00
Seth Hillbrand
3018d7af09
Enable git by default
2025-02-05 20:52:47 -08:00
John Beard
986312e612
Revert "Pcbnew: reduce snap timeout a fraction"
...
Now the updating is fixed in d90862b44454a146ede30fe061002f6c0e8ceca9,
the hover timeout is shorter because it's not mistakenly waiting a
random-ish time for the next mouse movement. So this adjustment is not
required. In fact, if anything, it may be better to go the other way.
This reverts commit 7080d99464eb8ee72863ef24f1c71523dbbebb4b.
2025-02-06 11:31:51 +08:00
Jon Evans
ea8a6e305d
Fix parsing of tenting tag in pads
...
Fixes https://gitlab.com/kicad/code/kicad/-/issues/19851
2025-02-05 19:58:30 -05:00
Alex Shvartzkop
2f1efd151c
Update translations
2025-02-05 21:38:51 +03:00
dsa-t
a3c04ee36d
Translated using Weblate (Russian)
...
Currently translated at 100.0% (9946 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-05 19:36:43 +01:00
dsa-t
36ff8cabb6
Translated using Weblate (Russian)
...
Currently translated at 100.0% (9946 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-05 19:30:03 +01:00
dsa-t
823f34f1e4
Translated using Weblate (Russian)
...
Currently translated at 100.0% (9946 of 9946 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-05 19:30:03 +01:00
Alex Shvartzkop
d16a5b1ea3
Fix a design block string.
2025-02-05 19:06:15 +03:00
Alex Shvartzkop
dd6c19304b
Update translations
2025-02-05 18:25:23 +03:00
Alex Shvartzkop
3b6b73a8ef
Revert tooltip string in plot dialog.
...
See bef63fe76bedea8ebc46018083bca976516851f1 b2de4cf40a69fa9c522b28a72354720099b9a7d2
2025-02-05 18:24:18 +03:00
Mark Roszko
4861f2ea85
Revert wxpython removal
2025-02-05 12:09:22 +00:00
Jon Evans
a429afe4e9
Fix a few more cases where migrated project files were being saved implicitly
2025-02-04 18:37:31 -05:00
Alex Shvartzkop
c20cbc8857
Update translations
2025-02-05 02:27:56 +03:00
ZbeeGin
f3acf6068a
Translated using Weblate (Polish)
...
Currently translated at 100.0% (9947 of 9947 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pl/
2025-02-05 00:26:20 +01:00
Marco Ciampa
3aeea06c4a
Translated using Weblate (Italian)
...
Currently translated at 93.9% (9347 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/it/
2025-02-05 00:26:20 +01:00
Wellington Terumi Uemura
b2b7c01a22
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (9947 of 9947 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pt_BR/
2025-02-05 00:26:20 +01:00
reimu105
0bdcf15910
Translated using Weblate (Chinese (Traditional Han script))
...
Currently translated at 91.3% (9085 of 9947 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/zh_Hant/
2025-02-05 00:26:20 +01:00
CloverGit
3487921cd7
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 100.0% (9947 of 9947 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/zh_Hans/
2025-02-05 00:26:20 +01:00
dsa-t
a2fb1666f7
Translated using Weblate (Russian)
...
Currently translated at 100.0% (9949 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-05 00:26:20 +01:00
김랑기
3d55750554
Translated using Weblate (Korean)
...
Currently translated at 100.0% (9947 of 9947 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2025-02-05 00:26:19 +01:00
Pferd O
2a76879fe7
Translated using Weblate (German)
...
Currently translated at 100.0% (9947 of 9947 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/de/
2025-02-05 00:26:19 +01:00
Anonymous
2da1b6b0ff
Translated using Weblate (Italian)
...
Currently translated at 93.2% (9277 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/it/
2025-02-05 00:26:19 +01:00
Marco Ciampa
65432b92c7
Translated using Weblate (Italian)
...
Currently translated at 93.2% (9277 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/it/
2025-02-05 00:26:19 +01:00
Anonymous
950f2913f2
Translated using Weblate (Romanian)
...
Currently translated at 23.1% (2301 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ro/
2025-02-05 00:26:19 +01:00
Anonymous
bb1a44b206
Translated using Weblate (Turkish)
...
Currently translated at 53.5% (5325 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/tr/
2025-02-05 00:26:19 +01:00
Anonymous
1f913eba31
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 41.1% (4093 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/nb_NO/
2025-02-05 00:26:19 +01:00
Anonymous
28c7bf67d3
Translated using Weblate (Russian)
...
Currently translated at 99.4% (9893 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2025-02-05 00:26:19 +01:00
Anonymous
816985dcb9
Translated using Weblate (Hungarian)
...
Currently translated at 6.0% (605 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/hu/
2025-02-05 00:26:19 +01:00
Anonymous
949772cf0a
Translated using Weblate (Spanish)
...
Currently translated at 84.8% (8442 of 9949 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/es/
2025-02-05 00:26:19 +01:00
Anonymous
e3d8617a71
Translated using Weblate (Italian)
...
Currently translated at 93.0% (9260 of 9948 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/it/
2025-02-05 00:26:19 +01:00
Anonymous
87dc463dfe
Translated using Weblate (Romanian)
...
Currently translated at 23.1% (2301 of 9948 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ro/
2025-02-05 00:26:19 +01:00
Anonymous
e5e0ec0ba1
Translated using Weblate (Turkish)
...
Currently translated at 53.5% (5325 of 9948 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/tr/
2025-02-05 00:26:19 +01:00